文件操作 - .db.sql
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/solsculpting/.db.sql
编辑文件内容
-- MariaDB dump 10.19 Distrib 10.6.12-MariaDB, for debian-linux-gnu (x86_64) -- -- Host: localhost Database: solsculptingdb -- ------------------------------------------------------ -- Server version 10.6.12-MariaDB-1:10.6.12+maria~ubu2004 /*!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 utf8 */; /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */; /*!40103 SET TIME_ZONE='+00:00' */; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; -- -- Table structure for table `wp_actionscheduler_actions` -- DROP TABLE IF EXISTS `wp_actionscheduler_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `hook` varchar(191) NOT NULL, `status` varchar(20) NOT NULL, `scheduled_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `scheduled_date_local` datetime DEFAULT '0000-00-00 00:00:00', `args` varchar(191) DEFAULT NULL, `schedule` longtext DEFAULT NULL, `group_id` bigint(20) unsigned NOT NULL DEFAULT 0, `attempts` int(11) NOT NULL DEFAULT 0, `last_attempt_gmt` datetime DEFAULT '0000-00-00 00:00:00', `last_attempt_local` datetime DEFAULT '0000-00-00 00:00:00', `claim_id` bigint(20) unsigned NOT NULL DEFAULT 0, `extended_args` varchar(8000) DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `hook` (`hook`), KEY `status` (`status`), KEY `scheduled_date_gmt` (`scheduled_date_gmt`), KEY `args` (`args`), KEY `group_id` (`group_id`), KEY `last_attempt_gmt` (`last_attempt_gmt`), KEY `claim_id` (`claim_id`), KEY `claim_id_status_scheduled_date_gmt` (`claim_id`,`status`,`scheduled_date_gmt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_actions` -- LOCK TABLES `wp_actionscheduler_actions` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_claims` -- DROP TABLE IF EXISTS `wp_actionscheduler_claims`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_claims` ( `claim_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`claim_id`), KEY `date_created_gmt` (`date_created_gmt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_claims` -- LOCK TABLES `wp_actionscheduler_claims` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_groups` -- DROP TABLE IF EXISTS `wp_actionscheduler_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_groups` ( `group_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `slug` varchar(255) NOT NULL, PRIMARY KEY (`group_id`), KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_groups` -- LOCK TABLES `wp_actionscheduler_groups` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */; INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'woocommerce-db-updates'),(3,'wc-admin-data'); /*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_actionscheduler_logs` -- DROP TABLE IF EXISTS `wp_actionscheduler_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_actionscheduler_logs` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `action_id` bigint(20) unsigned NOT NULL, `message` text NOT NULL, `log_date_gmt` datetime DEFAULT '0000-00-00 00:00:00', `log_date_local` datetime DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`log_id`), KEY `action_id` (`action_id`), KEY `log_date_gmt` (`log_date_gmt`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_actionscheduler_logs` -- LOCK TABLES `wp_actionscheduler_logs` WRITE; /*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_commentmeta` -- DROP TABLE IF EXISTS `wp_commentmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_commentmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `comment_id` (`comment_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=187 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_commentmeta` -- LOCK TABLES `wp_commentmeta` WRITE; /*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_comments` -- DROP TABLE IF EXISTS `wp_comments`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_comments` ( `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0, `comment_author` tinytext NOT NULL, `comment_author_email` varchar(100) NOT NULL DEFAULT '', `comment_author_url` varchar(200) NOT NULL DEFAULT '', `comment_author_IP` varchar(100) NOT NULL DEFAULT '', `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `comment_content` text NOT NULL, `comment_karma` int(11) NOT NULL DEFAULT 0, `comment_approved` varchar(20) NOT NULL DEFAULT '1', `comment_agent` varchar(255) NOT NULL DEFAULT '', `comment_type` varchar(20) NOT NULL DEFAULT 'comment', `comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`comment_ID`), KEY `comment_post_ID` (`comment_post_ID`), KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`), KEY `comment_date_gmt` (`comment_date_gmt`), KEY `comment_parent` (`comment_parent`), KEY `comment_author_email` (`comment_author_email`(10)), KEY `woo_idx_comment_type` (`comment_type`) ) ENGINE=InnoDB AUTO_INCREMENT=255 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_comments` -- LOCK TABLES `wp_comments` WRITE; /*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */; INSERT INTO `wp_comments` VALUES (94,3814,'wiresuk','kenneth_officia@hotmail.com','https://wiresuk.com','115.186.118.238','2024-07-13 20:22:06','2024-07-13 20:22:06','Usually I do not read article on blogs however I would like to say that this writeup very compelled me to take a look at and do so Your writing taste has been amazed me Thanks quite nice post',0,'0','','comment',0,0),(95,3807,'etruesports','rolando_facere@gmail.com','https://etruesports.net','115.186.118.238','2024-07-14 13:08:03','2024-07-14 13:08:03','you are truly a just right webmaster The site loading speed is incredible It kind of feels that youre doing any distinctive trick In addition The contents are masterwork you have done a great activity in this matter',0,'0','','comment',0,0),(96,3809,'top888casino','vicente_eveniet@hotmail.com','http://top888casino.com','115.186.118.238','2024-07-15 23:13:01','2024-07-15 23:13:01','I was recommended this website by my cousin I am not sure whether this post is written by him as nobody else know such detailed about my trouble You are amazing Thanks',0,'0','','comment',0,0),(97,3811,'top888casino','carmine_error@yahoo.com','http://top888casino.com','115.186.118.238','2024-07-16 09:15:43','2024-07-16 09:15:43','you are in reality a good webmaster The website loading velocity is amazing It sort of feels that youre doing any distinctive trick Also The contents are masterwork you have done a fantastic job in this topic',0,'0','','comment',0,0),(98,3814,'Best IP TV Services','patsy_hic@hotmail.com','https://best-iptv-smarters.co.uk/','115.186.118.238','2024-07-16 14:29:15','2024-07-16 14:29:15','Usually I do not read article on blogs however I would like to say that this writeup very compelled me to take a look at and do it Your writing style has been amazed me Thank you very nice article',0,'0','','comment',0,0),(99,3777,'Best IP TV Services','carolanne_atque@yahoo.com','https://best-iptv-smarters.co.uk/','115.186.118.238','2024-07-16 22:55:33','2024-07-16 22:55:33','Simply wish to say your article is as amazing The clearness in your post is just nice and i could assume youre an expert on this subject Well with your permission let me to grab your feed to keep updated with forthcoming post Thanks a million and please carry on the gratifying work',0,'0','','comment',0,0),(100,3811,'Best IP TV Services','antwon_quod@gmail.com','https://best-iptv-smarters.co.uk/','115.186.118.238','2024-07-17 13:40:27','2024-07-17 13:40:27','Hi i think that i saw you visited my web site thus i came to Return the favore Im attempting to find things to enhance my siteI suppose its ok to use a few of your ideas',0,'0','','comment',0,0),(101,3809,'bestiptv-smarters','zora_nesciunt@hotmail.com','https://bestiptv-smarters.co.uk/','123.108.92.206','2024-07-20 20:34:17','2024-07-20 20:34:17','I was suggested this web site by my cousin Im not sure whether this post is written by him as no one else know such detailed about my trouble You are incredible Thanks',0,'0','','comment',0,0),(102,3809,'firestickdownloader','dallin_deserunt@hotmail.com','https://firestickdownloader.co.uk/','123.108.92.206','2024-07-21 07:12:13','2024-07-21 07:12:13','I do not even know how I ended up here but I thought this post was great I do not know who you are but certainly youre going to a famous blogger if you are not already Cheers',0,'0','','comment',0,0),(103,3811,'pxhss','monserrat_hic@yahoo.com','https://pxhs.pk/','123.108.92.201','2024-07-22 23:20:27','2024-07-22 23:20:27','What i do not realize is in fact how you are no longer actually much more wellfavored than you might be right now Youre very intelligent You recognize thus considerably in relation to this topic made me in my view believe it from numerous numerous angles Its like men and women are not fascinated until it is one thing to do with Lady gaga Your own stuffs excellent All the time handle it up',0,'0','','comment',0,0),(104,3809,'orionservice','natalia_aspernatur@hotmail.com','https://www.orionservice.pk/','123.108.92.201','2024-07-23 09:03:53','2024-07-23 09:03:53','Its like you read my mind You appear to know so much about this like you wrote the book in it or something I think that you can do with a few pics to drive the message home a little bit but other than that this is fantastic blog A great read Ill certainly be back',0,'0','','comment',0,0),(105,3809,'8171ehsaasnews','maci_debitis@yahoo.com','https://8171ehsaasnews.com.pk/','123.108.92.201','2024-07-23 15:59:09','2024-07-23 15:59:09','Normally I do not read article on blogs however I would like to say that this writeup very forced me to try and do so Your writing style has been amazed me Thanks quite great post',0,'0','','comment',0,0),(106,3807,'orionservice','darrin_quibusdam@yahoo.com','https://www.orionservice.pk/','123.108.92.201','2024-07-24 10:44:06','2024-07-24 10:44:06','I loved as much as you will receive carried out right here The sketch is tasteful your authored subject matter stylish nonetheless you command get got an edginess over that you wish be delivering the following unwell unquestionably come further formerly again as exactly the same nearly very often inside case you shield this hike',0,'0','','comment',0,0),(107,3811,'orionservice','ashton_optio@gmail.com','https://www.orionservice.pk/','123.108.92.201','2024-07-24 15:47:43','2024-07-24 15:47:43','I loved as much as you will receive carried out right here The sketch is attractive your authored material stylish nonetheless you command get got an impatience over that you wish be delivering the following unwell unquestionably come more formerly again since exactly the same nearly a lot often inside case you shield this hike',0,'0','','comment',0,0),(108,3807,'blogmedia','alanis_omnis@gmail.com','https://blogmedia.org','191.96.150.180','2024-07-25 17:22:55','2024-07-25 17:22:55','Excellent blog here Also your website loads up very fast What web host are you using Can I get your affiliate link to your host I wish my web site loaded up as quickly as yours lol',0,'0','','comment',0,0),(109,3809,'celebio','eleanore_quidem@hotmail.com','http://celebio.org/','123.108.92.207','2024-07-25 21:43:07','2024-07-25 21:43:07','I do not even know how I ended up here but I thought this post was great I do not know who you are but certainly youre going to a famous blogger if you are not already Cheers',0,'0','','comment',0,0),(110,3811,'igamingpro','hassan_maiores@gmail.com','https://igamingpro.org','191.96.150.180','2024-07-25 21:50:56','2024-07-25 21:50:56','Excellent blog here Also your website loads up very fast What web host are you using Can I get your affiliate link to your host I wish my web site loaded up as quickly as yours lol',0,'0','','comment',0,0),(111,3811,'latestsession','everette_porro@gmail.com','https://latestsession.com','191.96.150.180','2024-07-26 01:05:44','2024-07-26 01:05:44','Hi Neat post Theres an issue together with your web site in internet explorer may test this IE still is the marketplace chief and a good component of people will pass over your fantastic writing due to this problem',0,'0','','comment',0,0),(112,3807,'kmtfirm','oma_velit@hotmail.com','https://kmtfirm.com/','191.96.227.196','2024-07-26 20:01:50','2024-07-26 20:01:50','I was recommended this website by my cousin I am not sure whether this post is written by him as nobody else know such detailed about my difficulty You are wonderful Thanks',0,'0','','comment',0,0),(113,3777,'itsnewsed','bianka_impedit@gmail.com','http://itsnewsed.com','123.108.92.207','2024-07-27 08:16:29','2024-07-27 08:16:29','Hi my family member I want to say that this post is awesome nice written and come with approximately all significant infos I would like to peer extra posts like this',0,'0','','comment',0,0),(114,3809,'theorangedip','sidney_aut@gmail.com','http://theorangedip.com','102.165.48.59','2024-07-27 13:57:07','2024-07-27 13:57:07','Hey there You have done a fantastic job I will certainly digg it and personally recommend to my friends Im confident theyll be benefited from this site',0,'0','','comment',0,0),(115,3807,'insightsway','casandra_autem@yahoo.com','https://insightsway.com/','123.108.92.206','2024-07-29 07:48:03','2024-07-29 07:48:03','certainly like your website but you need to take a look at the spelling on quite a few of your posts Many of them are rife with spelling problems and I find it very troublesome to inform the reality nevertheless I will definitely come back again',0,'0','','comment',0,0),(116,3814,'eco-flow','akeem_ea@yahoo.com','https://eco-flow.us/','123.108.92.206','2024-07-29 11:57:07','2024-07-29 11:57:07','certainly like your website but you need to take a look at the spelling on quite a few of your posts Many of them are rife with spelling problems and I find it very troublesome to inform the reality nevertheless I will definitely come back again',0,'0','','comment',0,0),(117,3811,'eco-flow','akeem_ea@yahoo.com','https://eco-flow.us/','123.108.92.206','2024-07-29 11:57:22','2024-07-29 11:57:22','certainly like your website but you need to take a look at the spelling on quite a few of your posts Many of them are rife with spelling problems and I find it very troublesome to inform the reality nevertheless I will definitely come back again',0,'0','','comment',0,0),(118,3807,'frizonline','leslie_ducimus@yahoo.com','https://frizonline.com/','123.108.92.206','2024-07-29 22:42:35','2024-07-29 22:42:35','What i dont understood is in reality how youre now not really a lot more smartlyfavored than you might be now Youre very intelligent You understand therefore significantly in terms of this topic produced me personally believe it from a lot of numerous angles Its like women and men are not interested except it is one thing to accomplish with Woman gaga Your own stuffs outstanding Always care for it up',0,'0','','comment',0,0),(119,3814,'eco-flow','carlee_eaque@hotmail.com','https://eco-flow.us/','123.108.92.206','2024-07-30 12:57:06','2024-07-30 12:57:06','Thanks I have recently been looking for info about this subject for a while and yours is the greatest I have discovered so far However what in regards to the bottom line Are you certain in regards to the supply',0,'0','','comment',0,0),(120,3777,'freeskyguide','jasen_culpa@gmail.com','https://freeskyguide.uk/','123.108.92.206','2024-07-31 14:53:21','2024-07-31 14:53:21','Wonderful web site Lots of useful info here Im sending it to a few friends ans additionally sharing in delicious And obviously thanks to your effort',0,'0','','comment',0,0),(121,3811,'alevemante','travis_saepe@hotmail.com','https://alevemante.com','123.108.92.206','2024-08-01 09:47:41','2024-08-01 09:47:41','I was suggested this web site by my cousin Im not sure whether this post is written by him as no one else know such detailed about my trouble You are incredible Thanks',0,'0','','comment',0,0),(122,3777,'airticketing','violette_porro@yahoo.com','https://airticketing.pk/','123.108.92.206','2024-08-01 12:42:26','2024-08-01 12:42:26','Thank you for the auspicious writeup It in fact was a amusement account it Look advanced to more added agreeable from you By the way how could we communicate',0,'0','','comment',0,0),(123,3777,'usabasementguard','cristal_unde@hotmail.com','https://www.usabasementguard.com/','123.108.92.206','2024-08-01 14:07:43','2024-08-01 14:07:43','I just could not leave your web site before suggesting that I really enjoyed the standard information a person supply to your visitors Is gonna be again steadily in order to check up on new posts',0,'0','','comment',0,0),(124,3811,'floatswitchs','stevie_eaque@hotmail.com','https://www.floatswitchs.com/','123.108.92.206','2024-08-01 14:54:51','2024-08-01 14:54:51','I loved as much as you will receive carried out right here The sketch is attractive your authored material stylish nonetheless you command get got an impatience over that you wish be delivering the following unwell unquestionably come more formerly again since exactly the same nearly a lot often inside case you shield this hike',0,'0','','comment',0,0),(125,3807,'usasportsurge','tyler_animi@hotmail.com','https://usasportsurge.com/','123.108.92.206','2024-08-01 15:52:03','2024-08-01 15:52:03','I do believe all the ideas youve presented for your post They are really convincing and will certainly work Nonetheless the posts are too short for novices May just you please lengthen them a little from subsequent time Thanks for the post',0,'0','','comment',0,0),(126,3809,'webech','kenyatta_quidem@yahoo.com','https://webech.net','123.108.92.206','2024-08-01 19:28:23','2024-08-01 19:28:23','obviously like your website but you need to test the spelling on quite a few of your posts Several of them are rife with spelling problems and I to find it very troublesome to inform the reality on the other hand Ill certainly come back again',0,'0','','comment',0,0),(127,3807,'cuddlechair','roger_eum@gmail.com','https://cuddlechair.online/','123.108.92.206','2024-08-02 11:05:01','2024-08-02 11:05:01','I do believe all the ideas youve presented for your post They are really convincing and will certainly work Nonetheless the posts are too short for novices May just you please lengthen them a little from subsequent time Thanks for the post',0,'0','','comment',0,0),(128,3811,'cuddlechair','grayce_aut@yahoo.com','https://cuddlechair.online/','123.108.92.206','2024-08-02 19:51:07','2024-08-02 19:51:07','My brother recommended I might like this web site He was totally right This post actually made my day You cannt imagine just how much time I had spent for this information Thanks',0,'0','','comment',0,0),(129,3814,'Lottery','peggie_suscipit@gmail.com','https://bxzkkbet.com/introducao-aos-jogos-de-azar/','123.108.92.206','2024-08-06 17:45:27','2024-08-06 17:45:27','Nice blog here Also your site loads up fast What host are you using Can I get your affiliate link to your host I wish my web site loaded up as quickly as yours lol',0,'0','','comment',0,0),(130,3777,'Jogos de loteria','armand_quos@gmail.com','https://bxzkkbet.com/','123.108.92.206','2024-08-07 04:23:04','2024-08-07 04:23:04','Estou navegando on-line há mais de três horas hoje, mas nunca encontrei nenhum artigo interessante como o seu. Vale bastante para mim. Na minha opinião, se todos os proprietários de sites e blogueiros criassem um bom conteúdo como você, a Internet seria muito mais útil do que sempre antes',0,'0','','comment',0,0),(131,3807,'TMail','AmariEllis@gmail.com','https://taxt.email','103.251.255.121','2024-08-07 15:43:01','2024-08-07 15:43:01','This blog post has left us feeling grateful and inspired',0,'0','','comment',0,0),(132,3777,'streameast','laney_doloribus@gmail.com','http://streameast.ltd','123.108.92.206','2024-08-08 16:42:43','2024-08-08 16:42:43','What i dont understood is in reality how youre now not really a lot more smartlyfavored than you might be now Youre very intelligent You understand therefore significantly in terms of this topic produced me personally believe it from a lot of numerous angles Its like women and men are not interested except it is one thing to accomplish with Woman gaga Your own stuffs outstanding Always care for it up',0,'0','','comment',0,0),(133,3809,'ibomma','lonie_eum@yahoo.com','http://ibomma.llc','123.108.92.206','2024-08-08 16:42:58','2024-08-08 16:42:58','of course like your website but you have to check the spelling on several of your posts A number of them are rife with spelling issues and I in finding it very troublesome to inform the reality on the other hand I will certainly come back again',0,'0','','comment',0,0),(134,3807,'spacedaily','roslyn_molestias@hotmail.com','http://spacedaily.org','123.108.92.206','2024-08-09 17:21:54','2024-08-09 17:21:54','Thanks I have just been looking for information about this subject for a long time and yours is the best Ive discovered till now However what in regards to the bottom line Are you certain in regards to the supply',0,'0','','comment',0,0),(135,3807,'minihints','stefanie_sit@gmail.com','http://minihints.com','154.16.49.92','2024-08-09 17:47:12','2024-08-09 17:47:12','Somebody essentially lend a hand to make significantly articles Id state That is the very first time I frequented your website page and up to now I surprised with the research you made to make this actual submit amazing Wonderful task',0,'0','','comment',0,0),(136,3807,'Sugar Defender','KieraBowen@gmail.com','https://glucorelief.shop/','103.251.255.121','2024-08-10 00:04:35','2024-08-10 00:04:35','This is such an important and often overlooked topic Thank you for bringing attention to it and offering valuable advice',0,'0','','comment',0,0),(137,3811,'Blood Sugar','michel_aspernatur@yahoo.com','https://glucorelief.shop/','103.251.255.121','2024-08-10 23:11:57','2024-08-10 23:11:57','I simply could not go away your web site prior to suggesting that I really enjoyed the standard info a person supply on your guests Is going to be back incessantly to investigate crosscheck new posts.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(138,3777,'hazirpakistan','gracie_et@hotmail.com','https://hazirpakistan.com/','123.108.92.206','2024-08-12 11:33:49','2024-08-12 11:33:49','What i do not understood is in truth how you are not actually a lot more smartlyliked than you may be now You are very intelligent You realize therefore significantly in the case of this topic produced me individually imagine it from numerous numerous angles Its like men and women dont seem to be fascinated until it is one thing to do with Woman gaga Your own stuffs nice All the time care for it up',0,'0','','comment',0,0),(139,3809,'bizzlyn','royal_est@yahoo.com','http://bizzlyn.com','123.108.92.206','2024-08-12 18:26:21','2024-08-12 18:26:21','Hi my loved one I wish to say that this post is amazing nice written and include approximately all vital infos Id like to peer more posts like this',0,'0','','comment',0,0),(140,3807,'largehints','augustine_ex@hotmail.com','http://largehints.com','123.108.92.206','2024-08-12 22:46:09','2024-08-12 22:46:09','Eu nem sei como vim parar aqui, mas achei esse post ótimo, não sei quem você é, mas com certeza você está indo para um blogueiro famoso, se ainda não estiver.',0,'0','','comment',0,0),(141,3809,'celebio','cullen_dolores@gmail.com','https://celebio.org','123.108.92.206','2024-08-15 10:09:54','2024-08-15 10:09:54','Hey there You have done a fantastic job I will certainly digg it and personally recommend to my friends Im confident theyll be benefited from this site',0,'0','','comment',0,0),(142,3807,'celebio','cullen_dolores@gmail.com','https://celebio.org','123.108.92.206','2024-08-15 10:10:11','2024-08-15 10:10:11','Hey there You have done a fantastic job I will certainly digg it and personally recommend to my friends Im confident theyll be benefited from this site',0,'0','','comment',0,0),(143,3814,'soapertv','alejandra_illo@hotmail.com','https://soapertv.net','123.108.92.206','2024-08-15 15:25:17','2024-08-15 15:25:17','Hello i think that i saw you visited my weblog so i came to Return the favore Im trying to find things to improve my web siteI suppose its ok to use some of your ideas',0,'0','','comment',0,0),(144,3814,'wiresuk','angel_beatae@gmail.com','https://wiresuk.com','123.108.92.206','2024-08-15 19:23:13','2024-08-15 19:23:13','Belo blog aqui Além disso, seu site carrega rápido Qual host você está usando Posso obter seu link de afiliado para seu host? Desejo que meu site carregue tão rápido quanto o seu haha',0,'0','','comment',0,0),(145,3814,'top888casino','mitchell_aut@gmail.com','https://top888casino.com','123.108.92.206','2024-08-19 15:17:46','2024-08-19 15:17:46','I loved as much as youll receive carried out right here The sketch is tasteful your authored material stylish nonetheless you command get bought an nervousness over that you wish be delivering the following unwell unquestionably come more formerly again since exactly the same nearly a lot often inside case you shield this hike',0,'0','','comment',0,0),(146,3811,'igameplay','orion_quis@yahoo.com','https://igameplay.net','123.108.92.206','2024-08-20 11:36:04','2024-08-20 11:36:04','Hi i think that i saw you visited my web site thus i came to Return the favore Im attempting to find things to enhance my siteI suppose its ok to use a few of your ideas',0,'0','','comment',0,0),(147,3811,'thefriskys','moses_sed@gmail.com','https://thefriskys.com/','195.179.226.215','2024-08-26 13:31:54','2024-08-26 13:31:54','My brother suggested I might like this blog He was totally right This post actually made my day You can not imagine simply how much time I had spent for this info Thanks',0,'0','','comment',0,0),(148,3777,'streameast','erica_iure@hotmail.com','https://streameast.ltd','195.179.226.215','2024-08-27 01:44:48','2024-08-27 01:44:48','Somebody essentially lend a hand to make significantly articles Id state That is the very first time I frequented your website page and up to now I surprised with the research you made to make this actual submit amazing Wonderful task',0,'0','','comment',0,0),(149,3814,'trendaddictor','sedrick_consequuntur@gmail.com','https://trendaddictor.com/','123.108.92.206','2024-08-31 18:52:20','2024-08-31 18:52:20','Thank you for the auspicious writeup It in fact was a amusement account it Look advanced to far added agreeable from you However how can we communicate',0,'0','','comment',0,0),(150,3777,'itsreleased','christine_blanditiis@gmail.com','https://itsreleased.net/','123.108.92.206','2024-09-01 05:10:01','2024-09-01 05:10:01','Thanks I have recently been looking for info about this subject for a while and yours is the greatest I have discovered so far However what in regards to the bottom line Are you certain in regards to the supply',0,'0','','comment',0,0),(151,3809,'itsreleased','perferendis.melba@yahoo.com','https://itsreleased.net/','123.108.92.206','2024-09-02 06:33:32','2024-09-02 06:33:32','Thank you I have just been searching for information approximately this topic for a while and yours is the best I have found out so far However what in regards to the bottom line Are you certain concerning the supply',0,'0','','comment',0,0),(152,3807,'itsreleased','perferendis.melba@yahoo.com','https://itsreleased.net/','123.108.92.206','2024-09-02 06:33:53','2024-09-02 06:33:53','Thank you I have just been searching for information approximately this topic for a while and yours is the best I have found out so far However what in regards to the bottom line Are you certain concerning the supply',0,'0','','comment',0,0),(153,3814,'TinyURL','abdul-majeedcantrell@ymail.com','https://shoort.cc/','103.251.255.103','2024-09-02 20:46:13','2024-09-02 20:46:13','Hi, I\'m Jack. Your blog is a treasure trove of valuable insights, and I\'ve made it a point to visit daily. Kudos on creating such an amazing resource!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(154,3777,'twinklecrest','willow_earum@gmail.com','https://twinklecrest.com/','123.108.92.206','2024-09-04 15:17:00','2024-09-04 15:17:00','I have been browsing online more than three hours today yet I never found any interesting article like yours It is pretty worth enough for me In my view if all website owners and bloggers made good content as you did the internet will be a lot more useful than ever before',0,'0','','comment',0,0),(155,3811,'theorangedip','daphney_omnis@gmail.com','https://theorangedip.com','123.108.92.206','2024-09-08 02:26:45','2024-09-08 02:26:45','Hello Neat post Theres an issue together with your site in internet explorer would check this IE still is the marketplace chief and a large element of other folks will leave out your magnificent writing due to this problem',0,'0','','comment',0,0),(156,3807,'businesstrick','soledad_nam@hotmail.com','https://businesstrick.org','123.108.92.206','2024-09-09 14:14:02','2024-09-09 14:14:02','you are in reality a good webmaster The website loading velocity is amazing It sort of feels that youre doing any distinctive trick Also The contents are masterwork you have done a fantastic job in this topic',0,'0','','comment',0,0),(157,3814,'globesimregistration','raul_asperiores@yahoo.com','https://globesimregistration.net/','123.108.92.206','2024-09-13 01:26:31','2024-09-13 01:26:31','Fantastic beat I would like to apprentice while you amend your web site how could i subscribe for a blog site The account helped me a acceptable deal I had been a little bit acquainted of this your broadcast offered bright clear concept',0,'0','','comment',0,0),(158,3777,'thefriskys','rosemarie_facere@hotmail.com','https://thefriskys.com/','123.108.92.206','2024-09-14 14:36:04','2024-09-14 14:36:04','Simply desire to say your article is as surprising The clearness in your post is simply excellent and i could assume you are an expert on this subject Fine with your permission let me to grab your feed to keep up to date with forthcoming post Thanks a million and please carry on the gratifying work',0,'0','','comment',0,0),(159,3811,'thefriskys','rosemarie_facere@hotmail.com','https://thefriskys.com/','123.108.92.206','2024-09-14 14:36:23','2024-09-14 14:36:23','Simply desire to say your article is as surprising The clearness in your post is simply excellent and i could assume you are an expert on this subject Fine with your permission let me to grab your feed to keep up to date with forthcoming post Thanks a million and please carry on the gratifying work',0,'0','','comment',0,0),(160,3807,'businesstrick','mireille_nostrum@gmail.com','http://businesstrick.org/','123.108.92.206','2024-09-15 07:42:46','2024-09-15 07:42:46','What i dont understood is in reality how youre now not really a lot more smartlyfavored than you might be now Youre very intelligent You understand therefore significantly in terms of this topic produced me personally believe it from a lot of numerous angles Its like women and men are not interested except it is one thing to accomplish with Woman gaga Your own stuffs outstanding Always care for it up',0,'0','','comment',0,0),(161,3811,'igamingpro','hester_sit@hotmail.com','https://igamingpro.org/','123.108.92.206','2024-09-15 07:43:02','2024-09-15 07:43:02','Wow superb blog layout How long have you been blogging for you make blogging look easy The overall look of your site is magnificent as well as the content',0,'0','','comment',0,0),(162,3777,'igamingpro','hester_sit@hotmail.com','https://igamingpro.org/','123.108.92.206','2024-09-15 07:43:30','2024-09-15 07:43:30','Wow superb blog layout How long have you been blogging for you make blogging look easy The overall look of your site is magnificent as well as the content',0,'0','','comment',0,0),(163,3809,'streameast','cortez_voluptatem@yahoo.com','https://streameast.ltd','123.108.92.206','2024-09-16 01:50:24','2024-09-16 01:50:24','What i dont understood is in reality how youre now not really a lot more smartlyfavored than you might be now Youre very intelligent You understand therefore significantly in terms of this topic produced me personally believe it from a lot of numerous angles Its like women and men are not interested except it is one thing to accomplish with Woman gaga Your own stuffs outstanding Always care for it up',0,'0','','comment',0,0),(164,3807,'streameast','cortez_voluptatem@yahoo.com','https://streameast.ltd','123.108.92.206','2024-09-16 01:50:39','2024-09-16 01:50:39','What i dont understood is in reality how youre now not really a lot more smartlyfavored than you might be now Youre very intelligent You understand therefore significantly in terms of this topic produced me personally believe it from a lot of numerous angles Its like women and men are not interested except it is one thing to accomplish with Woman gaga Your own stuffs outstanding Always care for it up',0,'0','','comment',0,0),(165,3777,'thedeadlines','tevin_repellendus@yahoo.com','https://thedeadlines.net/','123.108.92.206','2024-09-16 01:51:20','2024-09-16 01:51:20','I am not sure where youre getting your info but good topic I needs to spend some time learning much more or understanding more Thanks for magnificent info I was looking for this information for my mission',0,'0','','comment',0,0),(166,3809,'1.veeber','jordon_numquam@hotmail.com','https://1.veeber.xyz/','123.108.92.206','2024-09-18 09:12:48','2024-09-18 09:12:48','I loved as much as youll receive carried out right here The sketch is tasteful your authored material stylish nonetheless you command get bought an nervousness over that you wish be delivering the following unwell unquestionably come more formerly again since exactly the same nearly a lot often inside case you shield this hike',0,'0','','comment',0,0),(167,3777,'airticketing','brisa_rem@hotmail.com','https://airticketing.pk/','123.108.92.206','2024-09-25 12:37:41','2024-09-25 12:37:41','Attractive section of content I just stumbled upon your blog and in accession capital to assert that I get actually enjoyed account your blog posts Anyway I will be subscribing to your augment and even I achievement you access consistently fast',0,'0','','comment',0,0),(168,3814,'usabasementguard','vernon_non@yahoo.com','https://www.usabasementguard.com','123.108.92.206','2024-09-26 10:31:42','2024-09-26 10:31:42','Wonderful web site Lots of useful info here Im sending it to a few friends ans additionally sharing in delicious And obviously thanks to your effort',0,'0','','comment',0,0),(169,3811,'floatswitchs','nikko_doloribus@yahoo.com','https://www.floatswitchs.com/','123.108.92.206','2024-09-26 10:31:58','2024-09-26 10:31:58','Hello Neat post Theres an issue together with your site in internet explorer would check this IE still is the marketplace chief and a large element of other folks will leave out your magnificent writing due to this problem',0,'0','','comment',0,0),(170,3814,'usasportsurge','darron_velit@gmail.com','https://usasportsurge.com','123.108.92.206','2024-09-27 11:11:49','2024-09-27 11:11:49','you are in reality a just right webmaster The site loading velocity is incredible It seems that you are doing any unique trick In addition The contents are masterwork you have performed a wonderful task on this topic',0,'0','','comment',0,0),(171,3807,'cuddlechair','oswald_eius@hotmail.com','https://cuddlechair.online/','123.108.92.206','2024-09-27 11:12:05','2024-09-27 11:12:05','I have been browsing online more than three hours today yet I never found any interesting article like yours It is pretty worth enough for me In my view if all website owners and bloggers made good content as you did the internet will be a lot more useful than ever before',0,'0','','comment',0,0),(172,3811,'cuddlechair','oswald_eius@hotmail.com','https://cuddlechair.online/','123.108.92.206','2024-09-27 11:12:22','2024-09-27 11:12:22','I have been browsing online more than three hours today yet I never found any interesting article like yours It is pretty worth enough for me In my view if all website owners and bloggers made good content as you did the internet will be a lot more useful than ever before',0,'0','','comment',0,0),(173,3809,'airhostess','rowan_dolores@yahoo.com','https://www.airhostess.pk','123.108.92.206','2024-09-28 09:28:16','2024-09-28 09:28:16','Its like you read my mind You appear to know so much about this like you wrote the book in it or something I think that you can do with a few pics to drive the message home a little bit but other than that this is fantastic blog A great read Ill certainly be back',0,'0','','comment',0,0),(174,3809,'guitar','haylee_maiores@gmail.com','https://www.guitar.com.pk/','123.108.92.206','2024-09-29 06:40:59','2024-09-29 06:40:59','My brother suggested I might like this website He was totally right This post actually made my day You cannt imagine just how much time I had spent for this information Thanks',0,'0','','comment',0,0),(175,3809,'exploreuaeonline','anika_aperiam@gmail.com','https://www.exploreuaeonline.com%20/','123.108.92.206','2024-09-29 06:41:17','2024-09-29 06:41:17','Somebody essentially help to make significantly articles Id state This is the first time I frequented your web page and up to now I surprised with the research you made to make this actual post incredible Fantastic job',0,'0','','comment',0,0),(176,3777,'exploreuaeonline','cesar_et@gmail.com','https://www.exploreuaeonline.com%20/','123.108.92.206','2024-09-29 16:11:03','2024-09-29 16:11:03','Hi Neat post Theres an issue together with your web site in internet explorer may test this IE still is the marketplace chief and a good component of people will pass over your fantastic writing due to this problem',0,'0','','comment',0,0),(177,3777,'sharedlicense','elinor_velit@gmail.com','https://sharedlicense.com/','123.108.92.206','2024-09-30 08:31:47','2024-09-30 08:31:47','Thank you for the auspicious writeup It in fact was a amusement account it Look advanced to more added agreeable from you By the way how could we communicate',0,'0','','comment',0,0),(178,3809,'bestiptv-smarters','dayna_autem@hotmail.com','https://bestiptv-smarters.co.uk/','115.186.118.253','2024-10-02 10:21:41','2024-10-02 10:21:41','Usually I do not read article on blogs however I would like to say that this writeup very compelled me to take a look at and do it Your writing style has been amazed me Thank you very nice article',0,'0','','comment',0,0),(179,3777,'exploreuaeonline','vivian_voluptatem@hotmail.com','https://exploreuaeonline.com%20/','115.186.118.253','2024-10-03 09:29:07','2024-10-03 09:29:07','Nice blog here Also your site loads up fast What host are you using Can I get your affiliate link to your host I wish my web site loaded up as quickly as yours lol',0,'0','','comment',0,0),(180,3777,'iptvuk','kayli_fugiat@gmail.com','https://iptvuk.london/','115.186.118.253','2024-10-06 19:27:46','2024-10-06 19:27:46','Magnificent beat I would like to apprentice while you amend your site how can i subscribe for a blog web site The account helped me a acceptable deal I had been a little bit acquainted of this your broadcast offered bright clear idea',0,'0','','comment',0,0),(181,3811,'winwavelotto','aimee_perferendis@gmail.com','https://winwavelotto.com/','115.186.118.253','2024-10-06 20:36:16','2024-10-06 20:36:16','Wonderful web site Lots of useful info here Im sending it to a few friends ans additionally sharing in delicious And obviously thanks to your effort',0,'0','','comment',0,0),(182,3809,'guitar','trevor_quia@yahoo.com','https://www.guitar.com.pk/','115.186.118.253','2024-10-09 10:08:34','2024-10-09 10:08:34','Its like you read my mind You appear to know a lot about this like you wrote the book in it or something I think that you could do with some pics to drive the message home a little bit but instead of that this is fantastic blog An excellent read I will certainly be back',0,'0','','comment',0,0),(183,3777,'tivimatepremium','arden_libero@yahoo.com','https://tivimatepremium.uk/','115.186.118.254','2024-10-11 09:33:53','2024-10-11 09:33:53','Ive read several just right stuff here Certainly price bookmarking for revisiting I wonder how a lot effort you place to create this kind of great informative website',0,'0','','comment',0,0),(184,3809,'uaeunemploymentinsurance','kellie_neque@gmail.com','https://uaeunemploymentinsurance.com/','115.186.118.254','2024-10-11 09:34:09','2024-10-11 09:34:09','Hi i think that i saw you visited my web site thus i came to Return the favore Im attempting to find things to enhance my siteI suppose its ok to use a few of your ideas',0,'0','','comment',0,0),(185,3811,'exploreuaeonline','esta_fugit@hotmail.com','https://exploreuaeonline.com%20/','115.186.118.254','2024-10-13 17:46:47','2024-10-13 17:46:47','of course like your website but you have to check the spelling on several of your posts A number of them are rife with spelling issues and I in finding it very troublesome to inform the reality on the other hand I will certainly come back again',0,'0','','comment',0,0),(186,3807,'temp mail','tokuhirom@me.com','https://upxmail.com/','103.251.255.73','2024-11-02 23:12:07','2024-11-02 23:12:07','I just wanted to say that your article is remarkable. The clarity and depth of your knowledge are truly refreshing. May I subscribe to keep up with your future posts? Keep up the fantastic work!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(187,3809,'bestiptv smarters','laurel_animi@yahoo.com','https://bestiptv-smarters.co.uk/','111.88.169.104','2024-11-05 10:04:14','2024-11-05 10:04:14','I just could not depart your web site prior to suggesting that I really loved the usual info an individual supply in your visitors Is gonna be back regularly to check up on new posts',0,'0','','comment',0,0),(188,3777,'firestickdownloader','libby_sit@yahoo.com','https://firestickdownloader.co.uk/','111.88.169.104','2024-11-05 10:04:33','2024-11-05 10:04:33','Hello i think that i saw you visited my weblog so i came to Return the favore Im trying to find things to improve my web siteI suppose its ok to use some of your ideas',0,'0','','comment',0,0),(189,3811,'HealXO','alejandra_beatae@yahoo.com','https://healxo.org/','103.251.255.79','2024-11-08 16:02:46','2024-11-08 16:02:46','I have been surfing online more than 3 hours today yet I never found any interesting article like yours It is pretty worth enough for me In my opinion if all web owners and bloggers made good content as you did the web will be much more useful than ever before',0,'0','','comment',0,0),(190,3814,'HealXO','nicola_aspernatur@yahoo.com','https://healxo.org/','103.251.255.79','2024-11-09 11:39:22','2024-11-09 11:39:22','Your blog is a treasure trove of valuable insights and thought-provoking commentary. Your dedication to your craft is evident in every word you write. Keep up the fantastic work!',0,'0','','comment',0,0),(191,3809,'airhostess','furman_omnis@gmail.com','https://www.airhostess.pk/','123.108.92.204','2024-11-10 12:19:12','2024-11-10 12:19:12','you are truly a just right webmaster The site loading speed is incredible It kind of feels that youre doing any distinctive trick In addition The contents are masterwork you have done a great activity in this matter',0,'0','','comment',0,0),(192,3809,'eco flow','jammie_amet@hotmail.com','https://eco-flow.us/','123.108.92.204','2024-11-10 12:19:27','2024-11-10 12:19:27','Thank you for the auspicious writeup It in fact was a amusement account it Look advanced to far added agreeable from you However how can we communicate',0,'0','','comment',0,0),(193,3811,'freeskyguide','kathlyn_impedit@gmail.com','https://freeskyguide.uk/','123.108.92.204','2024-11-11 09:00:24','2024-11-11 09:00:24','certainly like your website but you need to take a look at the spelling on quite a few of your posts Many of them are rife with spelling problems and I find it very troublesome to inform the reality nevertheless I will definitely come back again',0,'0','','comment',0,0),(194,3814,'hdhub4uin','kaleigh_omnis@yahoo.com','https://hdhub4uin.org/','123.108.92.204','2024-11-18 15:24:50','2024-11-18 15:24:50','Thanks I have just been looking for information about this subject for a long time and yours is the best Ive discovered till now However what in regards to the bottom line Are you certain in regards to the supply',0,'0','','comment',0,0),(195,3814,'Kelly2446','Kelly2446@gmail.com','','135.12.204.219','2025-04-13 20:42:08','2025-04-13 20:42:08','<a href=\"https://honda-fit.ru/forums/index.php?autocom=gallery&req=si&img=7032\" rel=\"nofollow ugc\">https://honda-fit.ru/forums/index.php?autocom=gallery&req=si&img=7032</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(196,3814,'Helena2932','Helena2932@gmail.com','','124.217.89.244','2025-04-21 01:59:29','2025-04-21 01:59:29','Very good <a href=\"https://is.gd/tpjNyL\" rel=\"nofollow ugc\">https://is.gd/tpjNyL</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(197,3814,'tamilblaster','alda_eos@hotmail.com','https://tamilblaster.com.in/','123.108.92.201','2025-06-12 00:35:23','2025-06-12 00:35:23','I do not even know how I ended up here but I thought this post was great I do not know who you are but certainly youre going to a famous blogger if you are not already Cheers',0,'0','','comment',0,0),(198,3811,'temp email pro','uriel_dignissimos@gmail.com','https://taxt.email/','103.251.255.5','2025-06-23 21:00:20','2025-06-23 21:00:20','What i do not understood is in truth how you are not actually a lot more smartlyliked than you may be now You are very intelligent You realize therefore significantly in the case of this topic produced me individually imagine it from numerous numerous angles Its like men and women dont seem to be fascinated until it is one thing to do with Woman gaga Your own stuffs nice All the time care for it up',0,'0','','comment',0,0),(199,3809,'Temp Mail','shad_omnis@hotmail.com','https://taxt.email/','103.251.255.92','2025-08-02 21:46:16','2025-08-02 21:46:16','Your blog is a treasure trove of valuable insights and thought-provoking commentary. Your dedication to your craft is evident in every word you write. Keep up the fantastic work!',0,'0','','comment',0,0),(200,3777,'MyBlog','','http://mnbdaa.com','185.36.81.36','2025-08-14 13:57:48','2025-08-14 13:57:48','<strong>itstitle</strong>\n\nexcerptsa',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','trackback',0,0),(201,3811,'jljl11','jljl11@jljl11.xyz','https://jljl11.xyz','43.163.97.207','2025-12-07 19:14:15','2025-12-07 19:14:15','It\'s great to see platforms prioritizing mindful entertainment! Balancing fun with well-being is key. JLJL11’s approach to secure, intentional leisure sounds promising. Curious to explore – maybe try a <a href=\'https://jljl11.xyz\' rel=\"nofollow ugc\">jljl11 slot download</a> and see how it feels! Responsible gaming is a win.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36','comment',0,0),(202,3807,'jl boss','jl-boss@jl-boss.click','https://jl-boss.click','43.163.97.207','2025-12-09 04:20:14','2025-12-09 04:20:14','That \'Boss\' mentality at JL Boss is intriguing – really emphasizes taking control of your own luck! Seems like a solid platform, especially with those easy deposit options. Check out <a href=\'https://jl-boss.click\' rel=\"nofollow ugc\">jl boss slot download</a> for a chance to forge your own legend – I\'m curious to see what games they offer!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/119.0','comment',0,0),(203,3814,'jjwincom','admin@jjwincom.com','https://jjwincom.com','156.245.246.112','2025-12-18 18:44:07','2025-12-18 18:44:07','Just gotta say, jjwincom has been treating me right. Good selection of games, and I even managed to snag a little win the other day. I\'m feeling lucky <a href=\'https://jjwincom.com\' rel=\"nofollow ugc\">jjwincom</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/135.0.7049.53 Mobile/15E148 Safari/604.1','comment',0,0),(204,3814,'happylukevn','admin@happylukevn.net','https://happylukevn.net','156.245.246.131','2025-12-29 10:47:45','2025-12-29 10:47:45','Needed a bit of a pick-me-up, so I headed over to happylukevn. It definitely delivered on the \'happy\' part! Might not be life-changing, but a good way to unwind. See for yourself: <a href=\'https://happylukevn.net\' rel=\"nofollow ugc\">happylukevn</a>',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Safari/605.1.15','comment',0,0),(205,3814,'585bet10','admin@585bet10.info','https://585bet10.info','69.165.67.63','2026-01-14 21:33:48','2026-01-14 21:33:48','Anyone tried 585bet10? Let me know what you think! I\'m giving it a go tonight. Let me see who will be the winner today! Give it a go now: <a href=\'https://585bet10.info\' rel=\"nofollow ugc\">585bet10</a>.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0','comment',0,0),(206,3807,'phil168vip','admin@phil168vip.info','https://phil168vip.info','69.165.67.172','2026-01-16 12:40:11','2026-01-16 12:40:11','Alright, alright, phil168vip... I see you. Seems like a decent VIP option. Gonna need to dive a little deeper to see what\'s what, but it\'s got my attention. Anyone else tried it out? Let me know what you think! <a href=\'https://phil168vip.info\' rel=\"nofollow ugc\">phil168vip</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(207,3811,'rajaluckappdownload','admin@rajaluckappdownload.com','https://rajaluckappdownload.com','69.165.67.17','2026-01-18 19:04:14','2026-01-18 19:04:14','Okay, so I downloaded the Raja Luck app, and it\'s surprisingly decent! Games seem fair, and I actually managed to win a few bucks. Find the download link here: <a href=\'https://rajaluckappdownload.com\' rel=\"nofollow ugc\">rajaluckappdownload</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(208,3807,'777szlog','admin@777szlog.com','https://777szlog.com','156.245.246.16','2026-01-20 19:53:37','2026-01-20 19:53:37','777szlog, eh? It\'s a log alright. Seems like a good place to find some basic info. Nothing flashy, but gets the job done. If you need data quickly, <a href=\'https://777szlog.com\' rel=\"nofollow ugc\">777szlog</a> might work for you.',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(209,3807,'phbingoapp','admin@phbingoapp.info','https://phbingoapp.info','69.165.67.161','2026-01-22 05:41:45','2026-01-22 05:41:45','The <a href=\'https://phbingoapp.info\' rel=\"nofollow ugc\">phbingoapp</a> is fire! Perfect for killing time on my commute. Easy to use and tons of different bingo rooms to choose from. Download it, you won\'t regret it.',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36','comment',0,0),(210,3811,'6ffgame','admin@6ffgame.net','https://6ffgame.net','69.165.67.22','2026-01-22 22:48:47','2026-01-22 22:48:47','Looking for a new gaming site to try, and 6ffgame caught my eye. The game selection looks decent. Time to dive in and see if it\'s a winner! Give it a whirl <a href=\'https://6ffgame.net\' rel=\"nofollow ugc\">6ffgame</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','comment',0,0),(211,3807,'888p25','admin@888p25.info','https://888p25.info','69.165.67.39','2026-01-29 01:22:42','2026-01-29 01:22:42','Hello, 888p25 deserves a shout-out! Registration was super easy, and I was able to jump right into playing. I enjoy their selections, check them out here: <a href=\'https://888p25.info\' rel=\"nofollow ugc\">888p25</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','comment',0,0),(212,3809,'z555gamedownload','admin@z555gamedownload.com','https://z555gamedownload.com','45.204.209.63','2026-01-31 15:24:03','2026-01-31 15:24:03','Looking for new games that are easy to download. z555gamedownload to the rescue! <a href=\'https://z555gamedownload.com\' rel=\"nofollow ugc\">z555gamedownload</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:137.0) Gecko/20100101 Firefox/137.0','comment',0,0),(213,3809,'how to get sky glass on firestick free','ismaillawani@gmail.com','https://www.freeskyguide.co.uk/','39.36.119.29','2026-02-03 07:28:05','2026-02-03 07:28:05','</a> Great information shared.. really enjoyed reading this post thank you author for sharing this post .. appreciated',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(214,3814,'Daily scoper','kazhealth.cac@gmail.com','https://dailyscoper.com/','103.251.254.129','2026-02-07 04:32:56','2026-02-07 04:32:56','<a>Daily scoper</a> Hi there to all, for the reason that I am genuinely keen of reading this website’s post to be updated on a regular basis. It carries pleasant stuff.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(215,3807,'k888bet','admin@k888bet.info','https://k888bet.info','61.141.180.211','2026-02-15 18:30:07','2026-02-15 18:30:07','K888bet, let\'s GO! Betting time! Easy to use and has a lot of options. What more could you ask for? Big bets incoming <a href=\'https://k888bet.info\' rel=\"nofollow ugc\">k888bet</a>!',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36','comment',0,0),(216,3814,'KetoCare price','greenlightdrivingidaho.2022@gmail.com','https://ketocare.bolt.host','103.150.207.114','2026-02-16 17:40:26','2026-02-16 17:40:26','<a>ketocare</a> Nice post. I learn something totally new and challenging on websites',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(217,3807,'la caliente.mx','admin@calientesports.net','https://calientesports.net','69.165.67.149','2026-02-19 00:00:32','2026-02-19 00:00:32','La Caliente.mx... Now that sounds like a party! Let\'s see if they live up to the name with some great betting opportunities. Ready to get hot? Click here: <a href=\'https://calientesports.net\' rel=\"nofollow ugc\">la caliente.mx</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(218,3814,'jillikologin','admin@jillikologin.com','https://jillikologin.com','156.245.246.6','2026-02-19 02:06:28','2026-02-19 02:06:28','Having fun with Jillikologin, some interesting games on there. Give it a try: <a href=\'https://jillikologin.com\' rel=\"nofollow ugc\">jillikologin</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1','comment',0,0),(219,3777,'5588bet','admin@5588bet.info','https://5588bet.info','156.245.246.112','2026-02-19 13:14:45','2026-02-19 13:14:45','Been using 5588bet for a bit now. The platform is solid and the payouts are pretty quick. Overall, a pretty decent experience. Maybe you\'ll like it too: <a href=\'https://5588bet.info\' rel=\"nofollow ugc\">5588bet</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','comment',0,0),(220,3807,'mxwinner','admin@mxwinner.com','https://mxwinner.com','156.245.246.94','2026-02-19 22:29:48','2026-02-19 22:29:48','Alright, so I checked out mxwinner. Seems pretty solid, easy to navigate, and I didn\'t run into any weird glitches. Definitely worth a look if you\'re searching for something new. Check it out here: <a href=\'https://mxwinner.com\' rel=\"nofollow ugc\">mxwinner</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1','comment',0,0),(221,3777,'4777cxgame','admin@4777cxgame.com','https://4777cxgame.com','45.204.209.45','2026-02-27 00:24:18','2026-02-27 00:24:18','Alright, 4777cxgame, let\'s see what you\'ve got! Heard some buzz, hoping for a good time and maybe a little luck. Fingers crossed! Check it out here <a href=\'https://4777cxgame.com\' rel=\"nofollow ugc\">4777cxgame</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.7525.1386 Mobile Safari/537.36','comment',0,0),(222,3811,'betpk22','admin@betpk22.net','https://betpk22.net','156.245.246.168','2026-03-06 03:26:06','2026-03-06 03:26:06','Heard about betpk22 from a mate, gave it a whirl and gotta say, not bad at all! Quick sign-up and plenty of options to keep me busy. Worth checking out! <a href=\'https://betpk22.net\' rel=\"nofollow ugc\">betpk22</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/132.0.0.0 Safari/537.36 OPR/117.0.0.0','comment',0,0),(223,3814,'777sxgamedownload','admin@777sxgamedownload.com','https://777sxgamedownload.com','69.165.67.172','2026-03-08 14:09:59','2026-03-08 14:09:59','Just downloaded some games from 777sxgamedownload and they\'re a blast. Quick and easy download, definitely check it out if you\'re looking for some new games! <a href=\'https://777sxgamedownload.com\' rel=\"nofollow ugc\">777sxgamedownload</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 17_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/123.0.6312.52 Mobile/15E148 Safari/604.1','comment',0,0),(224,3811,'sulit 777 app download','admin@sulit777login.info','https://sulit777login.info','69.165.67.149','2026-03-10 23:04:52','2026-03-10 23:04:52','Sulit 777 app looking fire! Anyone got the latest safe download link? Let a brother know! Link here: <a href=\'https://sulit777login.info\' rel=\"nofollow ugc\">sulit 777 app download</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(225,3809,'p898casinologin','admin@p898casinologin.com','https://p898casinologin.com','69.165.67.146','2026-03-13 14:10:10','2026-03-13 14:10:10','P898casinologin, Now that\'s a site I\'d actually use. Time to get some free money and play some games. Head to login: <a href=\'https://p898casinologin.com\' rel=\"nofollow ugc\">p898casinologin</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0','comment',0,0),(226,3814,'mloto88club','admin@mloto88club.com','https://mloto88club.com','69.165.67.176','2026-03-17 19:26:12','2026-03-17 19:26:12','mloto88club is where I chase those big lottery dreams. Who knows, maybe today\'s the day. Feeling lucky <a href=\'https://mloto88club.com\' rel=\"nofollow ugc\">mloto88club</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/362.0.741018905 Mobile/15E148 Safari/604.1','comment',0,0),(227,3814,'515betapp','admin@515betapp.net','https://515betapp.net','69.165.67.28','2026-03-20 08:10:03','2026-03-20 08:10:03','The 515betapp, eh? Downloaded it to my phone. Easy to use and got all the games I like. Worth a try if you ask me <a href=\'https://515betapp.net\' rel=\"nofollow ugc\">515betapp</a>.',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/363.0.743255906 Mobile/15E148 Safari/604.1','comment',0,0),(228,3807,'beephslot','admin@beephslot.net','https://beephslot.net','69.165.67.147','2026-03-24 16:07:39','2026-03-24 16:07:39','Beephslot\'s got some seriously addictive slots. The bonuses hit pretty frequently too so you have chances to win something. Give it a spin and see if it is the one for you! <a href=\'https://beephslot.net\' rel=\"nofollow ugc\">beephslot</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(229,3811,'okbet.com sign up','admin@okbetcareers.com','https://okbetcareers.com','69.165.68.231','2026-03-25 01:24:52','2026-03-25 01:24:52','Just wondering if anyone else is having trouble with the okbet.com sign up process? Keep getting an error. Want to jump in and try my luck! Maybe it\'s just me. Good luck to everyone! More info on <a href=\'https://okbetcareers.com\' rel=\"nofollow ugc\">okbet.com sign up</a>.',0,'0','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Mobile Safari/537.36','comment',0,0),(230,3811,'Health And Wellness','haiderfocusdrive62@gmail.com','https://www.learnhealthway.com/','72.255.8.144','2026-03-27 15:00:30','2026-03-27 15:00:30','I really enjoyed the way you explained everything step by step.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36','comment',0,0),(231,3807,'HealthWay','SloanGay@gmail.com','https://www.learnhealthway.com/','72.255.8.144','2026-03-27 18:48:44','2026-03-27 18:48:44','Your writing is so engaging and easy to read It makes it a pleasure to visit your blog and learn from your insights and experiences',0,'0','','comment',0,0),(232,3809,'hello world','','https://uujjdjkeesasa.com','178.159.37.53','2026-03-28 02:51:58','2026-03-28 02:51:58','<strong>hello world</strong>\n\nhello world',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0 OpenWave/94.4.4504.39','trackback',0,0),(233,3814,'Text Explain','kevin_repudiandae@gmail.com','https://textexplain.com/','101.50.98.39','2026-03-29 20:39:20','2026-03-29 20:39:20','This is a great post.',0,'0','','comment',0,0),(234,3814,'Textexplain','vena_harum@gmail.com','https://textexplain.com/','101.50.98.39','2026-03-29 21:26:52','2026-03-29 21:26:52','Helpful and informative post.',0,'0','','comment',0,0),(235,3809,'bet291','admin@bet291.net','https://bet291.net','156.245.246.131','2026-03-30 11:19:37','2026-03-30 11:19:37','Alright, so bet291, huh? Heard some whispers. Is it the real deal or just another flash in the pan? I\'m gonna give it a whirl I think. Give it a shot <a href=\'https://bet291.net\' rel=\"nofollow ugc\">bet291</a>.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36','comment',0,0),(236,3809,'micasinocompaga','admin@micasinocompaga.com','https://micasinocompaga.com','69.165.67.149','2026-03-31 06:57:23','2026-03-31 06:57:23','Wondering if micasinocompaga actually pays out? So far, so good for me! I won a little bit playing one night. Nothing crazy, but a win is a win! Give <a href=\'https://micasinocompaga.com\' rel=\"nofollow ugc\">micasinocompaga</a> a try and see what your experience is.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','comment',0,0),(237,3777,'brapub link','admin@brapub.info','https://brapub.info','69.165.67.63','2026-04-01 13:57:06','2026-04-01 13:57:06','Looking for the Brapub link? I found it pretty easily. Just clicking through their website is simple. Hope you find what you\'re lookin\' for! <a href=\'https://brapub.info\' rel=\"nofollow ugc\">brapub link</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(238,3809,'7m.cn.ma cao bóng đá','admin@7mcnlivescoresmacao.org','https://7mcnlivescoresmacao.org','69.165.67.134','2026-04-03 03:29:07','2026-04-03 03:29:07','Alright football fans, Anyone using this site for 7m.cn.ma cao bóng đá updates? Keep me in the loop! <a href=\'https://7mcnlivescoresmacao.org\' rel=\"nofollow ugc\">7m.cn.ma cao bóng đá</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(239,3811,'smbet casino','admin@smbetcasino.net','https://smbetcasino.net','69.165.67.172','2026-04-05 06:43:23','2026-04-05 06:43:23','Checking out smbet casino. Looking for a solid online casino with good bonuses and a variety of games. Hoping to find a new favorite I sure hope it meets my standards. <a href=\'https://smbetcasino.net\' rel=\"nofollow ugc\">smbet casino</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(240,3809,'888slotsvip','admin@888slotsvip.net','https://888slotsvip.net','69.165.67.171','2026-04-13 22:34:18','2026-04-13 22:34:18','888slotsvip? Alright, played a few rounds here. Has a decent selection of slots, pretty standard stuff overall. If you\'re into slots, might be worth a shot. See for yourself right here: <a href=\'https://888slotsvip.net\' rel=\"nofollow ugc\">888slotsvip</a>',0,'0','Mozilla/5.0 (iPhone; CPU iPhone OS 18_3_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3.1 Mobile/15E148 Safari/604.1','comment',0,0),(241,3814,'acesupercasino','admin@acesupercasino.com','https://acesupercasino.com','69.165.68.231','2026-04-14 19:43:22','2026-04-14 19:43:22','Acesupercasino, huh? Name sounds slick. Tossed a few bucks in there. It\'s got some of the classics for sure. Worth a punt? Could be. Give <a href=\'https://acesupercasino.com\' rel=\"nofollow ugc\">acesupercasino</a> a spin.',0,'0','Mozilla/5.0 (Linux; Android 8.0; Pixel 2 Build/OPD3.170816.012) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.5634.1748 Mobile Safari/537.36','comment',0,0),(242,3814,'textslangs','gladyce_nostrum@yahoo.com','https://textslangs.com/','101.50.69.9','2026-04-18 15:17:12','2026-04-18 15:17:12','Very informative and easy to understand.',0,'0','','comment',0,0),(243,3814,'blognk','kelsi_ullam@hotmail.com','http://blognk.com/','101.50.98.205','2026-04-23 08:07:05','2026-04-23 08:07:05','This guide explained everything clearly.',0,'0','','comment',0,0),(244,3814,'symptomsexplain','elmore_earum@gmail.com','https://symptomsexplain.com/','101.50.76.164','2026-04-24 11:40:31','2026-04-24 11:40:31','Keep up the great work.',0,'0','','comment',0,0),(245,3814,'Bethany633','Bethany633@gmail.com','','110.93.150.27','2026-04-25 05:30:05','2026-04-25 05:30:05','<a href=\"https://shorturl.fm/FHfpG\" rel=\"nofollow ugc\">https://shorturl.fm/FHfpG</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(246,3811,'Steven2155','Steven2155@gmail.com','','110.93.150.29','2026-04-25 05:30:11','2026-04-25 05:30:11','<a href=\"https://shorturl.fm/ek0Ga\" rel=\"nofollow ugc\">https://shorturl.fm/ek0Ga</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(247,3809,'Amanda2919','Amanda2919@gmail.com','','110.93.150.23','2026-04-25 05:30:17','2026-04-25 05:30:17','<a href=\"https://shorturl.fm/4FYXw\" rel=\"nofollow ugc\">https://shorturl.fm/4FYXw</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(248,3807,'Heath1817','Heath1817@gmail.com','','211.249.46.22','2026-04-25 05:30:21','2026-04-25 05:30:21','<a href=\"https://shorturl.fm/ek0Ga\" rel=\"nofollow ugc\">https://shorturl.fm/ek0Ga</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(249,3777,'Manuel702','Manuel702@gmail.com','','114.111.32.29','2026-04-25 05:30:26','2026-04-25 05:30:26','<a href=\"https://shorturl.fm/gkbwd\" rel=\"nofollow ugc\">https://shorturl.fm/gkbwd</a>',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','comment',0,0),(250,3814,'symptoms explain','eleazar_molestias@gmail.com','https://symptomsexplain.com/','101.50.98.44','2026-04-25 07:19:29','2026-04-25 07:19:29','I learned something new from this post.',0,'0','','comment',0,0),(251,3814,'Thrivecrafter','veronica_iste@gmail.com','https://Thrivecrafter.com/','101.50.98.44','2026-04-28 12:06:58','2026-04-28 12:06:58','I learned something new from this post.',0,'0','','comment',0,0),(252,3807,'jilibetlogin','admin@jilibetlogin.ph','https://jilibetlogin.ph','69.165.72.57','2026-06-03 12:06:35','2026-06-03 12:06:35','Jilibetlogin is awesome! Super exciting interface to play the games, the login process is so simple!! Don\'t wait and enjoy the moment! More happiness <a href=\'https://jilibetlogin.ph\' rel=\"nofollow ugc\">jilibetlogin</a>.',0,'0','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36','comment',0,0),(253,3809,'betgol','admin@betgol.info','https://betgol.info','156.245.246.154','2026-07-02 20:29:12','2026-07-02 20:29:12','The interface is super clean and it\'s very easy to navigate through the sports betting markets. I had a great experience with their customer support too. Great vibes at <a href=\'https://betgol.info\' rel=\"nofollow ugc\">betgol</a>',0,'0','Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.4884.1563 Mobile Safari/537.36','comment',0,0),(254,3814,'ExoWatts','wordpress@exowatts.net','https://exowatts.com','144.91.95.184','2026-07-11 04:33:37','2026-07-11 04:33:37','Great content! Keep up the good work!',0,'0','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36','comment',0,0); /*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_events` -- DROP TABLE IF EXISTS `wp_e_events`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_events` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `event_data` text DEFAULT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `created_at_index` (`created_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_events` -- LOCK TABLES `wp_e_events` WRITE; /*!40000 ALTER TABLE `wp_e_events` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_events` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_notes` -- DROP TABLE IF EXISTS `wp_e_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_notes` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `route_url` text DEFAULT NULL COMMENT 'Clean url where the note was created.', `route_title` varchar(255) DEFAULT NULL, `route_post_id` bigint(20) unsigned DEFAULT NULL COMMENT 'The post id of the route that the note was created on.', `post_id` bigint(20) unsigned DEFAULT NULL, `element_id` varchar(60) DEFAULT NULL COMMENT 'The Elementor element ID the note is attached to.', `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0, `author_id` bigint(20) unsigned DEFAULT NULL, `author_display_name` varchar(250) DEFAULT NULL COMMENT 'Save the author name when the author was deleted.', `status` varchar(20) NOT NULL DEFAULT 'publish', `position` text DEFAULT NULL COMMENT 'A JSON string that represents the position of the note inside the element in percentages. e.g. {x:10, y:15}', `content` longtext DEFAULT NULL, `is_resolved` tinyint(1) NOT NULL DEFAULT 0, `is_public` tinyint(1) NOT NULL DEFAULT 1, `last_activity_at` datetime DEFAULT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `route_url_index` (`route_url`(191)), KEY `post_id_index` (`post_id`), KEY `element_id_index` (`element_id`), KEY `parent_id_index` (`parent_id`), KEY `author_id_index` (`author_id`), KEY `status_index` (`status`), KEY `is_resolved_index` (`is_resolved`), KEY `is_public_index` (`is_public`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`), KEY `last_activity_at_index` (`last_activity_at`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_notes` -- LOCK TABLES `wp_e_notes` WRITE; /*!40000 ALTER TABLE `wp_e_notes` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_notes_users_relations` -- DROP TABLE IF EXISTS `wp_e_notes_users_relations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_notes_users_relations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(60) NOT NULL COMMENT 'The relation type between user and note (e.g mention, watch, read).', `note_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `type_index` (`type`), KEY `note_id_index` (`note_id`), KEY `user_id_index` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_notes_users_relations` -- LOCK TABLES `wp_e_notes_users_relations` WRITE; /*!40000 ALTER TABLE `wp_e_notes_users_relations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_e_notes_users_relations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_submissions` -- DROP TABLE IF EXISTS `wp_e_submissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_submissions` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `type` varchar(60) DEFAULT NULL, `hash_id` varchar(60) NOT NULL, `main_meta_id` bigint(20) unsigned NOT NULL COMMENT 'Id of main field. to represent the main meta field', `post_id` bigint(20) unsigned NOT NULL, `referer` varchar(500) NOT NULL, `referer_title` varchar(300) DEFAULT NULL, `element_id` varchar(20) NOT NULL, `form_name` varchar(60) NOT NULL, `campaign_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` varchar(46) NOT NULL, `user_agent` text NOT NULL, `actions_count` int(11) DEFAULT 0, `actions_succeeded_count` int(11) DEFAULT 0, `status` varchar(20) NOT NULL, `is_read` tinyint(1) NOT NULL DEFAULT 0, `meta` text DEFAULT NULL, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `hash_id_unique_index` (`hash_id`), KEY `main_meta_id_index` (`main_meta_id`), KEY `hash_id_index` (`hash_id`), KEY `type_index` (`type`), KEY `post_id_index` (`post_id`), KEY `element_id_index` (`element_id`), KEY `campaign_id_index` (`campaign_id`), KEY `user_id_index` (`user_id`), KEY `user_ip_index` (`user_ip`), KEY `status_index` (`status`), KEY `is_read_index` (`is_read`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`), KEY `referer_index` (`referer`(191)), KEY `referer_title_index` (`referer_title`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=92 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_submissions` -- LOCK TABLES `wp_e_submissions` WRITE; /*!40000 ALTER TABLE `wp_e_submissions` DISABLE KEYS */; INSERT INTO `wp_e_submissions` VALUES (1,'submission','d841b4d5-b719-4b4b-8c28-431f70437cb7',4,3644,'https://solsculpting.com/','Chiropractor - SolSculpting','319e3124','SolSculpting Request Form',0,0,'24.10.168.252','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-03-15 23:28:55','2022-03-15 23:28:57','2022-03-15 23:28:55','2022-03-15 23:28:57'),(2,'submission','8fe62560-3bca-442f-acc1-7d0e563a2250',14,3644,'https://solsculpting.com/#contact','Chiropractor - SolSculpting','319e3124','SolSculpting Request Form',0,0,'73.76.210.218','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-03-16 01:35:02','2022-03-16 01:35:04','2022-03-16 01:35:02','2022-03-16 01:35:04'),(3,'submission','b20505e0-0d31-445b-996e-7abd44c12562',24,3644,'https://solsculpting.com/','Chiropractor - SolSculpting','319e3124','SolSculpting Request Form',0,2,'73.76.210.218','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-03-16 01:44:55','2022-03-16 01:44:57','2022-03-16 01:44:55','2022-03-16 01:44:57'),(4,'submission','cde327b9-945c-4a6f-993c-7dbc3707b445',34,3644,'https://solsculpting.com/','Chiropractor - SolSculpting','319e3124','SolSculpting Request Form',0,2,'73.76.210.218','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-03-16 01:52:13','2022-03-16 01:52:14','2022-03-16 01:52:13','2022-03-16 01:52:14'),(5,'submission','fd405fe2-f800-48a4-9109-92f054552f80',44,3644,'https://solsculpting.com/','Chiropractor - SolSculpting','319e3124','SolSculpting Request Form',0,2,'73.76.210.218','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-03-16 02:05:05','2022-03-16 02:05:06','2022-03-16 02:05:05','2022-03-16 02:05:06'),(6,'submission','cd7887de-4afa-4756-aa84-78488860f86d',54,3644,'https://solsculpting.com/','Chiropractor - SolSculpting','319e3124','SolSculpting Request Form',0,2,'73.76.210.218','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-03-16 02:07:01','2022-03-16 02:07:02','2022-03-16 02:07:01','2022-03-16 02:07:02'),(7,'submission','1b7a2777-9f19-49ba-bae9-e573f7cd5f3c',64,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'71.179.2.130','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/100.0.4896.75 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-04-19 14:05:18','2022-04-19 14:05:19','2022-04-19 14:05:18','2022-04-19 14:05:19'),(8,'submission','46109826-8986-4641-85bb-905cec67c637',74,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:387:8:11::50','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-05-02 22:55:46','2022-05-02 22:55:47','2022-05-02 22:55:46','2022-05-02 22:55:47'),(9,'submission','01c5ae4a-5f71-4297-bc12-a1cca08e5f0a',84,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2607:fb91:798f:e54e:650c:7fc1:34af:6754','Mozilla/5.0 (iPhone; CPU iPhone OS 15_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.4 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-05-17 00:31:39','2022-05-17 00:31:40','2022-05-17 00:31:39','2022-05-17 00:31:40'),(10,'submission','654376d9-98a6-4f40-911c-13ca88a44f8a',94,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:387:6:80d::a0','Mozilla/5.0 (Linux; Android 12; SM-G991U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.0.0 Mobile Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-05-23 18:23:25','2022-05-23 18:23:26','2022-05-23 18:23:25','2022-05-23 18:23:26'),(11,'submission','145b27ec-86c8-4351-8605-90f71fc515c0',104,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'96.68.184.233','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.5005.124 Safari/537.36 Edg/102.0.1245.44',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-06-20 22:27:04','2022-06-20 22:27:05','2022-06-20 22:27:04','2022-06-20 22:27:05'),(12,'submission','5a7edc58-7d55-4cdd-a371-c6bde83469bb',114,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'96.68.184.233','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-06-20 22:49:58','2022-06-20 22:49:59','2022-06-20 22:49:58','2022-06-20 22:49:59'),(13,'submission','385b44a1-d61e-4200-b24f-d97b9e65b693',124,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'96.68.184.233','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/102.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-06-21 15:52:36','2022-06-21 15:52:37','2022-06-21 15:52:36','2022-06-21 15:52:37'),(14,'submission','cc97a537-d3d1-48ce-8dfd-bde85b1d1808',134,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'14.202.131.170','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-08-02 23:24:14','2022-08-02 23:24:15','2022-08-02 23:24:14','2022-08-02 23:24:15'),(15,'submission','4eea5c36-55af-4993-9c4b-9d6d48468bcd',144,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:387:f:5717::9','Mozilla/5.0 (Linux; Android 12; SM-S908U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Mobile Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-09-14 18:00:10','2022-09-14 18:00:12','2022-09-14 18:00:10','2022-09-14 18:00:12'),(16,'submission','1d498626-5637-4c47-bd18-773c2b3cfe9a',154,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2001:8003:4831:2f00:95e:1744:693b:45dc','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-09-21 01:15:57','2022-09-21 01:15:58','2022-09-21 01:15:57','2022-09-21 01:15:58'),(17,'submission','dd7e36f3-9617-444b-9388-7c816fbcd108',164,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2602:306:3b83:580:f15a:e2ff:4b1:73d','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-09-23 22:54:40','2022-09-23 22:54:41','2022-09-23 22:54:40','2022-09-23 22:54:41'),(18,'submission','6d9d23e3-5932-4587-932a-d7e6fdf060ff',174,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:1700:a390:61a0:e0c5:cdea:cee0:5c69','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.6.1 Safari/605.1.15',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-10-02 14:53:58','2022-10-02 14:53:59','2022-10-02 14:53:58','2022-10-02 14:53:59'),(19,'submission','8d5beb06-3200-4f5c-950c-8e4181db3c71',184,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:602:847f:83f1:d121:7d0a:c545:8f96','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-10-08 17:08:56','2022-10-08 17:08:57','2022-10-08 17:08:56','2022-10-08 17:08:57'),(20,'submission','0dfbf945-602e-4c2f-a57b-be160d395f89',194,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'50.208.33.14','Mozilla/5.0 (Linux; Android 12; SM-G991U) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Mobile Safari/537.36',2,2,'new',1,'{\"edit_post_id\":\"3644\"}','2022-11-30 18:14:01','2022-12-03 00:30:03','2022-11-30 18:14:01','2022-12-03 00:30:03'),(21,'submission','70825aa1-5593-42e5-bad2-967cfa25c7ac',204,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:643:283:10c0:b4db:d46:8e95:939a','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:107.0) Gecko/20100101 Firefox/107.0',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2022-12-03 00:05:33','2022-12-03 00:05:35','2022-12-03 00:05:33','2022-12-03 00:05:35'),(22,'submission','76e214f4-484b-4f06-b5bd-60152fcabdd4',214,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:1010:b0b6:6adc:9000:a714:7226:88d1','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-01-02 22:08:04','2023-01-02 22:08:05','2023-01-02 22:08:04','2023-01-02 22:08:05'),(23,'submission','f731c649-2e8c-4d76-a499-bc537fae21b7',224,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:387:b:9::5e','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_6) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-03-20 22:11:36','2023-03-20 22:11:37','2023-03-20 22:11:36','2023-03-20 22:11:37'),(24,'submission','af46ba26-5320-4717-8ff4-94c547927574',234,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'47.202.132.229','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-03-31 15:55:43','2023-03-31 15:55:45','2023-03-31 15:55:43','2023-03-31 15:55:45'),(25,'submission','007b948a-8a94-4e63-85f7-2d449e276416',244,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'71.105.192.235','Mozilla/5.0 (Linux; Android 11; moto g play (2021)) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Mobile Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-04-12 12:14:00','2023-04-12 12:14:02','2023-04-12 12:14:00','2023-04-12 12:14:02'),(26,'submission','370d5f44-77b2-4074-ac21-daae9345cee2',254,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:387:c:7013::8','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-05-15 22:00:34','2023-05-15 22:00:36','2023-05-15 22:00:34','2023-05-15 22:00:36'),(27,'submission','66b44e3a-ff85-4f65-b6ec-6a2a6f44e023',264,3704,'https://solsculpting.com/contact/','Contact - SolSculpting','6c4abcc4','SolSculpting Request Form',0,0,'71.255.58.101','Mozilla/5.0 (iPhone; CPU iPhone OS 16_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.4 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3704\"}','2023-05-20 03:13:10','2023-05-20 03:13:12','2023-05-20 03:13:10','2023-05-20 03:13:12'),(28,'submission','88fefc8e-c95a-4349-b8c5-23aec0899f66',274,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2600:1001:b027:caf9:0:56:615c:f01','Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Mobile Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-06-13 13:41:14','2023-06-13 13:41:16','2023-06-13 13:41:14','2023-06-13 13:41:16'),(29,'submission','d75676a1-0f92-4be3-893f-99ab9a612e98',284,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2603:3024:1208:3300:8061:c065:429e:44c6','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/114.0',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-07-05 16:58:11','2023-07-05 16:58:12','2023-07-05 16:58:11','2023-07-05 16:58:12'),(30,'submission','a03a8800-e02e-4911-aebd-ec68ce956bcc',294,3704,'https://solsculpting.com/contact/','Contact - SolSculpting','6c4abcc4','SolSculpting Request Form',0,0,'172.104.243.205','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3704\"}','2023-07-21 13:24:52','2023-07-21 13:24:54','2023-07-21 13:24:52','2023-07-21 13:24:54'),(31,'submission','c43b3896-0807-4169-879f-ab4319098145',304,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:643:283:10c0:6dd9:3b76:fc36:ef3d','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/116.0',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-08-09 19:09:20','2023-08-09 19:09:21','2023-08-09 19:09:20','2023-08-09 19:09:21'),(32,'submission','dc7b30e9-df8d-46ea-981d-59859320a14d',314,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'45.33.111.81','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-08-25 09:30:59','2023-08-25 09:31:01','2023-08-25 09:30:59','2023-08-25 09:31:01'),(33,'submission','0471618b-a3da-4bd2-9e92-4de472951113',324,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:640:c982:7430:74c6:134c:380c:f7d5','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/119.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-11-22 15:43:04','2023-11-22 15:43:06','2023-11-22 15:43:04','2023-11-22 15:43:06'),(34,'submission','e86ce860-d239-4038-9e4d-9f805199299f',334,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:19b:8302:63e0:14f6:5363:985a:5f1','Mozilla/5.0 (iPhone; CPU iPhone OS 16_6 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/291.0.582931352 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-12-02 02:55:11','2023-12-02 02:55:12','2023-12-02 02:55:11','2023-12-02 02:55:12'),(35,'submission','363a3d8d-4c81-4a27-a11f-0b4d4986f4ec',344,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:189:4080:6120:b1a1:6d6f:8311:244f','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.6 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2023-12-03 18:06:42','2023-12-03 18:06:44','2023-12-03 18:06:42','2023-12-03 18:06:44'),(36,'submission','ee359540-7097-4d02-b59c-21494baf4b4a',354,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'143.244.60.170','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-02-26 18:40:41','2024-02-26 18:40:42','2024-02-26 18:40:41','2024-02-26 18:40:42'),(37,'submission','74a3745a-dd14-4f2b-a573-af99b50a0946',364,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'107.115.41.13','Mozilla/5.0 (iPhone; CPU iPhone OS 17_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.3.1 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-04-04 13:44:22','2024-04-04 13:44:24','2024-04-04 13:44:22','2024-04-04 13:44:24'),(38,'submission','99eda8ac-c744-450e-a8f3-83fcd63eff27',374,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:196:4800:4250:70b6:ff4f:b975:db6c','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-05-09 11:57:47','2024-05-09 11:57:49','2024-05-09 11:57:47','2024-05-09 11:57:49'),(39,'submission','1acc1443-9e9a-4adb-ba0a-7911eb0c5b2e',384,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'2601:195:c582:f250:3c37:4d45:8337:2ca1','Mozilla/5.0 (iPhone; CPU iPhone OS 16_1_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-05-18 00:17:59','2024-05-18 00:18:01','2024-05-18 00:17:59','2024-05-18 00:18:01'),(40,'submission','9a9701d9-25af-42a0-9ae0-bd8f093b5f92',394,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'98.183.132.215','Mozilla/5.0 (iPhone; CPU iPhone OS 18_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1 Mobile/15E148 Safari/604.1 Ddg/18.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-10-29 01:03:14','2024-10-29 01:03:14','2024-10-29 01:03:14','2024-10-29 01:03:14'),(41,'submission','9192ca25-4812-45ef-b375-773af0571b77',404,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'72.89.145.57','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-11-14 04:20:41','2024-11-14 04:20:41','2024-11-14 04:20:41','2024-11-14 04:20:41'),(42,'submission','4729080d-a70c-4e44-8714-3952b8b762c6',414,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'68.192.141.61','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-11-15 19:39:17','2024-11-15 19:39:17','2024-11-15 19:39:17','2024-11-15 19:39:17'),(43,'submission','f6e31078-073e-4d17-a9a8-4e1dd4061bc1',424,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'107.77.226.109','Mozilla/5.0 (iPhone; CPU iPhone OS 17_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/131.0.6778.73 Mobile/15E148 Safari/604.1',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2024-11-17 14:53:53','2024-11-17 14:53:53','2024-11-17 14:53:53','2024-11-17 14:53:53'),(44,'submission','7f67d039-1f9f-4b6a-972f-3d8684f48093',434,3644,'https://solsculpting.com/#contact','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'75.39.163.17','Mozilla/5.0 (X11; CrOS x86_64 14541.0.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-04-04 21:42:03','2025-04-04 21:42:03','2025-04-04 21:42:03','2025-04-04 21:42:03'),(45,'submission','61d116f3-bdf3-430b-a310-484e07689dd0',444,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:54:38','2025-11-06 09:54:38','2025-11-06 09:54:38','2025-11-06 09:54:38'),(46,'submission','9178a87d-a81a-4dcd-a1bc-b379f2de5692',454,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:54:59','2025-11-06 09:54:59','2025-11-06 09:54:59','2025-11-06 09:54:59'),(47,'submission','11378f1b-3db9-483d-8b1e-219447eab146',464,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:55:21','2025-11-06 09:55:21','2025-11-06 09:55:21','2025-11-06 09:55:21'),(48,'submission','9b9e07f2-799a-42eb-b852-e3fafb55cba9',474,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:55:42','2025-11-06 09:55:42','2025-11-06 09:55:42','2025-11-06 09:55:42'),(49,'submission','fd474707-65ea-4c75-8b40-69b49a31473f',484,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:56:02','2025-11-06 09:56:03','2025-11-06 09:56:02','2025-11-06 09:56:03'),(50,'submission','f4b07ae6-e0e3-4d7d-9af1-634250127317',494,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:56:24','2025-11-06 09:56:25','2025-11-06 09:56:24','2025-11-06 09:56:25'),(51,'submission','bacce2e4-8fa4-404f-8c9d-b93bb364bd65',504,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:56:46','2025-11-06 09:56:46','2025-11-06 09:56:46','2025-11-06 09:56:46'),(52,'submission','1dc71c4b-27b9-412a-a0f2-eba40dc72cad',514,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:57:08','2025-11-06 09:57:08','2025-11-06 09:57:08','2025-11-06 09:57:08'),(53,'submission','d20d6fd1-4b63-4001-bf36-6c0fdc00a72e',524,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:57:23','2025-11-06 09:57:23','2025-11-06 09:57:23','2025-11-06 09:57:23'),(54,'submission','400f8caa-c781-4912-a742-6a818f3ab828',534,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:57:46','2025-11-06 09:57:46','2025-11-06 09:57:46','2025-11-06 09:57:46'),(55,'submission','f0d44cd4-5ef4-4f82-94e9-88d3cde08d99',544,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,2,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:58:05','2025-11-06 09:58:06','2025-11-06 09:58:05','2025-11-06 09:58:06'),(56,'submission','84658877-de1d-40c6-809c-d5a754e4dd3c',554,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,1,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:58:26','2025-11-06 09:58:26','2025-11-06 09:58:26','2025-11-06 09:58:26'),(57,'submission','d8df7f7e-ecfa-4e08-8123-80576f91d86c',564,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,1,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:58:31','2025-11-06 09:58:31','2025-11-06 09:58:31','2025-11-06 09:58:31'),(58,'submission','069fcc5c-4064-478a-a8f7-a2f63750d3ba',574,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'91.84.110.151','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,1,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-06 09:58:36','2025-11-06 09:58:36','2025-11-06 09:58:36','2025-11-06 09:58:36'),(59,'submission','a96e7730-1a61-49f4-a962-3145a325a89e',584,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,1,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:48:32','2025-11-20 18:48:32','2025-11-20 18:48:32','2025-11-20 18:48:32'),(60,'submission','2fea4882-03ac-42c0-b13b-1e5ed887726f',594,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:48:35','2025-11-20 18:48:35','2025-11-20 18:48:35','2025-11-20 18:48:35'),(61,'submission','fe1172fa-0789-400d-8c11-765016115482',604,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:48:45','2025-11-20 18:48:45','2025-11-20 18:48:45','2025-11-20 18:48:45'),(62,'submission','28e6d47d-b9be-400a-9bc8-875ad946ed87',614,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:49:33','2025-11-20 18:49:33','2025-11-20 18:49:33','2025-11-20 18:49:33'),(63,'submission','21190026-c4c1-4a11-85a0-0295a0aecc74',624,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:49:38','2025-11-20 18:49:38','2025-11-20 18:49:38','2025-11-20 18:49:38'),(64,'submission','3c931e89-29b1-499c-a658-fac71e3e17b1',634,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:49:49','2025-11-20 18:49:49','2025-11-20 18:49:49','2025-11-20 18:49:49'),(65,'submission','0b06373e-6c23-4ee2-873b-b1821150e70b',644,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:50:28','2025-11-20 18:50:28','2025-11-20 18:50:28','2025-11-20 18:50:28'),(66,'submission','bc106947-897b-48ed-92c3-40345cbe4875',654,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:50:34','2025-11-20 18:50:34','2025-11-20 18:50:34','2025-11-20 18:50:34'),(67,'submission','3d149efb-2a32-4853-84f1-e0a112298c19',664,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:50:44','2025-11-20 18:50:44','2025-11-20 18:50:44','2025-11-20 18:50:44'),(68,'submission','5762c752-4015-49d8-aa8d-19bbca9423da',674,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:51:17','2025-11-20 18:51:17','2025-11-20 18:51:17','2025-11-20 18:51:17'),(69,'submission','b86c3404-9f99-4b3b-bd93-f8e765d9202f',684,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:51:23','2025-11-20 18:51:23','2025-11-20 18:51:23','2025-11-20 18:51:23'),(70,'submission','59ab91cc-92b7-406a-a9a5-1051dbbd7143',694,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:51:35','2025-11-20 18:51:35','2025-11-20 18:51:35','2025-11-20 18:51:35'),(71,'submission','b2b4d7e2-5ec1-4596-bc29-9ce3a8b7ed04',704,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:52:07','2025-11-20 18:52:07','2025-11-20 18:52:07','2025-11-20 18:52:07'),(72,'submission','3c9ecab2-c6dc-47a3-9c8d-ceb779987a64',714,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:52:17','2025-11-20 18:52:17','2025-11-20 18:52:17','2025-11-20 18:52:17'),(73,'submission','9edd45f5-3a1a-4ce9-98d8-6347a980e7d5',724,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:52:28','2025-11-20 18:52:28','2025-11-20 18:52:28','2025-11-20 18:52:28'),(74,'submission','870264ff-cc77-4c11-a83d-db4bd05857d1',734,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:53:14','2025-11-20 18:53:14','2025-11-20 18:53:14','2025-11-20 18:53:14'),(75,'submission','39417b12-550d-42ef-a369-7a3a881dbb30',744,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'195.26.225.209','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-20 18:53:19','2025-11-20 18:53:19','2025-11-20 18:53:19','2025-11-20 18:53:19'),(76,'submission','c466acd7-c5fb-4a16-a5c3-0ea0c629389d',754,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'185.245.104.75','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-24 16:16:31','2025-11-24 16:16:31','2025-11-24 16:16:31','2025-11-24 16:16:31'),(77,'submission','4caec414-9b02-4a57-98e0-701450d2ebac',764,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'185.245.104.75','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-24 16:16:43','2025-11-24 16:16:43','2025-11-24 16:16:43','2025-11-24 16:16:43'),(78,'submission','05193ad6-b191-4578-9f31-5515a123f6d9',774,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'185.245.104.75','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-24 16:17:26','2025-11-24 16:17:26','2025-11-24 16:17:26','2025-11-24 16:17:26'),(79,'submission','a48624fd-a885-48ad-b06e-7eb56db3ff73',784,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'185.245.104.75','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-24 16:17:32','2025-11-24 16:17:32','2025-11-24 16:17:32','2025-11-24 16:17:32'),(80,'submission','83355545-3a1c-4356-91cd-90009492d0e6',794,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'185.245.104.75','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-11-24 16:17:38','2025-11-24 16:17:38','2025-11-24 16:17:38','2025-11-24 16:17:38'),(81,'submission','5868789e-5582-4d11-8da3-1be626ee8ab5',804,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,1,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:22:35','2025-12-01 13:22:35','2025-12-01 13:22:35','2025-12-01 13:22:35'),(82,'submission','a0f17e8a-b800-4a5a-a34b-48ea9a0b5099',814,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:22:40','2025-12-01 13:22:40','2025-12-01 13:22:40','2025-12-01 13:22:40'),(83,'submission','227752ca-e1ef-4868-92b7-5006bc29edee',824,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:22:46','2025-12-01 13:22:46','2025-12-01 13:22:46','2025-12-01 13:22:46'),(84,'submission','b0ef33e8-1526-4fbc-ad94-7fcd35f65d86',834,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:23:24','2025-12-01 13:23:24','2025-12-01 13:23:24','2025-12-01 13:23:24'),(85,'submission','facc5791-ff1a-465f-b591-50c7037b4a48',844,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:23:35','2025-12-01 13:23:35','2025-12-01 13:23:35','2025-12-01 13:23:35'),(86,'submission','363b1f5f-e21c-4e70-a800-e7462ad1d36c',854,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:23:41','2025-12-01 13:23:41','2025-12-01 13:23:41','2025-12-01 13:23:41'),(87,'submission','3b90e6cf-b325-4f6f-87c8-7ed0d752913e',864,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:24:16','2025-12-01 13:24:16','2025-12-01 13:24:16','2025-12-01 13:24:16'),(88,'submission','0309bd02-dedf-465d-a2f6-d72c3a45dcc7',874,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:24:22','2025-12-01 13:24:22','2025-12-01 13:24:22','2025-12-01 13:24:22'),(89,'submission','2a1d3881-230f-4134-8c0f-afe1e6f3548d',884,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:24:33','2025-12-01 13:24:33','2025-12-01 13:24:33','2025-12-01 13:24:33'),(90,'submission','65d91f71-3fa5-4644-8f02-e43eb2d4f6fc',894,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:25:07','2025-12-01 13:25:07','2025-12-01 13:25:07','2025-12-01 13:25:07'),(91,'submission','d45bb0df-b14a-4c10-8e7d-017f53abaf26',904,3644,'https://solsculpting.com/','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','319e3124','SolSculpting Request Form',0,0,'5.35.69.6','\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\"',2,0,'new',0,'{\"edit_post_id\":\"3644\"}','2025-12-01 13:25:18','2025-12-01 13:25:18','2025-12-01 13:25:18','2025-12-01 13:25:18'); /*!40000 ALTER TABLE `wp_e_submissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_submissions_actions_log` -- DROP TABLE IF EXISTS `wp_e_submissions_actions_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_submissions_actions_log` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL, `action_name` varchar(60) NOT NULL, `action_label` varchar(60) DEFAULT NULL, `status` varchar(20) NOT NULL, `log` text DEFAULT NULL, `created_at_gmt` datetime NOT NULL, `updated_at_gmt` datetime NOT NULL, `created_at` datetime NOT NULL, `updated_at` datetime NOT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `action_name_index` (`action_name`), KEY `status_index` (`status`), KEY `created_at_gmt_index` (`created_at_gmt`), KEY `updated_at_gmt_index` (`updated_at_gmt`), KEY `created_at_index` (`created_at`), KEY `updated_at_index` (`updated_at`) ) ENGINE=InnoDB AUTO_INCREMENT=183 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_submissions_actions_log` -- LOCK TABLES `wp_e_submissions_actions_log` WRITE; /*!40000 ALTER TABLE `wp_e_submissions_actions_log` DISABLE KEYS */; INSERT INTO `wp_e_submissions_actions_log` VALUES (1,1,'email','Email','success',NULL,'2022-03-15 23:28:56','2022-03-15 23:28:56','2022-03-15 23:28:56','2022-03-15 23:28:56'),(2,1,'webhook','Webhook','success',NULL,'2022-03-15 23:28:57','2022-03-15 23:28:57','2022-03-15 23:28:57','2022-03-15 23:28:57'),(3,2,'email','Email','success',NULL,'2022-03-16 01:35:04','2022-03-16 01:35:04','2022-03-16 01:35:04','2022-03-16 01:35:04'),(4,2,'webhook','Webhook','success',NULL,'2022-03-16 01:35:04','2022-03-16 01:35:04','2022-03-16 01:35:04','2022-03-16 01:35:04'),(5,3,'email','Email','success',NULL,'2022-03-16 01:44:57','2022-03-16 01:44:57','2022-03-16 01:44:57','2022-03-16 01:44:57'),(6,3,'webhook','Webhook','success',NULL,'2022-03-16 01:44:57','2022-03-16 01:44:57','2022-03-16 01:44:57','2022-03-16 01:44:57'),(7,4,'email','Email','success',NULL,'2022-03-16 01:52:14','2022-03-16 01:52:14','2022-03-16 01:52:14','2022-03-16 01:52:14'),(8,4,'webhook','Webhook','success',NULL,'2022-03-16 01:52:14','2022-03-16 01:52:14','2022-03-16 01:52:14','2022-03-16 01:52:14'),(9,5,'email','Email','success',NULL,'2022-03-16 02:05:06','2022-03-16 02:05:06','2022-03-16 02:05:06','2022-03-16 02:05:06'),(10,5,'webhook','Webhook','success',NULL,'2022-03-16 02:05:06','2022-03-16 02:05:06','2022-03-16 02:05:06','2022-03-16 02:05:06'),(11,6,'email','Email','success',NULL,'2022-03-16 02:07:02','2022-03-16 02:07:02','2022-03-16 02:07:02','2022-03-16 02:07:02'),(12,6,'webhook','Webhook','success',NULL,'2022-03-16 02:07:02','2022-03-16 02:07:02','2022-03-16 02:07:02','2022-03-16 02:07:02'),(13,7,'email','Email','success',NULL,'2022-04-19 14:05:19','2022-04-19 14:05:19','2022-04-19 14:05:19','2022-04-19 14:05:19'),(14,7,'webhook','Webhook','success',NULL,'2022-04-19 14:05:19','2022-04-19 14:05:19','2022-04-19 14:05:19','2022-04-19 14:05:19'),(15,8,'email','Email','success',NULL,'2022-05-02 22:55:47','2022-05-02 22:55:47','2022-05-02 22:55:47','2022-05-02 22:55:47'),(16,8,'webhook','Webhook','success',NULL,'2022-05-02 22:55:47','2022-05-02 22:55:47','2022-05-02 22:55:47','2022-05-02 22:55:47'),(17,9,'email','Email','success',NULL,'2022-05-17 00:31:40','2022-05-17 00:31:40','2022-05-17 00:31:40','2022-05-17 00:31:40'),(18,9,'webhook','Webhook','success',NULL,'2022-05-17 00:31:40','2022-05-17 00:31:40','2022-05-17 00:31:40','2022-05-17 00:31:40'),(19,10,'email','Email','success',NULL,'2022-05-23 18:23:26','2022-05-23 18:23:26','2022-05-23 18:23:26','2022-05-23 18:23:26'),(20,10,'webhook','Webhook','success',NULL,'2022-05-23 18:23:26','2022-05-23 18:23:26','2022-05-23 18:23:26','2022-05-23 18:23:26'),(21,11,'email','Email','success',NULL,'2022-06-20 22:27:05','2022-06-20 22:27:05','2022-06-20 22:27:05','2022-06-20 22:27:05'),(22,11,'webhook','Webhook','success',NULL,'2022-06-20 22:27:05','2022-06-20 22:27:05','2022-06-20 22:27:05','2022-06-20 22:27:05'),(23,12,'email','Email','success',NULL,'2022-06-20 22:49:59','2022-06-20 22:49:59','2022-06-20 22:49:59','2022-06-20 22:49:59'),(24,12,'webhook','Webhook','success',NULL,'2022-06-20 22:49:59','2022-06-20 22:49:59','2022-06-20 22:49:59','2022-06-20 22:49:59'),(25,13,'email','Email','success',NULL,'2022-06-21 15:52:37','2022-06-21 15:52:37','2022-06-21 15:52:37','2022-06-21 15:52:37'),(26,13,'webhook','Webhook','success',NULL,'2022-06-21 15:52:37','2022-06-21 15:52:37','2022-06-21 15:52:37','2022-06-21 15:52:37'),(27,14,'email','Email','success',NULL,'2022-08-02 23:24:15','2022-08-02 23:24:15','2022-08-02 23:24:15','2022-08-02 23:24:15'),(28,14,'webhook','Webhook','success',NULL,'2022-08-02 23:24:15','2022-08-02 23:24:15','2022-08-02 23:24:15','2022-08-02 23:24:15'),(29,15,'email','Email','success',NULL,'2022-09-14 18:00:11','2022-09-14 18:00:11','2022-09-14 18:00:11','2022-09-14 18:00:11'),(30,15,'webhook','Webhook','success',NULL,'2022-09-14 18:00:12','2022-09-14 18:00:12','2022-09-14 18:00:12','2022-09-14 18:00:12'),(31,16,'email','Email','success',NULL,'2022-09-21 01:15:58','2022-09-21 01:15:58','2022-09-21 01:15:58','2022-09-21 01:15:58'),(32,16,'webhook','Webhook','success',NULL,'2022-09-21 01:15:58','2022-09-21 01:15:58','2022-09-21 01:15:58','2022-09-21 01:15:58'),(33,17,'email','Email','success',NULL,'2022-09-23 22:54:41','2022-09-23 22:54:41','2022-09-23 22:54:41','2022-09-23 22:54:41'),(34,17,'webhook','Webhook','success',NULL,'2022-09-23 22:54:41','2022-09-23 22:54:41','2022-09-23 22:54:41','2022-09-23 22:54:41'),(35,18,'email','Email','success',NULL,'2022-10-02 14:53:59','2022-10-02 14:53:59','2022-10-02 14:53:59','2022-10-02 14:53:59'),(36,18,'webhook','Webhook','success',NULL,'2022-10-02 14:54:00','2022-10-02 14:54:00','2022-10-02 14:54:00','2022-10-02 14:54:00'),(37,19,'email','Email','success',NULL,'2022-10-08 17:08:57','2022-10-08 17:08:57','2022-10-08 17:08:57','2022-10-08 17:08:57'),(38,19,'webhook','Webhook','success',NULL,'2022-10-08 17:08:57','2022-10-08 17:08:57','2022-10-08 17:08:57','2022-10-08 17:08:57'),(39,20,'email','Email','success',NULL,'2022-11-30 18:14:02','2022-11-30 18:14:02','2022-11-30 18:14:02','2022-11-30 18:14:02'),(40,20,'webhook','Webhook','success',NULL,'2022-11-30 18:14:03','2022-11-30 18:14:03','2022-11-30 18:14:03','2022-11-30 18:14:03'),(41,21,'email','Email','success',NULL,'2022-12-03 00:05:35','2022-12-03 00:05:35','2022-12-03 00:05:35','2022-12-03 00:05:35'),(42,21,'webhook','Webhook','success',NULL,'2022-12-03 00:05:35','2022-12-03 00:05:35','2022-12-03 00:05:35','2022-12-03 00:05:35'),(43,22,'email','Email','success',NULL,'2023-01-02 22:08:05','2023-01-02 22:08:05','2023-01-02 22:08:05','2023-01-02 22:08:05'),(44,22,'webhook','Webhook','success',NULL,'2023-01-02 22:08:05','2023-01-02 22:08:05','2023-01-02 22:08:05','2023-01-02 22:08:05'),(45,23,'email','Email','success',NULL,'2023-03-20 22:11:37','2023-03-20 22:11:37','2023-03-20 22:11:37','2023-03-20 22:11:37'),(46,23,'webhook','Webhook','success',NULL,'2023-03-20 22:11:37','2023-03-20 22:11:37','2023-03-20 22:11:37','2023-03-20 22:11:37'),(47,24,'email','Email','success',NULL,'2023-03-31 15:55:45','2023-03-31 15:55:45','2023-03-31 15:55:45','2023-03-31 15:55:45'),(48,24,'webhook','Webhook','success',NULL,'2023-03-31 15:55:45','2023-03-31 15:55:45','2023-03-31 15:55:45','2023-03-31 15:55:45'),(49,25,'email','Email','success',NULL,'2023-04-12 12:14:01','2023-04-12 12:14:01','2023-04-12 12:14:01','2023-04-12 12:14:01'),(50,25,'webhook','Webhook','success',NULL,'2023-04-12 12:14:02','2023-04-12 12:14:02','2023-04-12 12:14:02','2023-04-12 12:14:02'),(51,26,'email','Email','success',NULL,'2023-05-15 22:00:36','2023-05-15 22:00:36','2023-05-15 22:00:36','2023-05-15 22:00:36'),(52,26,'webhook','Webhook','success',NULL,'2023-05-15 22:00:36','2023-05-15 22:00:36','2023-05-15 22:00:36','2023-05-15 22:00:36'),(53,27,'email','Email','success',NULL,'2023-05-20 03:13:12','2023-05-20 03:13:12','2023-05-20 03:13:12','2023-05-20 03:13:12'),(54,27,'webhook','Webhook','success',NULL,'2023-05-20 03:13:12','2023-05-20 03:13:12','2023-05-20 03:13:12','2023-05-20 03:13:12'),(55,28,'email','Email','success',NULL,'2023-06-13 13:41:15','2023-06-13 13:41:15','2023-06-13 13:41:15','2023-06-13 13:41:15'),(56,28,'webhook','Webhook','success',NULL,'2023-06-13 13:41:16','2023-06-13 13:41:16','2023-06-13 13:41:16','2023-06-13 13:41:16'),(57,29,'email','Email','success',NULL,'2023-07-05 16:58:12','2023-07-05 16:58:12','2023-07-05 16:58:12','2023-07-05 16:58:12'),(58,29,'webhook','Webhook','success',NULL,'2023-07-05 16:58:12','2023-07-05 16:58:12','2023-07-05 16:58:12','2023-07-05 16:58:12'),(59,30,'email','Email','success',NULL,'2023-07-21 13:24:54','2023-07-21 13:24:54','2023-07-21 13:24:54','2023-07-21 13:24:54'),(60,30,'webhook','Webhook','success',NULL,'2023-07-21 13:24:54','2023-07-21 13:24:54','2023-07-21 13:24:54','2023-07-21 13:24:54'),(61,31,'email','Email','success',NULL,'2023-08-09 19:09:21','2023-08-09 19:09:21','2023-08-09 19:09:21','2023-08-09 19:09:21'),(62,31,'webhook','Webhook','success',NULL,'2023-08-09 19:09:21','2023-08-09 19:09:21','2023-08-09 19:09:21','2023-08-09 19:09:21'),(63,32,'email','Email','success',NULL,'2023-08-25 09:31:01','2023-08-25 09:31:01','2023-08-25 09:31:01','2023-08-25 09:31:01'),(64,32,'webhook','Webhook','success',NULL,'2023-08-25 09:31:01','2023-08-25 09:31:01','2023-08-25 09:31:01','2023-08-25 09:31:01'),(65,33,'email','Email','success',NULL,'2023-11-22 15:43:05','2023-11-22 15:43:05','2023-11-22 15:43:05','2023-11-22 15:43:05'),(66,33,'webhook','Webhook','success',NULL,'2023-11-22 15:43:06','2023-11-22 15:43:06','2023-11-22 15:43:06','2023-11-22 15:43:06'),(67,34,'email','Email','success',NULL,'2023-12-02 02:55:12','2023-12-02 02:55:12','2023-12-02 02:55:12','2023-12-02 02:55:12'),(68,34,'webhook','Webhook','success',NULL,'2023-12-02 02:55:12','2023-12-02 02:55:12','2023-12-02 02:55:12','2023-12-02 02:55:12'),(69,35,'email','Email','success',NULL,'2023-12-03 18:06:44','2023-12-03 18:06:44','2023-12-03 18:06:44','2023-12-03 18:06:44'),(70,35,'webhook','Webhook','success',NULL,'2023-12-03 18:06:44','2023-12-03 18:06:44','2023-12-03 18:06:44','2023-12-03 18:06:44'),(71,36,'email','Email','success',NULL,'2024-02-26 18:40:42','2024-02-26 18:40:42','2024-02-26 18:40:42','2024-02-26 18:40:42'),(72,36,'webhook','Webhook','success',NULL,'2024-02-26 18:40:42','2024-02-26 18:40:42','2024-02-26 18:40:42','2024-02-26 18:40:42'),(73,37,'email','Email','success',NULL,'2024-04-04 13:44:24','2024-04-04 13:44:24','2024-04-04 13:44:24','2024-04-04 13:44:24'),(74,37,'webhook','Webhook','success',NULL,'2024-04-04 13:44:24','2024-04-04 13:44:24','2024-04-04 13:44:24','2024-04-04 13:44:24'),(75,38,'email','Email','success',NULL,'2024-05-09 11:57:49','2024-05-09 11:57:49','2024-05-09 11:57:49','2024-05-09 11:57:49'),(76,38,'webhook','Webhook','success',NULL,'2024-05-09 11:57:49','2024-05-09 11:57:49','2024-05-09 11:57:49','2024-05-09 11:57:49'),(77,39,'email','Email','success',NULL,'2024-05-18 00:18:01','2024-05-18 00:18:01','2024-05-18 00:18:01','2024-05-18 00:18:01'),(78,39,'webhook','Webhook','success',NULL,'2024-05-18 00:18:01','2024-05-18 00:18:01','2024-05-18 00:18:01','2024-05-18 00:18:01'),(79,40,'email','Email','success',NULL,'2024-10-29 01:03:14','2024-10-29 01:03:14','2024-10-29 01:03:14','2024-10-29 01:03:14'),(80,40,'webhook','Webhook','success',NULL,'2024-10-29 01:03:14','2024-10-29 01:03:14','2024-10-29 01:03:14','2024-10-29 01:03:14'),(81,41,'email','Email','success',NULL,'2024-11-14 04:20:41','2024-11-14 04:20:41','2024-11-14 04:20:41','2024-11-14 04:20:41'),(82,41,'webhook','Webhook','success',NULL,'2024-11-14 04:20:41','2024-11-14 04:20:41','2024-11-14 04:20:41','2024-11-14 04:20:41'),(83,42,'email','Email','success',NULL,'2024-11-15 19:39:17','2024-11-15 19:39:17','2024-11-15 19:39:17','2024-11-15 19:39:17'),(84,42,'webhook','Webhook','success',NULL,'2024-11-15 19:39:17','2024-11-15 19:39:17','2024-11-15 19:39:17','2024-11-15 19:39:17'),(85,43,'email','Email','success',NULL,'2024-11-17 14:53:53','2024-11-17 14:53:53','2024-11-17 14:53:53','2024-11-17 14:53:53'),(86,43,'webhook','Webhook','success',NULL,'2024-11-17 14:53:53','2024-11-17 14:53:53','2024-11-17 14:53:53','2024-11-17 14:53:53'),(87,44,'email','Email','success',NULL,'2025-04-04 21:42:03','2025-04-04 21:42:03','2025-04-04 21:42:03','2025-04-04 21:42:03'),(88,44,'webhook','Webhook','success',NULL,'2025-04-04 21:42:03','2025-04-04 21:42:03','2025-04-04 21:42:03','2025-04-04 21:42:03'),(89,45,'email','Email','success',NULL,'2025-11-06 09:54:38','2025-11-06 09:54:38','2025-11-06 09:54:38','2025-11-06 09:54:38'),(90,45,'webhook','Webhook','success',NULL,'2025-11-06 09:54:38','2025-11-06 09:54:38','2025-11-06 09:54:38','2025-11-06 09:54:38'),(91,46,'email','Email','success',NULL,'2025-11-06 09:54:59','2025-11-06 09:54:59','2025-11-06 09:54:59','2025-11-06 09:54:59'),(92,46,'webhook','Webhook','success',NULL,'2025-11-06 09:54:59','2025-11-06 09:54:59','2025-11-06 09:54:59','2025-11-06 09:54:59'),(93,47,'email','Email','success',NULL,'2025-11-06 09:55:21','2025-11-06 09:55:21','2025-11-06 09:55:21','2025-11-06 09:55:21'),(94,47,'webhook','Webhook','success',NULL,'2025-11-06 09:55:21','2025-11-06 09:55:21','2025-11-06 09:55:21','2025-11-06 09:55:21'),(95,48,'email','Email','success',NULL,'2025-11-06 09:55:42','2025-11-06 09:55:42','2025-11-06 09:55:42','2025-11-06 09:55:42'),(96,48,'webhook','Webhook','success',NULL,'2025-11-06 09:55:42','2025-11-06 09:55:42','2025-11-06 09:55:42','2025-11-06 09:55:42'),(97,49,'email','Email','success',NULL,'2025-11-06 09:56:02','2025-11-06 09:56:02','2025-11-06 09:56:02','2025-11-06 09:56:02'),(98,49,'webhook','Webhook','success',NULL,'2025-11-06 09:56:03','2025-11-06 09:56:03','2025-11-06 09:56:03','2025-11-06 09:56:03'),(99,50,'email','Email','success',NULL,'2025-11-06 09:56:24','2025-11-06 09:56:24','2025-11-06 09:56:24','2025-11-06 09:56:24'),(100,50,'webhook','Webhook','success',NULL,'2025-11-06 09:56:25','2025-11-06 09:56:25','2025-11-06 09:56:25','2025-11-06 09:56:25'),(101,51,'email','Email','success',NULL,'2025-11-06 09:56:46','2025-11-06 09:56:46','2025-11-06 09:56:46','2025-11-06 09:56:46'),(102,51,'webhook','Webhook','success',NULL,'2025-11-06 09:56:46','2025-11-06 09:56:46','2025-11-06 09:56:46','2025-11-06 09:56:46'),(103,52,'email','Email','success',NULL,'2025-11-06 09:57:08','2025-11-06 09:57:08','2025-11-06 09:57:08','2025-11-06 09:57:08'),(104,52,'webhook','Webhook','success',NULL,'2025-11-06 09:57:08','2025-11-06 09:57:08','2025-11-06 09:57:08','2025-11-06 09:57:08'),(105,53,'email','Email','success',NULL,'2025-11-06 09:57:23','2025-11-06 09:57:23','2025-11-06 09:57:23','2025-11-06 09:57:23'),(106,53,'webhook','Webhook','success',NULL,'2025-11-06 09:57:23','2025-11-06 09:57:23','2025-11-06 09:57:23','2025-11-06 09:57:23'),(107,54,'email','Email','success',NULL,'2025-11-06 09:57:46','2025-11-06 09:57:46','2025-11-06 09:57:46','2025-11-06 09:57:46'),(108,54,'webhook','Webhook','success',NULL,'2025-11-06 09:57:46','2025-11-06 09:57:46','2025-11-06 09:57:46','2025-11-06 09:57:46'),(109,55,'email','Email','success',NULL,'2025-11-06 09:58:05','2025-11-06 09:58:05','2025-11-06 09:58:05','2025-11-06 09:58:05'),(110,55,'webhook','Webhook','success',NULL,'2025-11-06 09:58:06','2025-11-06 09:58:06','2025-11-06 09:58:06','2025-11-06 09:58:06'),(111,56,'email','Email','failed','Your submission failed because of a server error.','2025-11-06 09:58:26','2025-11-06 09:58:26','2025-11-06 09:58:26','2025-11-06 09:58:26'),(112,56,'webhook','Webhook','success',NULL,'2025-11-06 09:58:26','2025-11-06 09:58:26','2025-11-06 09:58:26','2025-11-06 09:58:26'),(113,57,'email','Email','failed','Your submission failed because of a server error.','2025-11-06 09:58:31','2025-11-06 09:58:31','2025-11-06 09:58:31','2025-11-06 09:58:31'),(114,57,'webhook','Webhook','success',NULL,'2025-11-06 09:58:31','2025-11-06 09:58:31','2025-11-06 09:58:31','2025-11-06 09:58:31'),(115,58,'email','Email','failed','Your submission failed because of a server error.','2025-11-06 09:58:36','2025-11-06 09:58:36','2025-11-06 09:58:36','2025-11-06 09:58:36'),(116,58,'webhook','Webhook','success',NULL,'2025-11-06 09:58:36','2025-11-06 09:58:36','2025-11-06 09:58:36','2025-11-06 09:58:36'),(117,59,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:48:32','2025-11-20 18:48:32','2025-11-20 18:48:32','2025-11-20 18:48:32'),(118,59,'webhook','Webhook','success',NULL,'2025-11-20 18:48:32','2025-11-20 18:48:32','2025-11-20 18:48:32','2025-11-20 18:48:32'),(119,60,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:48:35','2025-11-20 18:48:35','2025-11-20 18:48:35','2025-11-20 18:48:35'),(120,60,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:48:35','2025-11-20 18:48:35','2025-11-20 18:48:35','2025-11-20 18:48:35'),(121,61,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:48:45','2025-11-20 18:48:45','2025-11-20 18:48:45','2025-11-20 18:48:45'),(122,61,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:48:45','2025-11-20 18:48:45','2025-11-20 18:48:45','2025-11-20 18:48:45'),(123,62,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:49:33','2025-11-20 18:49:33','2025-11-20 18:49:33','2025-11-20 18:49:33'),(124,62,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:49:34','2025-11-20 18:49:34','2025-11-20 18:49:34','2025-11-20 18:49:34'),(125,63,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:49:38','2025-11-20 18:49:38','2025-11-20 18:49:38','2025-11-20 18:49:38'),(126,63,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:49:39','2025-11-20 18:49:39','2025-11-20 18:49:39','2025-11-20 18:49:39'),(127,64,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:49:49','2025-11-20 18:49:49','2025-11-20 18:49:49','2025-11-20 18:49:49'),(128,64,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:49:49','2025-11-20 18:49:49','2025-11-20 18:49:49','2025-11-20 18:49:49'),(129,65,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:50:28','2025-11-20 18:50:28','2025-11-20 18:50:28','2025-11-20 18:50:28'),(130,65,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:50:28','2025-11-20 18:50:28','2025-11-20 18:50:28','2025-11-20 18:50:28'),(131,66,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:50:34','2025-11-20 18:50:34','2025-11-20 18:50:34','2025-11-20 18:50:34'),(132,66,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:50:34','2025-11-20 18:50:34','2025-11-20 18:50:34','2025-11-20 18:50:34'),(133,67,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:50:44','2025-11-20 18:50:44','2025-11-20 18:50:44','2025-11-20 18:50:44'),(134,67,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:50:44','2025-11-20 18:50:44','2025-11-20 18:50:44','2025-11-20 18:50:44'),(135,68,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:51:17','2025-11-20 18:51:17','2025-11-20 18:51:17','2025-11-20 18:51:17'),(136,68,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:51:17','2025-11-20 18:51:17','2025-11-20 18:51:17','2025-11-20 18:51:17'),(137,69,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:51:23','2025-11-20 18:51:23','2025-11-20 18:51:23','2025-11-20 18:51:23'),(138,69,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:51:23','2025-11-20 18:51:23','2025-11-20 18:51:23','2025-11-20 18:51:23'),(139,70,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:51:35','2025-11-20 18:51:35','2025-11-20 18:51:35','2025-11-20 18:51:35'),(140,70,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:51:35','2025-11-20 18:51:35','2025-11-20 18:51:35','2025-11-20 18:51:35'),(141,71,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:52:07','2025-11-20 18:52:07','2025-11-20 18:52:07','2025-11-20 18:52:07'),(142,71,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:52:07','2025-11-20 18:52:07','2025-11-20 18:52:07','2025-11-20 18:52:07'),(143,72,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:52:17','2025-11-20 18:52:17','2025-11-20 18:52:17','2025-11-20 18:52:17'),(144,72,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:52:17','2025-11-20 18:52:17','2025-11-20 18:52:17','2025-11-20 18:52:17'),(145,73,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:52:28','2025-11-20 18:52:28','2025-11-20 18:52:28','2025-11-20 18:52:28'),(146,73,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:52:28','2025-11-20 18:52:28','2025-11-20 18:52:28','2025-11-20 18:52:28'),(147,74,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:53:14','2025-11-20 18:53:14','2025-11-20 18:53:14','2025-11-20 18:53:14'),(148,74,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:53:15','2025-11-20 18:53:15','2025-11-20 18:53:15','2025-11-20 18:53:15'),(149,75,'email','Email','failed','Your submission failed because of a server error.','2025-11-20 18:53:19','2025-11-20 18:53:19','2025-11-20 18:53:19','2025-11-20 18:53:19'),(150,75,'webhook','Webhook','failed','Webhook error.','2025-11-20 18:53:19','2025-11-20 18:53:19','2025-11-20 18:53:19','2025-11-20 18:53:19'),(151,76,'email','Email','failed','Your submission failed because of a server error.','2025-11-24 16:16:31','2025-11-24 16:16:31','2025-11-24 16:16:31','2025-11-24 16:16:31'),(152,76,'webhook','Webhook','failed','Webhook error.','2025-11-24 16:16:31','2025-11-24 16:16:31','2025-11-24 16:16:31','2025-11-24 16:16:31'),(153,77,'email','Email','failed','Your submission failed because of a server error.','2025-11-24 16:16:43','2025-11-24 16:16:43','2025-11-24 16:16:43','2025-11-24 16:16:43'),(154,77,'webhook','Webhook','failed','Webhook error.','2025-11-24 16:16:44','2025-11-24 16:16:44','2025-11-24 16:16:44','2025-11-24 16:16:44'),(155,78,'email','Email','failed','Your submission failed because of a server error.','2025-11-24 16:17:27','2025-11-24 16:17:27','2025-11-24 16:17:27','2025-11-24 16:17:27'),(156,78,'webhook','Webhook','failed','Webhook error.','2025-11-24 16:17:27','2025-11-24 16:17:27','2025-11-24 16:17:27','2025-11-24 16:17:27'),(157,79,'email','Email','failed','Your submission failed because of a server error.','2025-11-24 16:17:32','2025-11-24 16:17:32','2025-11-24 16:17:32','2025-11-24 16:17:32'),(158,79,'webhook','Webhook','failed','Webhook error.','2025-11-24 16:17:32','2025-11-24 16:17:32','2025-11-24 16:17:32','2025-11-24 16:17:32'),(159,80,'email','Email','failed','Your submission failed because of a server error.','2025-11-24 16:17:38','2025-11-24 16:17:38','2025-11-24 16:17:38','2025-11-24 16:17:38'),(160,80,'webhook','Webhook','failed','Webhook error.','2025-11-24 16:17:38','2025-11-24 16:17:38','2025-11-24 16:17:38','2025-11-24 16:17:38'),(161,81,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:22:35','2025-12-01 13:22:35','2025-12-01 13:22:35','2025-12-01 13:22:35'),(162,81,'webhook','Webhook','success',NULL,'2025-12-01 13:22:35','2025-12-01 13:22:35','2025-12-01 13:22:35','2025-12-01 13:22:35'),(163,82,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:22:40','2025-12-01 13:22:40','2025-12-01 13:22:40','2025-12-01 13:22:40'),(164,82,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:22:40','2025-12-01 13:22:40','2025-12-01 13:22:40','2025-12-01 13:22:40'),(165,83,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:22:46','2025-12-01 13:22:46','2025-12-01 13:22:46','2025-12-01 13:22:46'),(166,83,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:22:46','2025-12-01 13:22:46','2025-12-01 13:22:46','2025-12-01 13:22:46'),(167,84,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:23:24','2025-12-01 13:23:24','2025-12-01 13:23:24','2025-12-01 13:23:24'),(168,84,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:23:24','2025-12-01 13:23:24','2025-12-01 13:23:24','2025-12-01 13:23:24'),(169,85,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:23:35','2025-12-01 13:23:35','2025-12-01 13:23:35','2025-12-01 13:23:35'),(170,85,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:23:36','2025-12-01 13:23:36','2025-12-01 13:23:36','2025-12-01 13:23:36'),(171,86,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:23:41','2025-12-01 13:23:41','2025-12-01 13:23:41','2025-12-01 13:23:41'),(172,86,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:23:41','2025-12-01 13:23:41','2025-12-01 13:23:41','2025-12-01 13:23:41'),(173,87,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:24:16','2025-12-01 13:24:16','2025-12-01 13:24:16','2025-12-01 13:24:16'),(174,87,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:24:16','2025-12-01 13:24:16','2025-12-01 13:24:16','2025-12-01 13:24:16'),(175,88,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:24:22','2025-12-01 13:24:22','2025-12-01 13:24:22','2025-12-01 13:24:22'),(176,88,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:24:22','2025-12-01 13:24:22','2025-12-01 13:24:22','2025-12-01 13:24:22'),(177,89,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:24:33','2025-12-01 13:24:33','2025-12-01 13:24:33','2025-12-01 13:24:33'),(178,89,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:24:33','2025-12-01 13:24:33','2025-12-01 13:24:33','2025-12-01 13:24:33'),(179,90,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:25:07','2025-12-01 13:25:07','2025-12-01 13:25:07','2025-12-01 13:25:07'),(180,90,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:25:08','2025-12-01 13:25:08','2025-12-01 13:25:08','2025-12-01 13:25:08'),(181,91,'email','Email','failed','Your submission failed because of a server error.','2025-12-01 13:25:18','2025-12-01 13:25:18','2025-12-01 13:25:18','2025-12-01 13:25:18'),(182,91,'webhook','Webhook','failed','Webhook error.','2025-12-01 13:25:18','2025-12-01 13:25:18','2025-12-01 13:25:18','2025-12-01 13:25:18'); /*!40000 ALTER TABLE `wp_e_submissions_actions_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_e_submissions_values` -- DROP TABLE IF EXISTS `wp_e_submissions_values`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_e_submissions_values` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `submission_id` bigint(20) unsigned NOT NULL DEFAULT 0, `key` varchar(60) DEFAULT NULL, `value` longtext DEFAULT NULL, PRIMARY KEY (`id`), KEY `submission_id_index` (`submission_id`), KEY `key_index` (`key`) ) ENGINE=InnoDB AUTO_INCREMENT=911 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_e_submissions_values` -- LOCK TABLES `wp_e_submissions_values` WRITE; /*!40000 ALTER TABLE `wp_e_submissions_values` DISABLE KEYS */; INSERT INTO `wp_e_submissions_values` VALUES (1,1,'name','Jessica Eddowes'),(2,1,'field_b5f1198','Revel8ion Media'),(3,1,'field_e7f5ebf','9494 Pinedale Cir'),(4,1,'email','jessica@revel8ionmedia.com'),(5,1,'field_c5a9c47','4159948979'),(6,1,'field_028b3d4','Yes'),(7,1,'field_c56ec4f','Yes'),(8,1,'field_02a580e','Yes'),(9,1,'field_e5390e4','No'),(10,1,'field_6767310','No'),(11,2,'name','Brice Blackerby'),(12,2,'field_b5f1198','Test'),(13,2,'field_e7f5ebf','Test'),(14,2,'email','bblackerby424@gmail.com'),(15,2,'field_c5a9c47','8325603726'),(16,2,'field_028b3d4','No'),(17,2,'field_c56ec4f','No'),(18,2,'field_02a580e','No'),(19,2,'field_e5390e4','No'),(20,2,'field_6767310','No'),(21,3,'name','Brice Blackerby'),(22,3,'CompanyName','Test'),(23,3,'CompanyAddress','Test'),(24,3,'email','bblackerby424@gmail.com'),(25,3,'Phone','8325603726'),(26,3,'PlaceOrder','Yes'),(27,3,'PricingInfo','Yes'),(28,3,'NeedFinancing',''),(29,3,'WeightlossProgams','Yes'),(30,3,'BodySculpting','Yes'),(31,4,'name','Brice Blackerby'),(32,4,'CompanyName','Test Co'),(33,4,'CompanyAddress','Test Address'),(34,4,'email','bblackerby424@gmail.com'),(35,4,'Phone','8325603726'),(36,4,'PlaceOrder','Yes'),(37,4,'PricingInfo','Yes'),(38,4,'NeedFinancing',''),(39,4,'WeightlossProgams','Yes'),(40,4,'BodySculpting','Yes'),(41,5,'name','Brice Blackerby'),(42,5,'CompanyName','Test Co'),(43,5,'CompanyAddress','test address'),(44,5,'email','bblackerby424@gmail.com'),(45,5,'Phone','8325603726'),(46,5,'PlaceOrder','Yes'),(47,5,'PricingInfo','Yes'),(48,5,'NeedFinancing','Yes'),(49,5,'WeightlossProgams','Yes'),(50,5,'BodySculpting','Yes'),(51,6,'name','Brice Blackerby'),(52,6,'CompanyName','Test'),(53,6,'CompanyAddress','Test'),(54,6,'email','bblackerby424@gmail.com'),(55,6,'Phone','8325603726'),(56,6,'PlaceOrder','Yes'),(57,6,'PricingInfo','Yes'),(58,6,'NeedFinancing','Yes'),(59,6,'WeightlossProgams','Yes'),(60,6,'BodySculpting','Yes'),(61,7,'name','Donald Hirsh, D.C.'),(62,7,'CompanyName','RightChoice Chiropractic LLC'),(63,7,'CompanyAddress','RightChoice Chiropractic LLC'),(64,7,'email','donald.hirsh@gmail.com'),(65,7,'Phone','3014423533'),(66,7,'PlaceOrder',''),(67,7,'PricingInfo','Yes'),(68,7,'NeedFinancing',''),(69,7,'WeightlossProgams','No'),(70,7,'BodySculpting','No'),(71,8,'name','Mandy Torres'),(72,8,'CompanyName','Mandy Torres'),(73,8,'CompanyAddress','3650 S F St, Oxnard, CA 93033'),(74,8,'email','m.torres01@yahoo.com'),(75,8,'Phone','8052588999'),(76,8,'PlaceOrder','Yes'),(77,8,'PricingInfo','Yes'),(78,8,'NeedFinancing','No'),(79,8,'WeightlossProgams','No'),(80,8,'BodySculpting','No'),(81,9,'name','Laurel Benghauser'),(82,9,'CompanyName','Personal use'),(83,9,'CompanyAddress','Personal use'),(84,9,'email','laurelb85@yahoo.com'),(85,9,'Phone','8187401128'),(86,9,'PlaceOrder','Yes'),(87,9,'PricingInfo','Yes'),(88,9,'NeedFinancing','No'),(89,9,'WeightlossProgams','No'),(90,9,'BodySculpting','No'),(91,10,'name','Monique Marie Garcia'),(92,10,'CompanyName','Party Time'),(93,10,'CompanyAddress','PO BOX 187'),(94,10,'email','moniquemariegarcia@gmail.com'),(95,10,'Phone','5308670932'),(96,10,'PlaceOrder','Yes'),(97,10,'PricingInfo','Yes'),(98,10,'NeedFinancing','Yes'),(99,10,'WeightlossProgams','Yes'),(100,10,'BodySculpting','Yes'),(101,11,'name','Leah Lopez'),(102,11,'CompanyName','Bottoms Up Tanning Salon'),(103,11,'CompanyAddress','981 Alamo Dr.'),(104,11,'email','llopez@bettermarketingcompany.com'),(105,11,'Phone','7074749510'),(106,11,'PlaceOrder','No'),(107,11,'PricingInfo','Yes'),(108,11,'NeedFinancing','No'),(109,11,'WeightlossProgams','Yes'),(110,11,'BodySculpting','Yes'),(111,12,'name','Kristina Gardner'),(112,12,'CompanyName','Bottoms Up Tanning and Spa'),(113,12,'CompanyAddress','1019 Alamo Drive'),(114,12,'email','management@bottomsuptan.com'),(115,12,'Phone','7074749510'),(116,12,'PlaceOrder',''),(117,12,'PricingInfo','Yes'),(118,12,'NeedFinancing',''),(119,12,'WeightlossProgams','Yes'),(120,12,'BodySculpting','No'),(121,13,'name','Kristina Gardner'),(122,13,'CompanyName','Bottoms Up Tanning and Spa'),(123,13,'CompanyAddress','1019 Alamo Drive'),(124,13,'email','kgardner@betterbookkeepers.net'),(125,13,'Phone','7074749510'),(126,13,'PlaceOrder','No'),(127,13,'PricingInfo','Yes'),(128,13,'NeedFinancing','No'),(129,13,'WeightlossProgams','Yes'),(130,13,'BodySculpting','No'),(131,14,'name','Nick Dunin'),(132,14,'CompanyName','Beyond Rest'),(133,14,'CompanyAddress','Australia - 6 wellness centres'),(134,14,'email','nick@beyondrest.com.au'),(135,14,'Phone','+61466263293'),(136,14,'PlaceOrder','Yes'),(137,14,'PricingInfo','Yes'),(138,14,'NeedFinancing','No'),(139,14,'WeightlossProgams','No'),(140,14,'BodySculpting','No'),(141,15,'name','Sandra Reyes'),(142,15,'CompanyName','Napa Body Sculpt'),(143,15,'CompanyAddress','1420 3rd st'),(144,15,'email','My4kings@att.net'),(145,15,'Phone','7078800620'),(146,15,'PlaceOrder','No'),(147,15,'PricingInfo','Yes'),(148,15,'NeedFinancing','No'),(149,15,'WeightlossProgams','No'),(150,15,'BodySculpting','Yes'),(151,16,'name','Robert Shergold'),(152,16,'CompanyName','Beyond Rest Hawthorn'),(153,16,'CompanyAddress','7 Clapham Street'),(154,16,'email','shergold@bigpond.net.au'),(155,16,'Phone','0438601221'),(156,16,'PlaceOrder',''),(157,16,'PricingInfo','Yes'),(158,16,'NeedFinancing',''),(159,16,'WeightlossProgams','No'),(160,16,'BodySculpting','No'),(161,17,'name','Valerie Janay Doyle'),(162,17,'CompanyName','Matters of the Heart Counseling Centers'),(163,17,'CompanyAddress','433 Callan Avenue'),(164,17,'email','valerie@mattersoftheheartcounselingcenters.com'),(165,17,'Phone','5103806146'),(166,17,'PlaceOrder',''),(167,17,'PricingInfo','Yes'),(168,17,'NeedFinancing','No'),(169,17,'WeightlossProgams','No'),(170,17,'BodySculpting','No'),(171,18,'name','Steven Bennett'),(172,18,'CompanyName','Intuitive Nutrients'),(173,18,'CompanyAddress','187 Calle Magdalena, Ste 210'),(174,18,'email','spbennett1@yahoo.com'),(175,18,'Phone','8582771038'),(176,18,'PlaceOrder','No'),(177,18,'PricingInfo','Yes'),(178,18,'NeedFinancing','No'),(179,18,'WeightlossProgams','Yes'),(180,18,'BodySculpting','No'),(181,19,'name','Glenda Poletti'),(182,19,'CompanyName','Seattle MFR LLC'),(183,19,'CompanyAddress','10013 Holman Rd NW, Seattle, WA 98177'),(184,19,'email','glenda.poletti@gmail.com'),(185,19,'Phone','2063301312'),(186,19,'PlaceOrder','No'),(187,19,'PricingInfo','Yes'),(188,19,'NeedFinancing','No'),(189,19,'WeightlossProgams','No'),(190,19,'BodySculpting','No'),(191,20,'name','Michael D\'Angelo'),(192,20,'CompanyName','.'),(193,20,'CompanyAddress','617 Waterwood Dr'),(194,20,'email','michael@emeraldhillsins.com'),(195,20,'Phone','4088003172'),(196,20,'PlaceOrder','No'),(197,20,'PricingInfo','Yes'),(198,20,'NeedFinancing','No'),(199,20,'WeightlossProgams','No'),(200,20,'BodySculpting','No'),(201,21,'name','xiyk'),(202,21,'CompanyName','Ammm'),(203,21,'CompanyAddress','mfmdd'),(204,21,'email','aliciamcbride@hotmail.com'),(205,21,'Phone','+17073456102'),(206,21,'PlaceOrder',''),(207,21,'PricingInfo',''),(208,21,'NeedFinancing',''),(209,21,'WeightlossProgams',''),(210,21,'BodySculpting',''),(211,22,'name','Stephanie Charter'),(212,22,'CompanyName','Personal use'),(213,22,'CompanyAddress','325 Fruitvale'),(214,22,'email','stephanieann0205@gmail.com'),(215,22,'Phone','7078534522'),(216,22,'PlaceOrder','Yes'),(217,22,'PricingInfo','Yes'),(218,22,'NeedFinancing','No'),(219,22,'WeightlossProgams','No'),(220,22,'BodySculpting','No'),(221,23,'name','Kanella'),(222,23,'CompanyName','Body by Premier'),(223,23,'CompanyAddress','1635 N Arlington Heights Rd'),(224,23,'email','kkapotas022@gmail.com'),(225,23,'Phone','6309916637'),(226,23,'PlaceOrder',''),(227,23,'PricingInfo','Yes'),(228,23,'NeedFinancing','No'),(229,23,'WeightlossProgams','Yes'),(230,23,'BodySculpting','Yes'),(231,24,'name','Patti King'),(232,24,'CompanyName','Aura Body Wellness'),(233,24,'CompanyAddress','PO Box 431 Crystal Beach, FL 34681'),(234,24,'email','pattiking96@gmail.com'),(235,24,'Phone','5615049554'),(236,24,'PlaceOrder','Yes'),(237,24,'PricingInfo','Yes'),(238,24,'NeedFinancing','No'),(239,24,'WeightlossProgams','Yes'),(240,24,'BodySculpting','No'),(241,25,'name','Sabrina Plowden'),(242,25,'CompanyName','Babybee Enterprise'),(243,25,'CompanyAddress',''),(244,25,'email','babybee0531@gmail.com'),(245,25,'Phone','3476160381'),(246,25,'PlaceOrder',''),(247,25,'PricingInfo','Yes'),(248,25,'NeedFinancing','Yes'),(249,25,'WeightlossProgams','Yes'),(250,25,'BodySculpting','Yes'),(251,26,'name','Elyssa Herman'),(252,26,'CompanyName','Self'),(253,26,'CompanyAddress','325 St Mark Ave'),(254,26,'email','elyssa.herman@gmail.com'),(255,26,'Phone','7182549629'),(256,26,'PlaceOrder',''),(257,26,'PricingInfo','Yes'),(258,26,'NeedFinancing',''),(259,26,'WeightlossProgams',''),(260,26,'BodySculpting',''),(261,27,'name','Elyssa Herman'),(262,27,'CompanyName','My own company'),(263,27,'CompanyAddress','325 St Marks Ave'),(264,27,'email','elyssa.herman@gmail.com'),(265,27,'Phone','7182549629'),(266,27,'PlaceOrder',''),(267,27,'PricingInfo','Yes'),(268,27,'NeedFinancing',''),(269,27,'WeightlossProgams',''),(270,27,'BodySculpting',''),(271,28,'name','Maria Frazetta'),(272,28,'CompanyName','Ready Set Tri'),(273,28,'CompanyAddress','135 Oxford Road, Colknia, NJ 07067'),(274,28,'email','tri.swim@gmail.com'),(275,28,'Phone','9177763399'),(276,28,'PlaceOrder','No'),(277,28,'PricingInfo','Yes'),(278,28,'NeedFinancing','Yes'),(279,28,'WeightlossProgams','No'),(280,28,'BodySculpting','No'),(281,29,'name','alicia'),(282,29,'CompanyName','love red light'),(283,29,'CompanyAddress','napa, ca'),(284,29,'email','almabrillar@gmail.com'),(285,29,'Phone','+17073456102'),(286,29,'PlaceOrder',''),(287,29,'PricingInfo',''),(288,29,'NeedFinancing',''),(289,29,'WeightlossProgams',''),(290,29,'BodySculpting',''),(291,30,'name','Aron Peng'),(292,30,'CompanyName','Upshine'),(293,30,'CompanyAddress','Shenzhen China'),(294,30,'email','pengxiaoling37@gmail.com'),(295,30,'Phone','19854738947'),(296,30,'PlaceOrder','Yes'),(297,30,'PricingInfo','Yes'),(298,30,'NeedFinancing','Yes'),(299,30,'WeightlossProgams','Yes'),(300,30,'BodySculpting','Yes'),(301,31,'name','sunny days'),(302,31,'CompanyName','wellness seeker'),(303,31,'CompanyAddress',''),(304,31,'email','almabrillar@gmail.com'),(305,31,'Phone','+17073456102'),(306,31,'PlaceOrder','Yes'),(307,31,'PricingInfo',''),(308,31,'NeedFinancing',''),(309,31,'WeightlossProgams',''),(310,31,'BodySculpting',''),(311,32,'name','Aron Peng'),(312,32,'CompanyName','Upshine'),(313,32,'CompanyAddress','Shenzhen China'),(314,32,'email','pengxiaoling37@gmail.com'),(315,32,'Phone','19854738947'),(316,32,'PlaceOrder','Yes'),(317,32,'PricingInfo','Yes'),(318,32,'NeedFinancing','Yes'),(319,32,'WeightlossProgams','Yes'),(320,32,'BodySculpting','Yes'),(321,33,'name','Cathy Jacobs'),(322,33,'CompanyName','Cathy Jacobs, Mobile Red Light, Cavitation & Cryo Services'),(323,33,'CompanyAddress','2048 Lavender Pl'),(324,33,'email','imafreespirit69@gmail.com'),(325,33,'Phone','2093270776'),(326,33,'PlaceOrder',''),(327,33,'PricingInfo','Yes'),(328,33,'NeedFinancing','Yes'),(329,33,'WeightlossProgams','Yes'),(330,33,'BodySculpting','Yes'),(331,34,'name','Joelle Palaima'),(332,34,'CompanyName','Corrections Medi Spa'),(333,34,'CompanyAddress','270 Washington St. Pembroke ma 02359'),(334,34,'email','joellepalaima@ymail.com'),(335,34,'Phone','7745516809'),(336,34,'PlaceOrder','No'),(337,34,'PricingInfo','Yes'),(338,34,'NeedFinancing','No'),(339,34,'WeightlossProgams','No'),(340,34,'BodySculpting','No'),(341,35,'name','Ariet moreno'),(342,35,'CompanyName','Baxter basic supplies'),(343,35,'CompanyAddress','71 summer st'),(344,35,'email','ariquerido91@gmail.com'),(345,35,'Phone','5088448069'),(346,35,'PlaceOrder','Yes'),(347,35,'PricingInfo','Yes'),(348,35,'NeedFinancing','No'),(349,35,'WeightlossProgams','No'),(350,35,'BodySculpting','No'),(351,36,'name','George Ampalloor'),(352,36,'CompanyName','CHICAGO AMBULATORY CARE CENTER LTD'),(353,36,'CompanyAddress','905 E Kimber Ln'),(354,36,'email','shebamol@yahoo.com'),(355,36,'Phone','8474278834'),(356,36,'PlaceOrder','No'),(357,36,'PricingInfo','Yes'),(358,36,'NeedFinancing',''),(359,36,'WeightlossProgams','No'),(360,36,'BodySculpting','No'),(361,37,'name','Mandy'),(362,37,'CompanyName','Mandy Torres'),(363,37,'CompanyAddress','3650 s F st, Oxnard Ca 93033'),(364,37,'email','m.torres01@yahoo.com'),(365,37,'Phone','8052588999'),(366,37,'PlaceOrder','No'),(367,37,'PricingInfo','Yes'),(368,37,'NeedFinancing','Yes'),(369,37,'WeightlossProgams','No'),(370,37,'BodySculpting','No'),(371,38,'name','Laura mcDermott'),(372,38,'CompanyName','Partner 4 Promos'),(373,38,'CompanyAddress','196 Rockland at Canton Ma 02021'),(374,38,'email','laura@partner4promos.com'),(375,38,'Phone','7818282297'),(376,38,'PlaceOrder','No'),(377,38,'PricingInfo','Yes'),(378,38,'NeedFinancing','No'),(379,38,'WeightlossProgams','No'),(380,38,'BodySculpting','No'),(381,39,'name','Joanne Farnham'),(382,39,'CompanyName','Salvation bodysculpt'),(383,39,'CompanyAddress','45 Prospect Street Bridgewater, MA 02324'),(384,39,'email','jroyalambassador@aol.com'),(385,39,'Phone','5083202892'),(386,39,'PlaceOrder',''),(387,39,'PricingInfo','Yes'),(388,39,'NeedFinancing','Yes'),(389,39,'WeightlossProgams','No'),(390,39,'BodySculpting','Yes'),(391,40,'name','Marta Herrington'),(392,40,'CompanyName','Glow Vita'),(393,40,'CompanyAddress','5215 argall ave Norfolk, va 23508'),(394,40,'email','martaleigholson@gmail.com'),(395,40,'Phone','3072542014'),(396,40,'PlaceOrder','No'),(397,40,'PricingInfo','Yes'),(398,40,'NeedFinancing','Yes'),(399,40,'WeightlossProgams','No'),(400,40,'BodySculpting','No'),(401,41,'name','Susi Fazio'),(402,41,'CompanyName','-'),(403,41,'CompanyAddress','Staten Island, NY'),(404,41,'email','Sueq625@msn.com'),(405,41,'Phone','917-364-2177'),(406,41,'PlaceOrder',''),(407,41,'PricingInfo','Yes'),(408,41,'NeedFinancing',''),(409,41,'WeightlossProgams',''),(410,41,'BodySculpting',''),(411,42,'name','katie moraglia'),(412,42,'CompanyName','Health and Wellness Solutions'),(413,42,'CompanyAddress','143 Stering Ave. Greenport, NY 11944'),(414,42,'email','kmoraglia@me.com'),(415,42,'Phone','9176205900'),(416,42,'PlaceOrder','No'),(417,42,'PricingInfo','Yes'),(418,42,'NeedFinancing','No'),(419,42,'WeightlossProgams','Yes, No'),(420,42,'BodySculpting','No'),(421,43,'name','Evie Ry'),(422,43,'CompanyName','Evie Ry beauty'),(423,43,'CompanyAddress','49 Ludlow street'),(424,43,'email','advolito@gmail.com'),(425,43,'Phone','9176645244'),(426,43,'PlaceOrder','No'),(427,43,'PricingInfo','Yes'),(428,43,'NeedFinancing','Yes'),(429,43,'WeightlossProgams','No'),(430,43,'BodySculpting','No'),(431,44,'name','Miriam V Owens'),(432,44,'CompanyName','Owens Family'),(433,44,'CompanyAddress','2289 Rydal Circle'),(434,44,'email','owens5miriam@gmail.com'),(435,44,'Phone','9257525462'),(436,44,'PlaceOrder','Yes'),(437,44,'PricingInfo','Yes'),(438,44,'NeedFinancing','Yes'),(439,44,'WeightlossProgams','No'),(440,44,'BodySculpting','No'),(441,45,'name','VLIFhDqFpfVWQHCyzzUc'),(442,45,'CompanyName','YAXQewhLyINAdgAq'),(443,45,'CompanyAddress','niCjziiPwldUVebLfsyBUqkk'),(444,45,'email','ezajoruhor516@gmail.com'),(445,45,'Phone','8105504751'),(446,45,'PlaceOrder',''),(447,45,'PricingInfo',''),(448,45,'NeedFinancing',''),(449,45,'WeightlossProgams',''),(450,45,'BodySculpting',''),(451,46,'name','NSrZCESJoUbpHNhXVo'),(452,46,'CompanyName','VGLqiPkdFPwbbTfhTS'),(453,46,'CompanyAddress','uoagrFjOQPveXzygYHIFGhD'),(454,46,'email','ezajoruhor516@gmail.com'),(455,46,'Phone','7207853356'),(456,46,'PlaceOrder',''),(457,46,'PricingInfo',''),(458,46,'NeedFinancing',''),(459,46,'WeightlossProgams',''),(460,46,'BodySculpting',''),(461,47,'name','inXQdOZLDwKjtdSc'),(462,47,'CompanyName','ENCpijwrOrGmNFtkn'),(463,47,'CompanyAddress','tyajtkkvMDgRaNPCYURXK'),(464,47,'email','ezajoruhor516@gmail.com'),(465,47,'Phone','8226171026'),(466,47,'PlaceOrder',''),(467,47,'PricingInfo',''),(468,47,'NeedFinancing',''),(469,47,'WeightlossProgams',''),(470,47,'BodySculpting',''),(471,48,'name','aKYfvEpXDpRmokJQsC'),(472,48,'CompanyName','FCkyDJPuiYVazGVkuCKjiV'),(473,48,'CompanyAddress','WppbhlPEtrjtQIhArDVTEkqY'),(474,48,'email','ezajoruhor516@gmail.com'),(475,48,'Phone','7570344012'),(476,48,'PlaceOrder',''),(477,48,'PricingInfo',''),(478,48,'NeedFinancing',''),(479,48,'WeightlossProgams',''),(480,48,'BodySculpting',''),(481,49,'name','ZvQfgAfJEqGYOtTDUmFACU'),(482,49,'CompanyName','YSqtaolMBGCfAfjWd'),(483,49,'CompanyAddress','LCSXxOoknIemWmseBrq'),(484,49,'email','ezajoruhor516@gmail.com'),(485,49,'Phone','4326818755'),(486,49,'PlaceOrder',''),(487,49,'PricingInfo',''),(488,49,'NeedFinancing',''),(489,49,'WeightlossProgams',''),(490,49,'BodySculpting',''),(491,50,'name','gzyXzGBBGtrHbCBnlTEcViFh'),(492,50,'CompanyName','vEKKYdMrUNjNaPRqkTXEFS'),(493,50,'CompanyAddress','ZTRipasYXosXPBIlQZ'),(494,50,'email','ezajoruhor516@gmail.com'),(495,50,'Phone','5239829344'),(496,50,'PlaceOrder',''),(497,50,'PricingInfo',''),(498,50,'NeedFinancing',''),(499,50,'WeightlossProgams',''),(500,50,'BodySculpting',''),(501,51,'name','trCUwQWrWAeMsneaSInef'),(502,51,'CompanyName','jDFKZHfqkwshZvIwYMEaWF'),(503,51,'CompanyAddress','SNupRkYpHWjSQKkFDIM'),(504,51,'email','ezajoruhor516@gmail.com'),(505,51,'Phone','6836161191'),(506,51,'PlaceOrder',''),(507,51,'PricingInfo',''),(508,51,'NeedFinancing',''),(509,51,'WeightlossProgams',''),(510,51,'BodySculpting',''),(511,52,'name','AUafmwFSKcuphWOEyGUr'),(512,52,'CompanyName','jmUDyJrwyDVSsIGstuH'),(513,52,'CompanyAddress','myKtnjZLOsoYGrrvQcniBjrd'),(514,52,'email','ezajoruhor516@gmail.com'),(515,52,'Phone','8484544314'),(516,52,'PlaceOrder',''),(517,52,'PricingInfo',''),(518,52,'NeedFinancing',''),(519,52,'WeightlossProgams',''),(520,52,'BodySculpting',''),(521,53,'name','yAiSDwduKCJHkOImKosFp'),(522,53,'CompanyName','xqGZExDTcTbzlKOszq'),(523,53,'CompanyAddress','iaOfGdDoRoogRlcTzvEpYz'),(524,53,'email','ezajoruhor516@gmail.com'),(525,53,'Phone','4173413062'),(526,53,'PlaceOrder',''),(527,53,'PricingInfo',''),(528,53,'NeedFinancing',''),(529,53,'WeightlossProgams',''),(530,53,'BodySculpting',''),(531,54,'name','vgDSUCTMWdhfBZBqfN'),(532,54,'CompanyName','vVDWGZzCLDQNKMKBExy'),(533,54,'CompanyAddress','cWZbnnhHOsyzwOVkMS'),(534,54,'email','ezajoruhor516@gmail.com'),(535,54,'Phone','2613657438'),(536,54,'PlaceOrder',''),(537,54,'PricingInfo',''),(538,54,'NeedFinancing',''),(539,54,'WeightlossProgams',''),(540,54,'BodySculpting',''),(541,55,'name','ONivNjvEMVPqXhayQAOyy'),(542,55,'CompanyName','VybzhsEYXQyYAbRpugr'),(543,55,'CompanyAddress','RDHSyERCiEQngsrMtgWSE'),(544,55,'email','ezajoruhor516@gmail.com'),(545,55,'Phone','6924324810'),(546,55,'PlaceOrder',''),(547,55,'PricingInfo',''),(548,55,'NeedFinancing',''),(549,55,'WeightlossProgams',''),(550,55,'BodySculpting',''),(551,56,'name','DDPTOJyEjeDQpEitoFBAqoEm'),(552,56,'CompanyName','FPcaXSdoxiWIYvRKyifCiFCs'),(553,56,'CompanyAddress','vYsvyNazhOaFrCKKwvlhxQ'),(554,56,'email','ezajoruhor516@gmail.com'),(555,56,'Phone','3647986919'),(556,56,'PlaceOrder',''),(557,56,'PricingInfo',''),(558,56,'NeedFinancing',''),(559,56,'WeightlossProgams',''),(560,56,'BodySculpting',''),(561,57,'name','DDPTOJyEjeDQpEitoFBAqoEm'),(562,57,'CompanyName','FPcaXSdoxiWIYvRKyifCiFCs'),(563,57,'CompanyAddress','vYsvyNazhOaFrCKKwvlhxQ'),(564,57,'email','ezajoruhor516@gmail.com'),(565,57,'Phone','3647986919'),(566,57,'PlaceOrder',''),(567,57,'PricingInfo',''),(568,57,'NeedFinancing',''),(569,57,'WeightlossProgams',''),(570,57,'BodySculpting',''),(571,58,'name','DDPTOJyEjeDQpEitoFBAqoEm'),(572,58,'CompanyName','FPcaXSdoxiWIYvRKyifCiFCs'),(573,58,'CompanyAddress','vYsvyNazhOaFrCKKwvlhxQ'),(574,58,'email','ezajoruhor516@gmail.com'),(575,58,'Phone','3647986919'),(576,58,'PlaceOrder',''),(577,58,'PricingInfo',''),(578,58,'NeedFinancing',''),(579,58,'WeightlossProgams',''),(580,58,'BodySculpting',''),(581,59,'name','qSYTqwMGpNPmZxHcMsgq'),(582,59,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(583,59,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(584,59,'email','opacipara07@gmail.com'),(585,59,'Phone','2886961524'),(586,59,'PlaceOrder',''),(587,59,'PricingInfo',''),(588,59,'NeedFinancing',''),(589,59,'WeightlossProgams',''),(590,59,'BodySculpting',''),(591,60,'name','qSYTqwMGpNPmZxHcMsgq'),(592,60,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(593,60,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(594,60,'email','opacipara07@gmail.com'),(595,60,'Phone','2886961524'),(596,60,'PlaceOrder',''),(597,60,'PricingInfo',''),(598,60,'NeedFinancing',''),(599,60,'WeightlossProgams',''),(600,60,'BodySculpting',''),(601,61,'name','qSYTqwMGpNPmZxHcMsgq'),(602,61,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(603,61,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(604,61,'email','opacipara07@gmail.com'),(605,61,'Phone','2886961524'),(606,61,'PlaceOrder',''),(607,61,'PricingInfo',''),(608,61,'NeedFinancing',''),(609,61,'WeightlossProgams',''),(610,61,'BodySculpting',''),(611,62,'name','qSYTqwMGpNPmZxHcMsgq'),(612,62,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(613,62,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(614,62,'email','opacipara07@gmail.com'),(615,62,'Phone','2286170035'),(616,62,'PlaceOrder',''),(617,62,'PricingInfo',''),(618,62,'NeedFinancing',''),(619,62,'WeightlossProgams',''),(620,62,'BodySculpting','No'),(621,63,'name','qSYTqwMGpNPmZxHcMsgq'),(622,63,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(623,63,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(624,63,'email','opacipara07@gmail.com'),(625,63,'Phone','2286170035'),(626,63,'PlaceOrder',''),(627,63,'PricingInfo',''),(628,63,'NeedFinancing',''),(629,63,'WeightlossProgams',''),(630,63,'BodySculpting','No'),(631,64,'name','qSYTqwMGpNPmZxHcMsgq'),(632,64,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(633,64,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(634,64,'email','opacipara07@gmail.com'),(635,64,'Phone','2286170035'),(636,64,'PlaceOrder',''),(637,64,'PricingInfo',''),(638,64,'NeedFinancing',''),(639,64,'WeightlossProgams',''),(640,64,'BodySculpting','No'),(641,65,'name','qSYTqwMGpNPmZxHcMsgq'),(642,65,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(643,65,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(644,65,'email','opacipara07@gmail.com'),(645,65,'Phone','3118914594'),(646,65,'PlaceOrder',''),(647,65,'PricingInfo',''),(648,65,'NeedFinancing',''),(649,65,'WeightlossProgams',''),(650,65,'BodySculpting','Yes, No'),(651,66,'name','qSYTqwMGpNPmZxHcMsgq'),(652,66,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(653,66,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(654,66,'email','opacipara07@gmail.com'),(655,66,'Phone','3118914594'),(656,66,'PlaceOrder',''),(657,66,'PricingInfo',''),(658,66,'NeedFinancing',''),(659,66,'WeightlossProgams',''),(660,66,'BodySculpting','Yes, No'),(661,67,'name','qSYTqwMGpNPmZxHcMsgq'),(662,67,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(663,67,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(664,67,'email','opacipara07@gmail.com'),(665,67,'Phone','3118914594'),(666,67,'PlaceOrder',''),(667,67,'PricingInfo',''),(668,67,'NeedFinancing',''),(669,67,'WeightlossProgams',''),(670,67,'BodySculpting','Yes, No'),(671,68,'name','qSYTqwMGpNPmZxHcMsgq'),(672,68,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(673,68,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(674,68,'email','opacipara07@gmail.com'),(675,68,'Phone','7483902231'),(676,68,'PlaceOrder',''),(677,68,'PricingInfo',''),(678,68,'NeedFinancing',''),(679,68,'WeightlossProgams','No'),(680,68,'BodySculpting','Yes, No'),(681,69,'name','qSYTqwMGpNPmZxHcMsgq'),(682,69,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(683,69,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(684,69,'email','opacipara07@gmail.com'),(685,69,'Phone','7483902231'),(686,69,'PlaceOrder',''),(687,69,'PricingInfo',''),(688,69,'NeedFinancing',''),(689,69,'WeightlossProgams','No'),(690,69,'BodySculpting','Yes, No'),(691,70,'name','qSYTqwMGpNPmZxHcMsgq'),(692,70,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(693,70,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(694,70,'email','opacipara07@gmail.com'),(695,70,'Phone','7483902231'),(696,70,'PlaceOrder',''),(697,70,'PricingInfo',''),(698,70,'NeedFinancing',''),(699,70,'WeightlossProgams','No'),(700,70,'BodySculpting','Yes, No'),(701,71,'name','qSYTqwMGpNPmZxHcMsgq'),(702,71,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(703,71,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(704,71,'email','opacipara07@gmail.com'),(705,71,'Phone','7644333730'),(706,71,'PlaceOrder',''),(707,71,'PricingInfo',''),(708,71,'NeedFinancing',''),(709,71,'WeightlossProgams','No'),(710,71,'BodySculpting','Yes, No'),(711,72,'name','qSYTqwMGpNPmZxHcMsgq'),(712,72,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(713,72,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(714,72,'email','opacipara07@gmail.com'),(715,72,'Phone','7644333730'),(716,72,'PlaceOrder',''),(717,72,'PricingInfo',''),(718,72,'NeedFinancing',''),(719,72,'WeightlossProgams','No'),(720,72,'BodySculpting','Yes, No'),(721,73,'name','qSYTqwMGpNPmZxHcMsgq'),(722,73,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(723,73,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(724,73,'email','opacipara07@gmail.com'),(725,73,'Phone','7644333730'),(726,73,'PlaceOrder',''),(727,73,'PricingInfo',''),(728,73,'NeedFinancing',''),(729,73,'WeightlossProgams','No'),(730,73,'BodySculpting','Yes, No'),(731,74,'name','qSYTqwMGpNPmZxHcMsgq'),(732,74,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(733,74,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(734,74,'email','opacipara07@gmail.com'),(735,74,'Phone','5409545540'),(736,74,'PlaceOrder',''),(737,74,'PricingInfo',''),(738,74,'NeedFinancing',''),(739,74,'WeightlossProgams','Yes, No'),(740,74,'BodySculpting','Yes, No'),(741,75,'name','qSYTqwMGpNPmZxHcMsgq'),(742,75,'CompanyName','KpXAtiDAdITcPKVLcaxWRQ'),(743,75,'CompanyAddress','pXtYSPvzfCcwxADdJuEf'),(744,75,'email','opacipara07@gmail.com'),(745,75,'Phone','5409545540'),(746,75,'PlaceOrder',''),(747,75,'PricingInfo',''),(748,75,'NeedFinancing',''),(749,75,'WeightlossProgams','Yes, No'),(750,75,'BodySculpting','Yes, No'),(751,76,'name','iGXZWFfnefIpXqYUT'),(752,76,'CompanyName','PDsnQnhRSKkOJyYsjsTK'),(753,76,'CompanyAddress','BLqbvXrffBjHYwtnsjFzKdmP'),(754,76,'email','ikoligiye879@gmail.com'),(755,76,'Phone','8860787541'),(756,76,'PlaceOrder',''),(757,76,'PricingInfo',''),(758,76,'NeedFinancing',''),(759,76,'WeightlossProgams',''),(760,76,'BodySculpting',''),(761,77,'name','iGXZWFfnefIpXqYUT'),(762,77,'CompanyName','PDsnQnhRSKkOJyYsjsTK'),(763,77,'CompanyAddress','BLqbvXrffBjHYwtnsjFzKdmP'),(764,77,'email','ikoligiye879@gmail.com'),(765,77,'Phone','8860787541'),(766,77,'PlaceOrder',''),(767,77,'PricingInfo',''),(768,77,'NeedFinancing',''),(769,77,'WeightlossProgams',''),(770,77,'BodySculpting',''),(771,78,'name','iGXZWFfnefIpXqYUT'),(772,78,'CompanyName','PDsnQnhRSKkOJyYsjsTK'),(773,78,'CompanyAddress','BLqbvXrffBjHYwtnsjFzKdmP'),(774,78,'email','ikoligiye879@gmail.com'),(775,78,'Phone','6710224146'),(776,78,'PlaceOrder',''),(777,78,'PricingInfo',''),(778,78,'NeedFinancing',''),(779,78,'WeightlossProgams',''),(780,78,'BodySculpting','No'),(781,79,'name','iGXZWFfnefIpXqYUT'),(782,79,'CompanyName','PDsnQnhRSKkOJyYsjsTK'),(783,79,'CompanyAddress','BLqbvXrffBjHYwtnsjFzKdmP'),(784,79,'email','ikoligiye879@gmail.com'),(785,79,'Phone','6710224146'),(786,79,'PlaceOrder',''),(787,79,'PricingInfo',''),(788,79,'NeedFinancing',''),(789,79,'WeightlossProgams',''),(790,79,'BodySculpting','No'),(791,80,'name','iGXZWFfnefIpXqYUT'),(792,80,'CompanyName','PDsnQnhRSKkOJyYsjsTK'),(793,80,'CompanyAddress','BLqbvXrffBjHYwtnsjFzKdmP'),(794,80,'email','ikoligiye879@gmail.com'),(795,80,'Phone','6710224146'),(796,80,'PlaceOrder',''),(797,80,'PricingInfo',''),(798,80,'NeedFinancing',''),(799,80,'WeightlossProgams',''),(800,80,'BodySculpting','No'),(801,81,'name','cQDzmAGsRZwWPDrvSwTZ'),(802,81,'CompanyName','QFLacZVopxrrmbNZ'),(803,81,'CompanyAddress','FcQrmvSkAwXUMYZu'),(804,81,'email','teticaray145@gmail.com'),(805,81,'Phone','4382415618'),(806,81,'PlaceOrder',''),(807,81,'PricingInfo',''),(808,81,'NeedFinancing',''),(809,81,'WeightlossProgams',''),(810,81,'BodySculpting','No'),(811,82,'name','cQDzmAGsRZwWPDrvSwTZ'),(812,82,'CompanyName','QFLacZVopxrrmbNZ'),(813,82,'CompanyAddress','FcQrmvSkAwXUMYZu'),(814,82,'email','teticaray145@gmail.com'),(815,82,'Phone','4382415618'),(816,82,'PlaceOrder',''),(817,82,'PricingInfo',''),(818,82,'NeedFinancing',''),(819,82,'WeightlossProgams',''),(820,82,'BodySculpting','No'),(821,83,'name','cQDzmAGsRZwWPDrvSwTZ'),(822,83,'CompanyName','QFLacZVopxrrmbNZ'),(823,83,'CompanyAddress','FcQrmvSkAwXUMYZu'),(824,83,'email','teticaray145@gmail.com'),(825,83,'Phone','4382415618'),(826,83,'PlaceOrder',''),(827,83,'PricingInfo',''),(828,83,'NeedFinancing',''),(829,83,'WeightlossProgams',''),(830,83,'BodySculpting','No'),(831,84,'name','cQDzmAGsRZwWPDrvSwTZ'),(832,84,'CompanyName','QFLacZVopxrrmbNZ'),(833,84,'CompanyAddress','FcQrmvSkAwXUMYZu'),(834,84,'email','teticaray145@gmail.com'),(835,84,'Phone','6341390227'),(836,84,'PlaceOrder',''),(837,84,'PricingInfo',''),(838,84,'NeedFinancing',''),(839,84,'WeightlossProgams',''),(840,84,'BodySculpting','Yes, No'),(841,85,'name','cQDzmAGsRZwWPDrvSwTZ'),(842,85,'CompanyName','QFLacZVopxrrmbNZ'),(843,85,'CompanyAddress','FcQrmvSkAwXUMYZu'),(844,85,'email','teticaray145@gmail.com'),(845,85,'Phone','6341390227'),(846,85,'PlaceOrder',''),(847,85,'PricingInfo',''),(848,85,'NeedFinancing',''),(849,85,'WeightlossProgams',''),(850,85,'BodySculpting','Yes, No'),(851,86,'name','cQDzmAGsRZwWPDrvSwTZ'),(852,86,'CompanyName','QFLacZVopxrrmbNZ'),(853,86,'CompanyAddress','FcQrmvSkAwXUMYZu'),(854,86,'email','teticaray145@gmail.com'),(855,86,'Phone','6341390227'),(856,86,'PlaceOrder',''),(857,86,'PricingInfo',''),(858,86,'NeedFinancing',''),(859,86,'WeightlossProgams',''),(860,86,'BodySculpting','Yes, No'),(861,87,'name','cQDzmAGsRZwWPDrvSwTZ'),(862,87,'CompanyName','QFLacZVopxrrmbNZ'),(863,87,'CompanyAddress','FcQrmvSkAwXUMYZu'),(864,87,'email','teticaray145@gmail.com'),(865,87,'Phone','3692186742'),(866,87,'PlaceOrder',''),(867,87,'PricingInfo',''),(868,87,'NeedFinancing',''),(869,87,'WeightlossProgams',''),(870,87,'BodySculpting','Yes, No'),(871,88,'name','cQDzmAGsRZwWPDrvSwTZ'),(872,88,'CompanyName','QFLacZVopxrrmbNZ'),(873,88,'CompanyAddress','FcQrmvSkAwXUMYZu'),(874,88,'email','teticaray145@gmail.com'),(875,88,'Phone','3692186742'),(876,88,'PlaceOrder',''),(877,88,'PricingInfo',''),(878,88,'NeedFinancing',''),(879,88,'WeightlossProgams','No'),(880,88,'BodySculpting','Yes, No'),(881,89,'name','cQDzmAGsRZwWPDrvSwTZ'),(882,89,'CompanyName','QFLacZVopxrrmbNZ'),(883,89,'CompanyAddress','FcQrmvSkAwXUMYZu'),(884,89,'email','teticaray145@gmail.com'),(885,89,'Phone','3692186742'),(886,89,'PlaceOrder',''),(887,89,'PricingInfo',''),(888,89,'NeedFinancing',''),(889,89,'WeightlossProgams','No'),(890,89,'BodySculpting','Yes, No'),(891,90,'name','cQDzmAGsRZwWPDrvSwTZ'),(892,90,'CompanyName','QFLacZVopxrrmbNZ'),(893,90,'CompanyAddress','FcQrmvSkAwXUMYZu'),(894,90,'email','teticaray145@gmail.com'),(895,90,'Phone','2705194054'),(896,90,'PlaceOrder',''),(897,90,'PricingInfo',''),(898,90,'NeedFinancing',''),(899,90,'WeightlossProgams','No'),(900,90,'BodySculpting','Yes, No'),(901,91,'name','cQDzmAGsRZwWPDrvSwTZ'),(902,91,'CompanyName','QFLacZVopxrrmbNZ'),(903,91,'CompanyAddress','FcQrmvSkAwXUMYZu'),(904,91,'email','teticaray145@gmail.com'),(905,91,'Phone','2705194054'),(906,91,'PlaceOrder',''),(907,91,'PricingInfo',''),(908,91,'NeedFinancing',''),(909,91,'WeightlossProgams','No'),(910,91,'BodySculpting','Yes, No'); /*!40000 ALTER TABLE `wp_e_submissions_values` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_layerslider` -- DROP TABLE IF EXISTS `wp_layerslider`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_layerslider` ( `id` int(11) NOT NULL AUTO_INCREMENT, `group_id` int(11) DEFAULT NULL, `author` int(11) NOT NULL DEFAULT 0, `name` varchar(100) DEFAULT '', `slug` varchar(100) DEFAULT '', `data` mediumtext NOT NULL, `date_c` int(11) NOT NULL, `date_m` int(11) NOT NULL, `schedule_start` int(11) NOT NULL DEFAULT 0, `schedule_end` int(11) NOT NULL DEFAULT 0, `flag_hidden` tinyint(1) NOT NULL DEFAULT 0, `flag_deleted` tinyint(1) NOT NULL DEFAULT 0, `flag_popup` tinyint(1) NOT NULL DEFAULT 0, `flag_group` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_layerslider` -- LOCK TABLES `wp_layerslider` WRITE; /*!40000 ALTER TABLE `wp_layerslider` DISABLE KEYS */; INSERT INTO `wp_layerslider` VALUES (1,NULL,1,'Enfold Reimagined','','{\"properties\":{\"title\":\"Enfold Reimagined\",\"slug\":\"\",\"sliderVersion\":\"6.10.0\",\"status\":true,\"schedule_start\":\"\",\"schedule_end\":\"\",\"type\":\"responsive\",\"width\":1410,\"height\":850,\"maxwidth\":\"\",\"responsiveunder\":\"1410\",\"fullSizeMode\":\"normal\",\"fitScreenWidth\":true,\"maxRatio\":\"\",\"insertMethod\":\"prependTo\",\"insertSelector\":\"\",\"clipSlideTransition\":\"disabled\",\"preventSliderClip\":true,\"hideunder\":\"0\",\"hideover\":\"100000\",\"slideOnSwipe\":true,\"optimizeForMobile\":true,\"firstlayer\":\"1\",\"autostart\":true,\"startinviewport\":true,\"pauseonhover\":\"disabled\",\"keybnav\":true,\"touchnav\":true,\"playByScrollSpeed\":\"1\",\"loops\":\"0\",\"forceloopnum\":true,\"skin\":\"fullwidth\",\"sliderfadeinduration\":\"350\",\"sliderclass\":\"\",\"sliderstyle\":\"margin-bottom: 0px;\",\"backgroundcolor\":\"\",\"backgroundimageId\":\"\",\"backgroundimage\":\"\",\"globalBGRepeat\":\"no-repeat\",\"globalBGAttachment\":\"scroll\",\"globalBGPosition\":\"50% 50%\",\"globalBGSize\":\"auto\",\"navprevnext\":true,\"navstartstop\":true,\"navbuttons\":true,\"hoverprevnext\":true,\"thumb_nav\":\"hover\",\"thumb_container_width\":\"60%\",\"thumb_width\":\"100\",\"thumb_height\":\"60\",\"thumb_active_opacity\":\"35\",\"thumb_inactive_opacity\":\"100\",\"autoplayvideos\":true,\"rememberUnmuteState\":true,\"autopauseslideshow\":\"auto\",\"youtubepreview\":\"maxresdefault.jpg\",\"popupPositionHorizontal\":\"center\",\"popupPositionVertical\":\"middle\",\"popupWidth\":\"640\",\"popupHeight\":\"360\",\"popupDistanceLeft\":\"10\",\"popupDistanceRight\":\"10\",\"popupDistanceTop\":\"10\",\"popupDistanceBottom\":\"10\",\"popupShowOnTimeout\":\"\",\"popupShowOnIdle\":\"\",\"popupShowOnScroll\":\"\",\"popupShowOnClick\":\"\",\"popupCloseOnTimeout\":\"\",\"popupCloseOnScroll\":\"\",\"popup_repeat\":true,\"popup_repeat_days\":\"\",\"popupShowOnce\":true,\"popup_pages_custom\":\"\",\"popup_pages_exclude\":\"\",\"popup_roles_administrator\":true,\"popup_roles_editor\":true,\"popup_roles_author\":true,\"popup_roles_contributor\":true,\"popup_roles_subscriber\":true,\"popup_roles_customer\":true,\"popup_roles_visitor\":true,\"popupTransitionIn\":\"fade\",\"popupDurationIn\":\"1000\",\"popupDelayIn\":\"200\",\"popupTransitionOut\":\"fade\",\"popupDurationOut\":\"500\",\"popupResetOnClose\":\"slide\",\"popupShowCloseButton\":true,\"popupCloseButtonStyle\":\"\",\"popupOverlayClickToClose\":true,\"popupOverlayBackground\":\"rgba(0,0,0,.85)\",\"popupOverlayTransitionIn\":\"fade\",\"popupOverlayDurationIn\":\"400\",\"popupOverlayTransitionOut\":\"fade\",\"popupOverlayDurationOut\":\"400\",\"yourlogoId\":\"\",\"yourlogo\":\"\",\"yourlogostyle\":\"left: -10px; top: -10px;\",\"yourlogolink\":\"\",\"yourlogotarget\":\"_self\",\"slideBGSize\":\"auto\",\"slideBGPosition\":\"50% 50%\",\"parallaxSensitivity\":\"10\",\"parallaxCenterLayers\":\"center\",\"parallaxCenterDegree\":\"40\",\"forceLayersOutDuration\":\"750\",\"useSrcset\":true,\"preferBlendMode\":\"disabled\",\"previewId\":\"\",\"preview\":\"\",\"allowFullscreen\":false,\"responsive\":true,\"animatefirstlayer\":true,\"cbinit\":\"function(element) {\\r\\n\\r\\n}\",\"cbstart\":\"function(data) {\\r\\n\\r\\n}\",\"cbstop\":\"function(data) {\\r\\n\\r\\n}\",\"cbpause\":\"function(data) {\\r\\n\\r\\n}\",\"cbanimstart\":\"function(data) {\\r\\n\\r\\n}\",\"cbanimstop\":\"function(data) {\\r\\n\\r\\n}\",\"cbprev\":\"function(data) {\\r\\n\\r\\n}\",\"cbnext\":\"function(data) {\\r\\n\\r\\n}\",\"circletimer\":false},\"layers\":[{\"properties\":{\"post_offset\":\"-1\",\"3d_transitions\":\"all\",\"2d_transitions\":\"\",\"custom_3d_transitions\":\"\",\"custom_2d_transitions\":\"\",\"backgroundId\":3199,\"background\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Background-scaled.jpg\",\"bgsize\":\"cover\",\"bgposition\":\"50% 50%\",\"bgcolor\":\"\",\"thumbnailId\":\"\",\"thumbnail\":\"\",\"slidedelay\":\"7000\",\"timeshift\":\"0\",\"transitionduration\":\"\",\"layer_link\":\"\",\"linkId\":\"\",\"linkName\":\"\",\"linkType\":\"\",\"layer_link_target\":\"_self\",\"layer_link_type\":\"over\",\"deeplink\":\"\",\"globalhover\":false,\"overflow\":false,\"kenburnszoom\":\"disabled\",\"kenburnsscale\":\"1.1\",\"kenburnsrotate\":\"\",\"parallaxtype\":\"2d\",\"parallaxevent\":\"cursor\",\"parallaxaxis\":\"both\",\"parallaxtransformorigin\":\"50% 50% 0\",\"parallaxdurationmove\":\"1500\",\"parallaxdurationleave\":\"1200\",\"parallaxdistance\":\"10\",\"parallaxrotate\":\"10\",\"parallaxtransformperspective\":\"500\",\"skip\":false,\"id\":\"\",\"backgroundThumb\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Background-300x148.jpg\",\"thumbnailThumb\":\"\",\"post_content\":false,\"customProperties\":[]},\"sublayers\":[{\"subtitle\":\"big img\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"000\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"800\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeOutBack\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"6\\\\\\\",\\\\\\\"parallax\\\\\\\":true}\",\"styles\":\"{\\\\\\\"top\\\\\\\":\\\\\\\"-120px\\\\\\\",\\\\\\\"left\\\\\\\":\\\\\\\"-506px\\\\\\\",\\\\\\\"wordwrap\\\\\\\":false}\",\"media\":\"img\",\"type\":\"p\",\"imageId\":3199,\"image\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Background-scaled.jpg\",\"html\":\"\",\"post_text_length\":\"\",\"url\":\"\",\"target\":\"_self\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"style\":\"\",\"imageThumb\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Background-300x148.jpg\",\"skip\":false,\"innerAttributes\":[],\"outerAttributes\":[],\"hasTransforms\":false,\"meta\":[],\"locked\":false,\"linkId\":\"\",\"linkName\":\"\",\"linkType\":\"\",\"uuid\":\"2b74120e-1b3d-4aa0-b909-bafa1a5bec23\",\"hide_on_tablet\":false,\"hide_on_desktop\":true,\"hide_on_phone\":true},{\"subtitle\":\"swing\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"-500\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"800\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"swing\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"slidertop\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"-80\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"3\\\\\\\",\\\\\\\"parallax\\\\\\\":true,\\\\\\\"texttransitionin\\\\\\\":false}\",\"styles\":\"{\\\\\\\"font-size\\\\\\\":\\\\\\\"27px\\\\\\\",\\\\\\\"top\\\\\\\":\\\\\\\"1px\\\\\\\",\\\\\\\"left\\\\\\\":\\\\\\\"-165px\\\\\\\",\\\\\\\"wordwrap\\\\\\\":false,\\\\\\\"width\\\\\\\":\\\\\\\"1719px\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"849px\\\\\\\",\\\\\\\"line-height\\\\\\\":\\\\\\\"29px\\\\\\\"}\",\"media\":\"img\",\"type\":\"p\",\"imageId\":3200,\"image\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Swing.png\",\"html\":\"\",\"post_text_length\":\"\",\"url\":\"\",\"target\":\"_self\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"style\":\"\",\"imageThumb\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Swing-300x148.png\",\"skip\":false,\"innerAttributes\":[],\"outerAttributes\":[],\"hasTransforms\":false,\"meta\":[],\"locked\":false,\"linkId\":\"\",\"linkName\":\"\",\"linkType\":\"\",\"uuid\":\"8c02bf40-092b-40bd-b5c1-5daf09df5202\"},{\"subtitle\":\"overlay\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"500\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"0\\\\\\\"}\",\"styles\":\"{\\\\\\\"width\\\\\\\":\\\\\\\"300%\\\\\\\",\\\\\\\"height\\\\\\\":\\\\\\\"100%\\\\\\\",\\\\\\\"top\\\\\\\":\\\\\\\"0px\\\\\\\",\\\\\\\"left\\\\\\\":\\\\\\\"-800px\\\\\\\",\\\\\\\"wordwrap\\\\\\\":false,\\\\\\\"background-color\\\\\\\":\\\\\\\"rgba(0, 0, 0, 0.6)\\\\\\\"}\",\"media\":\"html\",\"type\":\"p\",\"imageId\":\"\",\"image\":\"\",\"html\":\"\",\"post_text_length\":\"\",\"url\":\"\",\"target\":\"_self\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"style\":\"\",\"locked\":false,\"skip\":false,\"innerAttributes\":[],\"outerAttributes\":[],\"hasTransforms\":false,\"meta\":[],\"linkId\":\"\",\"linkName\":\"\",\"linkType\":\"\",\"uuid\":\"e53968ef-d32c-4de7-845f-7bd685ea52b7\"},{\"subtitle\":\"For Beauty, Wellness & Pain Management\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"2500\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutBack\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"-90\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"0% 0% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"10\\\\\\\",\\\\\\\"parallax\\\\\\\":true,\\\\\\\"texttransitionin\\\\\\\":false}\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Verdana\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"23px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"rgba(255, 255, 255, 0.6)\\\\\\\",\\\\\\\"top\\\\\\\":\\\\\\\"457px\\\\\\\",\\\\\\\"left\\\\\\\":\\\\\\\"325px\\\\\\\",\\\\\\\"wordwrap\\\\\\\":false,\\\\\\\"line-height\\\\\\\":\\\\\\\"25px\\\\\\\"}\",\"media\":\"text\",\"type\":\"h1\",\"imageId\":\"\",\"image\":\"\",\"html\":\"A business opportunity with a very bright future\",\"post_text_length\":\"\",\"url\":\"\",\"target\":\"_self\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"style\":\"text-transform:uppercase;\",\"innerAttributes\":[],\"outerAttributes\":[],\"hasTransforms\":false,\"meta\":[],\"locked\":false,\"linkId\":\"\",\"linkName\":\"\",\"linkType\":\"\",\"uuid\":\"d12a4ee8-14f4-4630-8a3d-354614de647e\",\"skip\":false},{\"subtitle\":\"Red Light Therapy\",\"transition\":\"{\\\\\\\"offsetxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationin\\\\\\\":\\\\\\\"1500\\\\\\\",\\\\\\\"delayin\\\\\\\":\\\\\\\"900\\\\\\\",\\\\\\\"easingin\\\\\\\":\\\\\\\"easeInOutBack\\\\\\\",\\\\\\\"fadein\\\\\\\":true,\\\\\\\"rotatein\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyin\\\\\\\":\\\\\\\"90\\\\\\\",\\\\\\\"transformoriginin\\\\\\\":\\\\\\\"0% 50% 0\\\\\\\",\\\\\\\"skewxin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyin\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyin\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"offsetxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"offsetyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"durationout\\\\\\\":\\\\\\\"400\\\\\\\",\\\\\\\"showuntil\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"easingout\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"fadeout\\\\\\\":true,\\\\\\\"rotateout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotatexout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"rotateyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"transformoriginout\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"skewxout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"skewyout\\\\\\\":\\\\\\\"0\\\\\\\",\\\\\\\"scalexout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"scaleyout\\\\\\\":\\\\\\\"1\\\\\\\",\\\\\\\"parallaxlevel\\\\\\\":\\\\\\\"10\\\\\\\",\\\\\\\"parallax\\\\\\\":true,\\\\\\\"texttypein\\\\\\\":\\\\\\\"chars_asc\\\\\\\",\\\\\\\"textoffsetxin\\\\\\\":0,\\\\\\\"textoffsetyin\\\\\\\":0,\\\\\\\"textscalexin\\\\\\\":1,\\\\\\\"textscaleyin\\\\\\\":1,\\\\\\\"textrotatein\\\\\\\":0,\\\\\\\"textrotatexin\\\\\\\":0,\\\\\\\"textrotateyin\\\\\\\":0,\\\\\\\"textskewxin\\\\\\\":0,\\\\\\\"textskewyin\\\\\\\":0,\\\\\\\"textstartatin\\\\\\\":\\\\\\\"transitioninend\\\\\\\",\\\\\\\"textstartatintiming\\\\\\\":\\\\\\\"transitioninend\\\\\\\",\\\\\\\"textstartatinoperator\\\\\\\":\\\\\\\"+\\\\\\\",\\\\\\\"textstartatinvalue\\\\\\\":0,\\\\\\\"textdurationin\\\\\\\":1000,\\\\\\\"textshiftin\\\\\\\":50,\\\\\\\"texteasingin\\\\\\\":\\\\\\\"easeInOutQuint\\\\\\\",\\\\\\\"texttransformoriginin\\\\\\\":\\\\\\\"50% 50% 0\\\\\\\",\\\\\\\"texttransformperspectivein\\\\\\\":500,\\\\\\\"textfadein\\\\\\\":true,\\\\\\\"texttransitionin\\\\\\\":true}\",\"styles\":\"{\\\\\\\"font-family\\\\\\\":\\\\\\\"Playfair\\\\\\\",\\\\\\\"font-size\\\\\\\":\\\\\\\"91px\\\\\\\",\\\\\\\"color\\\\\\\":\\\\\\\"rgba(255, 255, 255, 0.8)\\\\\\\",\\\\\\\"top\\\\\\\":\\\\\\\"341px\\\\\\\",\\\\\\\"left\\\\\\\":\\\\\\\"216px\\\\\\\",\\\\\\\"wordwrap\\\\\\\":false,\\\\\\\"line-height\\\\\\\":\\\\\\\"100px\\\\\\\"}\",\"media\":\"text\",\"type\":\"h5\",\"imageId\":\"\",\"image\":\"\",\"html\":\"RED LIGHT THERAPY\",\"post_text_length\":\"\",\"url\":\"\",\"target\":\"_self\",\"id\":\"\",\"class\":\"\",\"title\":\"\",\"alt\":\"\",\"rel\":\"\",\"style\":\"font-weight:bold; \",\"innerAttributes\":[],\"outerAttributes\":[],\"hasTransforms\":false,\"meta\":[],\"locked\":false,\"linkId\":\"\",\"linkName\":\"\",\"linkType\":\"\",\"uuid\":\"818af5ac-92b8-4f49-adea-809d1f1ef5d9\",\"skip\":false}],\"meta\":{\"activeLayers\":[1],\"undoStackIndex\":50},\"history\":[{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"texteasingin\":\"swing\"},\"redo\":{\"texteasingin\":\"easeInQuad\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"texttypein\":\"chars_asc\"},\"redo\":{\"texttypein\":\"lines_desc\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"texttypein\":\"lines_desc\"},\"redo\":{\"texttypein\":\"words_desc\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"texttypein\":\"words_desc\"},\"redo\":{\"texttypein\":\"chars_desc\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"texttransitionin\":true},\"redo\":{\"texttransitionin\":false}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"texttransitionin\":\"\"},\"redo\":{\"texttransitionin\":true}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"font-family\":\"Arial\"},\"redo\":{\"font-family\":\"Raleway\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"font-family\":\"Raleway\"},\"redo\":{\"font-family\":\"Playfair\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"texttransitionin\":true},\"redo\":{\"texttransitionin\":false}}]},{\"cmd\":\"layer.order\",\"name\":\"Sort layers\",\"updateInfo\":{\"itemIndex\":null,\"undo\":{\"from\":0,\"to\":1},\"redo\":{\"from\":1,\"to\":0}}},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"easingin\":\"swing\"},\"redo\":{\"easingin\":\"easeInOutQuint\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"easingin\":\"easeInOutQuint\"},\"redo\":{\"easingin\":\"easeInQuad\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"texttypein\":\"chars_asc\"},\"redo\":{\"texttypein\":\"words_edge\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"texttypein\":\"words_edge\"},\"redo\":{\"texttypein\":\"chars_asc\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"delayin\":\"1300\"},\"redo\":{\"delayin\":\"1100\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"delayin\":\"2200\"},\"redo\":{\"delayin\":\"2500\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"transformoriginin\":\"50% 50% 0\"},\"redo\":{\"transformoriginin\":\"top\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"delayin\":\"1100\"},\"redo\":{\"delayin\":\"900\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"transformoriginin\":\"top\"},\"redo\":{\"transformoriginin\":\"20% 70% 0\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"transformoriginin\":\"20% 70% 0\"},\"redo\":{\"transformoriginin\":\"slidertop\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"offsetyin\":\"500\"},\"redo\":{\"offsetyin\":\"-500\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"easingin\":\"easeInQuad\"},\"redo\":{\"easingin\":\"swing\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"left\":\"448px\",\"top\":\"488px\"},\"redo\":{\"left\":\"448px\",\"top\":\"456px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"left\":\"448px\",\"top\":\"456px\"},\"redo\":{\"left\":\"448px\",\"top\":\"461px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"font-family\":\"Arial\"},\"redo\":{\"font-family\":\"Helvetica\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"font-family\":\"Helvetica\"},\"redo\":{\"font-family\":\"Verdana\"}}]},{\"cmd\":\"layer.general\",\"name\":\"Layer settings\",\"updateInfo\":[]},{\"cmd\":\"layer.style\",\"name\":\"Layer resize\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"top\":\"356px\",\"left\":\"260px\",\"font-size\":\"91px\",\"line-height\":\"100px\"},\"redo\":{\"top\":\"356px\",\"left\":\"260px\",\"font-size\":\"91px\",\"line-height\":\"100px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"left\":\"260px\",\"top\":\"356px\"},\"redo\":{\"left\":\"226px\",\"top\":\"330px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"left\":\"225.9876109935619px\",\"top\":\"330.0000226056134px\"},\"redo\":{\"left\":\"226px\",\"top\":\"361px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"left\":\"224.9999717429832px\",\"top\":\"359.99998869719326px\"},\"redo\":{\"left\":\"219px\",\"top\":\"361px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"left\":\"447.9938365794994px\",\"top\":\"460.98762794777195px\"},\"redo\":{\"left\":\"402px\",\"top\":\"461px\"}}]},{\"cmd\":\"layer.transition\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":3,\"undo\":{\"durationin\":\"1000\"},\"redo\":{\"durationin\":\"500\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"color\":\"rgba(255, 255, 255, 0.6)\"},\"redo\":{\"color\":\"rgba(255, 255, 255, 0.4)\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"color\":\"rgba(255, 255, 255, 0.4)\"},\"redo\":{\"color\":\"rgba(255, 255, 255, 0.7)\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"background-color\":\"\"},\"redo\":{\"background-color\":\"\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"background-color\":\"\"},\"redo\":{\"background-color\":\"\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"color\":\"#ffffff\"},\"redo\":{\"color\":\"rgba(255, 255, 255, 0.5)\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"color\":\"rgba(255, 255, 255, 0.5)\"},\"redo\":{\"color\":\"rgba(255, 255, 255, 0.6)\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"color\":\"rgba(255, 255, 255, 0.7)\"},\"redo\":{\"color\":\"rgba(255, 255, 255, 0.8)\"}}]},{\"cmd\":\"layer.general\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"html\":\"For Beauty, Wellness & Pain Management\"},\"redo\":{\"html\":\"Enhancing your health and your world\"}}]},{\"cmd\":\"layer.general\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"html\":\"Enhancing your health and your world\"},\"redo\":{\"html\":\"A business opportunity with a very bright future. \"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"left\":\"402.0000097302423px\",\"top\":\"460.99999823086506px\"},\"redo\":{\"left\":\"343px\",\"top\":\"461px\"}}]},{\"cmd\":\"layer.general\",\"name\":\"Layer settings\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"html\":\"A business opportunity with a very bright future. \"},\"redo\":{\"html\":\"A business opportunity with a very bright future\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Align layer(s)\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"left\":\"343px\"},\"redo\":{\"left\":\"50%\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Align layer(s)\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"top\":\"361px\"},\"redo\":{\"top\":\"50%\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Align layer(s)\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"left\":\"219px\"},\"redo\":{\"left\":\"50%\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":0,\"undo\":{\"left\":\"216.00000088456747px\",\"top\":\"375.00004599750906px\"},\"redo\":{\"left\":\"216px\",\"top\":\"341px\"}}]},{\"cmd\":\"layer.style\",\"name\":\"Layer position\",\"updateInfo\":[{\"itemIndex\":1,\"undo\":{\"left\":\"325.4999946925951px\",\"top\":\"460.99999823086506px\"},\"redo\":{\"left\":\"325px\",\"top\":\"457px\"}}]}]}]}',1589341213,1590372416,0,0,0,0,0,0); /*!40000 ALTER TABLE `wp_layerslider` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_layerslider_revisions` -- DROP TABLE IF EXISTS `wp_layerslider_revisions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_layerslider_revisions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `slider_id` int(11) NOT NULL, `author` int(11) NOT NULL DEFAULT 0, `data` mediumtext NOT NULL, `date_c` int(11) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_layerslider_revisions` -- LOCK TABLES `wp_layerslider_revisions` WRITE; /*!40000 ALTER TABLE `wp_layerslider_revisions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_layerslider_revisions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_links` -- DROP TABLE IF EXISTS `wp_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_links` ( `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `link_url` varchar(255) NOT NULL DEFAULT '', `link_name` varchar(255) NOT NULL DEFAULT '', `link_image` varchar(255) NOT NULL DEFAULT '', `link_target` varchar(25) NOT NULL DEFAULT '', `link_description` varchar(255) NOT NULL DEFAULT '', `link_visible` varchar(20) NOT NULL DEFAULT 'Y', `link_owner` bigint(20) unsigned NOT NULL DEFAULT 1, `link_rating` int(11) NOT NULL DEFAULT 0, `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `link_rel` varchar(255) NOT NULL DEFAULT '', `link_notes` mediumtext NOT NULL, `link_rss` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`link_id`), KEY `link_visible` (`link_visible`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_links` -- LOCK TABLES `wp_links` WRITE; /*!40000 ALTER TABLE `wp_links` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_options` -- DROP TABLE IF EXISTS `wp_options`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_options` ( `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `option_name` varchar(191) NOT NULL DEFAULT '', `option_value` longtext NOT NULL, `autoload` varchar(20) NOT NULL DEFAULT 'yes', PRIMARY KEY (`option_id`), UNIQUE KEY `option_name` (`option_name`), KEY `autoload` (`autoload`) ) ENGINE=InnoDB AUTO_INCREMENT=285680 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_options` -- LOCK TABLES `wp_options` WRITE; /*!40000 ALTER TABLE `wp_options` DISABLE KEYS */; INSERT INTO `wp_options` VALUES (1,'siteurl','https://solsculpting.com','yes'),(2,'home','https://solsculpting.com','yes'),(3,'blogname','SolSculpting','yes'),(4,'blogdescription','Start a Red Light Therapy Business','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','hello@saramichelleds.com','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:4:{i:0;s:31:\"custom-css-js/custom-css-js.php\";i:1;s:33:\"page-lite-hdib/page-lite-hdib.php\";i:2;s:23:\"wp-compat/wp-compat.php\";i:3;s:39:\"wp-file-manager/file_folder_manager.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','https://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','a:5:{i:0;s:111:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1;s:88:\"/storage/v12552/solsculpting/public_html/wp-content/themes/hello-elementor/functions.php\";i:2;s:84:\"/storage/v12552/solsculpting/public_html/wp-content/themes/hello-elementor/style.css\";i:3;s:81:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/d5aaa79e/d5aaa79e.php\";i:5;s:94:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/all-in-one-wp-migration/loader.php\";}','no'),(40,'template','hello-elementor','yes'),(41,'stylesheet','hello-elementor','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','60717','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:4:{i:3;a:4:{s:5:\"title\";s:12:\"GET IN TOUCH\";s:4:\"text\";s:113:\"<a href=\"tel:702-553-3577\">(702) 553-3577</a>\r\n<a href=\"mailto:solsculpting@gmail.com\">SolSculpting@Gmail.com</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}i:4;a:3:{s:5:\"title\";s:16:\"Our Office Hours\";s:4:\"text\";s:45:\"Mo-Fr: 8:00-19:00\r\nSa: 8:00-14:00\r\nSo: closed\";s:6:\"filter\";b:1;}i:5;a:4:{s:5:\"title\";s:14:\"EASTERN REGION\";s:4:\"text\";s:87:\"Kim Johnson\r\n(772) 532-3435\r\n<a href=\"mailto:Kim@AvantiBody.com\">Kim@AvantiBody.com</a>\";s:6:\"filter\";b:1;s:6:\"visual\";b:1;}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:14:{s:45:\"gd-system-plugin/plugins/worker/functions.php\";s:13:\"mwp_uninstall\";s:25:\"sucuri-scanner/sucuri.php\";s:19:\"sucuriscanUninstall\";s:79:\"var/www/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:21:\"wp-reset/wp-reset.php\";a:2:{i:0;s:8:\"WP_Reset\";i:1;s:9:\"uninstall\";}s:28:\"wp-site-migrate/wpengine.php\";a:2:{i:0;s:11:\"WPEWPAction\";i:1;s:9:\"uninstall\";}s:99:\"nas/content/live/solvibrant/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:48:\"interactive-map-of-the-us-regions/usahtmlmap.php\";s:39:\"freeusregions_html5map_plugin_uninstall\";s:31:\"tracking-code-manager/index.php\";s:14:\"tcmp_uninstall\";s:101:\"nas/content/live/solsculpting/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:23:\"elementor/elementor.php\";a:2:{i:0;s:21:\"Elementor\\Maintenance\";i:1;s:9:\"uninstall\";}s:103:\"nas/content/live/solsculptinstg/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php\";s:29:\"layerslider_uninstall_scripts\";s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";a:2:{i:0;s:30:\"PremiumAddons\\Includes\\PA_Core\";i:1;s:9:\"uninstall\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:56:\"ReallySimplePlugins\\RSS\\Core\\Bootstrap\\Plugin::uninstall\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','3644','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1785366064','yes'),(94,'initial_db_version','47018','yes'),(95,'wp_user_roles','a:8:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:126:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:35:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:10:\"copy_posts\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:8:\"customer\";a:2:{s:4:\"name\";s:8:\"Customer\";s:12:\"capabilities\";a:1:{s:4:\"read\";b:1;}}s:12:\"shop_manager\";a:2:{s:4:\"name\";s:12:\"Shop manager\";s:12:\"capabilities\";a:92:{s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:4:\"read\";b:1;s:18:\"read_private_pages\";b:1;s:18:\"read_private_posts\";b:1;s:10:\"edit_posts\";b:1;s:10:\"edit_pages\";b:1;s:20:\"edit_published_posts\";b:1;s:20:\"edit_published_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"edit_private_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:17:\"edit_others_pages\";b:1;s:13:\"publish_posts\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_posts\";b:1;s:12:\"delete_pages\";b:1;s:20:\"delete_private_pages\";b:1;s:20:\"delete_private_posts\";b:1;s:22:\"delete_published_pages\";b:1;s:22:\"delete_published_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:19:\"delete_others_pages\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:17:\"moderate_comments\";b:1;s:12:\"upload_files\";b:1;s:6:\"export\";b:1;s:6:\"import\";b:1;s:10:\"list_users\";b:1;s:18:\"edit_theme_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;}}s:15:\"css_js_designer\";a:2:{s:4:\"name\";s:12:\"Web Designer\";s:12:\"capabilities\";a:10:{s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;}}}','yes'),(96,'gd_system_last_publish','1589563914','yes'),(97,'gd_system_first_publish','1589338348','yes'),(98,'fresh_site','0','off'),(99,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(102,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'sidebars_widgets','a:2:{s:19:\"wp_inactive_widgets\";a:12:{i:0;s:6:\"meta-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";i:6;s:8:\"search-3\";i:7;s:12:\"categories-3\";i:8;s:13:\"media_image-2\";i:9;s:6:\"text-3\";i:10;s:6:\"text-5\";i:11;s:6:\"text-4\";}s:13:\"array_version\";i:3;}','yes'),(109,'theme_mods_twentytwenty','a:1:{s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1589338349;s:4:\"data\";a:14:{s:19:\"wp_inactive_widgets\";a:0:{}s:13:\"av_everywhere\";a:0:{}s:7:\"av_blog\";a:4:{i:0;s:18:\"avia_socialcount-2\";i:1;s:9:\"newsbox-3\";i:2;s:12:\"categories-2\";i:3;s:10:\"archives-2\";}s:8:\"av_pages\";a:0:{}s:16:\"av_shop_overview\";a:5:{i:0;s:18:\"bbp_login_widget-2\";i:1;s:14:\"price_filter-2\";i:2;s:25:\"woocommerce_layered_nav-2\";i:3;s:25:\"woocommerce_layered_nav-3\";i:4;s:17:\"recent_products-2\";}s:14:\"av_shop_single\";a:0:{}s:11:\"av_footer_1\";a:2:{i:0;s:6:\"text-2\";i:1;s:18:\"avia_socialcount-3\";}s:11:\"av_footer_2\";a:1:{i:0;s:9:\"newsbox-2\";}s:11:\"av_footer_3\";a:2:{i:0;s:11:\"tag_cloud-2\";i:1;s:12:\"categories-3\";}s:11:\"av_footer_4\";a:1:{i:0;s:6:\"text-4\";}s:8:\"av_forum\";a:2:{i:0;s:9:\"newsbox-4\";i:1;s:10:\"archives-3\";}s:7:\"contact\";a:1:{i:0;s:18:\"avia_google_maps-2\";}s:7:\"headers\";a:1:{i:0;s:10:\"nav_menu-2\";}s:8:\"magazine\";a:3:{i:0;s:21:\"avia_partner_widget-2\";i:1;s:17:\"avia_fb_likebox-2\";i:2;s:19:\"avia_combo_widget-2\";}}}}','no'),(110,'current_theme','Hello Elementor','yes'),(111,'theme_mods_enfold','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:2:{s:5:\"avia3\";i:13;s:4:\"avia\";i:36;}s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1647136602;s:4:\"data\";a:10:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:6:\"meta-2\";i:1;s:10:\"archives-2\";i:2;s:8:\"search-2\";i:3;s:12:\"categories-2\";i:4;s:14:\"recent-posts-2\";i:5;s:17:\"recent-comments-2\";}s:13:\"av_everywhere\";a:0:{}s:7:\"av_blog\";a:4:{i:0;s:8:\"search-3\";i:1;s:14:\"portfoliobox-2\";i:2;s:12:\"categories-3\";i:3;s:17:\"avia_fb_likebox-2\";}s:8:\"av_pages\";a:0:{}s:16:\"av_shop_overview\";a:7:{i:0;s:21:\"avia_partner_widget-2\";i:1;s:26:\"woocommerce_price_filter-2\";i:2;s:33:\"woocommerce_layered_nav_filters-2\";i:3;s:25:\"woocommerce_layered_nav-2\";i:4;s:25:\"woocommerce_layered_nav-4\";i:5;s:25:\"woocommerce_layered_nav-3\";i:6;s:28:\"woocommerce_product_search-2\";}s:14:\"av_shop_single\";a:0:{}s:11:\"av_footer_1\";a:1:{i:0;s:13:\"media_image-2\";}s:11:\"av_footer_2\";a:2:{i:0;s:6:\"text-3\";i:1;s:17:\"avia_fb_likebox-3\";}s:11:\"av_footer_3\";a:1:{i:0;s:6:\"text-5\";}s:11:\"av_footer_4\";a:1:{i:0;s:6:\"text-4\";}}}}','no'),(112,'theme_switched','','yes'),(115,'coblocks_date_installed','2020-05-13 02:52:29','yes'),(116,'wpseo','a:122:{s:8:\"tracking\";b:0;s:16:\"toggled_tracking\";b:0;s:22:\"license_server_version\";i:2;s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:26:\"permalink_settings_changed\";s:29:\"indexables_indexing_completed\";b:1;s:13:\"index_now_key\";s:0:\"\";s:7:\"version\";s:4:\"26.9\";s:16:\"previous_version\";s:8:\"26.8-RC7\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:0;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:12:\"ahrefsverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:34:\"inclusive_language_analysis_active\";b:0;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:16:\"enable_index_now\";b:1;s:19:\"enable_ai_generator\";b:1;s:22:\"ai_enabled_pre_default\";b:0;s:22:\"show_onboarding_notice\";b:0;s:18:\"first_activated_on\";i:1588454087;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:12:\"/%postname%/\";s:8:\"home_url\";s:24:\"https://solsculpting.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:3:{s:22:\"elementor_library_type\";s:22:\"elementor_library_type\";s:26:\"elementor_library_category\";s:26:\"elementor_library_category\";s:19:\"elementor_font_type\";s:19:\"elementor_font_type\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:23:\"enable_metabox_insights\";b:1;s:23:\"enable_link_suggestions\";b:1;s:26:\"algolia_integration_active\";b:0;s:14:\"import_cursors\";a:0:{}s:13:\"workouts_data\";a:1:{s:13:\"configuration\";a:1:{s:13:\"finishedSteps\";a:0:{}}}s:28:\"configuration_finished_steps\";a:0:{}s:36:\"dismiss_configuration_workout_notice\";b:0;s:34:\"dismiss_premium_deactivated_notice\";b:0;s:19:\"importing_completed\";a:5:{s:30:\"aioseo_custom_archive_settings\";b:1;s:31:\"aioseo_default_archive_settings\";b:1;s:23:\"aioseo_general_settings\";b:1;s:32:\"aioseo_posttype_default_settings\";b:1;s:24:\"aioseo_taxonomy_settings\";b:1;}s:26:\"wincher_integration_active\";b:1;s:14:\"wincher_tokens\";a:0:{}s:36:\"wincher_automatically_add_keyphrases\";b:0;s:18:\"wincher_website_id\";s:0:\"\";s:18:\"first_time_install\";b:0;s:34:\"should_redirect_after_install_free\";b:0;s:34:\"activation_redirect_timestamp_free\";i:1652258756;s:18:\"remove_feed_global\";b:0;s:27:\"remove_feed_global_comments\";b:0;s:25:\"remove_feed_post_comments\";b:0;s:19:\"remove_feed_authors\";b:0;s:22:\"remove_feed_categories\";b:0;s:16:\"remove_feed_tags\";b:0;s:29:\"remove_feed_custom_taxonomies\";b:0;s:22:\"remove_feed_post_types\";b:0;s:18:\"remove_feed_search\";b:0;s:21:\"remove_atom_rdf_feeds\";b:0;s:17:\"remove_shortlinks\";b:0;s:21:\"remove_rest_api_links\";b:0;s:20:\"remove_rsd_wlw_links\";b:0;s:19:\"remove_oembed_links\";b:0;s:16:\"remove_generator\";b:0;s:20:\"remove_emoji_scripts\";b:0;s:24:\"remove_powered_by_header\";b:0;s:22:\"remove_pingback_header\";b:0;s:28:\"clean_campaign_tracking_urls\";b:0;s:16:\"clean_permalinks\";b:0;s:32:\"clean_permalinks_extra_variables\";s:0:\"\";s:14:\"search_cleanup\";b:0;s:20:\"search_cleanup_emoji\";b:0;s:23:\"search_cleanup_patterns\";b:0;s:22:\"search_character_limit\";i:50;s:20:\"deny_search_crawling\";b:0;s:21:\"deny_wp_json_crawling\";b:0;s:20:\"deny_adsbot_crawling\";b:0;s:19:\"deny_ccbot_crawling\";b:0;s:29:\"deny_google_extended_crawling\";b:0;s:20:\"deny_gptbot_crawling\";b:0;s:27:\"redirect_search_pretty_urls\";b:0;s:29:\"least_readability_ignore_list\";a:0:{}s:27:\"least_seo_score_ignore_list\";a:0:{}s:23:\"most_linked_ignore_list\";a:0:{}s:24:\"least_linked_ignore_list\";a:0:{}s:28:\"indexables_page_reading_list\";a:5:{i:0;b:0;i:1;b:0;i:2;b:0;i:3;b:0;i:4;b:0;}s:25:\"indexables_overview_state\";s:21:\"dashboard-not-visited\";s:28:\"last_known_public_post_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:28:\"last_known_public_taxonomies\";a:3:{i:0;s:8:\"category\";i:1;s:8:\"post_tag\";i:2;s:11:\"post_format\";}s:23:\"last_known_no_unindexed\";a:4:{s:40:\"wpseo_total_unindexed_post_type_archives\";i:1785080674;s:35:\"wpseo_total_unindexed_general_items\";i:1785080674;s:31:\"wpseo_unindexed_post_link_count\";i:1785080674;s:31:\"wpseo_unindexed_term_link_count\";i:1785080674;}s:14:\"new_post_types\";a:0:{}s:14:\"new_taxonomies\";a:0:{}s:34:\"show_new_content_type_notification\";b:0;s:44:\"site_kit_configuration_permanently_dismissed\";b:0;s:18:\"site_kit_connected\";b:0;s:37:\"site_kit_tracking_setup_widget_loaded\";s:2:\"no\";s:41:\"site_kit_tracking_first_interaction_stage\";s:0:\"\";s:40:\"site_kit_tracking_last_interaction_stage\";s:0:\"\";s:52:\"site_kit_tracking_setup_widget_temporarily_dismissed\";s:2:\"no\";s:52:\"site_kit_tracking_setup_widget_permanently_dismissed\";s:2:\"no\";s:31:\"google_site_kit_feature_enabled\";b:0;s:25:\"ai_free_sparks_started_on\";N;s:15:\"enable_llms_txt\";b:0;s:15:\"last_updated_on\";i:1770192991;s:17:\"default_seo_title\";a:5:{i:0;i:3814;i:1;i:3811;i:2;i:3809;i:3;i:3807;i:4;i:3777;}s:21:\"default_seo_meta_desc\";a:4:{i:0;i:3814;i:1;i:3811;i:2;i:3809;i:3;i:3777;}s:18:\"first_activated_by\";i:0;s:16:\"enable_task_list\";b:1;s:13:\"enable_schema\";b:1;}','yes'),(117,'wpseo_titles','a:192:{s:17:\"forcerewritetitle\";b:0;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:41:\"%%name%%, Author at %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:63:\"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:35:\"Page not found %%sep%% %%sitename%%\";s:25:\"social-title-author-wpseo\";s:8:\"%%name%%\";s:26:\"social-title-archive-wpseo\";s:8:\"%%date%%\";s:31:\"social-description-author-wpseo\";s:0:\"\";s:32:\"social-description-archive-wpseo\";s:0:\"\";s:29:\"social-image-url-author-wpseo\";s:0:\"\";s:30:\"social-image-url-archive-wpseo\";s:0:\"\";s:28:\"social-image-id-author-wpseo\";i:0;s:29:\"social-image-id-archive-wpseo\";i:0;s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:53:\"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:20:\"breadcrumbs-404crumb\";s:25:\"Error 404: Page not found\";s:29:\"breadcrumbs-display-blog-page\";b:1;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:12:\"Archives for\";s:18:\"breadcrumbs-enable\";b:0;s:16:\"breadcrumbs-home\";s:4:\"Home\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:16:\"You searched for\";s:15:\"breadcrumbs-sep\";s:7:\"»\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:26:\"open_graph_frontpage_title\";s:12:\"%%sitename%%\";s:25:\"open_graph_frontpage_desc\";s:0:\"\";s:26:\"open_graph_frontpage_image\";s:0:\"\";s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:17:\"social-title-post\";s:9:\"%%title%%\";s:23:\"social-description-post\";s:0:\"\";s:21:\"social-image-url-post\";s:0:\"\";s:20:\"social-image-id-post\";i:0;s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";i:0;s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:17:\"social-title-page\";s:9:\"%%title%%\";s:23:\"social-description-page\";s:0:\"\";s:21:\"social-image-url-page\";s:0:\"\";s:20:\"social-image-id-page\";i:0;s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";i:0;s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:25:\"social-title-tax-category\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-category\";s:0:\"\";s:29:\"social-image-url-tax-category\";s:0:\"\";s:28:\"social-image-id-tax-category\";i:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:25:\"social-title-tax-post_tag\";s:23:\"%%term_title%% Archives\";s:31:\"social-description-tax-post_tag\";s:0:\"\";s:29:\"social-image-url-tax-post_tag\";s:0:\"\";s:28:\"social-image-id-tax-post_tag\";i:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:1;s:23:\"noindex-tax-post_format\";b:1;s:28:\"social-title-tax-post_format\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-post_format\";s:0:\"\";s:32:\"social-image-url-tax-post_format\";s:0:\"\";s:31:\"social-image-id-tax-post_format\";i:0;s:13:\"title-product\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:16:\"metadesc-product\";s:0:\"\";s:15:\"noindex-product\";b:0;s:26:\"display-metabox-pt-product\";b:1;s:26:\"post_types-product-maintax\";i:0;s:24:\"schema-page-type-product\";s:7:\"WebPage\";s:27:\"schema-article-type-product\";s:4:\"None\";s:20:\"social-title-product\";s:9:\"%%title%%\";s:26:\"social-description-product\";s:0:\"\";s:24:\"social-image-url-product\";s:0:\"\";s:23:\"social-image-id-product\";i:0;s:23:\"title-ptarchive-product\";s:51:\"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%\";s:26:\"metadesc-ptarchive-product\";s:0:\"\";s:25:\"bctitle-ptarchive-product\";s:0:\"\";s:25:\"noindex-ptarchive-product\";b:0;s:30:\"social-title-ptarchive-product\";s:21:\"%%pt_plural%% Archive\";s:36:\"social-description-ptarchive-product\";s:0:\"\";s:34:\"social-image-url-ptarchive-product\";s:0:\"\";s:33:\"social-image-id-ptarchive-product\";i:0;s:21:\"title-tax-product_cat\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_cat\";s:0:\"\";s:31:\"display-metabox-tax-product_cat\";b:1;s:23:\"noindex-tax-product_cat\";b:0;s:28:\"social-title-tax-product_cat\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-product_cat\";s:0:\"\";s:32:\"social-image-url-tax-product_cat\";s:0:\"\";s:31:\"social-image-id-tax-product_cat\";i:0;s:29:\"taxonomy-product_cat-ptparent\";i:0;s:21:\"title-tax-product_tag\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-product_tag\";s:0:\"\";s:31:\"display-metabox-tax-product_tag\";b:1;s:23:\"noindex-tax-product_tag\";b:0;s:28:\"social-title-tax-product_tag\";s:23:\"%%term_title%% Archives\";s:34:\"social-description-tax-product_tag\";s:0:\"\";s:32:\"social-image-url-tax-product_tag\";s:0:\"\";s:31:\"social-image-id-tax-product_tag\";i:0;s:29:\"taxonomy-product_tag-ptparent\";i:0;s:32:\"title-tax-product_shipping_class\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:35:\"metadesc-tax-product_shipping_class\";s:0:\"\";s:42:\"display-metabox-tax-product_shipping_class\";b:1;s:34:\"noindex-tax-product_shipping_class\";b:0;s:39:\"social-title-tax-product_shipping_class\";s:23:\"%%term_title%% Archives\";s:45:\"social-description-tax-product_shipping_class\";s:0:\"\";s:43:\"social-image-url-tax-product_shipping_class\";s:0:\"\";s:42:\"social-image-id-tax-product_shipping_class\";i:0;s:40:\"taxonomy-product_shipping_class-ptparent\";i:0;s:25:\"title-avia_framework_post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:28:\"metadesc-avia_framework_post\";s:0:\"\";s:27:\"noindex-avia_framework_post\";b:0;s:38:\"display-metabox-pt-avia_framework_post\";b:1;s:38:\"post_types-avia_framework_post-maintax\";i:0;s:36:\"schema-page-type-avia_framework_post\";s:7:\"WebPage\";s:39:\"schema-article-type-avia_framework_post\";s:4:\"None\";s:32:\"social-title-avia_framework_post\";s:9:\"%%title%%\";s:38:\"social-description-avia_framework_post\";s:0:\"\";s:36:\"social-image-url-avia_framework_post\";s:0:\"\";s:35:\"social-image-id-avia_framework_post\";i:0;s:15:\"title-portfolio\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:18:\"metadesc-portfolio\";s:0:\"\";s:17:\"noindex-portfolio\";b:0;s:28:\"display-metabox-pt-portfolio\";b:1;s:28:\"post_types-portfolio-maintax\";i:0;s:26:\"schema-page-type-portfolio\";s:7:\"WebPage\";s:29:\"schema-article-type-portfolio\";s:4:\"None\";s:22:\"social-title-portfolio\";s:9:\"%%title%%\";s:28:\"social-description-portfolio\";s:0:\"\";s:26:\"social-image-url-portfolio\";s:0:\"\";s:25:\"social-image-id-portfolio\";i:0;s:24:\"title-tax-fb_product_set\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:27:\"metadesc-tax-fb_product_set\";s:0:\"\";s:34:\"display-metabox-tax-fb_product_set\";b:1;s:26:\"noindex-tax-fb_product_set\";b:0;s:31:\"social-title-tax-fb_product_set\";s:23:\"%%term_title%% Archives\";s:37:\"social-description-tax-fb_product_set\";s:0:\"\";s:35:\"social-image-url-tax-fb_product_set\";s:0:\"\";s:34:\"social-image-id-tax-fb_product_set\";i:0;s:32:\"taxonomy-fb_product_set-ptparent\";i:0;s:27:\"title-tax-portfolio_entries\";s:53:\"%%term_title%% Archives %%page%% %%sep%% %%sitename%%\";s:30:\"metadesc-tax-portfolio_entries\";s:0:\"\";s:37:\"display-metabox-tax-portfolio_entries\";b:1;s:29:\"noindex-tax-portfolio_entries\";b:0;s:34:\"social-title-tax-portfolio_entries\";s:23:\"%%term_title%% Archives\";s:40:\"social-description-tax-portfolio_entries\";s:0:\"\";s:38:\"social-image-url-tax-portfolio_entries\";s:0:\"\";s:37:\"social-image-id-tax-portfolio_entries\";i:0;s:35:\"taxonomy-portfolio_entries-ptparent\";i:0;s:14:\"person_logo_id\";i:0;s:15:\"company_logo_id\";i:0;s:17:\"company_logo_meta\";b:0;s:16:\"person_logo_meta\";b:0;s:29:\"open_graph_frontpage_image_id\";i:0;}','yes'),(118,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(119,'wpseo_flush_rewrite','1','yes'),(120,'cron','a:149:{i:1774897415;a:1:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1774898798;a:1:{s:31:\"eael_remove_unused_options_data\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1774900125;a:1:{s:28:\"elementor/tracker/send_event\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1774910908;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1774915485;a:1:{s:27:\"tcmp_daily_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1774987146;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1775006551;a:1:{s:21:\"wp_update_user_counts\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1775011949;a:2:{s:22:\"mwp_update_public_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1775011950;a:1:{s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1775083559;a:1:{s:30:\"wp_delete_temp_updater_backups\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1775092166;a:1:{s:28:\"tcmp_weekly_scheduled_events\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1775098350;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1777474350;a:1:{s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1777517550;a:3:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1777517552;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1778406405;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"72cef9e998d13d85556b68fd8a8f0e8c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3834;}}}}i:1781116799;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"7dec3403bb14077c892e587cf1a0ae94\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3835;}}}}i:1782236986;a:1:{s:39:\"WPEngineSecurityAuditor_Scans_scheduler\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1782262171;a:1:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1784484914;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ad300ba79d1ebd47444710d1e27ef933\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3839;}}}}i:1784679032;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"df535909b590c37bf7c1b9ad0a4b84d1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3850;}}}}i:1784679078;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"64e02ee780ebc3fd68b05ab00ad2c21d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3851;}}}}i:1784727310;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"156bacaa7615ea68de21600a88160082\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3856;}}}}i:1784740439;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"edc8c34fffb2bf9fb1d735208b3599f6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3860;}}}}i:1784748227;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"46424bd0198f6e8605eb9dbb1e72135d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3864;}}}}i:1784748243;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"e648ee5b3a93b7db90da820ba533b22f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3865;}}}}i:1784748253;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"abfec0fe4e9766a09cb1c53fcea6ef50\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3866;}}}}i:1784748260;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"68e7090c4a67ce0b19770f4433dc6d4c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3867;}}}}i:1784748270;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"4a3694b33d67cdf330b3ed3c3a79c80d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3868;}}}}i:1784748280;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a222bdcc6b58e3797fbffcd963b49b22\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3869;}}}}i:1784756506;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"65b38f4d0875572e4b607c2153772413\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3874;}}}}i:1784756520;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"64c6b80d033abcbef7393b47231a46dc\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3875;}}}}i:1784756529;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"b17963dd200191242ecef1b6a7e4f113\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3876;}}}}i:1784756536;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"18ee8dec2eb89a019524ffbc8bf3c2a4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3877;}}}}i:1784756546;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"014a40b2d0083bb7375aec864c417528\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3878;}}}}i:1784756555;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"0752dea2cc3b858adb59aa0deee52451\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3879;}}}}i:1784759944;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"6b20a212d4f91afb184248e509ba12f1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3884;}}}}i:1784759959;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d16d7b078a582b436a19f15af27f44df\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3885;}}}}i:1784759968;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"cbea18eddc4e1470fab0f822308cc758\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3886;}}}}i:1784759975;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"bc5f2c1e7fe77b41ce39fe74cf5d4420\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3887;}}}}i:1784759984;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"4a3c664856010b6c377f9ec63c232520\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3888;}}}}i:1784759993;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"7e4331f16dbcdba0407dc9e44033e592\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3889;}}}}i:1784820776;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d96cbeb92a4c499f6221242210f743f1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3909;}}}}i:1784820790;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d4dd27ba4906f9b2c0c27a55b60e98d6\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3910;}}}}i:1784820800;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"05a0e962a642c347b007552ea9e4837a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3911;}}}}i:1784820807;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"42e15495349575782acc16a1354541a2\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3912;}}}}i:1784820817;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"1fbe19e785ccc9b4116b49608fb35e3e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3913;}}}}i:1784820826;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"bc18776886441759f052b2d25e2822ae\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3914;}}}}i:1784836478;a:1:{s:8:\"do_pings\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:0:{}}}}i:1784838930;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"e07e938ca2e9abaade901ecc56de89e0\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3919;}}}}i:1784838945;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"b8172fb3418887c4c2a8e478028314a1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3920;}}}}i:1784838954;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"5f83e77ae7b336ae8215d5b4abd70221\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3921;}}}}i:1784838962;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"602350eb4de1aa6bd2a162d8339c29a7\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3922;}}}}i:1784838973;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"7e74ddc5f1ead34b04b07fd80527a987\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3923;}}}}i:1784838982;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"0f630203040cecdd99904003df4cf0fb\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3924;}}}}i:1784841796;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"60209f2b8d997a5b40c89c4c1c7d9ba1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3926;}}}}i:1784851492;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ba970a6f936ab5fd5c174e4942b612f9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3946;}}}}i:1784902718;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"e86b4cf23fbe86ebcaccf12f11b5c314\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3957;}}}}i:1784902725;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8664e0b3e4aea763b13e4dd2f9a66b40\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3958;}}}}i:1784902909;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"26397eb6da9bff9df32bbd9c09a4f7a3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3960;}}}}i:1784902917;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"5980cd082b92980c3dacab1a00497840\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3961;}}}}i:1784903221;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"1711e9eceeb14f95e8d4e5ded433958b\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3963;}}}}i:1784903231;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a46b525f14b5db01afe3a8bfc009d2fc\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3964;}}}}i:1784903671;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"3d40a10d827ecc4d031de219ac46b249\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3966;}}}}i:1784903680;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c1f0d8c2a8d1d174f43ceef702d7e49a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3967;}}}}i:1784908368;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"9687cab40b3028b0c2a971d67f373c63\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3972;}}}}i:1784908383;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8e697d1d35d51fdbca5912ec0a5d4fef\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3973;}}}}i:1784908395;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"6aa2b943bc7460e3f472c0d57ba2d774\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3974;}}}}i:1784908402;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"52e725b98ed29904a042036b519a4e83\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3975;}}}}i:1784908412;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"f8828e2990b4e58db2ca78c00be03de3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3976;}}}}i:1784908420;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"9fe3898e0bf49396cc214e1e73b7d676\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3977;}}}}i:1784943057;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"7b00ba3c1f28bb2f5f39f9e00b7fe0b1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3988;}}}}i:1784943080;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"46bde78f0e231774b9d212885689b564\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3989;}}}}i:1784960196;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"803f770f78cdc3729d261fb70c901ddf\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3998;}}}}i:1784960210;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"3f0bbd3cdadaa3720171f98883575356\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:3999;}}}}i:1784960219;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d85803ea8c2d239d561a20683edd5301\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4000;}}}}i:1784960227;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"499e52eb1e45fe2b00cac664c2538a13\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4001;}}}}i:1784960237;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8bda0cdaa69122fbb3d20aad102c2dc3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4002;}}}}i:1784960245;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"45ed2fe7f9e47fa34ec58a41a2c08bbd\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4003;}}}}i:1785001486;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"eb8d525c07299ad10268d41081f36d58\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4028;}}}}i:1785001494;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"55ebe7cf2588a68efe7de3460c55230f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4029;}}}}i:1785015524;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"b8328a4e1fc7bbb9c53cf02fde6f5458\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4031;}}}}i:1785015550;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d84ddbc39883324f9cce40f1bb4768b3\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4032;}}}}i:1785021741;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ae39688890a5831c39191a00adb75e97\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4037;}}}}i:1785021770;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"53625aab53d7991af075cfc9a2beaf40\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4038;}}}}i:1785021791;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"b87a5479b0e8e51d227310cd21347f15\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4039;}}}}i:1785021812;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"790cf1a6a146f964e0ae9cadfc513d32\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4040;}}}}i:1785021835;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"feebf68c46a98a50e5c677d7f6d73632\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4041;}}}}i:1785021855;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"40af9a216d33115ee81a459791519091\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4042;}}}}i:1785069409;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"57a063e401808e9c177865017efb3a0d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4054;}}}}i:1785069429;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"710d9e72d50c2506db874cb517148684\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4055;}}}}i:1785086649;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d9c8f6143cdb3884e906906e8d68c9db\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4056;}}}}i:1785086670;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"f479b009522ee2c026cd774e4c790f10\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4057;}}}}i:1785099896;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"41a05ba5ce9f7393149e86cc97148529\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4058;}}}}i:1785099907;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"84e8b38952cf45af12f17534b7032e04\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4059;}}}}i:1785101574;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"e1152b675fbbe955f31351039da457e4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4060;}}}}i:1785101585;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a91788be6961fedd2edb6e1e23cdb1fb\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4061;}}}}i:1785106622;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"f0857342f41fb71d31008e1015858d24\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4062;}}}}i:1785106632;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"2de3c4e290bcf06dacca432fba44a2de\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4063;}}}}i:1785114096;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"dc22e21d55bf276821446d5468721f00\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4064;}}}}i:1785114302;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"7d5bb1ecaa75fd7fc116f1d50b078747\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4065;}}}}i:1785114332;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a3223abb304edfb4078556916db4e19d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4066;}}}}i:1785121213;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"1d003880cc02a67a3773fa8e0d412c50\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4067;}}}}i:1785121218;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"0748b822f8b4c14495bbbf9f6f0604b9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4068;}}}}i:1785121222;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"5de33500bff51f363fe7913d088cf86f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4069;}}}}i:1785121227;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"07a50a11e30f4766c5e8e58f34b6d2c9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4070;}}}}i:1785121335;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8a93f3570a3bc529911da3f936648c4f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4071;}}}}i:1785121345;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a094612e97a875e9601b43699a0479b2\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4072;}}}}i:1785121458;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8aec22c1bb59399036a3967c15c120b4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4073;}}}}i:1785121468;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"f38c167a5694a4e47be452c24a68e70d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4074;}}}}i:1785121515;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"1d311a0553a86e8f3c45552d04029f69\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4075;}}}}i:1785121524;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8f2bb7a443e64a7fd657938e795025dc\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4076;}}}}i:1785121694;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"b5fcdb56ae1b706c1f139c49c2a98475\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4077;}}}}i:1785121703;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"1f90f2ae3ab4100574d0beded10801b4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4078;}}}}i:1785144455;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"bc7da445a8b139fffa7c65e8cc2d652c\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4079;}}}}i:1785186604;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ced1100004770b9bcaea3509fe1e8741\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4092;}}}}i:1785214018;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d1042644d09efdb1795a51724c5e52d5\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4104;}}}}i:1785214062;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"27eab12fb00b27a93ae88a84b574662f\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4105;}}}}i:1785239505;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ff3841654f8b6f2fb0beac83632e8563\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4113;}}}}i:1785239514;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"e7727c3957614eacb775d202a378ce98\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4114;}}}}i:1785239718;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"8b08ef0ec19f90eb96d87195a893a71e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4116;}}}}i:1785239724;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d8ada74c9e8055e18662238009585cee\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4117;}}}}i:1785240865;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"2692016800dd8a10b4cc1dce241ff9bc\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4123;}}}}i:1785246410;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"67920fc8d6ef137bbb60b8da52a11341\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4128;}}}}i:1785246425;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"0359c3e41625141d38fdde8f1ba2f92e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4129;}}}}i:1785246433;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c367ae239f0cac0bb87fd08f6287ce60\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4130;}}}}i:1785246439;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d5816eb8cfab780c8a30065df8922173\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4131;}}}}i:1785246447;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"bd63570108981ff996a6eff4f3b7fb91\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4132;}}}}i:1785246455;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"53088f21ce7e32fffbdcdca9a159f272\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4133;}}}}i:1785261163;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ae9c09f6a79c60eb2057069986cc93c1\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4145;}}}}i:1785263029;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d497a661c27c881b0272be522b2283b5\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4149;}}}}i:1785263035;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"de3f82d70e3bf8f949a4f4799359b62a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4150;}}}}i:1785337701;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"6b07464dc5e0b4cdf19f7063022e91ec\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4152;}}}}i:1785337710;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"7979eb625dc1a11053e3718f31a7e670\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4153;}}}}i:1785337889;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"98a3a1f5b4867605775f1233413c856a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4155;}}}}i:1785337898;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"a67d25c655e5eb5d34b1a37ac71349aa\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4156;}}}}i:1785340226;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"2b4247f56ca7bd7094710486c69b7c00\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4157;}}}}i:1785340235;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"795555e49524913eab84cd891d0e2758\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4158;}}}}i:1785341333;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ab9e68e97dc728b706e600ca78dd8379\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4159;}}}}i:1785341342;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"c03dd040fe0ef714e79408e909d30835\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4160;}}}}i:1785347592;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"d4bb80dc5a729748d35d566790bd203a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4161;}}}}i:1785347601;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"93a5593884f91d1f0b2c63eccfebc4a9\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4162;}}}}i:1785348660;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"48155465cdaa0b57464af575e6b76a2a\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4163;}}}}i:1785348669;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"41cd0c8a801b713e9e4a96c28370db7e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4164;}}}}i:1785369202;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"ab1a12ae5697bb3313ed91cb825ea44d\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4165;}}}}i:1785387557;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"b95dcb50d81416f08aba63cedbf9db6e\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4176;}}}}i:1785392114;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"5ad2182fa3684f9684382667aad7de72\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4180;}}}}i:1785392120;a:1:{s:26:\"upgrader_scheduled_cleanup\";a:1:{s:32:\"4f6d957a44df8e32d39a6d7b454acad4\";a:2:{s:8:\"schedule\";b:0;s:4:\"args\";a:1:{i:0;i:4181;}}}}s:7:\"version\";i:2;}','on'),(121,'gd_system_last_login','1589338349','yes'),(122,'gd_system_first_login','1589338349','yes'),(123,'gd_system_last_cache_flush','1589563914','no'),(124,'mwp_service_key','832fa950-1c0d-423a-aeda-e94c9ca0fd9a','yes'),(125,'mwp_potential_key','baff574b-9149-406e-bf1c-b20aaa55cbf6','yes'),(126,'mwp_potential_key_time','1589512613','yes'),(127,'mwp_openssl_parameters','a:2:{s:4:\"time\";i:1589512613;s:7:\"working\";b:1;}','yes'),(128,'gd_system_version','3.16.3','yes'),(129,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"26.9\";}','yes'),(134,'widget_newsbox','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(135,'widget_portfoliobox','a:2:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";s:1:\"4\";s:7:\"excerpt\";s:15:\"show title only\";s:3:\"cat\";N;}s:12:\"_multiwidget\";i:1;}','yes'),(136,'widget_avia_socialcount','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(137,'widget_avia_partner_widget','a:2:{i:2;a:5:{s:5:\"title\";s:0:\"\";s:9:\"image_url\";s:0:\"\";s:7:\"ref_url\";s:0:\"\";s:10:\"image_url2\";s:0:\"\";s:8:\"ref_url2\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(138,'widget_avia_google_maps','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139,'widget_avia_fb_likebox','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:3:\"url\";s:34:\"https://www.facebook.com/kriesi.at\";}i:3;a:10:{s:3:\"url\";s:53:\"https://www.facebook.com/SolSculpting-108102134798161\";s:5:\"title\";s:8:\"FACEBOOK\";s:7:\"fb_link\";s:0:\"\";s:9:\"fb_banner\";s:0:\"\";s:10:\"page_title\";s:0:\"\";s:7:\"fb_logo\";s:0:\"\";s:7:\"content\";s:0:\"\";s:8:\"add_info\";s:27:\"Join our Facebook community\";s:14:\"confirm_button\";s:29:\"Click to load facebook widget\";s:14:\"page_link_text\";s:22:\"Open facebook page now\";}s:12:\"_multiwidget\";i:1;}','yes'),(140,'widget_avia-instagram-feed','a:2:{i:1;a:1:{s:8:\"avia_key\";s:2:\"1-\";}s:12:\"_multiwidget\";i:1;}','yes'),(141,'widget_avia_combo_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(142,'widget_avia_auto_toc','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(143,'widget_avia_mailchimp_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(144,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(145,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(146,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(147,'widget_media_image','a:2:{i:2;a:15:{s:4:\"size\";s:6:\"custom\";s:5:\"width\";i:783;s:6:\"height\";i:227;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:3616;s:3:\"url\";s:79:\"https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-1024x297.png\";s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(148,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(149,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(150,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(151,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(152,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(153,'ls-plugin-version','6.10.0','yes'),(154,'ls-db-version','6.9.0','yes'),(155,'ls-installed','1','yes'),(156,'ls-google-fonts','a:0:{}','yes'),(157,'enfold_layerslider_state','','yes'),(158,'ls-date-installed','1589338350','yes'),(159,'enfold_layerslider_activated','1','yes'),(160,'enfold_layerslider_data_erased','no','yes'),(161,'ls-show-support-notice','0','yes'),(162,'ls_include_at_footer','1','yes'),(163,'ls_conditional_script_loading','1','yes'),(164,'Enfold_version','4.7.4','yes'),(165,'layerslider_update_info','O:8:\"stdClass\":6:{s:5:\"basic\";O:8:\"stdClass\":13:{s:4:\"slug\";s:11:\"LayerSlider\";s:6:\"plugin\";s:103:\"nas/content/live/solsculptinstg/wp-content/themes/enfold/config-layerslider/LayerSlider/layerslider.php\";s:7:\"version\";s:5:\"7.1.2\";s:8:\"released\";s:10:\"2022-03-10\";s:5:\"icons\";a:3:{s:2:\"1x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png?ver=6.9.2\";s:2:\"2x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";s:7:\"default\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";}s:7:\"banners\";a:3:{s:3:\"low\";s:94:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png?ver=6.9.2\";s:4:\"high\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";s:7:\"default\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";}s:3:\"url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:7:\"package\";s:0:\"\";s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.9.2\";s:12:\"requires_php\";s:5:\"5.4.0\";s:14:\"upgrade_notice\";s:73:\"This update contains security patches, bug fixes, and other improvements.\";s:11:\"new_version\";s:5:\"7.1.2\";}s:4:\"full\";O:8:\"stdClass\":21:{s:4:\"name\";s:14:\"LayerSlider WP\";s:8:\"homepage\";s:72:\"http://kreaturamedia.com/layerslider-responsive-wordpress-slider-plugin/\";s:5:\"p_url\";s:46:\"https://layerslider.kreaturamedia.com/pricing/\";s:7:\"version\";s:5:\"7.1.2\";s:12:\"last_updated\";s:10:\"2022-03-10\";s:8:\"requires\";s:3:\"4.4\";s:6:\"tested\";s:5:\"5.9.2\";s:12:\"requires_php\";s:5:\"5.4.0\";s:6:\"rating\";s:2:\"95\";s:11:\"num_ratings\";i:3192;s:14:\"upgrade_notice\";a:3:{s:6:\"stable\";s:73:\"This update contains security patches, bug fixes, and other improvements.\";s:4:\"beta\";s:73:\"This update contains security patches, bug fixes, and other improvements.\";s:4:\"edge\";s:73:\"This update contains security patches, bug fixes, and other improvements.\";}s:6:\"author\";s:71:\"<a href=\"https://kreaturamedia.com/\" target=\"_blank\">Kreatura Media</a>\";s:3:\"url\";s:38:\"https://layerslider.kreaturamedia.com/\";s:8:\"external\";b:1;s:9:\"file_name\";s:10:\"plugin.zip\";s:5:\"icons\";a:3:{s:2:\"1x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-128x128.png?ver=6.9.2\";s:2:\"2x\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";s:7:\"default\";s:89:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/icon-256x256.png?ver=6.9.2\";}s:7:\"banners\";a:3:{s:3:\"low\";s:94:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-772x250.png?ver=6.9.2\";s:4:\"high\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";s:7:\"default\";s:95:\"https://repository.kreaturamedia.com/v4/updates/1362246/assets/thumbnail-1544x500.png?ver=6.9.2\";}s:8:\"sections\";a:3:{s:9:\"changelog\";s:343:\"<p style=\"text-align: justify;\">\n <a href=\"https://layerslider.kreaturamedia.com/release-log/\" target=\"_blank\">Click here to see the release log.</a> Don’t forget, the release log and all product-related news are also integrated right into LayerSlider. Look for the “LayerSlider News” section at the bottom of its main admin screen.\n</p>\";s:12:\"installation\";s:563:\"<p style=\"text-align: justify;\">\n Updating the plugin won’t touch your sliders or settings. New versions always have backward compatibility. You don’t have to worry about losing your work. Not sure how to update? Check the <a href=\"https://layerslider.kreaturamedia.com/documentation/#updating\" target=\"_blank\">Updating</a> section of our online documentation.\n</p>\n\n<p style=\"text-align: justify;\">\n If you’re experiencing unwanted changes, it is always a good idea to check your settings since there are probably new options to control those changes.\n</p>\";s:3:\"faq\";s:607:\"<p style=\"text-align: justify;\">\n Please visit our <a href=\"https://layerslider.kreaturamedia.com/help/\" target=\"_blank\">Help</a> page, where you can find all sorts of useful assets like <a href=\"https://layerslider.kreaturamedia.com/faq/\" target=\"_blank\">FAQs</a>, <a href=\"https://layerslider.kreaturamedia.com/documentation/\" target=\"_blank\">online documentation</a>, <a href=\"https://layerslider.kreaturamedia.com/documentation/#troubleshooting\" target=\"_blank\">troubleshooting</a>, and <a href=\"https://layerslider.kreaturamedia.com/documentation/#support\" target=\"_blank\">support</a> information.\n</p>\";}s:4:\"slug\";s:11:\"LayerSlider\";s:7:\"package\";s:0:\"\";s:13:\"download_link\";s:0:\"\";}s:15:\"_latest_version\";s:5:\"7.1.2\";s:17:\"_important_notice\";a:9:{s:4:\"date\";s:10:\"2022-02-16\";s:5:\"title\";s:30:\"Upgrade To LayerSlider 7 Today\";s:7:\"message\";s:450:\"Don’t miss out on countless new features & content that LayerSlider 7 offers! Purchase a license today and get your hands on the all-new editor, fresh templates, add-ons, and much more. <span style=\"font-weight: 700\">Use coupon code <span style=\"color: #e3177d\">HELLO7</span> to receive 5% OFF.</span> Offer valid until March 15. <br><br><a href=\"https://layerslider.com/pricing/\" target=\"_blank\" class=\"button button-primary\">GET LAYERSLIDER 7</a>\";s:5:\"image\";s:0:\"\";s:6:\"banner\";a:5:{s:5:\"class\";s:0:\"\";s:5:\"style\";s:132:\"height: auto; margin: 39px auto 0 auto !important; min-width: 700px; max-width: 1700px; padding-right: 20px; box-sizing: border-box;\";s:3:\"url\";s:0:\"\";s:6:\"target\";s:6:\"_blank\";s:7:\"content\";s:3914:\"\n\n <style>\n @import url(\"https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;800&display=swap\");\n </style>\n <style>\n\n .layerslider_notice_img {\n min-width: 960px !important;\n max-width: 1280px !important;\n }\n\n #lspr-inner {\n position: relative;\n height: auto;\n display: flex;\n margin: 0 auto !important;\n justify-content: space-between;\n }\n\n #lspr-left,\n #lspr-right {\n width: calc( 50% - 10px );\n position: relative;\n border-radius: 1rem;\n }\n\n #lspr-left {\n\n }\n\n #lspr-right {\n background-image: linear-gradient(150deg, rgb(56, 103, 189) 0%, rgba(76, 119, 199, 0.5) 28%, rgba(69, 110, 186, 0) 68%),\n linear-gradient(45deg, rgb(41, 10, 102) 50%, rgb(111, 32, 214) 100%);\n }\n\n #lspr-scroll {\n position: absolute;\n left: 0;\n top: 0;\n right: 0;\n bottom: 0;\n z-index: 1;\n overflow: hidden;\n border-radius: 1rem;\n }\n\n #lspr-scroll img {\n width: 100%;\n animation-name: lspr;\n animation-duration: 60s;\n animation-iteration-count: infinite;\n animation-timing-function: cubic-bezier(0.37, 0, 0.63, 1);\n }\n\n @keyframes lspr {\n 0% {\n transform: translateY(0);\n }\n 50% {\n transform: translateY( -80% );\n }\n 100% {\n transform: translateY(0);\n }\n }\n\n .lspr-over {\n position: relative;\n z-index: 2;\n }\n\n #lspr-heading-small {\n padding: 0 3rem;\n padding-top: 1.5rem;\n text-align: center;\n color: rgba(255,255,255,.75);\n font-size: 1rem;\n font-family: Nunito, sans-serif;\n line-height: normal;\n }\n\n #lspr-heading {\n margin-top: 0.15rem;\n margin-top: 0.2vw;\n padding: 0 3rem;\n text-align: center;\n color: white;\n font-size: 1.5rem;\n font-weight: 600;\n line-height: 2rem;\n font-family: Nunito, sans-serif;\n }\n\n .lspr-nowrap {\n white-space: nowrap;\n }\n\n .lspr-text {\n position: relative;\n z-index: 200;\n margin: 0.5rem auto 0 auto;\n padding: 0.3rem 3rem;\n color: white;\n font-family: Nunito, sans-serif;\n font-size: 1.2rem;\n line-height: normal;\n text-align: justify;\n }\n\n .lspr-text a {\n color: white;\n font-weight: bold;\n }\n\n #lspr-buttons {\n text-align: center;\n padding-bottom: 2rem;\n }\n\n #lspr-buttons a {\n margin: 1rem 1rem 0;\n text-decoration: none;\n color: white;\n text-transform: uppercase;\n font-family: Nunito, sans-serif;\n font-weight: 800;\n display: inline-block;\n border-radius: 100px;\n background-color: #e3177d;\n padding: 0 1.5rem;\n line-height: 2.4rem;\n font-size: 1.1rem;\n transform: rotate(0.0001deg);\n transition: all 0.2s;\n box-shadow: none;\n cursor: pointer;\n }\n\n #lspr-buttons a:hover {\n transform: rotate(0.001deg) scale(1.05);\n box-shadow: 0 0.25vw 0.5vw rgba(0,0,0,0.15);\n }\n\n .layerslider_notice_img .dashicons-dismiss {\n right: 30px;\n }\n\n .lspr-bold {\n font-weight: 800 !important;\n }\n\n </style>\n <div id=\"lspr-inner\">\n <div id=\"lspr-left\">\n <div id=\"lspr-scroll\">\n <img src=\"https://layerslider.com/media/ls7-mail.jpg\">\n </div>\n </div>\n <div id=\"lspr-right\">\n <div id=\"lspr-heading-small\" class=\"lspr-over\"></div>\n <div id=\"lspr-heading\" class=\"lspr-over\">\n <span class=\"lspr-nowrap\">Upgrade To LayerSlider 7 Today<span>\n </div>\n\n <div class=\"lspr-text\" class=\"lspr-over\">\n <span>\n Don’t miss out on countless new features & content that LayerSlider 7 offers! Purchase a license today and get your hands on the all-new editor, fresh templates, add-ons, and much more. <span style=\"font-weight: 700\">Use coupon code <span style=\"color: #e3177d\">HELLO7</span> to receive 5% OFF.</span> Offer valid until March 15.\n </span>\n </div>\n\n <div id=\"lspr-buttons\" class=\"lspr-over\">\n <a href=\"https://layerslider.com/pricing/\" target=\"_blank\">GET LAYERSLIDER 7</a>\n </div>\n </div>\n </div>\n \";}s:11:\"min_version\";s:0:\"\";s:11:\"max_version\";s:7:\"6.11.10\";s:11:\"unactivated\";b:1;s:10:\"url_filter\";s:11:\"layerslider\";}s:14:\"_not_activated\";b:1;s:7:\"checked\";i:1647136598;}','yes'),(172,'avia_permalink_settings','a:2:{s:24:\"portfolio_permalink_base\";s:14:\"portfolio-item\";s:31:\"portfolio_entries_taxonomy_base\";s:17:\"portfolio_entries\";}','yes'),(173,'av_alb_usage_av_player','a:0:{}','yes'),(174,'av_alb_usage_av_blog','a:7:{i:1334;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1080;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1040;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1037;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1034;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1028;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:600;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(175,'av_alb_usage_av_buttonrow','a:0:{}','yes'),(176,'av_alb_usage_av_button','a:13:{i:1404;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}i:1343;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1313;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:48;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:17;}i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:12;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(177,'av_alb_usage_av_button_big','a:9:{i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(178,'av_alb_usage_av_catalogue','a:1:{i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}}','yes'),(179,'av_alb_usage_av_comments_list','a:1:{i:1376;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(180,'av_alb_usage_av_contact','a:4:{i:1331;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(181,'av_alb_usage_av_content_slider','a:1:{i:1316;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(182,'av_alb_usage_av_countdown','a:1:{i:1370;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(183,'av_alb_usage_av_gallery','a:1:{i:1410;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(184,'av_alb_usage_av_horizontal_gallery','a:1:{i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(185,'av_alb_usage_av_google_map','a:1:{i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(186,'av_alb_usage_av_cell_one_full','a:0:{}','yes'),(187,'av_alb_usage_av_cell_one_half','a:7:{i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(188,'av_alb_usage_av_cell_one_third','a:2:{i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(189,'av_alb_usage_av_cell_two_third','a:0:{}','yes'),(190,'av_alb_usage_av_cell_one_fourth','a:1:{i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}}','yes'),(191,'av_alb_usage_av_cell_three_fourth','a:0:{}','yes'),(192,'av_alb_usage_av_cell_one_fifth','a:0:{}','yes'),(193,'av_alb_usage_av_cell_two_fifth','a:0:{}','yes'),(194,'av_alb_usage_av_cell_three_fifth','a:0:{}','yes'),(195,'av_alb_usage_av_cell_four_fifth','a:0:{}','yes'),(196,'av_alb_usage_av_layout_row','a:8:{i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(197,'av_alb_usage_av_heading','a:86:{i:1593;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1413;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1410;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1407;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1404;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1401;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1398;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1395;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1383;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1380;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1376;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1373;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1370;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1361;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1358;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1355;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1352;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1343;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1340;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1337;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1334;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1331;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1328;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1322;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1319;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1316;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1313;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1304;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1301;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1298;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1295;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1292;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:25;}i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1283;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1113;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1080;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1040;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1037;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1034;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1031;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1028;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:990;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:937;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:932;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:919;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:907;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:902;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:897;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:613;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:600;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:597;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:9;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:9;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}}','yes'),(198,'av_alb_usage_av_headline_rotator','a:1:{i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(199,'av_alb_usage_av_hr','a:74:{i:1593;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1413;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1410;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1407;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1401;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1398;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1383;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1380;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1376;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1373;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1361;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1355;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1352;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1343;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1340;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1337;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1334;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1331;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1328;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1322;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1319;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1316;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1304;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1301;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1298;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1295;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1292;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:36;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1113;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1080;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1040;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1037;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1034;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1031;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1028;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:990;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:937;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:932;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:919;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:907;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:902;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:897;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:613;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:600;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:597;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:23;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:14;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:16;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:14;}}','yes'),(200,'av_alb_usage_av_font_icon','a:7:{i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1301;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1283;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}}','yes'),(201,'av_alb_usage_av_icon_box','a:9:{i:1304;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1113;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(202,'av_alb_usage_av_icongrid','a:0:{}','yes'),(203,'av_alb_usage_av_iconlist','a:2:{i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(204,'av_alb_usage_av_image','a:17:{i:1383;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:17;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(205,'av_alb_usage_av_image_hotspot','a:4:{i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(206,'av_alb_usage_av_partner','a:1:{i:1407;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(207,'av_alb_usage_av_magazine','a:1:{i:1337;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(208,'av_alb_usage_av_mailchimp','a:2:{i:1373;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(209,'av_alb_usage_av_masonry_entries','a:8:{i:1343;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1031;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:937;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:932;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(210,'av_alb_usage_av_masonry_gallery','a:2:{i:1413;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:990;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(211,'av_alb_usage_av_submenu','a:1:{i:1358;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(212,'av_alb_usage_av_notification','a:1:{i:1319;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}}','yes'),(213,'av_alb_usage_av_animated_numbers','a:1:{i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}}','yes'),(214,'av_alb_usage_av_portfolio','a:13:{i:1340;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:919;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:914;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:907;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:902;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:897;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:597;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(215,'av_alb_usage_av_postslider','a:1:{i:1355;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(216,'av_alb_usage_av_progress','a:1:{i:1352;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(217,'av_alb_usage_av_promobox','a:1:{i:1328;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(218,'av_alb_usage_avia_sc_search','a:0:{}','yes'),(219,'av_alb_usage_av_slideshow','a:4:{i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(220,'av_alb_usage_av_slideshow_accordion','a:1:{i:1401;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(221,'av_alb_usage_av_feature_image_slider','a:1:{i:1398;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(222,'av_alb_usage_av_fullscreen','a:1:{i:1395;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(223,'av_alb_usage_av_slideshow_full','a:4:{i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(224,'av_alb_usage_av_layerslider','a:2:{i:1404;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(225,'av_alb_usage_av_social_share','a:5:{i:1593;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(226,'av_alb_usage_av_tab_sub_section','a:1:{i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:20;}}','yes'),(227,'av_alb_usage_av_tab_section','a:1:{i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(228,'av_alb_usage_av_table','a:1:{i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}}','yes'),(229,'av_alb_usage_av_tab_container','a:4:{i:1322;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(230,'av_alb_usage_av_team_member','a:1:{i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(231,'av_alb_usage_av_testimonials','a:2:{i:1361;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(232,'av_alb_usage_av_timeline','a:0:{}','yes'),(233,'av_alb_usage_av_toggle_container','a:4:{i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(234,'av_alb_usage_av_video','a:6:{i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}}','yes'),(235,'av_alb_usage_av_codeblock','a:1:{i:1380;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(236,'av_alb_usage_av_one_full','a:29:{i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1413;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1410;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1401;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1398;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1370;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1343;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1340;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1322;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1313;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1304;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:919;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:914;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:907;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:897;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(237,'av_alb_usage_av_one_half','a:33:{i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1410;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1407;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1395;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1373;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1337;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1319;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1313;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1292;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:34;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1113;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:613;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}}','yes'),(238,'av_alb_usage_av_one_third','a:21:{i:1404;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1383;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1301;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}}','yes'),(239,'av_alb_usage_av_two_third','a:9:{i:1404;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(240,'av_alb_usage_av_one_fourth','a:3:{i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(241,'av_alb_usage_av_three_fourth','a:2:{i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(242,'av_alb_usage_av_one_fifth','a:11:{i:1383;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1283;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(243,'av_alb_usage_av_two_fifth','a:2:{i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(244,'av_alb_usage_av_three_fifth','a:10:{i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1283;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(245,'av_alb_usage_av_four_fifth','a:0:{}','yes'),(246,'av_alb_usage_av_postcontent','a:0:{}','yes'),(247,'av_alb_usage_av_section','a:48:{i:1395;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1370;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1283;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1113;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1080;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1040;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1037;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1034;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1031;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1028;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:990;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:937;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:932;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:919;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:907;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:902;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:897;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:613;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:600;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:597;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:14;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:12;}}','yes'),(248,'av_alb_usage_av_textblock','a:84:{i:1593;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1413;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1410;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1407;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1404;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1401;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1398;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1395;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1383;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1380;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1376;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1373;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1370;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:1367;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1361;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1358;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:10;}i:1355;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1352;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1343;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1340;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1337;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1334;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1331;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1328;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1322;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1319;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1316;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1304;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1301;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1298;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:1295;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1292;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:1289;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:21;}i:1286;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:1283;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:1277;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:22;}i:1080;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1040;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1037;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1034;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1031;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:1028;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:990;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:937;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:932;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:919;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:907;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:902;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:897;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:626;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:613;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:600;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:597;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:206;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}i:142;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:144;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:139;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:150;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3288;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:6;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:9;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:9;}i:3557;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:17;}i:3599;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:16;}}','yes'),(249,'av_alb_usage_av_sidebar','a:0:{}','yes'),(250,'av_alb_usage_av_playlist_element','a:0:{}','yes'),(251,'av_alb_usage_av_buttonrow_item','a:0:{}','yes'),(252,'av_alb_usage_av_catalogue_item','a:1:{i:1364;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:17;}}','yes'),(253,'av_alb_usage_av_contact_field','a:4:{i:1331;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}i:632;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3317;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:3437;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(254,'av_alb_usage_av_content_slide','a:1:{i:1316;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(255,'av_alb_usage_av_gmap_location','a:1:{i:1416;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:11;}}','yes'),(256,'av_alb_usage_av_rotator_item','a:1:{i:1310;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:12;}}','yes'),(257,'av_alb_usage_av_icongrid_item','a:0:{}','yes'),(258,'av_alb_usage_av_iconlist_item','a:2:{i:1307;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:33;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:47;}}','yes'),(259,'av_alb_usage_av_image_spot','a:4:{i:1386;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:7;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}}','yes'),(260,'av_alb_usage_av_partner_logo','a:1:{i:1407;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:15;}}','yes'),(261,'av_alb_usage_av_mailchimp_field','a:2:{i:1373;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:606;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:5;}}','yes'),(262,'av_alb_usage_av_submenu_item','a:1:{i:1358;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:9;}}','yes'),(263,'av_alb_usage_av_progress_bar','a:1:{i:1352;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:24;}}','yes'),(264,'av_alb_usage_av_slide','a:4:{i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:16;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(265,'av_alb_usage_av_slide_accordion','a:1:{i:1401;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:18;}}','yes'),(266,'av_alb_usage_av_fullscreen_slide','a:1:{i:1395;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(267,'av_alb_usage_av_slide_full','a:4:{i:1392;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(268,'av_alb_usage_av_row','a:1:{i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:32;}}','yes'),(269,'av_alb_usage_av_cell','a:1:{i:1346;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:107;}}','yes'),(270,'av_alb_usage_av_tab','a:4:{i:1322;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:16;}i:145;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:143;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:152;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(271,'av_alb_usage_av_team_icon','a:1:{i:1349;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:8;}}','yes'),(272,'av_alb_usage_av_testimonial_single','a:2:{i:1361;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:17;}i:3281;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:2;}}','yes'),(273,'av_alb_usage_av_timeline_item','a:0:{}','yes'),(274,'av_alb_usage_av_toggle','a:4:{i:1325;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:26;}i:146;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:140;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}i:131;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:3;}}','yes'),(275,'av_alb_blog_elements_state','a:112:{s:9:\"av_player\";b:0;s:7:\"av_blog\";b:1;s:12:\"av_buttonrow\";b:0;s:9:\"av_button\";b:1;s:13:\"av_button_big\";b:1;s:12:\"av_catalogue\";b:1;s:16:\"av_comments_list\";b:1;s:10:\"av_contact\";b:1;s:17:\"av_content_slider\";b:1;s:12:\"av_countdown\";b:1;s:10:\"av_gallery\";b:1;s:21:\"av_horizontal_gallery\";b:1;s:13:\"av_google_map\";b:1;s:13:\"av_layout_row\";b:1;s:16:\"av_cell_one_full\";b:0;s:16:\"av_cell_one_half\";b:1;s:17:\"av_cell_one_third\";b:1;s:17:\"av_cell_two_third\";b:0;s:18:\"av_cell_one_fourth\";b:1;s:20:\"av_cell_three_fourth\";b:0;s:17:\"av_cell_one_fifth\";b:0;s:17:\"av_cell_two_fifth\";b:0;s:19:\"av_cell_three_fifth\";b:0;s:18:\"av_cell_four_fifth\";b:0;s:10:\"av_heading\";b:1;s:19:\"av_headline_rotator\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_font_icon\";b:1;s:11:\"av_icon_box\";b:1;s:11:\"av_icongrid\";b:0;s:11:\"av_iconlist\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:10:\"av_partner\";b:1;s:11:\"av_magazine\";b:1;s:12:\"av_mailchimp\";b:1;s:18:\"av_masonry_entries\";b:1;s:18:\"av_masonry_gallery\";b:1;s:10:\"av_submenu\";b:1;s:15:\"av_notification\";b:1;s:19:\"av_animated_numbers\";b:1;s:12:\"av_portfolio\";b:1;s:13:\"av_postslider\";b:1;s:17:\"av_product_button\";b:1;s:15:\"av_product_info\";b:0;s:17:\"av_product_review\";b:0;s:15:\"av_product_tabs\";b:0;s:18:\"av_product_upsells\";b:0;s:15:\"av_product_meta\";b:0;s:16:\"av_product_price\";b:0;s:16:\"av_productslider\";b:0;s:11:\"av_progress\";b:1;s:11:\"av_promobox\";b:1;s:14:\"avia_sc_search\";b:0;s:12:\"av_slideshow\";b:1;s:22:\"av_slideshow_accordion\";b:1;s:23:\"av_feature_image_slider\";b:1;s:13:\"av_fullscreen\";b:1;s:17:\"av_slideshow_full\";b:1;s:14:\"av_layerslider\";b:1;s:15:\"av_social_share\";b:1;s:14:\"av_tab_section\";b:1;s:18:\"av_tab_sub_section\";b:1;s:8:\"av_table\";b:1;s:16:\"av_tab_container\";b:1;s:14:\"av_team_member\";b:1;s:15:\"av_testimonials\";b:1;s:11:\"av_timeline\";b:0;s:19:\"av_toggle_container\";b:1;s:8:\"av_video\";b:1;s:12:\"av_codeblock\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:13:\"av_one_fourth\";b:1;s:15:\"av_three_fourth\";b:1;s:12:\"av_one_fifth\";b:1;s:12:\"av_two_fifth\";b:1;s:14:\"av_three_fifth\";b:1;s:13:\"av_four_fifth\";b:0;s:14:\"av_postcontent\";b:0;s:14:\"av_productgrid\";b:1;s:14:\"av_productlist\";b:0;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:10:\"av_sidebar\";b:0;s:19:\"av_playlist_element\";b:0;s:17:\"av_buttonrow_item\";b:0;s:17:\"av_catalogue_item\";b:1;s:16:\"av_contact_field\";b:1;s:16:\"av_content_slide\";b:1;s:16:\"av_gmap_location\";b:1;s:15:\"av_rotator_item\";b:1;s:16:\"av_icongrid_item\";b:0;s:16:\"av_iconlist_item\";b:1;s:13:\"av_image_spot\";b:1;s:15:\"av_partner_logo\";b:1;s:18:\"av_mailchimp_field\";b:1;s:15:\"av_submenu_item\";b:1;s:15:\"av_progress_bar\";b:1;s:8:\"av_slide\";b:1;s:18:\"av_slide_accordion\";b:1;s:19:\"av_fullscreen_slide\";b:1;s:13:\"av_slide_full\";b:1;s:6:\"av_row\";b:1;s:7:\"av_cell\";b:1;s:6:\"av_tab\";b:1;s:12:\"av_team_icon\";b:1;s:21:\"av_testimonial_single\";b:1;s:16:\"av_timeline_item\";b:0;s:9:\"av_toggle\";b:1;}','yes'),(276,'av_alb_element_mgr_update','','yes'),(277,'av_alb_element_check_stat','a:112:{s:9:\"av_player\";s:7:\"checked\";s:7:\"av_blog\";s:7:\"checked\";s:12:\"av_buttonrow\";s:7:\"checked\";s:9:\"av_button\";s:7:\"checked\";s:13:\"av_button_big\";s:7:\"checked\";s:12:\"av_catalogue\";s:7:\"checked\";s:16:\"av_comments_list\";s:7:\"checked\";s:10:\"av_contact\";s:7:\"checked\";s:17:\"av_content_slider\";s:7:\"checked\";s:12:\"av_countdown\";s:7:\"checked\";s:10:\"av_gallery\";s:7:\"checked\";s:21:\"av_horizontal_gallery\";s:7:\"checked\";s:13:\"av_google_map\";s:7:\"checked\";s:16:\"av_cell_one_full\";s:7:\"checked\";s:16:\"av_cell_one_half\";s:7:\"checked\";s:17:\"av_cell_one_third\";s:7:\"checked\";s:17:\"av_cell_two_third\";s:7:\"checked\";s:18:\"av_cell_one_fourth\";s:7:\"checked\";s:20:\"av_cell_three_fourth\";s:7:\"checked\";s:17:\"av_cell_one_fifth\";s:7:\"checked\";s:17:\"av_cell_two_fifth\";s:7:\"checked\";s:19:\"av_cell_three_fifth\";s:7:\"checked\";s:18:\"av_cell_four_fifth\";s:7:\"checked\";s:13:\"av_layout_row\";s:7:\"checked\";s:10:\"av_heading\";s:7:\"checked\";s:19:\"av_headline_rotator\";s:7:\"checked\";s:5:\"av_hr\";s:7:\"checked\";s:12:\"av_font_icon\";s:7:\"checked\";s:11:\"av_icon_box\";s:7:\"checked\";s:11:\"av_icongrid\";s:7:\"checked\";s:11:\"av_iconlist\";s:7:\"checked\";s:8:\"av_image\";s:7:\"checked\";s:16:\"av_image_hotspot\";s:7:\"checked\";s:10:\"av_partner\";s:7:\"checked\";s:11:\"av_magazine\";s:7:\"checked\";s:12:\"av_mailchimp\";s:7:\"checked\";s:18:\"av_masonry_entries\";s:7:\"checked\";s:18:\"av_masonry_gallery\";s:7:\"checked\";s:10:\"av_submenu\";s:7:\"checked\";s:15:\"av_notification\";s:7:\"checked\";s:19:\"av_animated_numbers\";s:7:\"checked\";s:12:\"av_portfolio\";s:7:\"checked\";s:13:\"av_postslider\";s:7:\"checked\";s:11:\"av_progress\";s:7:\"checked\";s:11:\"av_promobox\";s:7:\"checked\";s:14:\"avia_sc_search\";s:7:\"checked\";s:12:\"av_slideshow\";s:7:\"checked\";s:22:\"av_slideshow_accordion\";s:7:\"checked\";s:23:\"av_feature_image_slider\";s:7:\"checked\";s:13:\"av_fullscreen\";s:7:\"checked\";s:17:\"av_slideshow_full\";s:7:\"checked\";s:14:\"av_layerslider\";s:7:\"checked\";s:15:\"av_social_share\";s:7:\"checked\";s:18:\"av_tab_sub_section\";s:7:\"checked\";s:14:\"av_tab_section\";s:7:\"checked\";s:8:\"av_table\";s:7:\"checked\";s:16:\"av_tab_container\";s:7:\"checked\";s:14:\"av_team_member\";s:7:\"checked\";s:15:\"av_testimonials\";s:7:\"checked\";s:11:\"av_timeline\";s:7:\"checked\";s:19:\"av_toggle_container\";s:7:\"checked\";s:8:\"av_video\";s:7:\"checked\";s:12:\"av_codeblock\";s:7:\"checked\";s:11:\"av_one_full\";s:7:\"checked\";s:11:\"av_one_half\";s:7:\"checked\";s:12:\"av_one_third\";s:7:\"checked\";s:12:\"av_two_third\";s:7:\"checked\";s:13:\"av_one_fourth\";s:7:\"checked\";s:15:\"av_three_fourth\";s:7:\"checked\";s:12:\"av_one_fifth\";s:7:\"checked\";s:12:\"av_two_fifth\";s:7:\"checked\";s:14:\"av_three_fifth\";s:7:\"checked\";s:13:\"av_four_fifth\";s:7:\"checked\";s:14:\"av_postcontent\";s:7:\"checked\";s:10:\"av_section\";s:7:\"checked\";s:12:\"av_textblock\";s:7:\"checked\";s:10:\"av_sidebar\";s:7:\"checked\";s:19:\"av_playlist_element\";s:7:\"checked\";s:17:\"av_buttonrow_item\";s:7:\"checked\";s:17:\"av_catalogue_item\";s:7:\"checked\";s:16:\"av_contact_field\";s:7:\"checked\";s:16:\"av_content_slide\";s:7:\"checked\";s:16:\"av_gmap_location\";s:7:\"checked\";s:15:\"av_rotator_item\";s:7:\"checked\";s:16:\"av_icongrid_item\";s:7:\"checked\";s:16:\"av_iconlist_item\";s:7:\"checked\";s:13:\"av_image_spot\";s:7:\"checked\";s:15:\"av_partner_logo\";s:7:\"checked\";s:18:\"av_mailchimp_field\";s:7:\"checked\";s:15:\"av_submenu_item\";s:7:\"checked\";s:15:\"av_progress_bar\";s:7:\"checked\";s:8:\"av_slide\";s:7:\"checked\";s:18:\"av_slide_accordion\";s:7:\"checked\";s:19:\"av_fullscreen_slide\";s:7:\"checked\";s:13:\"av_slide_full\";s:7:\"checked\";s:6:\"av_row\";s:7:\"checked\";s:7:\"av_cell\";s:7:\"checked\";s:6:\"av_tab\";s:7:\"checked\";s:12:\"av_team_icon\";s:7:\"checked\";s:21:\"av_testimonial_single\";s:7:\"checked\";s:16:\"av_timeline_item\";s:7:\"checked\";s:9:\"av_toggle\";s:7:\"checked\";s:17:\"av_product_button\";s:7:\"checked\";s:15:\"av_product_info\";s:7:\"checked\";s:17:\"av_product_review\";s:3:\"new\";s:15:\"av_product_tabs\";s:3:\"new\";s:18:\"av_product_upsells\";s:7:\"checked\";s:15:\"av_product_meta\";s:7:\"checked\";s:16:\"av_product_price\";s:7:\"checked\";s:16:\"av_productslider\";s:3:\"new\";s:14:\"av_productgrid\";s:7:\"checked\";s:14:\"av_productlist\";s:3:\"new\";}','yes'),(278,'av_alb_element_mgr','1.0.1','yes'),(279,'avia_gutenberg_dyn_css_exists_enfold','true','yes'),(290,'user_hit_count','a:3:{s:10:\"2020-05-13\";i:180;s:10:\"2020-05-14\";i:213;s:10:\"2020-05-15\";i:159;}','yes'),(300,'avia_options_enfold','a:1:{s:4:\"avia\";a:304:{s:9:\"frontpage\";s:4:\"3599\";s:9:\"undefined\";s:44:\"reset_filter_checkbox::reset_filter_checkbox\";s:8:\"blogpage\";s:0:\"\";s:4:\"logo\";s:78:\"https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR.jpg\";s:7:\"favicon\";s:59:\"https://solsculpting.com/wp-content/uploads/2021/05/Fav.jpg\";s:9:\"preloader\";s:8:\"disabled\";s:21:\"preloader_transitions\";s:8:\"disabled\";s:14:\"preloader_logo\";s:0:\"\";s:15:\"lightbox_active\";s:15:\"lightbox_active\";s:15:\"error404_custom\";s:0:\"\";s:13:\"error404_page\";s:0:\"\";s:16:\"maintenance_mode\";s:0:\"\";s:16:\"maintenance_page\";s:0:\"\";s:24:\"enable_wp_classic_editor\";s:24:\"enable_wp_classic_editor\";s:31:\"preprocess_shortcodes_in_header\";s:0:\"\";s:16:\"color-body_style\";s:9:\"stretched\";s:17:\"color-frame_width\";s:2:\"20\";s:15:\"header_position\";s:10:\"header_top\";s:20:\"layout_align_content\";s:20:\"content_align_center\";s:18:\"sidebarmenu_sticky\";s:18:\"conditional_sticky\";s:19:\"sidebarmenu_widgets\";s:0:\"\";s:18:\"sidebarmenu_social\";s:8:\"disabled\";s:17:\"responsive_active\";s:17:\"responsive_active\";s:15:\"responsive_size\";s:6:\"1410px\";s:13:\"content_width\";s:2:\"73\";s:14:\"combined_width\";s:2:\"95\";s:12:\"color_scheme\";s:11:\"Enfold 2017\";s:24:\"colorset-header_color-bg\";s:7:\"#ffffff\";s:25:\"colorset-header_color-bg2\";s:7:\"#f8f8f8\";s:29:\"colorset-header_color-primary\";s:7:\"#bf003c\";s:31:\"colorset-header_color-secondary\";s:7:\"#e20531\";s:27:\"colorset-header_color-color\";s:7:\"#000000\";s:26:\"colorset-header_color-meta\";s:7:\"#919191\";s:29:\"colorset-header_color-heading\";s:7:\"#000000\";s:28:\"colorset-header_color-border\";s:7:\"#ebebeb\";s:25:\"colorset-header_color-img\";s:0:\"\";s:33:\"colorset-header_color-customimage\";s:0:\"\";s:25:\"colorset-header_color-pos\";s:13:\"center center\";s:28:\"colorset-header_color-repeat\";s:6:\"repeat\";s:28:\"colorset-header_color-attach\";s:6:\"scroll\";s:22:\"colorset-main_color-bg\";s:7:\"#ffffff\";s:23:\"colorset-main_color-bg2\";s:7:\"#f8f8f8\";s:27:\"colorset-main_color-primary\";s:7:\"#000000\";s:29:\"colorset-main_color-secondary\";s:7:\"#e20531\";s:25:\"colorset-main_color-color\";s:7:\"#000000\";s:24:\"colorset-main_color-meta\";s:7:\"#919191\";s:27:\"colorset-main_color-heading\";s:7:\"#222222\";s:26:\"colorset-main_color-border\";s:7:\"#ebebeb\";s:23:\"colorset-main_color-img\";s:0:\"\";s:31:\"colorset-main_color-customimage\";s:0:\"\";s:23:\"colorset-main_color-pos\";s:13:\"center center\";s:26:\"colorset-main_color-repeat\";s:6:\"repeat\";s:26:\"colorset-main_color-attach\";s:6:\"scroll\";s:27:\"colorset-alternate_color-bg\";s:7:\"#f8f8f8\";s:28:\"colorset-alternate_color-bg2\";s:7:\"#ffffff\";s:32:\"colorset-alternate_color-primary\";s:7:\"#000000\";s:34:\"colorset-alternate_color-secondary\";s:7:\"#e20531\";s:30:\"colorset-alternate_color-color\";s:7:\"#000000\";s:29:\"colorset-alternate_color-meta\";s:7:\"#919191\";s:32:\"colorset-alternate_color-heading\";s:7:\"#222222\";s:31:\"colorset-alternate_color-border\";s:7:\"#ebebeb\";s:28:\"colorset-alternate_color-img\";s:0:\"\";s:36:\"colorset-alternate_color-customimage\";s:0:\"\";s:28:\"colorset-alternate_color-pos\";s:13:\"center center\";s:31:\"colorset-alternate_color-repeat\";s:6:\"repeat\";s:31:\"colorset-alternate_color-attach\";s:6:\"scroll\";s:24:\"colorset-footer_color-bg\";s:7:\"#35383c\";s:25:\"colorset-footer_color-bg2\";s:7:\"#52565c\";s:29:\"colorset-footer_color-primary\";s:7:\"#ffffff\";s:31:\"colorset-footer_color-secondary\";s:7:\"#ebebeb\";s:27:\"colorset-footer_color-color\";s:7:\"#e8e8e8\";s:26:\"colorset-footer_color-meta\";s:7:\"#777777\";s:29:\"colorset-footer_color-heading\";s:7:\"#ffffff\";s:28:\"colorset-footer_color-border\";s:7:\"#35383c\";s:25:\"colorset-footer_color-img\";s:0:\"\";s:33:\"colorset-footer_color-customimage\";s:0:\"\";s:25:\"colorset-footer_color-pos\";s:13:\"center center\";s:28:\"colorset-footer_color-repeat\";s:6:\"repeat\";s:28:\"colorset-footer_color-attach\";s:6:\"scroll\";s:24:\"colorset-socket_color-bg\";s:7:\"#282b2e\";s:25:\"colorset-socket_color-bg2\";s:7:\"#52565c\";s:29:\"colorset-socket_color-primary\";s:7:\"#ffffff\";s:31:\"colorset-socket_color-secondary\";s:7:\"#ebebeb\";s:27:\"colorset-socket_color-color\";s:7:\"#e8e8e8\";s:26:\"colorset-socket_color-meta\";s:7:\"#777777\";s:29:\"colorset-socket_color-heading\";s:7:\"#ffffff\";s:28:\"colorset-socket_color-border\";s:7:\"#282b2e\";s:25:\"colorset-socket_color-img\";s:0:\"\";s:33:\"colorset-socket_color-customimage\";s:0:\"\";s:25:\"colorset-socket_color-pos\";s:13:\"center center\";s:28:\"colorset-socket_color-repeat\";s:6:\"repeat\";s:28:\"colorset-socket_color-attach\";s:6:\"scroll\";s:16:\"color-body_color\";s:7:\"#ffffff\";s:14:\"color-body_img\";s:0:\"\";s:22:\"color-body_customimage\";s:0:\"\";s:14:\"color-body_pos\";s:13:\"center center\";s:17:\"color-body_repeat\";s:6:\"repeat\";s:17:\"color-body_attach\";s:6:\"scroll\";s:14:\"google_webfont\";s:7:\"Raleway\";s:12:\"default_font\";s:7:\"Raleway\";s:23:\"color-default_font_size\";s:4:\"16px\";s:9:\"quick_css\";s:755:\"/* Icons larger */\n#top .iconbox.av-no-box .iconbox_icon {\n font-size: 70px;\n}\n\n/* Icons larger */\n#top .avia-font-flaticon, body .avia-font-flaticon, html body [data-av_iconfont='flaticon']:before {\n font-size: 60px;\n}\n\n/* Icons list header letter spacing */\n.iconbox .iconbox_content .iconbox_content_title {\n letter-spacing: .5px;\n}\n\n/* Socket text line height */\n#socket {\n font-size: 10px;\n line-height: 13px;\n}\n\n/* Footer column widths for mobile & desktop */\n@media only screen and (min-width: 1025px) {\n#footer .av_one_third.first {\n width: 50%;\n}\n\n#footer .el_after_av_one_third {\n width: 18%;\n}\n}\n\ndiv .slideshow_caption h2 {\n font-weight: 900;\n}\n\n#top .av-burger-menu-main {\n display: none !important;\n}\";s:26:\"block_editor_theme_support\";s:0:\"\";s:16:\"advanced_styling\";a:8:{i:0;a:13:{s:2:\"id\";s:2:\"h2\";s:5:\"color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:9:\"font_size\";s:0:\"\";s:11:\"line_height\";s:0:\"\";s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:3:\"400\";s:14:\"text_transform\";s:0:\"\";s:12:\"header_color\";s:4:\"true\";s:10:\"main_color\";s:4:\"true\";s:15:\"alternate_color\";s:4:\"true\";s:12:\"footer_color\";s:4:\"true\";s:12:\"socket_color\";s:4:\"true\";}i:1;a:13:{s:2:\"id\";s:2:\"h1\";s:5:\"color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:9:\"font_size\";s:4:\"45px\";s:11:\"line_height\";s:0:\"\";s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:3:\"900\";s:14:\"text_transform\";s:0:\"\";s:12:\"header_color\";s:4:\"true\";s:10:\"main_color\";s:4:\"true\";s:15:\"alternate_color\";s:4:\"true\";s:12:\"footer_color\";s:4:\"true\";s:12:\"socket_color\";s:4:\"true\";}i:2;a:9:{s:2:\"id\";s:6:\"strong\";s:5:\"color\";s:7:\"#e20531\";s:16:\"background_color\";s:0:\"\";s:11:\"font_family\";s:0:\"\";s:12:\"header_color\";s:4:\"true\";s:10:\"main_color\";s:4:\"true\";s:15:\"alternate_color\";s:4:\"true\";s:12:\"footer_color\";s:4:\"true\";s:12:\"socket_color\";s:4:\"true\";}i:3;a:11:{s:2:\"id\";s:12:\"headings_all\";s:5:\"color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:14:\"text_transform\";s:4:\"none\";s:12:\"header_color\";s:4:\"true\";s:10:\"main_color\";s:4:\"true\";s:15:\"alternate_color\";s:4:\"true\";s:12:\"footer_color\";s:4:\"true\";s:12:\"socket_color\";s:4:\"true\";}i:4;a:10:{s:2:\"id\";s:7:\"buttons\";s:13:\"border_radius\";s:3:\"0px\";s:12:\"border_width\";s:3:\"2px\";s:18:\"padding_left_right\";s:0:\"\";s:18:\"padding_top_bottom\";s:0:\"\";s:11:\"font_family\";s:0:\"\";s:9:\"font_size\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:14:\"text_transform\";s:0:\"\";s:14:\"letter_spacing\";s:0:\"\";}i:5;a:13:{s:2:\"id\";s:2:\"h3\";s:5:\"color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:9:\"font_size\";s:4:\"20px\";s:11:\"line_height\";s:0:\"\";s:11:\"font_family\";s:0:\"\";s:11:\"font_weight\";s:3:\"900\";s:14:\"text_transform\";s:9:\"uppercase\";s:12:\"header_color\";s:4:\"true\";s:10:\"main_color\";s:4:\"true\";s:15:\"alternate_color\";s:4:\"true\";s:12:\"footer_color\";s:4:\"true\";s:12:\"socket_color\";s:4:\"true\";}i:6;a:10:{s:2:\"id\";s:13:\"hover_overlay\";s:13:\"overlay_style\";s:4:\"none\";s:5:\"color\";s:0:\"\";s:10:\"icon_color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:12:\"header_color\";s:4:\"true\";s:10:\"main_color\";s:4:\"true\";s:15:\"alternate_color\";s:4:\"true\";s:12:\"footer_color\";s:4:\"true\";s:12:\"socket_color\";s:4:\"true\";}i:7;a:11:{s:2:\"id\";s:9:\"main_menu\";s:5:\"color\";s:0:\"\";s:16:\"background_color\";s:0:\"\";s:12:\"border_color\";s:0:\"\";s:9:\"font_size\";s:4:\"14px\";s:11:\"font_family\";s:0:\"\";s:14:\"text_transform\";s:9:\"uppercase\";s:14:\"letter_spacing\";s:0:\"\";s:11:\"font_weight\";s:0:\"\";s:12:\"hover_active\";s:8:\"disabled\";s:11:\"item_active\";s:8:\"disabled\";}}s:12:\"menu_display\";s:0:\"\";s:14:\"alternate_menu\";s:2:\"36\";s:24:\"header_mobile_activation\";s:17:\"mobile_menu_phone\";s:18:\"header_menu_border\";s:0:\"\";s:17:\"header_searchicon\";s:8:\"disabled\";s:18:\"submenu_visibility\";s:42:\"av-submenu-hidden av-submenu-display-click\";s:13:\"submenu_clone\";s:16:\"av-submenu-clone\";s:11:\"burger_size\";s:20:\"av-small-burger-icon\";s:13:\"overlay_style\";s:39:\"av-overlay-side av-overlay-side-classic\";s:12:\"burger_color\";s:0:\"\";s:19:\"burger_flyout_width\";s:5:\"500px\";s:13:\"header_layout\";s:36:\"logo_left main_nav_header menu_right\";s:11:\"header_size\";s:4:\"slim\";s:18:\"header_custom_size\";s:3:\"150\";s:12:\"header_style\";s:36:\"minimal_header minimal_header_shadow\";s:16:\"header_title_bar\";s:16:\"hidden_title_bar\";s:13:\"header_sticky\";s:13:\"header_sticky\";s:16:\"header_shrinking\";s:8:\"disabled\";s:18:\"header_unstick_top\";s:8:\"disabled\";s:14:\"header_stretch\";s:8:\"disabled\";s:13:\"header_social\";s:0:\"\";s:21:\"header_secondary_menu\";s:0:\"\";s:19:\"header_phone_active\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:23:\"header_replacement_logo\";s:0:\"\";s:23:\"header_replacement_menu\";s:7:\"#ffffff\";s:14:\"archive_layout\";s:13:\"sidebar_right\";s:11:\"blog_layout\";s:13:\"sidebar_right\";s:13:\"single_layout\";s:13:\"sidebar_right\";s:11:\"page_layout\";s:8:\"fullsize\";s:15:\"archive_sidebar\";s:0:\"\";s:19:\"smartphones_sidebar\";s:8:\"disabled\";s:16:\"page_nesting_nav\";s:16:\"page_nesting_nav\";s:15:\"sidebar_styling\";s:0:\"\";s:22:\"sidebar_left_textalign\";s:0:\"\";s:22:\"display_widgets_socket\";s:3:\"all\";s:11:\"footer_page\";s:0:\"\";s:14:\"footer_columns\";s:1:\"2\";s:9:\"copyright\";s:510:\"Products and statements contained in this site have not been evaluated by the FDA. These products are not intended to cure, diagnose, or prevent any disease. Always consult your physician before use. <br>Copyright © SolSculpting by <a href="https://avantibody.com/" target="_blank">Avanti Body.</a> All rights reserved. Website design by: <a href="https://saramichelleds.com/" target="_blank">Sara Michelle Design Studio</a>. [nolink]\";s:13:\"footer_social\";s:8:\"disabled\";s:15:\"preview_disable\";s:8:\"disabled\";s:8:\"lock_alb\";s:8:\"disabled\";s:19:\"lock_alb_for_admins\";s:8:\"disabled\";s:21:\"alb_developer_options\";s:8:\"disabled\";s:19:\"alb_options_toggles\";s:0:\"\";s:6:\"markup\";s:0:\"\";s:17:\"layerslider_activ\";s:0:\"\";s:17:\"blog_global_style\";s:24:\"elegant-blog modern-blog\";s:10:\"blog_style\";s:6:\"custom\";s:16:\"disable_post_nav\";s:0:\"\";s:17:\"single_post_style\";s:10:\"single-big\";s:27:\"single_post_related_entries\";s:21:\"av-related-style-full\";s:16:\"blog-meta-author\";s:16:\"blog-meta-author\";s:18:\"blog-meta-comments\";s:18:\"blog-meta-comments\";s:18:\"blog-meta-category\";s:18:\"blog-meta-category\";s:14:\"blog-meta-date\";s:14:\"blog-meta-date\";s:19:\"blog-meta-html-info\";s:8:\"disabled\";s:13:\"blog-meta-tag\";s:13:\"blog-meta-tag\";s:14:\"share_facebook\";s:14:\"share_facebook\";s:13:\"share_twitter\";s:13:\"share_twitter\";s:14:\"share_whatsapp\";s:14:\"share_whatsapp\";s:15:\"share_pinterest\";s:15:\"share_pinterest\";s:12:\"share_reddit\";s:12:\"share_reddit\";s:14:\"share_linkedin\";s:8:\"disabled\";s:12:\"share_tumblr\";s:8:\"disabled\";s:8:\"share_vk\";s:8:\"disabled\";s:10:\"share_mail\";s:8:\"disabled\";s:10:\"share_yelp\";s:8:\"disabled\";s:12:\"social_icons\";a:2:{i:0;a:2:{s:11:\"social_icon\";s:7:\"twitter\";s:16:\"social_icon_link\";s:18:\"http://twitter.com\";}i:1;a:2:{s:11:\"social_icon\";s:8:\"facebook\";s:16:\"social_icon_link\";s:19:\"http://facebook.com\";}}s:9:\"merge_css\";s:4:\"avia\";s:8:\"merge_js\";s:4:\"avia\";s:19:\"merge_show_advanced\";s:8:\"disabled\";s:17:\"merge_disable_ssl\";s:0:\"\";s:30:\"merge_disable_unique_timestamp\";s:0:\"\";s:20:\"disable_alb_elements\";s:4:\"auto\";s:34:\"av_alb_disable_av_toggle_container\";s:8:\"disabled\";s:37:\"av_alb_disable_av_slideshow_accordion\";s:8:\"disabled\";s:29:\"av_alb_disable_av_layerslider\";s:8:\"disabled\";s:27:\"av_alb_disable_av_countdown\";s:8:\"disabled\";s:34:\"av_alb_disable_av_animated_numbers\";s:8:\"disabled\";s:24:\"av_alb_disable_av_player\";s:8:\"disabled\";s:27:\"av_alb_disable_av_buttonrow\";s:8:\"disabled\";s:27:\"av_alb_disable_av_catalogue\";s:8:\"disabled\";s:25:\"av_alb_disable_av_contact\";s:8:\"disabled\";s:32:\"av_alb_disable_av_content_slider\";s:8:\"disabled\";s:27:\"av_alb_disable_av_slideshow\";s:8:\"disabled\";s:38:\"av_alb_disable_av_feature_image_slider\";s:8:\"disabled\";s:28:\"av_alb_disable_av_fullscreen\";s:8:\"disabled\";s:28:\"av_alb_disable_av_button_big\";s:8:\"disabled\";s:32:\"av_alb_disable_av_slideshow_full\";s:8:\"disabled\";s:25:\"av_alb_disable_av_submenu\";s:8:\"disabled\";s:28:\"av_alb_disable_av_google_map\";s:8:\"disabled\";s:34:\"av_alb_disable_av_headline_rotator\";s:8:\"disabled\";s:36:\"av_alb_disable_av_horizontal_gallery\";s:8:\"disabled\";s:27:\"av_alb_disable_av_font_icon\";s:8:\"disabled\";s:26:\"av_alb_disable_av_icon_box\";s:8:\"disabled\";s:26:\"av_alb_disable_av_icongrid\";s:8:\"disabled\";s:26:\"av_alb_disable_av_iconlist\";s:8:\"disabled\";s:23:\"av_alb_disable_av_image\";s:8:\"disabled\";s:31:\"av_alb_disable_av_image_hotspot\";s:8:\"disabled\";s:26:\"av_alb_disable_av_magazine\";s:8:\"disabled\";s:27:\"av_alb_disable_av_mailchimp\";s:8:\"disabled\";s:33:\"av_alb_disable_av_masonry_entries\";s:8:\"disabled\";s:33:\"av_alb_disable_av_masonry_gallery\";s:8:\"disabled\";s:30:\"av_alb_disable_av_notification\";s:8:\"disabled\";s:25:\"av_alb_disable_av_partner\";s:8:\"disabled\";s:27:\"av_alb_disable_av_portfolio\";s:8:\"disabled\";s:28:\"av_alb_disable_av_postslider\";s:8:\"disabled\";s:31:\"av_alb_disable_av_productslider\";s:8:\"disabled\";s:26:\"av_alb_disable_av_progress\";s:8:\"disabled\";s:26:\"av_alb_disable_av_promobox\";s:8:\"disabled\";s:29:\"av_alb_disable_avia_sc_search\";s:8:\"disabled\";s:20:\"av_alb_disable_av_hr\";s:8:\"disabled\";s:25:\"av_alb_disable_av_heading\";s:8:\"disabled\";s:29:\"av_alb_disable_av_tab_section\";s:8:\"disabled\";s:23:\"av_alb_disable_av_table\";s:8:\"disabled\";s:31:\"av_alb_disable_av_tab_container\";s:8:\"disabled\";s:29:\"av_alb_disable_av_team_member\";s:8:\"disabled\";s:30:\"av_alb_disable_av_testimonials\";s:8:\"disabled\";s:26:\"av_alb_disable_av_timeline\";s:8:\"disabled\";s:29:\"scan_widgets_for_alb_elements\";s:0:\"\";s:20:\"disable_mediaelement\";s:0:\"\";s:13:\"disable_video\";s:8:\"disabled\";s:12:\"disable_blog\";s:8:\"disabled\";s:13:\"disable_emoji\";s:8:\"disabled\";s:18:\"disable_jq_migrate\";s:8:\"disabled\";s:16:\"jquery_in_footer\";s:8:\"disabled\";s:16:\"gfonts_in_footer\";s:8:\"disabled\";s:24:\"delete_assets_after_save\";s:8:\"disabled\";s:34:\"privacy_message_commentform_active\";s:8:\"disabled\";s:15:\"privacy_message\";s:0:\"\";s:34:\"privacy_message_contactform_active\";s:8:\"disabled\";s:23:\"privacy_message_contact\";s:0:\"\";s:32:\"privacy_message_mailchimp_active\";s:8:\"disabled\";s:25:\"privacy_message_mailchimp\";s:0:\"\";s:28:\"privacy_message_login_active\";s:8:\"disabled\";s:21:\"privacy_message_login\";s:0:\"\";s:35:\"privacy_message_registration_active\";s:8:\"disabled\";s:28:\"privacy_message_registration\";s:0:\"\";s:14:\"cookie_consent\";s:0:\"\";s:23:\"cookie_default_settings\";s:0:\"\";s:14:\"cookie_content\";s:97:\"This site uses cookies. By continuing to browse the site, you are agreeing to our use of cookies.\";s:15:\"cookie_position\";s:6:\"bottom\";s:15:\"msg_bar_buttons\";a:3:{i:0;a:4:{s:20:\"msg_bar_button_label\";s:15:\"Accept settings\";s:21:\"msg_bar_button_action\";s:0:\"\";s:19:\"msg_bar_button_link\";s:0:\"\";s:22:\"msg_bar_button_tooltip\";s:61:\"Allow to use cookies, you can modify used cookies in settings\";}i:1;a:4:{s:20:\"msg_bar_button_label\";s:22:\"Hide notification only\";s:21:\"msg_bar_button_action\";s:17:\"hide_notification\";s:19:\"msg_bar_button_link\";s:0:\"\";s:22:\"msg_bar_button_tooltip\";s:88:\"Do not allow to use cookies - some functionality on our site might not work as expected.\";}i:2;a:4:{s:20:\"msg_bar_button_label\";s:8:\"Settings\";s:21:\"msg_bar_button_action\";s:10:\"info_modal\";s:19:\"msg_bar_button_link\";s:0:\"\";s:22:\"msg_bar_button_tooltip\";s:74:\"Get more info about cookies and select which one you want to allow or not.\";}}s:25:\"modal_popup_window_action\";s:0:\"\";s:26:\"modal_popup_window_buttons\";a:2:{i:0;a:4:{s:24:\"modal_popup_button_label\";s:15:\"Accept settings\";s:25:\"modal_popup_button_action\";s:0:\"\";s:23:\"modal_popup_button_link\";s:0:\"\";s:26:\"modal_popup_button_tooltip\";s:69:\"Allow to use cookies, you always can modify used cookies and services\";}i:1;a:4:{s:24:\"modal_popup_button_label\";s:22:\"Hide notification only\";s:25:\"modal_popup_button_action\";s:17:\"hide_notification\";s:23:\"modal_popup_button_link\";s:0:\"\";s:26:\"modal_popup_button_tooltip\";s:100:\"Do not allow to use cookies or services - some functionality on our site might not work as expected.\";}}s:26:\"cookie_info_custom_content\";s:8:\"disabled\";s:27:\"cookie_info_content_heading\";s:27:\"Cookie and Privacy Settings\";s:19:\"cookie_info_content\";a:5:{i:0;a:2:{s:5:\"label\";s:18:\"How we use cookies\";s:7:\"content\";s:466:\"We may request cookies to be set on your device. We use cookies to let us know when you visit our websites, how you interact with us, to enrich your user experience, and to customize your relationship with our website. <br><br>Click on the different category headings to find out more. You can also change some of your preferences. Note that blocking some types of cookies may impact your experience on our websites and the services we are able to offer.\";}i:1;a:2:{s:5:\"label\";s:25:\"Essential Website Cookies\";s:7:\"content\";s:1170:\"<p>These cookies are strictly necessary to provide you with services available through our website and to use some of its features.<br /><br />Because these cookies are strictly necessary to deliver the website, refuseing them will have impact how our site functions. You always can block or delete cookies by changing your browser settings and force blocking all cookies on this website. But this will always prompt you to accept/refuse cookies when revisiting our site.<br /><br />We fully respect if you want to refuse cookies but to avoid asking you again and again kindly allow us to store a cookie for that. You are free to opt out any time or opt in for other cookies to get a better experience. If you refuse cookies we will remove all set cookies in our domain.<br /><br />We provide you with a list of stored cookies on your computer in our domain so you can check what we stored. Due to security reasons we are not able to show or modify cookies from other domains. You can check these in your browser security settings.</p>[av_privacy_allow_cookies]<br /><br />[av_privacy_accept_essential_cookies]\";}i:2;a:2:{s:5:\"label\";s:24:\"Google Analytics Cookies\";s:7:\"content\";s:436:\"<p>These cookies collect information that is used either in aggregate form to help us understand how our website is being used or how effective our marketing campaigns are, or to help us customize our website and application for you in order to enhance your experience.<br><br>If you do not want that we track your visit to our site you can disable tracking in your browser here:</p> [av_privacy_google_tracking]\";}i:3;a:2:{s:5:\"label\";s:23:\"Other external services\";s:7:\"content\";s:657:\"<p>We also use different external services like Google Webfonts, Google Maps, and external Video providers. Since these providers may collect personal data like your IP address we allow you to block them here. Please be aware that this might heavily reduce the functionality and appearance of our site. Changes will take effect once you reload the page.<br /><br />Google Webfont Settings:</p>[av_privacy_google_webfonts]<p>Google Map Settings:</p>[av_privacy_google_maps]<p>Google reCaptcha Settings:</p>[av_privacy_google_recaptcha]<p>Vimeo and Youtube video embeds:</p>[av_privacy_video_embeds]\";}i:4;a:2:{s:5:\"label\";s:14:\"Privacy Policy\";s:7:\"content\";s:128:\"You can read about our cookies and privacy settings in detail on our Privacy Policy Page. <br><br> [av_privacy_link]\";}}s:28:\"cookie_show_advanced_options\";s:8:\"disabled\";s:23:\"cookie_message_bar_only\";s:0:\"\";s:20:\"cookie_consent_badge\";s:0:\"\";s:18:\"cookie_auto_reload\";s:0:\"\";s:26:\"cookie_refuse_button_alert\";s:299:\"When refusing all cookies this site might not be able to work as expected. Please check our settings page and opt out for cookies or functions you do not want to use and accept cookies. You will be shown this message every time you open a new window or a new tab.\n\nAre you sure you want to continue?\";s:14:\"custom_cookies\";a:1:{i:0;a:5:{s:11:\"cookie_name\";s:0:\"\";s:11:\"cookie_path\";s:0:\"\";s:14:\"cookie_content\";s:0:\"\";s:16:\"cookie_info_desc\";s:0:\"\";s:21:\"cookie_compare_action\";s:0:\"\";}}s:13:\"mailchimp_api\";s:0:\"\";s:22:\"mailchimp_verified_key\";s:0:\"\";s:9:\"analytics\";s:0:\"\";s:12:\"gmap_enabled\";s:12:\"disable_gmap\";s:8:\"gmap_api\";s:0:\"\";s:17:\"gmap_verify_state\";s:0:\"\";s:17:\"gmap_verified_key\";s:0:\"\";s:22:\"avia_recaptcha_version\";s:0:\"\";s:22:\"avia_recaptcha_pkey_v2\";s:0:\"\";s:22:\"avia_recaptcha_skey_v2\";s:0:\"\";s:28:\"avia_recaptcha_key_verify_v2\";s:0:\"\";s:22:\"avia_recaptcha_pkey_v3\";s:0:\"\";s:22:\"avia_recaptcha_skey_v3\";s:0:\"\";s:20:\"avia_recaptcha_score\";s:1:\"5\";s:20:\"avia_recaptcha_badge\";s:20:\"contact_only_message\";s:28:\"avia_recaptcha_key_verify_v3\";s:0:\"\";s:26:\"recaptcha_verified_keys_v2\";s:0:\"\";s:26:\"recaptcha_verified_keys_v3\";s:0:\"\";s:9:\"cart_icon\";s:0:\"\";s:14:\"product_layout\";s:7:\"minimal\";s:15:\"product_gallery\";s:0:\"\";s:11:\"shop_banner\";s:0:\"\";s:17:\"shop_banner_image\";s:0:\"\";s:25:\"shop_banner_overlay_color\";s:7:\"#000000\";s:27:\"shop_banner_overlay_opacity\";s:3:\"0.5\";s:19:\"shop_banner_message\";s:0:\"\";s:25:\"shop_banner_message_color\";s:7:\"#ffffff\";s:18:\"shop_banner_global\";s:8:\"disabled\";s:17:\"avia-nonce-import\";s:10:\"44fc40949b\";s:22:\"upload_filter_checkbox\";s:8:\"disabled\";s:21:\"upload_keep_quick_css\";s:8:\"disabled\";s:18:\"upload_filter_tabs\";s:0:\"\";s:18:\"config_file_upload\";s:0:\"\";s:21:\"reset_filter_checkbox\";s:8:\"disabled\";s:20:\"reset_keep_quick_css\";s:8:\"disabled\";s:17:\"reset_filter_tabs\";s:0:\"\";s:20:\"alb_templates_upload\";s:0:\"\";s:15:\"iconfont_upload\";s:0:\"\";s:15:\"typefont_upload\";s:0:\"\";s:20:\"updates_envato_token\";s:0:\"\";s:26:\"updates_envato_token_state\";s:0:\"\";s:29:\"updates_envato_verified_token\";s:0:\"\";s:16:\"updates_username\";s:0:\"\";s:15:\"updates_api_key\";s:0:\"\";s:19:\"updates_envato_info\";s:0:\"\";}}','yes'),(301,'avia_rewrite_flush','1','yes'),(302,'avia_stylesheet_dir_writableenfold','true','yes'),(303,'avia_stylesheet_existsenfold','true','yes'),(304,'avia_stylesheet_dynamic_versionenfold','60a41f3d92128','yes'),(326,'portfolio_entries_children','a:0:{}','yes'),(327,'widget_woocommerce_layered_nav_filters','a:2:{i:2;a:1:{s:5:\"title\";s:14:\"Active Filters\";}s:12:\"_multiwidget\";i:1;}','yes'),(328,'widget_woocommerce_layered_nav','a:4:{i:2;a:4:{s:5:\"title\";s:14:\"Filter by Type\";s:9:\"attribute\";s:10:\"which-type\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";}i:3;a:4:{s:5:\"title\";s:15:\"Filter by Brand\";s:9:\"attribute\";s:5:\"brand\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";}i:4;a:4:{s:5:\"title\";s:14:\"Filter by Size\";s:9:\"attribute\";s:4:\"size\";s:12:\"display_type\";s:4:\"list\";s:10:\"query_type\";s:3:\"and\";}s:12:\"_multiwidget\";i:1;}','yes'),(329,'widget_woocommerce_price_filter','a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Filter by price\";}s:12:\"_multiwidget\";i:1;}','yes'),(330,'widget_woocommerce_product_search','a:2:{i:2;a:1:{s:5:\"title\";s:15:\"Search Products\";}s:12:\"_multiwidget\";i:1;}','yes'),(331,'av_demo_content_imported','1','yes'),(352,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','off'),(353,'ls-latest-version','7.1.2','yes'),(354,'ls-p-url','https://layerslider.kreaturamedia.com/pricing/','yes'),(355,'recently_activated','a:23:{s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";i:1785116131;s:33:\"classic-editor/classic-editor.php\";i:1785116131;s:27:\"redirection/redirection.php\";i:1785116131;s:23:\"pagespeed/pagespeed.php\";i:1785116131;s:55:\"AVRIL_JANCOK-a8f769d501e0/AVRIL_JANCOK-a8f769d501e0.php\";i:1785116131;s:47:\"better-search-replace/better-search-replace.php\";i:1785116131;s:56:\"essential-addons-elementor/essential_adons_elementor.php\";i:1785116131;s:25:\"sucuri-scanner/sucuri.php\";i:1785116131;s:35:\"classic-widgets/classic-widgets.php\";i:1785116131;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:1785116131;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:1785116131;s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";i:1785116131;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:1785116131;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:1785116131;s:71:\"headers-security-advanced-hsts-wp/headers-security-advanced-hsts-wp.php\";i:1785116131;s:24:\"wordpress-seo/wp-seo.php\";i:1785116131;s:29:\"wp-fast-oqo0/wp-fast-oqo0.php\";i:1785116131;s:31:\"elementor-pro/elementor-pro.php\";i:1785116131;s:33:\"post-base-nyuo/post-base-nyuo.php\";i:1785116131;s:35:\"wp-cache-7369ea/wp-cache-7369ea.php\";i:1785116131;s:23:\"elementor/elementor.php\";i:1785116131;s:37:\"post-helper-46n6/post-helper-46n6.php\";i:1785116131;s:31:\"tracking-code-manager/index.php\";i:1785116131;}','off'),(359,'ls-store-last-updated','1590372352','yes'),(360,'ls-store-data','a:4:{s:12:\"last_updated\";s:10:\"2020-05-18\";s:7:\"sliders\";a:84:{s:22:\"product-showcase-light\";a:7:{s:8:\"released\";s:10:\"2020-05-18\";s:4:\"name\";s:26:\"Product Showcase – Light\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.11.1\";s:6:\"groups\";s:25:\"new,premium,slider,static\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/sliders/product-showcase-light/\";s:7:\"preview\";s:83:\"https://repository.kreaturamedia.com/v4/sliders/packages/product-showcase-light.jpg\";}s:12:\"fashion-shop\";a:7:{s:8:\"released\";s:10:\"2020-05-12\";s:4:\"name\";s:12:\"Fashion Shop\";s:7:\"premium\";b:0;s:8:\"requires\";s:6:\"6.11.1\";s:6:\"groups\";s:22:\"new,free,slider,static\";s:3:\"url\";s:59:\"https://layerslider.kreaturamedia.com/sliders/fashion-shop/\";s:7:\"preview\";s:73:\"https://repository.kreaturamedia.com/v4/sliders/packages/fashion-shop.jpg\";}s:12:\"pixel-agency\";a:7:{s:8:\"released\";s:10:\"2020-05-05\";s:4:\"name\";s:12:\"PIXEL Agency\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.11.1\";s:6:\"groups\";s:55:\"new,premium,fullwidth,landing,website,text,popup,static\";s:3:\"url\";s:59:\"https://layerslider.kreaturamedia.com/sliders/pixel-agency/\";s:7:\"preview\";s:73:\"https://repository.kreaturamedia.com/v4/sliders/packages/pixel-agency.jpg\";}s:11:\"mode-slider\";a:7:{s:8:\"released\";s:10:\"2020-04-28\";s:4:\"name\";s:11:\"Mode Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:6:\"6.11.1\";s:6:\"groups\";s:30:\"new,free,fullwidth,slider,text\";s:3:\"url\";s:58:\"https://layerslider.kreaturamedia.com/sliders/mode-slider/\";s:7:\"preview\";s:72:\"https://repository.kreaturamedia.com/v4/sliders/packages/mode-slider.jpg\";}s:13:\"mountain-bike\";a:7:{s:8:\"released\";s:10:\"2020-04-22\";s:4:\"name\";s:13:\"Mountain Bike\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.11.1\";s:6:\"groups\";s:45:\"premium,new,fullsize,landing,pack,static,text\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/sliders/mountain-bike/\";s:7:\"preview\";s:74:\"https://repository.kreaturamedia.com/v4/sliders/packages/mountain-bike.jpg\";}s:18:\"aerial-photography\";a:7:{s:8:\"released\";s:10:\"2020-04-14\";s:4:\"name\";s:18:\"Aerial Photography\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:39:\"premium,new,slider,static,text,kenburns\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/aerial-photography/\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/aerial-photography.jpg\";}s:24:\"simple-fullscreen-slider\";a:7:{s:8:\"released\";s:10:\"2020-04-07\";s:4:\"name\";s:24:\"Simple Fullscreen Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:46:\"free,new,fullsize,landing,static,text,kenburns\";s:3:\"url\";s:71:\"https://layerslider.kreaturamedia.com/sliders/simple-fullscreen-slider/\";s:7:\"preview\";s:85:\"https://repository.kreaturamedia.com/v4/sliders/packages/simple-fullscreen-slider.jpg\";}s:21:\"covid-19-notification\";a:8:{s:8:\"released\";s:10:\"2020-04-01\";s:4:\"name\";s:21:\"COVID-19 Notification\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:17:\"premium,new,popup\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/popups/#covid-19-notification\";s:7:\"preview\";s:82:\"https://repository.kreaturamedia.com/v4/sliders/packages/covid-19-notification.jpg\";}s:19:\"covid-19-bottom-bar\";a:8:{s:8:\"released\";s:10:\"2020-04-01\";s:4:\"name\";s:19:\"COVID-19 Bottom Bar\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:17:\"premium,new,popup\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/popups/#covid-19-bottom-bar\";s:7:\"preview\";s:80:\"https://repository.kreaturamedia.com/v4/sliders/packages/covid-19-bottom-bar.jpg\";}s:14:\"top-bar-notice\";a:8:{s:8:\"released\";s:10:\"2020-04-01\";s:4:\"name\";s:14:\"Top Bar Notice\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:17:\"premium,new,popup\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/popups/#top-bar-notice\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/top-bar-notice.jpg\";}s:20:\"christmas-snow-globe\";a:8:{s:8:\"released\";s:10:\"2019-12-19\";s:4:\"name\";s:20:\"Christmas Snow Globe\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:38:\"premium,new,parallax,popup,loop,filter\";s:3:\"url\";s:66:\"https://layerslider.kreaturamedia.com/popups/#christmas-snow-globe\";s:7:\"preview\";s:81:\"https://repository.kreaturamedia.com/v4/sliders/packages/christmas-snow-globe.jpg\";}s:9:\"xmas-2019\";a:7:{s:8:\"released\";s:10:\"2019-12-19\";s:4:\"name\";s:9:\"Xmas 2019\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:39:\"premium,new,parallax,slider,loop,filter\";s:3:\"url\";s:56:\"https://layerslider.kreaturamedia.com/sliders/xmas-2019/\";s:7:\"preview\";s:70:\"https://repository.kreaturamedia.com/v4/sliders/packages/xmas-2019.jpg\";}s:18:\"creative-portraits\";a:7:{s:8:\"released\";s:10:\"2019-12-09\";s:4:\"name\";s:18:\"Creative Portraits\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:36:\"premium,new,fullwidth,landing,static\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/creative-portraits/\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/creative-portraits.jpg\";}s:13:\"parallax-city\";a:7:{s:8:\"released\";s:10:\"2019-12-02\";s:4:\"name\";s:13:\"Parallax City\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:62:\"premium,new,landing,pack,parallax,text,blend,fullwidth,website\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/sliders/parallax-city/\";s:7:\"preview\";s:74:\"https://repository.kreaturamedia.com/v4/sliders/packages/parallax-city.jpg\";}s:10:\"cybertruck\";a:7:{s:8:\"released\";s:10:\"2019-11-28\";s:4:\"name\";s:10:\"Cybertruck\";s:7:\"premium\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:43:\"premium,new,fullsize,landing,specialeffects\";s:3:\"url\";s:57:\"https://layerslider.kreaturamedia.com/sliders/cybertruck/\";s:7:\"preview\";s:71:\"https://repository.kreaturamedia.com/v4/sliders/packages/cybertruck.jpg\";}s:17:\"summer-collection\";a:7:{s:8:\"released\";s:10:\"2019-11-21\";s:4:\"name\";s:17:\"Summer Collection\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:25:\"free,new,fullwidth,slider\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/sliders/summer-collection/\";s:7:\"preview\";s:78:\"https://repository.kreaturamedia.com/v4/sliders/packages/summer-collection.jpg\";}s:18:\"nature-slider-pack\";a:7:{s:8:\"released\";s:10:\"2019-11-14\";s:4:\"name\";s:18:\"Nature Slider PACK\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.9.0\";s:6:\"groups\";s:66:\"premium,new,text,blend,fullwidth,media,landing,packs,popup,website\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/nature-slider-pack/\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/nature-slider-pack.jpg\";}s:20:\"catering-xmas-slider\";a:7:{s:8:\"released\";s:10:\"2017-12-22\";s:4:\"name\";s:25:\"Catering Christmas Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:32:\"premium,static,text,blend,slider\";s:3:\"url\";s:72:\"https://layerslider.kreaturamedia.com/sliders/catering-christmas-slider/\";s:7:\"preview\";s:81:\"https://repository.kreaturamedia.com/v4/sliders/packages/catering-xmas-slider.jpg\";}s:20:\"discover-the-details\";a:7:{s:8:\"released\";s:10:\"2017-12-19\";s:4:\"name\";s:20:\"Discover the Details\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:53:\"premium,loop,parallax,blendmode,specialeffects,slider\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/sliders/discover-the-details/\";s:7:\"preview\";s:81:\"https://repository.kreaturamedia.com/v4/sliders/packages/discover-the-details.jpg\";}s:10:\"rainforest\";a:7:{s:8:\"released\";s:10:\"2017-12-17\";s:4:\"name\";s:10:\"Rainforest\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:60:\"premium,loop,filter,blendmode,fullsize,specialeffects,slider\";s:3:\"url\";s:57:\"https://layerslider.kreaturamedia.com/sliders/rainforest/\";s:7:\"preview\";s:71:\"https://repository.kreaturamedia.com/v4/sliders/packages/rainforest.jpg\";}s:30:\"ecommerce-global-hover-example\";a:7:{s:8:\"released\";s:10:\"2017-12-15\";s:4:\"name\";s:30:\"eCommerce Global Hover Example\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:26:\"premium,experiments,slider\";s:3:\"url\";s:77:\"https://layerslider.kreaturamedia.com/sliders/ecommerce-global-hover-example/\";s:7:\"preview\";s:91:\"https://repository.kreaturamedia.com/v4/sliders/packages/ecommerce-global-hover-example.jpg\";}s:20:\"3d-canyon-experience\";a:7:{s:8:\"released\";s:10:\"2017-12-13\";s:4:\"name\";s:20:\"3D Canyon Experience\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:40:\"premium,parallax,experiments,text,slider\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/sliders/3d-canyon-experience/\";s:7:\"preview\";s:81:\"https://repository.kreaturamedia.com/v4/sliders/packages/3d-canyon-experience.jpg\";}s:14:\"vintage-photos\";a:7:{s:8:\"released\";s:10:\"2017-12-08\";s:4:\"name\";s:14:\"Vintage Photos\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.6.0\";s:6:\"groups\";s:50:\"premium,fullsize,loop,filter,specialeffects,slider\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/vintage-photos/\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/vintage-photos.jpg\";}s:8:\"aquarium\";a:7:{s:8:\"released\";s:10:\"2017-12-04\";s:4:\"name\";s:8:\"Aquarium\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:71:\"premium,parallax,fullsize,loop,filter,experiments,specialeffects,slider\";s:3:\"url\";s:55:\"https://layerslider.kreaturamedia.com/sliders/aquarium/\";s:7:\"preview\";s:69:\"https://repository.kreaturamedia.com/v4/sliders/packages/aquarium.jpg\";}s:16:\"what-is-the-time\";a:7:{s:8:\"released\";s:10:\"2017-08-25\";s:4:\"name\";s:17:\"What is the time?\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:54:\"premium,parallax,text,blendmode,experiments,api,slider\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/what-is-the-time/\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/what-is-the-time.jpg\";}s:18:\"personal-page-pack\";a:7:{s:8:\"released\";s:10:\"2017-08-23\";s:4:\"name\";s:18:\"Personal Page PACK\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:62:\"premium,fullsize,fullwidth,landing,text,parallax,packs,website\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/personal-page-pack/\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/personal-page-pack.jpg\";}s:19:\"marketing-page-pack\";a:7:{s:8:\"released\";s:10:\"2017-08-21\";s:4:\"name\";s:19:\"Marketing Page PACK\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:69:\"premium,fullsize,fullwidth,landing,parallax,static,loop,packs,website\";s:3:\"url\";s:66:\"https://layerslider.kreaturamedia.com/sliders/marketing-page-pack/\";s:7:\"preview\";s:80:\"https://repository.kreaturamedia.com/v4/sliders/packages/marketing-page-pack.jpg\";}s:14:\"dynamic-slider\";a:7:{s:8:\"released\";s:10:\"2017-08-18\";s:4:\"name\";s:14:\"Dynamic Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:32:\"premium,fullwidth,landing,static\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/dynamic-slider/\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/dynamic-slider.jpg\";}s:14:\"colorful-cases\";a:7:{s:8:\"released\";s:10:\"2017-08-16\";s:4:\"name\";s:14:\"Colorful Cases\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:50:\"premium,text,loop,parallax,static,blendmode,slider\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/colorful-cases/\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/colorful-cases.jpg\";}s:16:\"beauty-shop-pack\";a:7:{s:8:\"released\";s:10:\"2017-08-14\";s:4:\"name\";s:16:\"Beauty Shop PACK\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:44:\"premium,fullwidth,text,landing,packs,website\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/beauty-shop-pack/\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/beauty-shop-pack.jpg\";}s:14:\"discount-popup\";a:8:{s:8:\"released\";s:10:\"2017-12-10\";s:4:\"name\";s:14:\"Discount Popup\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:13:\"premium,popup\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/popups/#discount-popup\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/discount-popup.jpg\";}s:18:\"social-share-popup\";a:8:{s:8:\"released\";s:10:\"2017-12-06\";s:4:\"name\";s:18:\"Social Share Popup\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:17:\"premium,popup,api\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#social-share-popup\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/social-share-popup.jpg\";}s:16:\"popup-guide-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:16:\"Popup Guide Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:27:\"premium,popup,parallax,text\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/popups/#popup-guide-demo\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-guide-demo.jpg\";}s:18:\"popup-welcome-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Popup Welcome Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:27:\"premium,popup,parallax,text\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#popup-welcome-demo\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-welcome-demo.jpg\";}s:22:\"popup-transparent-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:22:\"Popup Transparent Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:27:\"premium,popup,parallax,loop\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/#popup-transparent-demo\";s:7:\"preview\";s:83:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-transparent-demo.jpg\";}s:18:\"popup-sidebar-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Popup Sidebar Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:40:\"premium,popup,experiments,blendmode,text\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#popup-sidebar-demo\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-sidebar-demo.jpg\";}s:19:\"popup-photo-gallery\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:19:\"Popup Photo Gallery\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:22:\"premium,popup,kenburns\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/popups/#popup-photo-gallery\";s:7:\"preview\";s:80:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-photo-gallery.jpg\";}s:16:\"popup-modal-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:16:\"Popup Modal Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:20:\"premium,popup,static\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/popups/#popup-modal-demo\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-modal-demo.jpg\";}s:18:\"popup-infobar-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Popup Infobar Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:30:\"premium,popup,experiments,text\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#popup-infobar-demo\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-infobar-demo.jpg\";}s:24:\"popup-fullsize-desk-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:24:\"Popup Fullsize Desk Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:43:\"premium,popup,experiments,fullsize,parallax\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/#popup-fullsize-desk-demo\";s:7:\"preview\";s:85:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-fullsize-desk-demo.jpg\";}s:18:\"conversation-popup\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Conversation Popup\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:25:\"premium,popup,experiments\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#conversation-popup\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/conversation-popup.jpg\";}s:20:\"global-hover-example\";a:7:{s:8:\"released\";s:10:\"2017-05-02\";s:4:\"name\";s:20:\"Global Hover Example\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.4.0\";s:6:\"groups\";s:55:\"premium,experiments,specialeffects,parallax,text,slider\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/sliders/global-hover-example/\";s:7:\"preview\";s:81:\"https://repository.kreaturamedia.com/v4/sliders/packages/global-hover-example.jpg\";}s:10:\"gastronomy\";a:7:{s:8:\"released\";s:10:\"2017-03-29\";s:4:\"name\";s:10:\"Gastronomy\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.2.2\";s:6:\"groups\";s:35:\"premium,kenburns,filter,text,slider\";s:3:\"url\";s:57:\"https://layerslider.kreaturamedia.com/sliders/gastronomy/\";s:7:\"preview\";s:71:\"https://repository.kreaturamedia.com/v4/sliders/packages/gastronomy.jpg\";}s:13:\"police-lights\";a:7:{s:8:\"released\";s:10:\"2017-03-29\";s:4:\"name\";s:13:\"Police Lights\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.2.2\";s:6:\"groups\";s:53:\"premium,specialeffects,loop,blendmode,parallax,slider\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/sliders/police-lights/\";s:7:\"preview\";s:74:\"https://repository.kreaturamedia.com/v4/sliders/packages/police-lights.jpg\";}s:16:\"beautiful-sunset\";a:7:{s:8:\"released\";s:10:\"2017-03-29\";s:4:\"name\";s:16:\"Beautiful Sunset\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.2.2\";s:6:\"groups\";s:44:\"premium,specialeffects,loop,blendmode,slider\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/beautiful-sunset/\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/beautiful-sunset.jpg\";}s:23:\"blend-mode-experiment-1\";a:7:{s:8:\"released\";s:10:\"2017-03-29\";s:4:\"name\";s:23:\"Blend Mode Experiment 1\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.2.2\";s:6:\"groups\";s:70:\"premium,specialeffects,text,blendmode,experiments,loop,parallax,slider\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/sliders/blend-mode-experiment-1/\";s:7:\"preview\";s:84:\"https://repository.kreaturamedia.com/v4/sliders/packages/blend-mode-experiment-1.jpg\";}s:16:\"flying-banners-2\";a:7:{s:8:\"released\";s:10:\"2017-03-29\";s:4:\"name\";s:16:\"Flying Banners 2\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.1.0\";s:6:\"groups\";s:47:\"premium,parallax,specialeffects,fullsize,slider\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/flying-banners-2/\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/flying-banners-2.jpg\";}s:14:\"layerslider-v6\";a:7:{s:8:\"released\";s:10:\"2017-03-08\";s:4:\"name\";s:14:\"LayerSlider v6\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.1.6\";s:6:\"groups\";s:75:\"premium,specialeffects,parallax,fullsize,landing,loop,text,media,api,slider\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/layerslider-v6/\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/layerslider-v6.jpg\";}s:16:\"flying-banners-1\";a:7:{s:8:\"released\";s:10:\"2017-03-08\";s:4:\"name\";s:16:\"Flying Banners 1\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"6.1.0\";s:6:\"groups\";s:45:\"free,parallax,loop,text,specialeffects,slider\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/flying-banners-1/\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/flying-banners-1.jpg\";}s:18:\"anniversary-slider\";a:7:{s:8:\"released\";s:10:\"2017-03-08\";s:4:\"name\";s:18:\"Anniversary Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"6.1.0\";s:6:\"groups\";s:47:\"free,parallax,experiments,specialeffects,slider\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/anniversary-slider/\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/anniversary-slider.jpg\";}s:7:\"origami\";a:7:{s:8:\"released\";s:10:\"2016-12-07\";s:4:\"name\";s:7:\"Origami\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.1.0\";s:6:\"groups\";s:61:\"premium,experiments,specialeffects,3dtransition,slider,addons\";s:3:\"url\";s:54:\"https://layerslider.kreaturamedia.com/sliders/origami/\";s:7:\"preview\";s:68:\"https://repository.kreaturamedia.com/v4/sliders/packages/origami.jpg\";}s:17:\"origami-buildings\";a:7:{s:8:\"released\";s:10:\"2016-12-07\";s:4:\"name\";s:17:\"Origami Buildings\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.1.0\";s:6:\"groups\";s:70:\"premium,experiments,specialeffects,kenburns,3dtransition,slider,addons\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/sliders/origami-buildings/\";s:7:\"preview\";s:78:\"https://repository.kreaturamedia.com/v4/sliders/packages/origami-buildings.jpg\";}s:17:\"autumn-experiment\";a:7:{s:8:\"released\";s:10:\"2016-11-28\";s:4:\"name\";s:17:\"Autumn Experiment\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"6.0.4\";s:6:\"groups\";s:52:\"experiments,free,loop,parallax,specialeffects,slider\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/sliders/autumn-experiment/\";s:7:\"preview\";s:78:\"https://repository.kreaturamedia.com/v4/sliders/packages/autumn-experiment.jpg\";}s:28:\"features-parallax-experiment\";a:7:{s:8:\"released\";s:10:\"2016-11-28\";s:4:\"name\";s:32:\"Features | A Parallax Experiment\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"6.0.4\";s:6:\"groups\";s:47:\"experiments,free,parallax,specialeffects,slider\";s:3:\"url\";s:75:\"https://layerslider.kreaturamedia.com/sliders/features-parallax-experiment/\";s:7:\"preview\";s:89:\"https://repository.kreaturamedia.com/v4/sliders/packages/features-parallax-experiment.jpg\";}s:16:\"furniture-slider\";a:7:{s:8:\"released\";s:10:\"2016-11-28\";s:4:\"name\";s:16:\"Furniture Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.4\";s:6:\"groups\";s:40:\"fullwidth,parallax,premium,static,slider\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/furniture-slider/\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/furniture-slider.jpg\";}s:15:\"room-experiment\";a:7:{s:8:\"released\";s:10:\"2016-11-28\";s:4:\"name\";s:15:\"Room Experiment\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.6\";s:6:\"groups\";s:72:\"api,experiments,media,parallax,premium,specialeffects,static,text,slider\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/sliders/room-experiment/\";s:7:\"preview\";s:76:\"https://repository.kreaturamedia.com/v4/sliders/packages/room-experiment.jpg\";}s:11:\"drag-n-drop\";a:6:{s:4:\"name\";s:11:\"Drag & Drop\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.3\";s:6:\"groups\";s:44:\"premium,fullwidth,specialeffects,text,slider\";s:3:\"url\";s:58:\"https://layerslider.kreaturamedia.com/sliders/drag-n-drop/\";s:7:\"preview\";s:72:\"https://repository.kreaturamedia.com/v4/sliders/packages/drag-n-drop.jpg\";}s:10:\"headphones\";a:6:{s:4:\"name\";s:10:\"Headphones\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.3\";s:6:\"groups\";s:21:\"premium,static,slider\";s:3:\"url\";s:57:\"https://layerslider.kreaturamedia.com/sliders/headphones/\";s:7:\"preview\";s:71:\"https://repository.kreaturamedia.com/v4/sliders/packages/headphones.jpg\";}s:14:\"play-by-scroll\";a:6:{s:4:\"name\";s:19:\"Play By Scroll demo\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.4\";s:6:\"groups\";s:80:\"premium,fullsize,text,experiments,specialeffects,playbyscroll,loop,slider,addons\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/play-by-scroll/\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/play-by-scroll.jpg\";}s:3:\"sky\";a:6:{s:4:\"name\";s:14:\"Sky Experience\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.3\";s:6:\"groups\";s:70:\"premium,fullwidth,text,experiments,parallax,specialeffects,loop,slider\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/sky-experience/\";s:7:\"preview\";s:64:\"https://repository.kreaturamedia.com/v4/sliders/packages/sky.jpg\";}s:9:\"halloween\";a:6:{s:4:\"name\";s:16:\"Happy Halloween!\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"6.0.3\";s:6:\"groups\";s:42:\"free,fullsize,text,experiments,loop,slider\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/sliders/happy-halloween/\";s:7:\"preview\";s:70:\"https://repository.kreaturamedia.com/v4/sliders/packages/halloween.jpg\";}s:15:\"creative-agency\";a:6:{s:4:\"name\";s:6:\"Agency\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:49:\"premium,fullsize,kenburns,parallax,landing,filter\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/sliders/creative-agency/\";s:7:\"preview\";s:76:\"https://repository.kreaturamedia.com/v4/sliders/packages/creative-agency.jpg\";}s:18:\"interactive-slider\";a:6:{s:4:\"name\";s:18:\"Interactive Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:47:\"premium,fullsize,parallax,kenburns,text,landing\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/interactive-slider/\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/interactive-slider.jpg\";}s:9:\"ecommerce\";a:6:{s:4:\"name\";s:9:\"eCommerce\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:24:\"premium,fullwidth,slider\";s:3:\"url\";s:56:\"https://layerslider.kreaturamedia.com/sliders/ecommerce/\";s:7:\"preview\";s:70:\"https://repository.kreaturamedia.com/v4/sliders/packages/ecommerce.jpg\";}s:17:\"landing-page-pack\";a:6:{s:4:\"name\";s:17:\"Landing Page PACK\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:62:\"premium,fullsize,fullwidth,landing,parallax,text,packs,website\";s:3:\"url\";s:59:\"https://layerslider.kreaturamedia.com/sliders/landing-page/\";s:7:\"preview\";s:78:\"https://repository.kreaturamedia.com/v4/sliders/packages/landing-page-pack.jpg\";}s:6:\"hiking\";a:6:{s:4:\"name\";s:6:\"Hiking\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:24:\"premium,fullwidth,slider\";s:3:\"url\";s:53:\"https://layerslider.kreaturamedia.com/sliders/hiking/\";s:7:\"preview\";s:67:\"https://repository.kreaturamedia.com/v4/sliders/packages/hiking.jpg\";}s:12:\"movie-slider\";a:6:{s:4:\"name\";s:12:\"Movie Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:24:\"premium,fullwidth,slider\";s:3:\"url\";s:59:\"https://layerslider.kreaturamedia.com/sliders/movie-slider/\";s:7:\"preview\";s:73:\"https://repository.kreaturamedia.com/v4/sliders/packages/movie-slider.jpg\";}s:12:\"photo-studio\";a:6:{s:4:\"name\";s:12:\"Photo Studio\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:70:\"premium,fullsize,filter,text,parallax,specialeffects,blendmode,landing\";s:3:\"url\";s:59:\"https://layerslider.kreaturamedia.com/sliders/photo-studio/\";s:7:\"preview\";s:73:\"https://repository.kreaturamedia.com/v4/sliders/packages/photo-studio.jpg\";}s:5:\"shoes\";a:6:{s:4:\"name\";s:5:\"Shoes\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:42:\"premium,fullwidth,parallax,carousel,slider\";s:3:\"url\";s:52:\"https://layerslider.kreaturamedia.com/sliders/shoes/\";s:7:\"preview\";s:66:\"https://repository.kreaturamedia.com/v4/sliders/packages/shoes.jpg\";}s:11:\"mini-cooper\";a:6:{s:4:\"name\";s:18:\"Mini Cooper Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:47:\"premium,fullsize,parallax,specialeffects,slider\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/sliders/mini-cooper-slider/\";s:7:\"preview\";s:72:\"https://repository.kreaturamedia.com/v4/sliders/packages/mini-cooper.jpg\";}s:4:\"xmas\";a:6:{s:4:\"name\";s:16:\"Merry Christmas!\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:67:\"premium,parallax,filter,experiments,specialeffects,text,loop,slider\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/sliders/merry-christmas/\";s:7:\"preview\";s:65:\"https://repository.kreaturamedia.com/v4/sliders/packages/xmas.jpg\";}s:5:\"clock\";a:6:{s:4:\"name\";s:32:\"Vintage Clock | shows valid time\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:44:\"premium,fullsize,api,experiments,loop,slider\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/sliders/vintage-clock/\";s:7:\"preview\";s:66:\"https://repository.kreaturamedia.com/v4/sliders/packages/clock.jpg\";}s:8:\"car-show\";a:6:{s:4:\"name\";s:8:\"Car Show\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:45:\"premium,fullwidth,experiments,api,loop,slider\";s:3:\"url\";s:55:\"https://layerslider.kreaturamedia.com/sliders/car-show/\";s:7:\"preview\";s:69:\"https://repository.kreaturamedia.com/v4/sliders/packages/car-show.jpg\";}s:8:\"carousel\";a:6:{s:4:\"name\";s:8:\"Carousel\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:20:\"free,carousel,slider\";s:3:\"url\";s:55:\"https://layerslider.kreaturamedia.com/sliders/carousel/\";s:7:\"preview\";s:69:\"https://repository.kreaturamedia.com/v4/sliders/packages/carousel.jpg\";}s:14:\"fancy-parallax\";a:6:{s:4:\"name\";s:21:\"Fancy Parallax Slider\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:33:\"premium,fullwidth,parallax,slider\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/sliders/parallax-slider/\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/fancy-parallax.jpg\";}s:13:\"simple-slider\";a:6:{s:4:\"name\";s:13:\"Simple Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:11:\"free,slider\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/sliders/simple-slider/\";s:7:\"preview\";s:74:\"https://repository.kreaturamedia.com/v4/sliders/packages/simple-slider.jpg\";}s:12:\"image-slider\";a:6:{s:4:\"name\";s:12:\"Image Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:11:\"free,slider\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/sliders/image-slideshow/\";s:7:\"preview\";s:73:\"https://repository.kreaturamedia.com/v4/sliders/packages/image-slider.jpg\";}s:19:\"client-testimonials\";a:6:{s:4:\"name\";s:19:\"Client Testimonials\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:24:\"premium,fullwidth,slider\";s:3:\"url\";s:66:\"https://layerslider.kreaturamedia.com/sliders/client-testimonials/\";s:7:\"preview\";s:80:\"https://repository.kreaturamedia.com/v4/sliders/packages/client-testimonials.jpg\";}s:8:\"fixed-bg\";a:6:{s:4:\"name\";s:16:\"Fixed Background\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"6.0.0\";s:6:\"groups\";s:30:\"premium,fullwidth,media,slider\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/sliders/fixed-background/\";s:7:\"preview\";s:69:\"https://repository.kreaturamedia.com/v4/sliders/packages/fixed-bg.jpg\";}s:22:\"dynamic-content-slider\";a:6:{s:4:\"name\";s:22:\"Dynamic Content Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:11:\"free,slider\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/sliders/dynamic-content-slider/\";s:7:\"preview\";s:83:\"https://repository.kreaturamedia.com/v4/sliders/packages/dynamic-content-slider.jpg\";}s:6:\"old-3d\";a:6:{s:4:\"name\";s:14:\"LayerSlider v4\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:30:\"free,3dtransition,media,slider\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/3d-demo-slider/\";s:7:\"preview\";s:67:\"https://repository.kreaturamedia.com/v4/sliders/packages/old-3d.jpg\";}s:2:\"v5\";a:6:{s:4:\"name\";s:14:\"LayerSlider v5\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:26:\"free,parallax,media,slider\";s:3:\"url\";s:61:\"https://layerslider.kreaturamedia.com/sliders/layerslider-v5/\";s:7:\"preview\";s:63:\"https://repository.kreaturamedia.com/v4/sliders/packages/v5.jpg\";}s:12:\"video-slider\";a:6:{s:4:\"name\";s:12:\"Video Slider\";s:7:\"premium\";b:0;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:17:\"free,media,slider\";s:3:\"url\";s:59:\"https://layerslider.kreaturamedia.com/sliders/video-slider/\";s:7:\"preview\";s:73:\"https://repository.kreaturamedia.com/v4/sliders/packages/video-slider.jpg\";}s:6:\"resort\";a:6:{s:4:\"name\";s:6:\"Resort\";s:7:\"premium\";b:1;s:8:\"requires\";s:5:\"5.0.0\";s:6:\"groups\";s:14:\"premium,slider\";s:3:\"url\";s:54:\"https://layerslider.kreaturamedia.com/sliders/restort/\";s:7:\"preview\";s:67:\"https://repository.kreaturamedia.com/v4/sliders/packages/resort.jpg\";}}s:15:\"kreatura-popups\";a:15:{s:21:\"covid-19-notification\";a:8:{s:8:\"released\";s:10:\"2020-04-01\";s:4:\"name\";s:21:\"COVID-19 Notification\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:17:\"premium,new,popup\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/popups/#covid-19-notification\";s:7:\"preview\";s:82:\"https://repository.kreaturamedia.com/v4/sliders/packages/covid-19-notification.jpg\";}s:19:\"covid-19-bottom-bar\";a:8:{s:8:\"released\";s:10:\"2020-04-01\";s:4:\"name\";s:19:\"COVID-19 Bottom Bar\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:17:\"premium,new,popup\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/popups/#covid-19-bottom-bar\";s:7:\"preview\";s:80:\"https://repository.kreaturamedia.com/v4/sliders/packages/covid-19-bottom-bar.jpg\";}s:14:\"top-bar-notice\";a:8:{s:8:\"released\";s:10:\"2020-04-01\";s:4:\"name\";s:14:\"Top Bar Notice\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:17:\"premium,new,popup\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/popups/#top-bar-notice\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/top-bar-notice.jpg\";}s:20:\"christmas-snow-globe\";a:8:{s:8:\"released\";s:10:\"2019-12-19\";s:4:\"name\";s:20:\"Christmas Snow Globe\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:34:\"premium,parallax,popup,loop,filter\";s:3:\"url\";s:66:\"https://layerslider.kreaturamedia.com/popups/#christmas-snow-globe\";s:7:\"preview\";s:81:\"https://repository.kreaturamedia.com/v4/sliders/packages/christmas-snow-globe.jpg\";}s:14:\"discount-popup\";a:8:{s:8:\"released\";s:10:\"2017-12-10\";s:4:\"name\";s:14:\"Discount Popup\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:13:\"premium,popup\";s:3:\"url\";s:60:\"https://layerslider.kreaturamedia.com/popups/#discount-popup\";s:7:\"preview\";s:75:\"https://repository.kreaturamedia.com/v4/sliders/packages/discount-popup.jpg\";}s:18:\"social-share-popup\";a:8:{s:8:\"released\";s:10:\"2017-12-06\";s:4:\"name\";s:18:\"Social Share Popup\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.5\";s:6:\"groups\";s:17:\"premium,popup,api\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#social-share-popup\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/social-share-popup.jpg\";}s:16:\"popup-guide-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:16:\"Popup Guide Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:27:\"premium,popup,parallax,text\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/popups/#popup-guide-demo\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-guide-demo.jpg\";}s:18:\"popup-welcome-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Popup Welcome Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:27:\"premium,popup,parallax,text\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#popup-welcome-demo\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-welcome-demo.jpg\";}s:22:\"popup-transparent-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:22:\"Popup Transparent Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:27:\"premium,popup,parallax,loop\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/#popup-transparent-demo\";s:7:\"preview\";s:83:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-transparent-demo.jpg\";}s:18:\"popup-sidebar-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Popup Sidebar Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:40:\"premium,popup,experiments,blendmode,text\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#popup-sidebar-demo\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-sidebar-demo.jpg\";}s:19:\"popup-photo-gallery\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:19:\"Popup Photo Gallery\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:22:\"premium,popup,kenburns\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/popups/#popup-photo-gallery\";s:7:\"preview\";s:80:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-photo-gallery.jpg\";}s:16:\"popup-modal-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:16:\"Popup Modal Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:20:\"premium,popup,static\";s:3:\"url\";s:62:\"https://layerslider.kreaturamedia.com/popups/#popup-modal-demo\";s:7:\"preview\";s:77:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-modal-demo.jpg\";}s:18:\"popup-infobar-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Popup Infobar Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:30:\"premium,popup,experiments,text\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#popup-infobar-demo\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-infobar-demo.jpg\";}s:24:\"popup-fullsize-desk-demo\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:24:\"Popup Fullsize Desk Demo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:43:\"premium,popup,experiments,fullsize,parallax\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/#popup-fullsize-desk-demo\";s:7:\"preview\";s:85:\"https://repository.kreaturamedia.com/v4/sliders/packages/popup-fullsize-desk-demo.jpg\";}s:18:\"conversation-popup\";a:8:{s:8:\"released\";s:10:\"2017-06-11\";s:4:\"name\";s:18:\"Conversation Popup\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:5:\"6.5.0\";s:6:\"groups\";s:25:\"premium,popup,experiments\";s:3:\"url\";s:64:\"https://layerslider.kreaturamedia.com/popups/#conversation-popup\";s:7:\"preview\";s:79:\"https://repository.kreaturamedia.com/v4/sliders/packages/conversation-popup.jpg\";}}s:19:\"webshopworks-popups\";a:65:{s:16:\"reveal-your-deal\";a:7:{s:4:\"name\";s:16:\"Reveal Your Deal\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:31:\"sales,coupon,seasonal,promotion\";s:3:\"url\";s:75:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#reveal-your-deal\";s:7:\"preview\";s:97:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/reveal-your-deal.jpg\";}s:27:\"christmas-sidebar-countdown\";a:7:{s:4:\"name\";s:27:\"Christmas Sidebar Countdown\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:86:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#christmas-sidebar-countdown\";s:7:\"preview\";s:108:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/christmas-sidebar-countdown.jpg\";}s:20:\"christmas-sale-santa\";a:7:{s:4:\"name\";s:20:\"Christmas Sale Santa\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:79:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#christmas-sale-santa\";s:7:\"preview\";s:101:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/christmas-sale-santa.jpg\";}s:11:\"santa-walks\";a:7:{s:4:\"name\";s:11:\"Santa Walks\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#santa-walks\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/santa-walks.jpg\";}s:14:\"christmas-sale\";a:7:{s:4:\"name\";s:14:\"Christmas Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:14:\"seasonal,sales\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#christmas-sale\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/christmas-sale.jpg\";}s:12:\"gift-voucher\";a:7:{s:4:\"name\";s:12:\"Gift Voucher\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:32:\"newsletter,coupon,sales,seasonal\";s:3:\"url\";s:71:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#gift-voucher\";s:7:\"preview\";s:93:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/gift-voucher.jpg\";}s:16:\"christmas-topbar\";a:7:{s:4:\"name\";s:17:\"Christmas Top Bar\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:75:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#christmas-topbar\";s:7:\"preview\";s:97:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/christmas-topbar.jpg\";}s:14:\"black-friday-9\";a:7:{s:4:\"name\";s:15:\"Black Friday #9\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:35:\"sales,seasonal,promotion,fullscreen\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-9\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-9.jpg\";}s:14:\"black-friday-8\";a:7:{s:4:\"name\";s:15:\"Black Friday #8\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:35:\"sales,seasonal,promotion,fullscreen\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-8\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-8.jpg\";}s:20:\"black-friday-premium\";a:7:{s:4:\"name\";s:20:\"Black Friday Premium\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:79:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-premium\";s:7:\"preview\";s:101:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-premium.jpg\";}s:14:\"black-friday-7\";a:7:{s:4:\"name\";s:15:\"Black Friday #7\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-7\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-7.jpg\";}s:11:\"todays-sale\";a:7:{s:4:\"name\";s:14:\"Today’s Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:15:\"sales,promotion\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#todays-sale\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/todays-sale.jpg\";}s:9:\"sign-up-6\";a:7:{s:4:\"name\";s:10:\"Sign Up #6\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-6\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-6.jpg\";}s:9:\"sign-up-7\";a:7:{s:4:\"name\";s:10:\"Sign Up #7\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-7\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-7.jpg\";}s:9:\"sign-up-8\";a:7:{s:4:\"name\";s:10:\"Sign Up #8\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-8\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-8.jpg\";}s:20:\"get-in-touch-with-us\";a:7:{s:4:\"name\";s:20:\"Get in Touch with Us\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"contact-us\";s:3:\"url\";s:79:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#get-in-touch-with-us\";s:7:\"preview\";s:101:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/get-in-touch-with-us.jpg\";}s:17:\"top-bar-subscribe\";a:7:{s:4:\"name\";s:17:\"Top Bar Subscribe\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:20:\"newsletter,promotion\";s:3:\"url\";s:76:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#top-bar-subscribe\";s:7:\"preview\";s:98:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/top-bar-subscribe.jpg\";}s:7:\"sign-up\";a:7:{s:4:\"name\";s:7:\"Sign Up\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:23:\"newsletter,sales,coupon\";s:3:\"url\";s:66:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up\";s:7:\"preview\";s:88:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up.jpg\";}s:14:\"black-friday-6\";a:7:{s:4:\"name\";s:15:\"Black Friday #6\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-6\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-6.jpg\";}s:14:\"black-friday-5\";a:7:{s:4:\"name\";s:15:\"Black Friday #5\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:35:\"sales,seasonal,promotion,fullscreen\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-5\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-5.jpg\";}s:14:\"black-friday-4\";a:7:{s:4:\"name\";s:15:\"Black Friday #4\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-4\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-4.jpg\";}s:14:\"black-friday-1\";a:7:{s:4:\"name\";s:15:\"Black Friday #1\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-1\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-1.jpg\";}s:17:\"spring-super-sale\";a:7:{s:4:\"name\";s:17:\"Spring Super Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:76:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#spring-super-sale\";s:7:\"preview\";s:98:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/spring-super-sale.jpg\";}s:8:\"discount\";a:7:{s:4:\"name\";s:8:\"Discount\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:5:\"sales\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#discount\";s:7:\"preview\";s:89:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/discount.jpg\";}s:9:\"sign-up-3\";a:7:{s:4:\"name\";s:10:\"Sign Up #3\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-3\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-3.jpg\";}s:22:\"sidebar-countdown-sale\";a:7:{s:4:\"name\";s:22:\"Sidebar Countdown Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:22:\"sales,promotion,coupon\";s:3:\"url\";s:81:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sidebar-countdown-sale\";s:7:\"preview\";s:103:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sidebar-countdown-sale.jpg\";}s:15:\"countdown-timer\";a:7:{s:4:\"name\";s:15:\"Countdown Timer\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:14:\"sales,seasonal\";s:3:\"url\";s:74:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#countdown-timer\";s:7:\"preview\";s:96:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/countdown-timer.jpg\";}s:10:\"discount-5\";a:7:{s:4:\"name\";s:11:\"Discount #5\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:5:\"sales\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#discount-5\";s:7:\"preview\";s:91:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/discount-5.jpg\";}s:10:\"discount-2\";a:7:{s:4:\"name\";s:10:\"Discount 2\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:12:\"sales,coupon\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#discount-2\";s:7:\"preview\";s:91:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/discount-2.jpg\";}s:11:\"subscribe-5\";a:7:{s:4:\"name\";s:12:\"Subscribe #5\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:23:\"newsletter,sales,coupon\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#subscribe-5\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/subscribe-5.jpg\";}s:9:\"mega-sale\";a:7:{s:4:\"name\";s:9:\"Mega Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:35:\"sales,seasonal,promotion,fullscreen\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#mega-sale\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/mega-sale.jpg\";}s:10:\"discount-4\";a:7:{s:4:\"name\";s:10:\"Discount 4\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:15:\"sales,promotion\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#discount-4\";s:7:\"preview\";s:91:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/discount-4.jpg\";}s:8:\"info-bar\";a:7:{s:4:\"name\";s:8:\"Info Bar\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:9:\"promotion\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#info-bar\";s:7:\"preview\";s:89:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/info-bar.jpg\";}s:11:\"subscribe-4\";a:7:{s:4:\"name\";s:12:\"Subscribe #4\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:20:\"newsletter,promotion\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#subscribe-4\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/subscribe-4.jpg\";}s:10:\"contact-us\";a:7:{s:4:\"name\";s:10:\"Contact Us\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"contact-us\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#contact-us\";s:7:\"preview\";s:91:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/contact-us.jpg\";}s:10:\"discount-3\";a:7:{s:4:\"name\";s:10:\"Discount 3\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:5:\"sales\";s:3:\"url\";s:69:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#discount-3\";s:7:\"preview\";s:91:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/discount-3.jpg\";}s:9:\"sign-up-4\";a:7:{s:4:\"name\";s:10:\"Sign Up #4\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-4\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-4.jpg\";}s:4:\"mail\";a:7:{s:4:\"name\";s:4:\"Mail\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:63:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#mail\";s:7:\"preview\";s:85:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/mail.jpg\";}s:18:\"kitchen-appliances\";a:7:{s:4:\"name\";s:18:\"Kitchen Appliances\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:9:\"promotion\";s:3:\"url\";s:77:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#kitchen-appliances\";s:7:\"preview\";s:99:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/kitchen-appliances.jpg\";}s:11:\"subscribe-3\";a:7:{s:4:\"name\";s:12:\"Subscribe #3\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#subscribe-3\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/subscribe-3.jpg\";}s:6:\"ticket\";a:7:{s:4:\"name\";s:6:\"Ticket\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:12:\"sales,coupon\";s:3:\"url\";s:65:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#ticket\";s:7:\"preview\";s:87:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/ticket.jpg\";}s:8:\"hey-wait\";a:7:{s:4:\"name\";s:10:\"Hey, wait!\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:35:\"exit-intent,newsletter,sales,coupon\";s:3:\"url\";s:67:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#hey-wait\";s:7:\"preview\";s:89:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/hey-wait.jpg\";}s:9:\"subscribe\";a:7:{s:4:\"name\";s:12:\"Subscribe #1\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#subscribe\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/subscribe.jpg\";}s:11:\"subscribe-2\";a:7:{s:4:\"name\";s:12:\"Subscribe #2\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:21:\"newsletter,fullscreen\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#subscribe-2\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/subscribe-2.jpg\";}s:16:\"age-verification\";a:7:{s:4:\"name\";s:16:\"Age Verification\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:27:\"age-verification,fullscreen\";s:3:\"url\";s:75:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#age-verification\";s:7:\"preview\";s:97:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/age-verification.jpg\";}s:12:\"get-in-touch\";a:7:{s:4:\"name\";s:12:\"Get in Touch\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"contact-us\";s:3:\"url\";s:71:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#get-in-touch\";s:7:\"preview\";s:93:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/get-in-touch.jpg\";}s:14:\"social-share-2\";a:7:{s:4:\"name\";s:15:\"Social Share #2\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:6:\"social\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#social-share-2\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/social-share-2.jpg\";}s:9:\"sign-up-2\";a:7:{s:4:\"name\";s:10:\"Sign Up #2\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-2\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-2.jpg\";}s:11:\"watch-promo\";a:7:{s:4:\"name\";s:11:\"Watch Promo\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:21:\"promotion,exit-intent\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#watch-promo\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/watch-promo.jpg\";}s:19:\"product-accessories\";a:7:{s:4:\"name\";s:19:\"Product Accessories\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:9:\"promotion\";s:3:\"url\";s:78:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#product-accessories\";s:7:\"preview\";s:100:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/product-accessories.jpg\";}s:9:\"sign-up-5\";a:7:{s:4:\"name\";s:10:\"Sign Up #5\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:10:\"newsletter\";s:3:\"url\";s:68:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#sign-up-5\";s:7:\"preview\";s:90:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/sign-up-5.jpg\";}s:14:\"black-friday-2\";a:7:{s:4:\"name\";s:15:\"Black Friday #2\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-2\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-2.jpg\";}s:14:\"black-friday-3\";a:7:{s:4:\"name\";s:15:\"Black Friday #3\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#black-friday-3\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/black-friday-3.jpg\";}s:16:\"halloween-sale-2\";a:7:{s:4:\"name\";s:17:\"Halloween Sale #2\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:75:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#halloween-sale-2\";s:7:\"preview\";s:97:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/halloween-sale-2.jpg\";}s:16:\"halloween-sale-1\";a:7:{s:4:\"name\";s:17:\"Halloween Sale #1\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:75:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#halloween-sale-1\";s:7:\"preview\";s:97:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/halloween-sale-1.jpg\";}s:12:\"pumpkin-sale\";a:7:{s:4:\"name\";s:12:\"Pumpkin Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:71:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#pumpkin-sale\";s:7:\"preview\";s:93:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/pumpkin-sale.jpg\";}s:11:\"spring-sale\";a:7:{s:4:\"name\";s:11:\"Spring Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#spring-sale\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/spring-sale.jpg\";}s:11:\"mothers-day\";a:7:{s:4:\"name\";s:14:\"Mother’s Day\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:35:\"sales,seasonal,promotion,fullscreen\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#mothers-day\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/mothers-day.jpg\";}s:20:\"easter-subscribe-bar\";a:7:{s:4:\"name\";s:20:\"Easter Subscribe Bar\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:25:\"sales,seasonal,newsletter\";s:3:\"url\";s:79:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#easter-subscribe-bar\";s:7:\"preview\";s:101:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/easter-subscribe-bar.jpg\";}s:14:\"easter-welcome\";a:7:{s:4:\"name\";s:14:\"Easter Welcome\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:8:\"seasonal\";s:3:\"url\";s:73:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#easter-welcome\";s:7:\"preview\";s:95:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/easter-welcome.jpg\";}s:17:\"easter-newsletter\";a:7:{s:4:\"name\";s:17:\"Easter Newsletter\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:32:\"sales,seasonal,newsletter,coupon\";s:3:\"url\";s:76:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#easter-newsletter\";s:7:\"preview\";s:98:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/easter-newsletter.jpg\";}s:11:\"season-sale\";a:7:{s:4:\"name\";s:11:\"Season Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#season-sale\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/season-sale.jpg\";}s:11:\"easter-sale\";a:7:{s:4:\"name\";s:11:\"Easter Sale\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:70:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#easter-sale\";s:7:\"preview\";s:92:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/easter-sale.jpg\";}s:20:\"easter-sale-surprise\";a:7:{s:4:\"name\";s:20:\"Easter Sale Surprise\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:24:\"sales,seasonal,promotion\";s:3:\"url\";s:79:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#easter-sale-surprise\";s:7:\"preview\";s:101:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/easter-sale-surprise.jpg\";}s:18:\"join-the-community\";a:7:{s:4:\"name\";s:18:\"Join the Community\";s:7:\"premium\";b:1;s:5:\"popup\";b:1;s:8:\"requires\";s:6:\"6.10.0\";s:6:\"groups\";s:6:\"social\";s:3:\"url\";s:77:\"https://layerslider.kreaturamedia.com/popups/webshopworks/#join-the-community\";s:7:\"preview\";s:99:\"https://repository.kreaturamedia.com/v4/sliders/packages/webshopworks-popups/join-the-community.jpg\";}}}','no'),(367,'mwp_public_keys_refresh_time','1589345248','yes'),(368,'mwp_public_keys','a:12:{i:0;a:6:{s:2:\"id\";s:19:\"managewp_1585533901\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2020-04-14 01:26:15\";s:7:\"validTo\";s:19:\"2020-05-16 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAu9uquIUbrfk35sfkAywQ\nrm9ywa0RTGnbU/jZancpIIUZgSNW4MDZe8WiPVp7il3lBXVjYURgpUpn2HgQRZ3/\nNvzI/QO4A8pf2kmVfM3X3HVEcB4j+is0UiYfYphTl3nRuon/1b6d16qIkpFcpto7\nSzkt27EOQASSvz5Z3jqyxDsMqBnbXi1Adlkyt3EKri1xH8CFI9+xWJnkuIbTJ+27\n62swPsQP6YJvNkUJP4d7Lp/yk5aubGEgd6nmeskuVtAGp7EYaMJysqSayfoZ8f/G\nk9X/adIVV2yhjBZUxy1TPPEkBcXd2NQV80YWuzsiw+vrlvl0SEQSuSMWLoR4eVH3\nKQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:1;a:6:{s:2:\"id\";s:19:\"managewp_1588125902\";s:7:\"service\";s:8:\"managewp\";s:9:\"validFrom\";s:19:\"2020-05-14 01:26:15\";s:7:\"validTo\";s:19:\"2020-06-15 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0si+nDLXlNJJ+YoMn2WF\nCZxLmeKFf0iR5foWAG5KVf6SedTV4cx35MoEGQNv6a5Rv9NqqfwF7CDpT/TLocc2\nUpK3L/qwsw08RgP/zdEzLrHcp/Dg0cLlyQKhIEqaA0PvL5CCQO0dO1o9eXAr2B6M\nqshTobusRIQFwPqnbqVD+DwHBuzFtRqhzRrNV9e0II8DxLpUIwtp9agbQBqna+tM\nT0d8LrKbCl+Sn2klFqnMF0zzdQlWmL9Un8gpvy1XZ0XwcmKOnx32pUDtvDR8yTuB\n2Idcq8R4b3AGteqNRDGICqvjIcAlsVxFYg/jtz/emnwscUhOJIYMBF1p7JBFa+8m\nswIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:2;a:6:{s:2:\"id\";s:23:\"managewp_dev_1585533901\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2020-04-14 01:26:15\";s:7:\"validTo\";s:19:\"2020-05-16 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoAezlZQYfeCVTzE46U9F\nETSSgFwtrjT3euFnstcGMqhQfP4otOScLVvaRe7wSy+yPZELMEHVGo4bxm4UOsIr\ntDSnyxN6bStanSXcPURmDVLvxXHMpO7ai2ZmemhRgtDOHQ2Be3voSixBrYOyQ6Dq\n5iDCLG6V5VzRnZrOJ5Vp/rG4q4j+YFzCUpAq+SCPV2BZv2w6zRItbV0h99sq+WbF\nxCByAKiLo9b0mbiQy7Jign8iUeMc4/32r+Kukd8AlYA3E1yY7sa7Khri2nu7kkty\nxMjFiS6oPrpIQA4m7CKtb8EWCnuoE3O44u84yz3YdFOpmX15VO1o2qQGGaXaEnAh\nbQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:3;a:6:{s:2:\"id\";s:23:\"managewp_dev_1588125902\";s:7:\"service\";s:12:\"managewp_dev\";s:9:\"validFrom\";s:19:\"2020-05-14 01:26:15\";s:7:\"validTo\";s:19:\"2020-06-15 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsShkySa5QU8BHQ1l0CKE\nGwifX4kngJYN7eWcMZPVKUIYLYWjzOO9AuUZ0TgRxg4KeV1M9/zpaaD9NOGBo7iD\n61yB0W6kndH+oobyl+pI6a008eqS+KKrz3Q4QQx9wgEu+IgGGEkkR5gB6skEyCZk\nf1rhXHkhpDnsnmVDmpZZYUtMky7CR1KZq4XptIyobDSoDdY0pdZgbUQBsaVxzS7K\npMbuaA5fBXh79vTYoV3xfXYrccBgAkv93OpC7kGq0n1IQStHjSTXQgvyq3EU0zhW\nsuVjmP6skMdrQpWhgkXgEhnuweLtGxAY1KApNV2MFqhsvSJnpLhfpIveC+kLZwxe\ndwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:0;}i:4;a:6:{s:2:\"id\";s:16:\"mwp20_1585533901\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2020-04-14 01:26:15\";s:7:\"validTo\";s:19:\"2020-05-16 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw7NlnCiR73dL0bvaileu\nuxI7wNK3iPVvKp91SFT7MCyDwUGqGILNfcSgoYc17Wbcq2vY/SijZJJ/uQTSsnEv\nsFL9fc5gIyZ8VKxZ4R7Qu2Ve1h8ET6ltF3F1A4RQFAY8SlPbeM2RnLiyjQbOk8oP\nNlV+G8DSwlFumOXfMLPQSVZskQUokLf4e3yKkBECrf1dz1Z9gcioMT4Di2InOkEB\n55GAVdCWLpVDbxRDfPaxiPWCyf4E+GJWTK7SMaZt1E4gW5aG5pFlOAHNmrW3wSGm\nptCOgEzKEnt/ayjynGD7ty1GUe3uwTpqNe3pNdNaadd+q0D9kYDZ0A5Lv0tsa4BU\ndwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:5;a:6:{s:2:\"id\";s:16:\"mwp20_1588125902\";s:7:\"service\";s:5:\"mwp20\";s:9:\"validFrom\";s:19:\"2020-05-14 01:26:15\";s:7:\"validTo\";s:19:\"2020-06-15 01:26:15\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvxGeEA+Qo0b6a/f2mgvw\nLoDIZzMYJmxLQdwMbOitT9oC0x6OWjvfRNkY+gCuarl7AKIGwNgOuN4Y3FaFEYvH\nXu8z68Va7jmCopSTJFDxmusOhjO2Lo4qD2w2KCNHTDL+hM4al4QAAWcKrRRMYZK1\noVoidEhADubitJ6bXvR5d9HzMNZ9tFiM4QCpmPKm3apYdNHLxZDsYGOGHgpPlU5+\n6Gu7178yGxIauq8p636VguvgS253LV9q3HS/YqzcZorECya40xZ3t34E21s0lhKW\ny56g2ijR6KuYRdKB4w5zGkHjcEPTIqJ5iRH9Ov8lfT6cq41+sHNHq+uzEYnB29Xl\nNwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:6;a:6:{s:2:\"id\";s:15:\"wpps_1587733502\";s:7:\"service\";s:4:\"wpps\";s:9:\"validFrom\";s:19:\"2020-05-09 13:05:01\";s:7:\"validTo\";s:19:\"2020-06-10 13:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAomgJFiwCoHza+uC5uK8T\n3o6QtFHdldhUrPn8tAb2DYQKpXSuf/jquoyNORYG9Mc2pmqphNz/tJ+IdaWqpRBE\n6sbj9D1GCX+tE2ziYq1ixGDnMwZkDRhug+t4Rfv37jS3PGMWu3rkBsAApNBNJoa0\nR2Z4bWKhPhv6akxpjdYKc1mqdjjIbhbfy+rl7PfGWKQ22Ow9xQSGb0cMn4ZTQI1r\nbNPXWES5q82X8ddW9n0AAv3nontlzsAdQBX7RDnSib4Dm4bbUjXXV6CP5EAhffSs\nPOYPXCIi7j84yAnPYp5qCYqTfPwRgOU4NtxlKupcbTSmEtMZDS16vgvDAi0fEKqK\niwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:7;a:6:{s:2:\"id\";s:25:\"cookie_service_1586365502\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2020-04-23 16:27:25\";s:7:\"validTo\";s:19:\"2020-05-25 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvmF2VsWxqMeVDYLOAHZj\nCvNdmVzGc82Yo5+xmDvhn4aUILLZ9IgalQyVs6s5nYn6Mt6/SUOSf4qX3QIlUp/M\nzvCjmBtLIgjX6OAn7Tp6m1idbVnucyLE/cyfsAlz9XYYGlO+YqT0dp6mqellW8vn\nsWnVbv1rA0sv7KODQciOh3+r23K3NCh8P59ehEGkMZlAVwoUJgkaJzgeaIwaz2gd\nq1mvq9K0i0hLmo8HMix6tieU/dQhYOJOCHN9MtaGJAebkyYs9TlsBz4tsE3iY61o\nINL7cEyrVSjIEkr2wlwcex6biQShg2p5uEmPhsadjdq4qDXVvKHb8zuh4ujt2Jzr\nzQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:8;a:6:{s:2:\"id\";s:25:\"cookie_service_1588957502\";s:7:\"service\";s:14:\"cookie_service\";s:9:\"validFrom\";s:19:\"2020-05-23 16:27:25\";s:7:\"validTo\";s:19:\"2020-06-24 16:27:25\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA36g9anOA9+KgD0fT1Ppq\nljRqcUqTkP7k7Pago5cQCUd+b3IbEqWLfx0RRUZx+nT8c7fwC+nXRPNqfuCpD/BS\nQ8yIqTgeR2Pguw8E38E1PQXNheg3NgDSfVFQZiYKoHJhVZ1w6rBOVNfYlaLplypx\nx4/+VCUM7rA1UqMsn2fFcMoXYO5YAQtBfDvjWLHyjSb6cp/e950/gkJZeziSg46g\n83e7Hago1JKFd2d++CV65bbqgHX95QuO3cRHtnKX81ImGbtdU76uknYCT/BOs0Uz\nxNJpAwp6B27xJzbg+V0DHIciogRJxXvb/hzVxHHAuZI/FePzICDcaZWiGtSWywX9\nMwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:9;a:6:{s:2:\"id\";s:15:\"mwp1_1587823502\";s:7:\"service\";s:4:\"mwp1\";s:9:\"validFrom\";s:19:\"2020-05-10 14:05:01\";s:7:\"validTo\";s:19:\"2020-06-11 14:05:01\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4/VzDPERcu9o3Wn9f2u1\nWpm/RVmCdC2/12uwu/r4BvU1JMF8j1VBB8Zv42dwUWw1jjzRld2YMbWknKqMrGad\nkzyk9Sl3ZYfTZkKTzncQAK8VAaRyfVRHQgWp090/xUzR0RjoKWhN6YM7+xAYz0AP\nnYqMmW+G53FDZYbfX4puQ+ANIRBwKWOLKSIr2x2bZi74s+Nso2RnYxV2zn8KM+/Q\nBTsef5lJsN19XbHYpAU1pxujYLThvUqsGvzy1RIjmRtzRq66jNU9WH5i94mG/2Zn\ncPGDnehKeIgdoGT+kIxBI+7PwKfJrCzR0ZUKjtKGdEWIL0dO4xhg0h22rd4vbQjw\nKwIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:10;a:6:{s:2:\"id\";s:20:\"migration_1586783102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2020-04-13 13:05:02\";s:7:\"validTo\";s:19:\"2020-05-15 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuZgquayLYhBMRWi02gbS\n94Tb+/ZG1ZOI0Watuke3rFHL07YEXSa2XRoq+xSj6QIt+CHR7S/4JAaYLe5usl9D\ndbRC04FsyHHLg1PXdYbtKWSt327XhKYencPeTwJmg5mKQQ8Awtb6OA3SdjLN8GoU\nKZdeTsCgIL8zAQI59jxApGziH8pX2i3IYjCVikqOh1QMS/lJJOxDQJhWSJSCNJ62\n/88dX2aq8OlXB/FxROwjv1H3svg85PAMHIqoiRX1R5VPMr77Bo26w6Xvl74co5gc\n+UE6EZPm3+yaCg8AhIVQYUgATUZxJCRU4WSpUTtYiZ109/YtsYl30cxZRruFa09j\n1QIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}i:11;a:6:{s:2:\"id\";s:20:\"migration_1588079102\";s:7:\"service\";s:9:\"migration\";s:9:\"validFrom\";s:19:\"2020-05-13 13:05:02\";s:7:\"validTo\";s:19:\"2020-06-14 13:05:02\";s:9:\"publicKey\";s:451:\"-----BEGIN PUBLIC KEY-----\nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA5nSrYxVB+/zNMB0M2o+J\nMd0StmADS0NRHJMA9zkLnviGzyqtPVAfMRtUHoosfvbSZHB9qnTQLAa4tTZXAT2I\ne8oBr3o4OjdYBPIXoYpmzYN6e20IR0jE6XzZQ0Bs1yIobg67O1Q3rVVurk1e9J2v\nbEIL+/C8trXNnqxtLLpSto7naKT5zz2qQRCZ3Ss/XNgAZHABDgfCIm+4tfqlTTg6\nH+BmMZCm9ss+hmuFAHeGOjO9iHVY+SPbIyLWJb8RO/Gm20LbDqiMk75e+sLvJkwG\nm+cC9M7pViwTD1+bkmIDEjeSX1JbzN6JfEtuYSgQ2ijJ36E80CrIQc1FY1ZGnAmw\nUQIDAQAB\n-----END PUBLIC KEY-----\n\";s:13:\"useServiceKey\";b:1;}}','yes'),(369,'mwp_new_communication_established','1','yes'),(373,'worker_migration_version','2','yes'),(374,'mwp_recovering','','yes'),(375,'mwp_incremental_update_active','','yes'),(376,'mwp_core_autoupdate','','yes'),(377,'mwp_container_parameters','a:0:{}','yes'),(378,'mwp_container_site_parameters','a:0:{}','yes'),(379,'_worker_nossl_key','','yes'),(380,'_worker_public_key','','yes'),(381,'mwp_maintenace_mode','a:0:{}','yes'),(420,'action_scheduler_hybrid_store_demarkation','3204','yes'),(421,'schema-ActionScheduler_StoreSchema','6.0.1646941699','yes'),(422,'schema-ActionScheduler_LoggerSchema','3.0.1646941700','yes'),(425,'woocommerce_store_address','4055 Pamela Lane','yes'),(426,'woocommerce_store_address_2','','yes'),(427,'woocommerce_store_city','Vacaville','yes'),(428,'woocommerce_default_country','US:CA','yes'),(429,'woocommerce_store_postcode','92628','yes'),(430,'woocommerce_allowed_countries','all','yes'),(431,'woocommerce_all_except_countries','a:0:{}','yes'),(432,'woocommerce_specific_allowed_countries','a:0:{}','yes'),(433,'woocommerce_ship_to_countries','','yes'),(434,'woocommerce_specific_ship_to_countries','a:0:{}','yes'),(435,'woocommerce_default_customer_address','base','yes'),(436,'woocommerce_calc_taxes','yes','yes'),(437,'woocommerce_enable_coupons','yes','yes'),(438,'woocommerce_calc_discounts_sequentially','no','no'),(439,'woocommerce_currency','USD','yes'),(440,'woocommerce_currency_pos','left','yes'),(441,'woocommerce_price_thousand_sep',',','yes'),(442,'woocommerce_price_decimal_sep','.','yes'),(443,'woocommerce_price_num_decimals','2','yes'),(444,'woocommerce_shop_page_id','','yes'),(445,'woocommerce_cart_redirect_after_add','no','yes'),(446,'woocommerce_enable_ajax_add_to_cart','yes','yes'),(447,'woocommerce_placeholder_image','3204','yes'),(448,'woocommerce_weight_unit','kg','yes'),(449,'woocommerce_dimension_unit','cm','yes'),(450,'woocommerce_enable_reviews','yes','yes'),(451,'woocommerce_review_rating_verification_label','yes','no'),(452,'woocommerce_review_rating_verification_required','no','no'),(453,'woocommerce_enable_review_rating','yes','yes'),(454,'woocommerce_review_rating_required','yes','no'),(455,'woocommerce_manage_stock','yes','yes'),(456,'woocommerce_hold_stock_minutes','60','no'),(457,'woocommerce_notify_low_stock','yes','no'),(458,'woocommerce_notify_no_stock','yes','no'),(459,'woocommerce_stock_email_recipient','hello@saramichelleds.com','no'),(460,'woocommerce_notify_low_stock_amount','2','no'),(461,'woocommerce_notify_no_stock_amount','0','yes'),(462,'woocommerce_hide_out_of_stock_items','no','yes'),(463,'woocommerce_stock_format','','yes'),(464,'woocommerce_file_download_method','force','no'),(465,'woocommerce_downloads_require_login','no','no'),(466,'woocommerce_downloads_grant_access_after_payment','yes','no'),(467,'woocommerce_downloads_add_hash_to_filename','yes','yes'),(468,'woocommerce_prices_include_tax','no','yes'),(469,'woocommerce_tax_based_on','base','yes'),(470,'woocommerce_shipping_tax_class','inherit','yes'),(471,'woocommerce_tax_round_at_subtotal','no','yes'),(472,'woocommerce_tax_classes','','yes'),(473,'woocommerce_tax_display_shop','excl','yes'),(474,'woocommerce_tax_display_cart','excl','yes'),(475,'woocommerce_price_display_suffix','','yes'),(476,'woocommerce_tax_total_display','itemized','no'),(477,'woocommerce_enable_shipping_calc','yes','no'),(478,'woocommerce_shipping_cost_requires_address','no','yes'),(479,'woocommerce_ship_to_destination','billing','no'),(480,'woocommerce_shipping_debug_mode','no','yes'),(481,'woocommerce_enable_guest_checkout','yes','no'),(482,'woocommerce_enable_checkout_login_reminder','no','no'),(483,'woocommerce_enable_signup_and_login_from_checkout','no','no'),(484,'woocommerce_enable_myaccount_registration','no','no'),(485,'woocommerce_registration_generate_username','yes','no'),(486,'woocommerce_registration_generate_password','yes','no'),(487,'woocommerce_erasure_request_removes_order_data','no','no'),(488,'woocommerce_erasure_request_removes_download_data','no','no'),(489,'woocommerce_allow_bulk_remove_personal_data','no','no'),(490,'woocommerce_registration_privacy_policy_text','Your personal data will be used to support your experience throughout this website, to manage access to your account, and for other purposes described in our [privacy_policy].','yes'),(491,'woocommerce_checkout_privacy_policy_text','Your personal data will be used to process your order, support your experience throughout this website, and for other purposes described in our [privacy_policy].','yes'),(492,'woocommerce_delete_inactive_accounts','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(493,'woocommerce_trash_pending_orders','','no'),(494,'woocommerce_trash_failed_orders','','no'),(495,'woocommerce_trash_cancelled_orders','','no'),(496,'woocommerce_anonymize_completed_orders','a:2:{s:6:\"number\";s:0:\"\";s:4:\"unit\";s:6:\"months\";}','no'),(497,'woocommerce_email_from_name','Solvibrant','no'),(498,'woocommerce_email_from_address','info@avantibody.com','no'),(499,'woocommerce_email_header_image','https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingWebColor.png','no'),(500,'woocommerce_email_footer_text','','no'),(501,'woocommerce_email_base_color','#bf003c','no'),(502,'woocommerce_email_background_color','#f7f7f7','no'),(503,'woocommerce_email_body_background_color','#ffffff','no'),(504,'woocommerce_email_text_color','#3c3c3c','no'),(505,'woocommerce_cart_page_id','266','no'),(506,'woocommerce_checkout_page_id','267','no'),(507,'woocommerce_myaccount_page_id','268','no'),(508,'woocommerce_terms_page_id','','no'),(509,'woocommerce_checkout_pay_endpoint','order-pay','yes'),(510,'woocommerce_checkout_order_received_endpoint','order-received','yes'),(511,'woocommerce_myaccount_add_payment_method_endpoint','add-payment-method','yes'),(512,'woocommerce_myaccount_delete_payment_method_endpoint','delete-payment-method','yes'),(513,'woocommerce_myaccount_set_default_payment_method_endpoint','set-default-payment-method','yes'),(514,'woocommerce_myaccount_orders_endpoint','orders','yes'),(515,'woocommerce_myaccount_view_order_endpoint','view-order','yes'),(516,'woocommerce_myaccount_downloads_endpoint','downloads','yes'),(517,'woocommerce_myaccount_edit_account_endpoint','edit-account','yes'),(518,'woocommerce_myaccount_edit_address_endpoint','edit-address','yes'),(519,'woocommerce_myaccount_payment_methods_endpoint','payment-methods','yes'),(520,'woocommerce_myaccount_lost_password_endpoint','lost-password','yes'),(521,'woocommerce_logout_endpoint','customer-logout','yes'),(522,'woocommerce_api_enabled','no','yes'),(523,'woocommerce_allow_tracking','no','no'),(524,'woocommerce_show_marketplace_suggestions','yes','no'),(525,'woocommerce_single_image_width','600','yes'),(526,'woocommerce_thumbnail_image_width','300','yes'),(527,'woocommerce_checkout_highlight_required_fields','yes','yes'),(528,'woocommerce_demo_store','no','no'),(529,'woocommerce_permalinks','a:5:{s:12:\"product_base\";s:8:\"/product\";s:13:\"category_base\";s:16:\"product-category\";s:8:\"tag_base\";s:11:\"product-tag\";s:14:\"attribute_base\";s:0:\"\";s:22:\"use_verbose_page_rules\";b:0;}','yes'),(530,'current_theme_supports_woocommerce','yes','yes'),(531,'woocommerce_queue_flush_rewrite_rules','no','yes'),(534,'default_product_cat','32','yes'),(535,'woocommerce_admin_notices','a:1:{i:0;s:6:\"update\";}','yes'),(540,'action_scheduler_lock_async-request-runner','1647136448','yes'),(541,'woocommerce_maxmind_geolocation_settings','a:1:{s:15:\"database_prefix\";s:32:\"RD4iJdBzAySIYndp0JBel1cLrHziI2BY\";}','yes'),(543,'widget_woocommerce_widget_cart','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(544,'widget_woocommerce_product_categories','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(545,'widget_woocommerce_product_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(546,'widget_woocommerce_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(547,'widget_woocommerce_recently_viewed_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(548,'widget_woocommerce_top_rated_products','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(549,'widget_woocommerce_recent_reviews','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(550,'widget_woocommerce_rating_filter','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(551,'woocommerce_onboarding_opt_in','yes','yes'),(555,'woocommerce_admin_install_timestamp','1590373414','yes'),(559,'woocommerce_meta_box_errors','a:0:{}','yes'),(560,'woocommerce_onboarding_profile','a:10:{s:9:\"completed\";b:1;s:12:\"setup_client\";b:1;s:8:\"industry\";a:1:{i:0;a:1:{s:4:\"slug\";s:13:\"health-beauty\";}}s:13:\"product_types\";a:1:{i:0;s:8:\"physical\";}s:13:\"product_count\";s:4:\"1-10\";s:14:\"selling_venues\";s:17:\"other-woocommerce\";s:7:\"revenue\";s:4:\"none\";s:19:\"business_extensions\";a:1:{i:0;s:24:\"facebook-for-woocommerce\";}s:5:\"theme\";s:6:\"enfold\";s:7:\"plugins\";s:7:\"skipped\";}','yes'),(561,'enfold_woo_settings_enabled','1','yes'),(562,'shop_catalog_image_size','a:3:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"crop\";b:1;}','yes'),(563,'shop_single_image_size','a:3:{s:5:\"width\";i:450;s:6:\"height\";i:999;s:4:\"crop\";b:0;}','yes'),(564,'shop_thumbnail_image_size','a:3:{s:5:\"width\";i:120;s:6:\"height\";i:120;s:4:\"crop\";b:1;}','yes'),(565,'avia_woocommerce_column_count','3','yes'),(566,'avia_woocommerce_product_count','15','yes'),(567,'woocommerce_single_image_crop','no','yes'),(584,'woocommerce_maybe_regenerate_images_hash','991b1ca641921cf0f5baf7a2fe85861b','yes'),(613,'woocommerce_task_list_tracked_completed_tasks','a:2:{i:0;s:8:\"purchase\";i:1;s:8:\"products\";}','yes'),(620,'woocommerce_task_list_welcome_modal_dismissed','1','yes'),(742,'wc_facebook_for_woocommerce_version','2.6.12','yes'),(750,'woocommerce_marketplace_suggestions','a:2:{s:11:\"suggestions\";a:26:{i:0;a:4:{s:4:\"slug\";s:28:\"product-edit-meta-tab-header\";s:7:\"context\";s:28:\"product-edit-meta-tab-header\";s:5:\"title\";s:22:\"Recommended extensions\";s:13:\"allow-dismiss\";b:0;}i:1;a:6:{s:4:\"slug\";s:39:\"product-edit-meta-tab-footer-browse-all\";s:7:\"context\";s:28:\"product-edit-meta-tab-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:2;a:9:{s:4:\"slug\";s:46:\"product-edit-mailchimp-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-mailchimp\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/mailchimp-for-memberships.svg\";s:5:\"title\";s:25:\"Mailchimp for Memberships\";s:4:\"copy\";s:79:\"Completely automate your email lists by syncing membership changes to Mailchimp\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/mailchimp-woocommerce-memberships/\";}i:3;a:9:{s:4:\"slug\";s:19:\"product-edit-addons\";s:7:\"product\";s:26:\"woocommerce-product-addons\";s:14:\"show-if-active\";a:2:{i:0;s:25:\"woocommerce-subscriptions\";i:1;s:20:\"woocommerce-bookings\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-add-ons.svg\";s:5:\"title\";s:15:\"Product Add-Ons\";s:4:\"copy\";s:93:\"Offer add-ons like gift wrapping, special messages or other special options for your products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-add-ons/\";}i:4;a:9:{s:4:\"slug\";s:46:\"product-edit-woocommerce-subscriptions-gifting\";s:7:\"product\";s:33:\"woocommerce-subscriptions-gifting\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:116:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/gifting-for-subscriptions.svg\";s:5:\"title\";s:25:\"Gifting for Subscriptions\";s:4:\"copy\";s:70:\"Let customers buy subscriptions for others - they\'re the ultimate gift\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:67:\"https://woocommerce.com/products/woocommerce-subscriptions-gifting/\";}i:5;a:9:{s:4:\"slug\";s:42:\"product-edit-teams-woocommerce-memberships\";s:7:\"product\";s:33:\"woocommerce-memberships-for-teams\";s:14:\"show-if-active\";a:1:{i:0;s:23:\"woocommerce-memberships\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:112:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/teams-for-memberships.svg\";s:5:\"title\";s:21:\"Teams for Memberships\";s:4:\"copy\";s:123:\"Adds B2B functionality to WooCommerce Memberships, allowing sites to sell team, group, corporate, or family member accounts\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/teams-woocommerce-memberships/\";}i:6;a:8:{s:4:\"slug\";s:29:\"product-edit-variation-images\";s:7:\"product\";s:39:\"woocommerce-additional-variation-images\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/additional-variation-images.svg\";s:5:\"title\";s:27:\"Additional Variation Images\";s:4:\"copy\";s:72:\"Showcase your products in the best light with a image for each variation\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:73:\"https://woocommerce.com/products/woocommerce-additional-variation-images/\";}i:7;a:9:{s:4:\"slug\";s:47:\"product-edit-woocommerce-subscription-downloads\";s:7:\"product\";s:34:\"woocommerce-subscription-downloads\";s:14:\"show-if-active\";a:1:{i:0;s:25:\"woocommerce-subscriptions\";}s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:113:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscription-downloads.svg\";s:5:\"title\";s:22:\"Subscription Downloads\";s:4:\"copy\";s:57:\"Give customers special downloads with their subscriptions\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:68:\"https://woocommerce.com/products/woocommerce-subscription-downloads/\";}i:8;a:8:{s:4:\"slug\";s:31:\"product-edit-min-max-quantities\";s:7:\"product\";s:30:\"woocommerce-min-max-quantities\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:109:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/min-max-quantities.svg\";s:5:\"title\";s:18:\"Min/Max Quantities\";s:4:\"copy\";s:81:\"Specify minimum and maximum allowed product quantities for orders to be completed\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/min-max-quantities/\";}i:9;a:8:{s:4:\"slug\";s:28:\"product-edit-name-your-price\";s:7:\"product\";s:27:\"woocommerce-name-your-price\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/name-your-price.svg\";s:5:\"title\";s:15:\"Name Your Price\";s:4:\"copy\";s:70:\"Let customers pay what they want - useful for donations, tips and more\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/name-your-price/\";}i:10;a:8:{s:4:\"slug\";s:42:\"product-edit-woocommerce-one-page-checkout\";s:7:\"product\";s:29:\"woocommerce-one-page-checkout\";s:7:\"context\";a:1:{i:0;s:26:\"product-edit-meta-tab-body\";}s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/one-page-checkout.svg\";s:5:\"title\";s:17:\"One Page Checkout\";s:4:\"copy\";s:92:\"Don\'t make customers click around - let them choose products, checkout & pay all on one page\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:63:\"https://woocommerce.com/products/woocommerce-one-page-checkout/\";}i:11;a:4:{s:4:\"slug\";s:19:\"orders-empty-header\";s:7:\"context\";s:24:\"orders-list-empty-header\";s:5:\"title\";s:20:\"Tools for your store\";s:13:\"allow-dismiss\";b:0;}i:12;a:6:{s:4:\"slug\";s:30:\"orders-empty-footer-browse-all\";s:7:\"context\";s:24:\"orders-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:13;a:8:{s:4:\"slug\";s:19:\"orders-empty-zapier\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:18:\"woocommerce-zapier\";s:4:\"icon\";s:97:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/zapier.svg\";s:5:\"title\";s:6:\"Zapier\";s:4:\"copy\";s:88:\"Save time and increase productivity by connecting your store to more than 1000+ services\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:52:\"https://woocommerce.com/products/woocommerce-zapier/\";}i:14;a:8:{s:4:\"slug\";s:30:\"orders-empty-shipment-tracking\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:29:\"woocommerce-shipment-tracking\";s:4:\"icon\";s:108:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipment-tracking.svg\";s:5:\"title\";s:17:\"Shipment Tracking\";s:4:\"copy\";s:86:\"Let customers know when their orders will arrive by adding shipment tracking to emails\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:51:\"https://woocommerce.com/products/shipment-tracking/\";}i:15;a:8:{s:4:\"slug\";s:32:\"orders-empty-table-rate-shipping\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:31:\"woocommerce-table-rate-shipping\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/table-rate-shipping.svg\";s:5:\"title\";s:19:\"Table Rate Shipping\";s:4:\"copy\";s:122:\"Advanced, flexible shipping. Define multiple shipping rates based on location, price, weight, shipping class or item count\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/table-rate-shipping/\";}i:16;a:8:{s:4:\"slug\";s:40:\"orders-empty-shipping-carrier-extensions\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:4:\"icon\";s:118:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/shipping-carrier-extensions.svg\";s:5:\"title\";s:27:\"Shipping Carrier Extensions\";s:4:\"copy\";s:116:\"Show live rates from FedEx, UPS, USPS and more directly on your store - never under or overcharge for shipping again\";s:11:\"button-text\";s:13:\"Find Carriers\";s:8:\"promoted\";s:26:\"category-shipping-carriers\";s:3:\"url\";s:99:\"https://woocommerce.com/product-category/woocommerce-extensions/shipping-methods/shipping-carriers/\";}i:17;a:8:{s:4:\"slug\";s:32:\"orders-empty-google-product-feed\";s:7:\"context\";s:22:\"orders-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-product-feeds\";s:4:\"icon\";s:110:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/google-product-feed.svg\";s:5:\"title\";s:19:\"Google Product Feed\";s:4:\"copy\";s:76:\"Increase sales by letting customers find you when they\'re shopping on Google\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:53:\"https://woocommerce.com/products/google-product-feed/\";}i:18;a:4:{s:4:\"slug\";s:35:\"products-empty-header-product-types\";s:7:\"context\";s:26:\"products-list-empty-header\";s:5:\"title\";s:23:\"Other types of products\";s:13:\"allow-dismiss\";b:0;}i:19;a:6:{s:4:\"slug\";s:32:\"products-empty-footer-browse-all\";s:7:\"context\";s:26:\"products-list-empty-footer\";s:9:\"link-text\";s:21:\"Browse all extensions\";s:3:\"url\";s:64:\"https://woocommerce.com/product-category/woocommerce-extensions/\";s:8:\"promoted\";s:31:\"category-woocommerce-extensions\";s:13:\"allow-dismiss\";b:0;}i:20;a:8:{s:4:\"slug\";s:30:\"products-empty-product-vendors\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-vendors\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-vendors.svg\";s:5:\"title\";s:15:\"Product Vendors\";s:4:\"copy\";s:47:\"Turn your store into a multi-vendor marketplace\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-vendors/\";}i:21;a:8:{s:4:\"slug\";s:26:\"products-empty-memberships\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:23:\"woocommerce-memberships\";s:4:\"icon\";s:102:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/memberships.svg\";s:5:\"title\";s:11:\"Memberships\";s:4:\"copy\";s:76:\"Give members access to restricted content or products, for a fee or for free\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:57:\"https://woocommerce.com/products/woocommerce-memberships/\";}i:22;a:9:{s:4:\"slug\";s:35:\"products-empty-woocommerce-deposits\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-deposits\";s:14:\"show-if-active\";a:1:{i:0;s:20:\"woocommerce-bookings\";}s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/deposits.svg\";s:5:\"title\";s:8:\"Deposits\";s:4:\"copy\";s:75:\"Make it easier for customers to pay by offering a deposit or a payment plan\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-deposits/\";}i:23;a:8:{s:4:\"slug\";s:40:\"products-empty-woocommerce-subscriptions\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:25:\"woocommerce-subscriptions\";s:4:\"icon\";s:104:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/subscriptions.svg\";s:5:\"title\";s:13:\"Subscriptions\";s:4:\"copy\";s:97:\"Let customers subscribe to your products or services and pay on a weekly, monthly or annual basis\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:59:\"https://woocommerce.com/products/woocommerce-subscriptions/\";}i:24;a:8:{s:4:\"slug\";s:35:\"products-empty-woocommerce-bookings\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:20:\"woocommerce-bookings\";s:4:\"icon\";s:99:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/bookings.svg\";s:5:\"title\";s:8:\"Bookings\";s:4:\"copy\";s:99:\"Allow customers to book appointments, make reservations or rent equipment without leaving your site\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:54:\"https://woocommerce.com/products/woocommerce-bookings/\";}i:25;a:8:{s:4:\"slug\";s:30:\"products-empty-product-bundles\";s:7:\"context\";s:24:\"products-list-empty-body\";s:7:\"product\";s:27:\"woocommerce-product-bundles\";s:4:\"icon\";s:106:\"https://woocommerce.com/wp-content/plugins/wccom-plugins/marketplace-suggestions/icons/product-bundles.svg\";s:5:\"title\";s:15:\"Product Bundles\";s:4:\"copy\";s:49:\"Offer customizable bundles and assembled products\";s:11:\"button-text\";s:10:\"Learn More\";s:3:\"url\";s:49:\"https://woocommerce.com/products/product-bundles/\";}}s:7:\"updated\";i:1592699294;}','no'),(1696,'wperedirect','no','no'),(1697,'bvActivateTime','1589563914','no'),(1698,'bvSecretKey','PNYJeiwBdPak6UScXEhUEFnFTmDagNSZ','no'),(1699,'bvAccountsList','a:1:{s:32:\"d92538b6700cb76417b5cd1a0ad3be8c\";a:5:{s:6:\"secret\";s:32:\"2e2bbfeb392dc7e4f24215a54265a867\";s:14:\"lastbackuptime\";i:1589563993;s:8:\"wpengine\";b:1;s:3:\"url\";s:24:\"https://solsculpting.com\";s:5:\"email\";s:23:\"bblacke******@gmail.com\";}}','no'),(1700,'bvLastRecvTime','1589564021','no'),(1701,'bvApiPublic','d92538b6700cb76417b5cd1a0ad3be8c','no'),(1713,'widget_wpe_powered_by_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1718,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1650423193;}','yes'),(1719,'recovery_keys','a:0:{}','off'),(1728,'woocommerce_admin_last_orders_milestone','0','yes'),(1755,'wpe_notices','a:1:{s:4:\"read\";s:0:\"\";}','yes'),(1756,'wpe_notices_ttl','1621481987','yes'),(1793,'rlrsssl_options','a:16:{s:12:\"site_has_ssl\";b:1;s:4:\"hsts\";b:0;s:22:\"htaccess_warning_shown\";b:0;s:19:\"review_notice_shown\";b:1;s:25:\"ssl_success_message_shown\";b:1;s:26:\"autoreplace_insecure_links\";b:1;s:17:\"plugin_db_version\";s:5:\"5.3.5\";s:20:\"do_not_edit_htaccess\";b:0;s:17:\"htaccess_redirect\";b:0;s:11:\"ssl_enabled\";b:1;s:19:\"javascript_redirect\";b:0;s:11:\"wp_redirect\";b:1;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"dismiss_all_notices\";b:0;s:13:\"high_contrast\";b:0;s:21:\"dismiss_review_notice\";b:0;}','yes'),(1802,'rsssl_activation_timestamp','1589566247','yes'),(1985,'av_alb_usage_av_productgrid','a:4:{i:1113;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}i:3447;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:1;}}','yes'),(2075,'av_alb_usage_av_product_price','a:0:{}','yes'),(2076,'av_alb_usage_av_product_button','a:2:{i:3222;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}i:3207;a:2:{s:7:\"version\";s:3:\"1.0\";s:5:\"count\";i:4;}}','yes'),(2149,'av_alb_usage_av_product_meta','a:0:{}','yes'),(2150,'av_alb_usage_av_product_info','a:0:{}','yes'),(2216,'av_alb_usage_av_product_upsells','a:0:{}','yes'),(2278,'WPLANG','','yes'),(2279,'new_admin_email','hello@saramichelleds.com','yes'),(2301,'avia_instagram_widgets_cache','{\"last_updated\":1647136212,\"instances\":{\"1-\":[]}}','yes'),(2354,'avia_builder_fonts','a:1:{s:8:\"flaticon\";a:4:{s:7:\"include\";s:19:\"avia_fonts/flaticon\";s:6:\"folder\";s:19:\"avia_fonts/flaticon\";s:6:\"config\";s:11:\"charmap.php\";s:13:\"origin_folder\";s:44:\"https://solsculpting.com/wp-content/uploads/\";}}','yes'),(6122,'wc_facebook_background_disable_virtual_products_sync_job_fc4dba288e5a40061bfb5962d7bccff6','{\"created_at\":\"2020-05-25 02:23:35\",\"id\":\"fc4dba288e5a40061bfb5962d7bccff6\",\"created_by\":3,\"status\":\"completed\",\"total\":0,\"progress\":0,\"completed_at\":\"2020-05-25 02:23:36\"}','no'),(6125,'wc_facebook_for_woocommerce_milestone_version','1.11.3','yes'),(6128,'wc_facebook_sync_virtual_products_disabled_skipped','yes','yes'),(6129,'wc_facebook_sync_virtual_products_disabled','yes','yes'),(7159,'product_cat_children','a:0:{}','yes'),(8422,'woocommerce_paypal_settings','a:24:{s:7:\"enabled\";s:3:\"yes\";s:5:\"title\";s:6:\"PayPal\";s:11:\"description\";s:85:\"Pay via PayPal; you can pay with your credit card if you don\'t have a PayPal account.\";s:5:\"email\";s:19:\"info@avantibody.com\";s:8:\"advanced\";s:0:\"\";s:8:\"testmode\";s:2:\"no\";s:5:\"debug\";s:2:\"no\";s:16:\"ipn_notification\";s:3:\"yes\";s:14:\"receiver_email\";s:19:\"info@avantibody.com\";s:14:\"identity_token\";s:0:\"\";s:14:\"invoice_prefix\";s:3:\"WC-\";s:13:\"send_shipping\";s:3:\"yes\";s:16:\"address_override\";s:2:\"no\";s:13:\"paymentaction\";s:4:\"sale\";s:10:\"page_style\";s:0:\"\";s:9:\"image_url\";s:0:\"\";s:11:\"api_details\";s:0:\"\";s:12:\"api_username\";s:24:\"info_api1.avantibody.com\";s:12:\"api_password\";s:16:\"DDFEHNS2576PKH2M\";s:13:\"api_signature\";s:56:\"ARLrHyNxLlMGZkwsviQSqAfRdxTBARGjEjSNLLlOdws8JcfCSn0TXtk3\";s:20:\"sandbox_api_username\";s:0:\"\";s:20:\"sandbox_api_password\";s:0:\"\";s:21:\"sandbox_api_signature\";s:0:\"\";s:12:\"_should_load\";s:3:\"yes\";}','yes'),(8426,'wc_facebook_feed_url_secret','4a9610d974da417dbcd3ab19d7c45c27','yes'),(10245,'woocommerce_version','6.3.1','yes'),(10246,'woocommerce_db_version','4.2.0','yes'),(10272,'TCM_PluginInstallDate[tracking-code-manager]','1592438075','yes'),(10273,'TCM_PluginUpdateDate[tracking-code-manager]','1592438077','yes'),(10274,'TCM_ShowWhatsNew','0','yes'),(10275,'TCM_PluginFirstInstall','0','yes'),(10276,'TCM_ShowWhatsNewSeenVersion','8','yes'),(10277,'TCM_ShowActivationNotice','0','yes'),(10283,'TCM_Snippet_1','a:36:{s:6:\"active\";i:1;s:9:\"trackMode\";i:0;s:9:\"trackPage\";i:0;s:2:\"id\";s:1:\"1\";s:4:\"name\";s:18:\"Google Tag Manager\";s:4:\"code\";s:409:\"<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<!-- Global site tag (gtag.js) - Google Analytics -->\r\n<script async src=\"https://www.googletagmanager.com/gtag/js?id=G-1JF11X2ZFD\"></script>\r\n<script>\r\n window.dataLayer = window.dataLayer || [];\r\n function gtag(){dataLayer.push(arguments);}\r\n gtag(\'js\', new Date());\r\n gtag(\'config\', \'UA-223077425-1\');\r\n gtag(\'config\', \'G-1JF11X2ZFD\');\r\n</script>\";s:5:\"order\";s:4:\"1000\";s:8:\"position\";i:0;s:23:\"includeEverywhereActive\";i:1;s:23:\"includeCategoriesActive\";i:0;s:17:\"includeTagsActive\";i:0;s:22:\"exceptCategoriesActive\";i:0;s:16:\"exceptTagsActive\";i:0;s:10:\"deviceType\";a:1:{i:0;s:3:\"all\";}s:30:\"includePostsOfType_page_Active\";i:0;s:23:\"includePostsOfType_page\";a:1:{i:0;s:2:\"-1\";}s:29:\"exceptPostsOfType_page_Active\";i:0;s:30:\"includePostsOfType_post_Active\";i:0;s:23:\"includePostsOfType_post\";a:1:{i:0;s:2:\"-1\";}s:29:\"exceptPostsOfType_post_Active\";i:0;s:10:\"codesCount\";i:2;s:17:\"includeCategories\";a:0:{}s:11:\"includeTags\";a:0:{}s:16:\"exceptCategories\";a:0:{}s:10:\"exceptTags\";a:0:{}s:22:\"exceptPostsOfType_page\";a:0:{}s:22:\"exceptPostsOfType_post\";a:0:{}s:21:\"CTC_10002_ProductsIds\";a:0:{}s:23:\"CTC_10002_CategoriesIds\";a:0:{}s:17:\"CTC_10002_TagsIds\";a:0:{}s:21:\"CTC_10001_ProductsIds\";a:0:{}s:23:\"CTC_10001_CategoriesIds\";a:0:{}s:17:\"CTC_10001_TagsIds\";a:0:{}s:21:\"CTC_10003_ProductsIds\";a:0:{}s:23:\"CTC_10003_CategoriesIds\";a:0:{}s:17:\"CTC_10003_TagsIds\";a:0:{}}','yes'),(10284,'TCM_SnippetList','a:2:{i:0;i:1;i:1;i:2;}','yes'),(24618,'disallowed_keys','','no'),(24619,'comment_previously_approved','1','yes'),(24620,'auto_plugin_theme_update_emails','a:0:{}','no'),(24621,'finished_updating_comment_type','1','yes'),(24622,'db_upgraded','','on'),(26387,'wpe-health-check-site-status-result','{\"good\":16,\"recommended\":6,\"critical\":0}','yes'),(42224,'facebook_config','a:4:{s:8:\"pixel_id\";s:1:\"0\";s:7:\"use_pii\";b:1;s:7:\"use_s2s\";b:0;s:12:\"access_token\";s:0:\"\";}','yes'),(42227,'rsssl_mixed_content_scan_dismissed','1','off'),(42228,'rsssl_google_analytics_dismissed','1','no'),(42229,'rsssl_remaining_tasks','1','yes'),(42235,'woocommerce_schema_version','430','yes'),(42236,'woocommerce_merchant_email_notifications','yes','no'),(42241,'wc_blocks_db_schema_version','260','yes'),(42242,'wc_remote_inbox_notifications_stored_state','O:8:\"stdClass\":2:{s:22:\"there_were_no_products\";b:0;s:22:\"there_are_now_products\";b:1;}','yes'),(42262,'wc_facebook_background_handle_virtual_products_variations_job_a4d9fde0eb7b3755e6a8ab7feb141390','{\"created_at\":\"2021-02-28 00:40:20\",\"id\":\"a4d9fde0eb7b3755e6a8ab7feb141390\",\"created_by\":3,\"status\":\"completed\",\"total\":0,\"progress\":0,\"completed_at\":\"2021-02-28 00:40:22\"}','no'),(42269,'wc_facebook_has_connected_fbe_2','no','yes'),(42274,'wc_facebook_background_handle_virtual_products_variations_skipped','yes','yes'),(42275,'wc_facebook_background_handle_virtual_products_variations_complete','yes','yes'),(42278,'wc_facebook_background_remove_duplicate_visibility_meta_job_ada137782604db72608f7475a00adc03','{\"created_at\":\"2021-02-28 00:40:22\",\"id\":\"ada137782604db72608f7475a00adc03\",\"created_by\":3,\"status\":\"completed\",\"total\":0,\"progress\":0,\"completed_at\":\"2021-02-28 00:40:24\"}','no'),(42296,'wc_facebook_background_remove_duplicate_visibility_meta_complete','yes','yes'),(42320,'wc_remote_inbox_notifications_specs','a:29:{s:27:\"new_in_app_marketplace_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:27:\"new_in_app_marketplace_2021\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:36:\"Customize your store with extensions\";s:7:\"content\";s:164:\"Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"browse_extensions\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Browse extensions\";}}s:3:\"url\";s:15:\"&page=wc-addons\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:14:23\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.7\";}}}s:21:\"wayflyer_bnpl_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:21:\"wayflyer_bnpl_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:48:\"Grow your business with funding through Wayflyer\";s:7:\"content\";s:261:\"Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:21:\"wayflyer_bnpl_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Level up with funding\";}}s:3:\"url\";s:42:\"https://woocommerce.com/products/wayflyer/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-17 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-12-18 00:00:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:7:{i:0;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"AU\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"BE\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"CA\";}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"IE\";}i:4;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"NL\";}i:5;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"GB\";}i:6;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-affirm\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:32:\"afterpay-gateway-for-woocommerce\";}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:31:\"klarna-payments-for-woocommerce\";}}}}}}s:35:\"wc_shipping_mobile_app_usps_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:94:\"Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"wc_shipping_mobile_app_usps_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:24:\"Get WooCommerce Shipping\";}}s:3:\"url\";s:45:\"https://woocommerce.com/woocommerce-shipping/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:25:\"woocommerce-shipping-usps\";}}i:4;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}}}s:30:\"wc_shipping_mobile_app_q4_2021\";O:8:\"stdClass\":8:{s:4:\"slug\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:69:\"Print and manage your shipping labels with the WooCommerce Mobile App\";s:7:\"content\";s:210:\"Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"wc_shipping_mobile_app_q4_2021\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:30:\"Get the WooCommerce Mobile App\";}}s:3:\"url\";s:31:\"https://woocommerce.com/mobile/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-11-12 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2021-11-27 00:00:00\";}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:21:\"base_location_country\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:2:\"US\";}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}}}s:37:\"ecomm-need-help-setting-up-your-store\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"ecomm-need-help-setting-up-your-store\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:32:\"Need help setting up your Store?\";s:7:\"content\";s:350:\"Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:16:\"set-up-concierge\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:21:\"Schedule free session\";}}s:3:\"url\";s:34:\"https://wordpress.com/me/concierge\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:16:48\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}}}s:20:\"woocommerce-services\";O:8:\"stdClass\":8:{s:4:\"slug\";s:20:\"woocommerce-services\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:26:\"WooCommerce Shipping & Tax\";s:7:\"content\";s:251:\"WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:84:\"https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:17:25\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-services\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:32:\"ecomm-unique-shopping-experience\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"ecomm-unique-shopping-experience\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:53:\"For a shopping experience as unique as your customers\";s:7:\"content\";s:270:\"Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:43:\"learn-more-ecomm-unique-shopping-experience\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:71:\"https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:01\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:3:{i:0;s:35:\"woocommerce-shipping-australia-post\";i:1;s:32:\"woocommerce-shipping-canada-post\";i:2;s:30:\"woocommerce-shipping-royalmail\";}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\"<\";s:4:\"days\";i:2;}}}s:37:\"wc-admin-getting-started-in-ecommerce\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-getting-started-in-ecommerce\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:38:\"Getting Started in eCommerce - webinar\";s:7:\"content\";s:174:\"We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:17:\"watch-the-webinar\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:17:\"Watch the webinar\";}}s:3:\"url\";s:28:\"https://youtu.be/V_2XtCOyZ7o\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:18:37\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:12:\"setup_client\";s:9:\"operation\";s:2:\"!=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:3:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_count\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:1:\"0\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:4:\"none\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:7:\"revenue\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:10:\"up-to-2500\";}}}}}s:18:\"your-first-product\";O:8:\"stdClass\":8:{s:4:\"slug\";s:18:\"your-first-product\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:18:\"Your first product\";s:7:\"content\";s:467:\"That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br/><br/>Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:13\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_were_no_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:12:\"stored_state\";s:5:\"index\";s:22:\"there_are_now_products\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";b:1;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:2:\">=\";s:5:\"value\";i:1;}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:18:\"onboarding_profile\";s:5:\"index\";s:13:\"product_types\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"physical\";s:7:\"default\";a:0:{}}}}s:37:\"wc-admin-optimizing-the-checkout-flow\";O:8:\"stdClass\":8:{s:4:\"slug\";s:37:\"wc-admin-optimizing-the-checkout-flow\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:28:\"Optimizing the checkout flow\";s:7:\"content\";s:177:\"It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:28:\"optimizing-the-checkout-flow\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:78:\"https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:19:49\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:8:\"payments\";s:7:\"default\";a:0:{}}}}s:39:\"wc-admin-first-five-things-to-customize\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-admin-first-five-things-to-customize\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:45:\"The first 5 things to customize in your store\";s:7:\"content\";s:175:\"Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:82:\"https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:20:31\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:2;}i:2;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:5:\"value\";s:9:\"NOT EMPTY\";s:7:\"default\";s:9:\"NOT EMPTY\";s:9:\"operation\";s:2:\"!=\";}}}s:32:\"wc-payments-qualitative-feedback\";O:8:\"stdClass\":8:{s:4:\"slug\";s:32:\"wc-payments-qualitative-feedback\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"WooCommerce Payments setup - let us know what you think\";s:7:\"content\";s:146:\"Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:35:\"qualitative-feedback-from-new-users\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:39:\"https://automattic.survey.fm/wc-pay-new\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:13\";}i:1;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:45:\"woocommerce_task_list_tracked_completed_tasks\";s:9:\"operation\";s:8:\"contains\";s:5:\"value\";s:20:\"woocommerce-payments\";s:7:\"default\";a:0:{}}}}s:29:\"share-your-feedback-on-paypal\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"share-your-feedback-on-paypal\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:29:\"Share your feedback on PayPal\";s:7:\"content\";s:127:\"Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:43:\"http://automattic.survey.fm/paypal-feedback\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:21:50\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}}}s:31:\"google_listings_and_ads_install\";O:8:\"stdClass\":8:{s:4:\"slug\";s:31:\"google_listings_and_ads_install\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:35:\"Drive traffic and sales with Google\";s:7:\"content\";s:123:\"Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:11:\"get-started\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:11:\"Get started\";}}s:3:\"url\";s:56:\"https://woocommerce.com/products/google-listings-and-ads\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2021-06-09 00:00:00\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:23:\"google_listings_and_ads\";}}}}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:10;}}}s:39:\"wc-subscriptions-security-update-3-0-15\";O:8:\"stdClass\":8:{s:4:\"slug\";s:39:\"wc-subscriptions-security-update-3-0-15\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:42:\"WooCommerce Subscriptions security update!\";s:7:\"content\";s:738:\"We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br/><br/>Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br/><br/>We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br/><br/>If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:30:\"update-wc-subscriptions-3-0-15\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:19:\"View latest version\";}}s:3:\"url\";s:30:\"&page=wc-addons§ion=helper\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:30:32\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:25:\"woocommerce-subscriptions\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:6:\"3.0.15\";}}}s:29:\"woocommerce-core-update-5-4-0\";O:8:\"stdClass\":8:{s:4:\"slug\";s:29:\"woocommerce-core-update-5-4-0\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Update to WooCommerce 5.4.1 now\";s:7:\"content\";s:140:\"WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:20:\"update-wc-core-5-4-0\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:25:\"How to update WooCommerce\";}}s:3:\"url\";s:64:\"https://docs.woocommerce.com/document/how-to-update-woocommerce/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:31:08\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.0\";}}}s:19:\"wcpay-promo-2020-11\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-11\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-11\";s:7:\"content\";s:19:\"wcpay-promo-2020-11\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:19:\"wcpay-promo-2020-12\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"wcpay-promo-2020-12\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:19:\"wcpay-promo-2020-12\";s:7:\"content\";s:19:\"wcpay-promo-2020-12\";}}s:7:\"actions\";a:0:{}s:5:\"rules\";a:0:{}}s:34:\"ppxo-pps-upgrade-paypal-payments-1\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-1\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:47:\"Get the latest PayPal extension for WooCommerce\";s:7:\"content\";s:442:\"Heads up! There’s a new PayPal on the block!<br/><br/>Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br/><br/>Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-1\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:33:53\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:7;s:7:\"default\";i:1;s:9:\"operation\";s:1:\"<\";}}}s:34:\"ppxo-pps-upgrade-paypal-payments-2\";O:8:\"stdClass\":8:{s:4:\"slug\";s:34:\"ppxo-pps-upgrade-paypal-payments-2\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:31:\"Upgrade your PayPal experience!\";s:7:\"content\";s:358:\"Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:34:\"ppxo-pps-install-paypal-payments-2\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:18:\"View upgrade guide\";}}s:3:\"url\";s:96:\"https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:5:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:34:30\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:3:\"5.5\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:27:\"woocommerce-paypal-payments\";}}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:43:\"woocommerce-gateway-paypal-express-checkout\";}}i:1;O:8:\"stdClass\":6:{s:4:\"type\";s:6:\"option\";s:12:\"transformers\";a:1:{i:0;O:8:\"stdClass\":2:{s:3:\"use\";s:12:\"dot_notation\";s:9:\"arguments\";O:8:\"stdClass\":1:{s:4:\"path\";s:7:\"enabled\";}}}s:11:\"option_name\";s:27:\"woocommerce_paypal_settings\";s:9:\"operation\";s:1:\"=\";s:5:\"value\";s:3:\"yes\";s:7:\"default\";b:0;}}}i:4;O:8:\"stdClass\":5:{s:4:\"type\";s:6:\"option\";s:11:\"option_name\";s:36:\"woocommerce_inbox_variant_assignment\";s:5:\"value\";i:6;s:7:\"default\";i:1;s:9:\"operation\";s:1:\">\";}}}s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:56:\"Action required: Critical vulnerabilities in WooCommerce\";s:7:\"content\";s:574:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";s:0:\"\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:59:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:06\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.6\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.8\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.9\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.6\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.2\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.4\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.2\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.3\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.4\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.4\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.5\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.2\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.4\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.4\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.2\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.3\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.3\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.4\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.2\";}i:32;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.3\";}i:33;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.4\";}i:34;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.1\";}i:35;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:36;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.2\";}i:37;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.3\";}i:38;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}i:39;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"3.5.10\";}i:40;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.7\";}i:41;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.3\";}i:42;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.3\";}i:43;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.5\";}i:44;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.4\";}i:45;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.4\";}i:46;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.5\";}i:47;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.6\";}i:48;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.4\";}i:49;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.5\";}i:50;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.5\";}i:51;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.4\";}i:52;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.3\";}i:53;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.5\";}i:54;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.3\";}i:55;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.3\";}i:56;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.5\";}i:57;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.3\";}i:58;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.4\";}}}s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";O:8:\"stdClass\":8:{s:4:\"slug\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"Action required: Critical vulnerabilities in WooCommerce Blocks\";s:7:\"content\";s:570:\"In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/>Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br/><br/>For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:32:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:35:42\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:6:\"2.5.16\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.6.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.7.2\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.8.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"2.9.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.0.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.1.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.2.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.3.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.4.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.5.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.6.1\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.7.2\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.8.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"3.9.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.0.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.1.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.2.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.3.1\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.4.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.5.3\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.6.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.7.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.8.1\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"4.9.2\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.0.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.1.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.2.1\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.3.2\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\"!=\";s:7:\"version\";s:5:\"5.4.1\";}i:31;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"<\";s:7:\"version\";s:5:\"5.5.1\";}}}s:45:\"woocommerce-core-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:45:\"woocommerce-core-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"Solved: Critical vulnerabilities patched in WooCommerce\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:18\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:23:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.6\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.8\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.9\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.6\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.2\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.4\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.2\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.2\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.3\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.4\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.2\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.3\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.2\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.3\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.1\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.2\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:11:\"woocommerce\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";O:8:\"stdClass\":8:{s:4:\"slug\";s:47:\"woocommerce-blocks-sqli-july-2021-store-patched\";s:4:\"type\";s:6:\"update\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:62:\"Solved: Critical vulnerabilities patched in WooCommerce Blocks\";s:7:\"content\";s:433:\"In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br/><br/><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.\";}}s:7:\"actions\";a:2:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:10:\"learn-more\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:10:\"Learn more\";}}s:3:\"url\";s:146:\"https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}i:1;O:8:\"stdClass\":6:{s:4:\"name\";s:7:\"dismiss\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:7:\"Dismiss\";}}s:3:\"url\";b:0;s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:36:54\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:46:\"woocommerce-core-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:11:\"note_status\";s:9:\"note_name\";s:48:\"woocommerce-blocks-sqli-july-2021-need-to-update\";s:6:\"status\";s:7:\"pending\";s:9:\"operation\";s:1:\"=\";}}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:31:{i:0;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:6:\"2.5.16\";}i:1;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.6.2\";}i:2;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.7.2\";}i:3;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.8.1\";}i:4;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"2.9.1\";}i:5;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.0.1\";}i:6;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.1.1\";}i:7;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.2.1\";}i:8;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.3.1\";}i:9;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.4.1\";}i:10;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.5.1\";}i:11;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.6.1\";}i:12;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.7.2\";}i:13;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.8.1\";}i:14;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"3.9.1\";}i:15;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.0.1\";}i:16;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.1.1\";}i:17;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.2.1\";}i:18;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.3.1\";}i:19;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.4.3\";}i:20;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.5.3\";}i:21;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.6.1\";}i:22;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.7.1\";}i:23;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.8.1\";}i:24;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"4.9.2\";}i:25;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.0.1\";}i:26;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.1.1\";}i:27;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.2.1\";}i:28;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.3.2\";}i:29;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:1:\"=\";s:7:\"version\";s:5:\"5.4.1\";}i:30;O:8:\"stdClass\":4:{s:4:\"type\";s:14:\"plugin_version\";s:6:\"plugin\";s:28:\"woo-gutenberg-products-block\";s:8:\"operator\";s:2:\">=\";s:7:\"version\";s:5:\"5.5.1\";}}}}}s:19:\"habit-moment-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:19:\"habit-moment-survey\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:63:\"We’re all ears! Share your experience so far with WooCommerce\";s:7:\"content\";s:136:\"We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:14:\"share-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:45:\"https://automattic.survey.fm/store-management\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:10:\"unactioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:37:30\";}i:1;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:3;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:11:\"order_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:30;}i:3;O:8:\"stdClass\":3:{s:4:\"type\";s:13:\"product_count\";s:9:\"operation\";s:1:\">\";s:5:\"value\";i:0;}}}s:26:\"ecomm-wc-navigation-survey\";O:8:\"stdClass\":8:{s:4:\"slug\";s:26:\"ecomm-wc-navigation-survey\";s:4:\"type\";s:4:\"info\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:55:\"We’d like your feedback on the WooCommerce navigation\";s:7:\"content\";s:134:\"We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:32:\"share-navigation-survey-feedback\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:14:\"Share feedback\";}}s:3:\"url\";s:63:\"https://automattic.survey.fm/feedback-on-woocommerce-navigation\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:1;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-01-27 20:38:07\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:12:\"is_ecommerce\";s:5:\"value\";b:1;}i:2;O:8:\"stdClass\":3:{s:4:\"type\";s:18:\"wcadmin_active_for\";s:9:\"operation\";s:1:\">\";s:4:\"days\";i:90;}}}s:22:\"wcpay_applepay_q1_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:22:\"wcpay_applepay_q1_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:60:\"Increase conversions with Apple Pay – just like Diane does\";s:7:\"content\";s:472:\"See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:22:\"wcpay_applepay_q1_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:39:\"Let your customers know about Apple Pay\";}}s:3:\"url\";s:48:\"https://developer.apple.com/apple-pay/marketing/\";s:18:\"url_is_admin_query\";b:0;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:3:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-02-07 00:00:44\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-03-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}s:23:\"stripe_applepay_q1_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"stripe_applepay_q1_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:61:\"Increase conversions with Apple Pay – just like Thomas does\";s:7:\"content\";s:521:\"Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings > Payments > Stripe.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"stripe_applepay_q1_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:45:\"&page=wc-settings&tab=checkout§ion=stripe\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-02-07 00:00:33\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-03-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}}}}}s:23:\"square_applepay_q1_2022\";O:8:\"stdClass\":8:{s:4:\"slug\";s:23:\"square_applepay_q1_2022\";s:4:\"type\";s:9:\"marketing\";s:6:\"status\";s:10:\"unactioned\";s:12:\"is_snoozable\";i:0;s:6:\"source\";s:15:\"woocommerce.com\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":3:{s:6:\"locale\";s:5:\"en_US\";s:5:\"title\";s:54:\"Increase conversions with a faster checkout experience\";s:7:\"content\";s:252:\"By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings > Payments > Square.\";}}s:7:\"actions\";a:1:{i:0;O:8:\"stdClass\":6:{s:4:\"name\";s:23:\"square_applepay_q1_2022\";s:7:\"locales\";a:1:{i:0;O:8:\"stdClass\":2:{s:6:\"locale\";s:5:\"en_US\";s:5:\"label\";s:13:\"Add Apple Pay\";}}s:3:\"url\";s:28:\"&page=wc-settings&tab=square\";s:18:\"url_is_admin_query\";b:1;s:10:\"is_primary\";b:0;s:6:\"status\";s:8:\"actioned\";}}s:5:\"rules\";a:4:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:18:\"publish_after_time\";s:13:\"publish_after\";s:19:\"2022-02-07 00:00:11\";}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:19:\"publish_before_time\";s:14:\"publish_before\";s:19:\"2022-03-31 23:59:00\";}i:2;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:18:\"woocommerce-square\";}}i:3;O:8:\"stdClass\":2:{s:4:\"type\";s:3:\"not\";s:7:\"operand\";a:1:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:2:\"or\";s:8:\"operands\";a:2:{i:0;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:20:\"woocommerce-payments\";}}i:1;O:8:\"stdClass\":2:{s:4:\"type\";s:17:\"plugins_activated\";s:7:\"plugins\";a:1:{i:0;s:26:\"woocommerce-gateway-stripe\";}}}}}}}}}','yes'),(42321,'auto_update_plugins','a:0:{}','no'),(42323,'updraftplus_tour_cancelled_on','intro','yes'),(42328,'duplicate_post_copytitle','1','yes'),(42329,'duplicate_post_copydate','0','yes'),(42330,'duplicate_post_copystatus','0','yes'),(42331,'duplicate_post_copyslug','0','yes'),(42332,'duplicate_post_copyexcerpt','1','yes'),(42333,'duplicate_post_copycontent','1','yes'),(42334,'duplicate_post_copythumbnail','1','yes'),(42335,'duplicate_post_copytemplate','1','yes'),(42336,'duplicate_post_copyformat','1','yes'),(42337,'duplicate_post_copyauthor','0','yes'),(42338,'duplicate_post_copypassword','0','yes'),(42339,'duplicate_post_copyattachments','0','yes'),(42340,'duplicate_post_copychildren','0','yes'),(42341,'duplicate_post_copycomments','0','yes'),(42342,'duplicate_post_copymenuorder','1','yes'),(42343,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(42344,'duplicate_post_blacklist','','yes'),(42345,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(42346,'duplicate_post_show_original_column','0','yes'),(42347,'duplicate_post_show_original_in_post_states','0','yes'),(42348,'duplicate_post_show_original_meta_box','0','yes'),(42349,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(42350,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(42399,'hfcm_activation_date','1614474041','yes'),(42409,'ihaf_insert_header','<link rel=\\\"preconnect\\\" href=\\\"https://fonts.gstatic.com\\\">\r\n<link href=\\\"https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap\\\" rel=\\\"stylesheet\\\">','yes'),(42410,'ihaf_insert_footer','','yes'),(42411,'ihaf_insert_body','','yes'),(42412,'insert-headers-and-footers_welcome_dismissed_key','1','yes'),(42852,'fb_product_set_children','a:0:{}','yes'),(43345,'auto_update_core_dev','enabled','yes'),(43346,'auto_update_core_minor','enabled','yes'),(43347,'auto_update_core_major','unset','yes'),(51405,'https_detection_errors','a:0:{}','off'),(53598,'wc_remote_inbox_notifications_wca_updated','','no'),(53604,'rsssl_current_version','9.5.6','off'),(53624,'aviaAsset_css_filecontent','a:60:{s:24:\"avia-woocommerce-css-css\";a:6:{s:4:\"name\";s:20:\"avia-woocommerce-css\";s:3:\"url\";s:88:\"https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css\";s:4:\"path\";s:63:\"wp-content/themes/enfold/config-woocommerce/woocommerce-mod.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:74017:\".clear{clear:both}.nobr{white-space:nowrap}div.woocommerce-error,div.woocommerce-message{margin:10px 0px;padding:10px 10px 10px 32px;background-repeat:no-repeat;background-position:10px center}div.woocommerce-error a.button,div.woocommerce-message a.button{margin-top:0;float:right} p small{}p.demo_store{position:fixed;top:0;width:100%;font-size:12px;text-align:center;background:-webkit-gradient(linear,left top,left bottom,from(#f7f5c6),to(#eeeac1));background:-webkit-linear-gradient(#f7f5c6,#eeeac1);background:-moz-linear-gradient(center top,#f7f5c6 0%,#eeeac1 100%);background:-moz-gradient(center top,#f7f5c6 0%,#eeeac1 100%);padding:8px 0;z-index:999999;box-shadow:inset 0 0 0 3px rgba(255,255,255,0.3)}small.note{display:block;font-size:11px;line-height:21px;margin-top:10px}#breadcrumb{overflow:hidden;zoom:1;margin:0 0 1em;padding:0;font-size:0.92em}#breadcrumb a{}div.product{position:relative;margin-bottom:0}div.product .product_title{clear:none}div.product p.price{color:#7E9A47;font-size:1.3em}div.product p.price del{font-size:14px;color:#8B2121}div.product p.stock{font-size:0.92em;padding:2px 0 0 0}div.product div.images{float:left;width:47%}div.product div.images img{padding:6px;display:block;width:100%;height:auto}div.product div.images div.thumbnails{padding-top:10px;zoom:1}div.product div.images div.thumbnails a{float:left;width:30.75%;margin-right:3.8%}div.product div.images div.thumbnails a img{width:100%;height:auto}div.product div.images div.thumbnails a.last{margin-right:0}div.product div.images div.thumbnails a.first{clear:both}div.product div.summary{float:right;width:48%}div.product div.social{text-align:right;margin:0 0 1em}div.product div.social span{margin:0 0 0 2px}div.product div.social span span{margin:0}div.product div.social span .stButton .chicklets{padding-left:16px;width:0}div.product div.social iframe{float:left;margin-top:3px}div.product .woocommerce-tabs{clear:both;padding:1em 0 0 0;margin:0 0 1em 0}div.product .woocommerce-tabs ul.tabs{border-top-left-radius:2px;border-top-right-radius:2px;overflow:hidden;zoom:1;margin:0;padding:4px 4px 0;list-style:none outside}div.product .woocommerce-tabs ul.tabs li{float:left;margin:0;font-size:0.92em;margin-right:-1px}div.product .woocommerce-tabs ul.tabs{position:relative;top:1px;z-index:10}#top div div.product .woocommerce-tabs ul.tabs li.active a{border-style:solid;border-width:1px;border-bottom:none;padding:9px 20px 10px 20px;position:relative}div.product .woocommerce-tabs ul.tabs li.active{position:relative}div.product .woocommerce-tabs .panel{padding:15px 15px 0;border-bottom-left-radius:3px;border-bottom-right-radius:3px}.js_active .woocommerce-tabs .panel{display:none} .stock{color:#7E9A47}.out-of-stock{color:#8B2121}p.cart{float:right}form.cart{margin-bottom:24px;overflow:hidden;zoom:1}form.cart div.quantity{float:left;margin:0 4px 0 0}form.cart table{font-size:12px}form.cart table td{padding:4px 4px 4px 0}form.cart table div.quantity{float:none;margin:0;width:72px}form.cart table small.stock{display:block;float:none}form.cart .variations label{font-weight:bold}form.cart .variations select{width:100%;float:left}form.cart .button{vertical-align:middle;float:left;margin:2px 0}span.onsale{background:#7E9A47;min-height:32px;min-width:32px;padding:4px;font-size:12px;position:absolute;text-align:center;line-height:32px;top:6px;left:6px;margin:0;border-radius:20px}.products ul,ul.products{margin:0 0 14px;padding:0;list-style:none}.related,.upsells.products{overflow:hidden;zoom:1}.related ul.products,.upsells.products ul.products,.related ul,.upsells.products ul{float:none}.related ul.products li,.upsells.products ul.products li,.related ul li,.upsells.products ul li{width:48%}.related ul.products li img,.upsells.products ul.products li img,.related ul li img,.upsells.products ul li img{width:100%;height:auto}ul.products{clear:both;margin-left:0;padding-left:0}ul.products li{float:left;margin:0 3.8% 20px 0;padding:0;position:relative;width:22.05%;margin-left:0}ul.products li .onsale{top:0;right:0;left:auto;margin:-6px -6px 0 0}div .products li a,div .product a{text-decoration:none}ul.products li a img{width:100%;height:auto;display:block;margin:0 0 8px}ul.products li a:hover img{}ul.products li strong{display:block}ul.products li .price{color:#7E9A47;display:block;font-weight:normal}ul.products li .price del{font-size:10px;line-height:10px;margin:-2px 0 0 0;display:block}ul.products li .price .from{font-size:10px;line-height:10px;margin:-2px 0 0 0;display:block}ul.products li.first{clear:both}ul.products li.last{margin-right:0}.woocommerce-ordering{margin-bottom:24px}a.button.loading,button.button.loading,input.button.loading,#review_form #submit.loading{filter:alpha(opacity=50);opacity:0.5}a.button.loading:before,button.button.loading:before,input.button.loading:before,#review_form #submit.loading:before{content:\"\";position:absolute;height:16px;width:16px;top:0.35em;right:-26px;text-indent:0}a.button.added:before,button.button.added:before,input.button.added:before,#review_form #submit.added:before{content:\"\";position:absolute;height:16px;width:16px;top:0.35em;right:-26px;text-indent:0}a.button:hover,button.button:hover,input.button:hover,#review_form #submit:hover{text-decoration:none}.cart .button,.cart input.button{float:none;border-bottom-style:solid;border-bottom-width:1px} .woocommerce-page .button{min-width:110px;padding:15px;line-height:1em;margin:4px 2px 0 0;float:left;font-size:12px;width:auto;vertical-align:middle;text-align:center;text-decoration:none;border:none;cursor:pointer;font-family:inherit;border-radius:2px}.button.alt:hover{}#reviews h2 small{float:right;font-size:15px;line-height:21px;margin:10px 0 0 0}#reviews h2 small a{text-decoration:none}#reviews h3{margin:0}#reviews #respond{margin:0;border:0;padding:0}#reviews #comment{height:75px}#reviews #comments .add_review{overflow:hidden;zoom:1}#reviews #comments h2{clear:none}#reviews #comments ol.commentlist{overflow:hidden;zoom:1;margin:0;width:100%;background:none}#reviews #comments ol.commentlist li{padding:00;margin:0 0 20px;border:0;position:relative;background:0;border:0}#reviews #comments ol.commentlist li .meta{font-size:0.75em}#reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border-radius:5px;padding:11px 11px 0}#reviews #comments ol.commentlist li .comment-text p{margin:0 0 11px}#reviews #comments ol.commentlist li .comment-text p.meta{font-size:0.86em}.star-rating{float:right;width:80px;height:16px;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left 0}.star-rating span{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left -32px;height:0;padding-top:16px;overflow:hidden;float:left}#reviews .star-rating{margin:10px 0 0 0}#review_form #respond{overflow:hidden;zoom:1;margin:0;padding:10px 20px 20px}#review_form #respond p{margin:0 0 10px}p.stars{overflow:hidden;zoom:1}p.stars span{width:80px;height:16px;position:relative;float:left;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left 0}p.stars span a{float:left;position:absolute;left:0;top:0;width:16px;height:0;padding-top:16px;overflow:hidden}p.stars span a:hover,p.stars span a:focus{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left -16px}p.stars span a.active{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left -32px}p.stars span a.star-1{width:16px;z-index:10}p.stars span a.star-2{width:32px;z-index:9}p.stars span a.star-3{width:48px;z-index:8}p.stars span a.star-4{width:64px;z-index:7}p.stars span a.star-5{width:80px;z-index:6}table.shop_attributes th{width:150px;font-weight:bold;padding:8px;margin:0;line-height:1.5em}table.shop_attributes td{font-style:italic;padding:0;margin:0;line-height:1.5em}table.shop_attributes td p{margin:0;padding:8px}table.shop_attributes .alt td,table.shop_attributes .alt th{}table.shop_table{margin:0px -1px 24px 0px;text-align:left;width:100%;border-radius:5px}table.shop_table th{font-size:12px;font-weight:bold;line-height:18px;padding:9px 12px}table.shop_table td{padding:6px 12px;vertical-align:middle}table.shop_table td a.button{margin:0 3px}table.shop_table tfoot td{font-weight:bold}table.my_account_orders{font-size:0.85em}table.my_account_orders th,table.my_account_orders td{padding:4px 8px;vertical-align:top}table.my_account_orders .button{white-space:nowrap;margin:4px 0}table.cart img{width:32px;height:auto}ul.cart_list,ul.product_list_widget{list-style:none outside;padding:0;margin:0}ul.cart_list li,ul.product_list_widget li{padding:4px 0;margin:0;overflow:hidden;zoom:1}ul.cart_list li a,ul.product_list_widget li a{display:block;font-weight:bold}ul.cart_list li img,ul.product_list_widget li img{float:left;margin-right:4px;width:32px;height:auto}.widget_shopping_cart .total{border-top:3px double #ddd;padding:4px 0 0;margin:0}.widget_shopping_cart .total strong{min-width:40px;display:inline-block}.widget_shopping_cart .buttons{overflow:hidden;zoom:1}a.remove{display:block;height:16px;width:16px;text-indent:-9999px;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/remove.png\') #cccccc}a.remove:hover{}.cart th,.cart td{vertical-align:middle}td.actions{text-align:right}td.actions .coupon{float:left}#top td.actions .coupon label{display:none}td.actions .coupon .input-text{width:80px;float:left;margin:1px 6px 0 0}td.actions .button.alt{float:right;margin:2px 0 0 6px}td.product-name dl.variation{margin:0}td.product-name dl.variation dt{font-weight:bold;display:inline;margin:0 4px 0 0;padding:0}td.product-name dl.variation dd{display:inline;margin:0 12px 0 0;padding:0}td.quantity{min-width:80px}.quantity input{margin-left:0;margin-right:0}.quantity input.qty{width:20px;display:inline;padding:1px 5px 2px;line-height:1em;vertical-align:middle;margin:0}.quantity input.plus,.quantity input.minus{padding:4px;vertical-align:middle;line-height:1em;border:none;width:20px;cursor:pointer;margin:0;display:inline;border:0}.quantity input.minus{border-top-left-radius:5px;border-bottom-left-radius:5px}.quantity input.plus{border-top-right-radius:5px;border-bottom-right-radius:5px;float:none}.quantity input.minus:hover,.quantity input.plus:hover{}.cart input{width:100px;margin:0;vertical-align:middle;line-height:1em}.col2-set{overflow:hidden;zoom:1;width:100%}.col2-set .col-1{float:left;width:48%}.col2-set .col-2{float:right;width:48%}.cart-collaterals h2{font-size:14px;text-align:left;float:none}.cart-collaterals{overflow:hidden;zoom:1;width:100%}.cart-collaterals .related{width:30.75%;float:left}.cart-collaterals .cross-sells{width:100%;float:left}.cart-collaterals .cross-sells ul.products{float:none}.cart-collaterals .cross-sells ul.products li{width:24.25%}#top .cross-sells .content{width:100%;padding:0;margin:0}.cart-collaterals .shipping_calculator{width:48%;text-align:right;overflow:hidden;zoom:1;margin:20px 0 0 0;clear:right;float:right}.cart-collaterals .shipping_calculator .button{width:100%;float:none;display:block}.cart-collaterals .shipping_calculator .col2-set .col-1,.cart-collaterals .shipping_calculator .col2-set .col-2{width:47%}.cart-collaterals .cart_totals{float:right;width:48%;text-align:right}.cart-collaterals .cart_totals p{margin:0}.cart-collaterals .cart_totals table{border-radius:5px;margin:0 0 6px;padding:0}.cart-collaterals .cart_totals table tr:first-child th,.cart-collaterals .cart_totals table tr:first-child td{border-top:0}.cart-collaterals .cart_totals table td,.cart-collaterals .cart_totals table th{padding:6px 12px}.cart-collaterals .cart_totals table small{display:block}#top .cart-collaterals .cart_totals table select,#top.woocommerce-page select{width:95%;min-width:0;margin:0}.avia-webkit #top .cart-collaterals .cart_totals table select,.avia-webkit #top.woocommerce-page select{padding-right:30px}.cart-collaterals .cart_totals .discount td{}.cart-collaterals .cart_totals tr td,.cart-collaterals .cart_totals tr th{padding:6px 24px}.cart-collaterals .cart_totals a.button.alt{width:193px;display:block;font-size:0.92em}#top .form-row{zoom:1;padding:3px 0;margin:0 0 10px} #top .form-row label{display:block}#top .form-row label.hidden{visibility:hidden}#top .form-row select{width:100%;cursor:pointer;margin:0;min-width:100px}#top .form-row .required{font-weight:bold}#top .form-row .input-checkbox{display:inline;margin:-2px 8px 0 0;text-align:center;vertical-align:middle}#top .form-row label.checkbox{display:inline}form .form-row input.input-text,#content .form-row input.input-text,form .form-row textarea,#content .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:inset 0 1px 4px 0 rgba(0,0,0,0.1);width:100%;padding:6px;margin:0;outline:0;background:#fff none;font-size:14px;line-height:1em}form .form-row textarea,#content .form-row textarea{height:3.5em;line-height:1.5em;display:block;box-shadow:none}.form-row-first,.form-row-last{float:left;width:47%;overflow:visible}.form-row-last{float:right}#top form.login,#top form.register{padding:20px;margin:20px 0 20px 0px;text-align:left;border-radius:5px;border-style:solid;border-width:1px}#top #payment{border-radius:5px;border-style:solid;border-width:1px}#top #payment ul.payment_methods{overflow:hidden;zoom:1;text-align:left;padding:1em;margin:0;list-style:none outside}#top #payment ul.payment_methods li{line-height:2em;text-align:left;margin:-1px 0 0 0;font-weight:normal;border-style:solid;border-width:1px;padding:15px}#top #payment ul.payment_methods li input{margin:0 1em 0 0}#top #payment ul.payment_methods li img{vertical-align:middle;margin:-1px 0 0 0.5em;position:relative}#top #payment div.form-row{padding:1em}#top #payment label{display:inline}#top #payment #place_order{float:none;margin:0 auto}#top #payment .terms{padding:0 1em 0;text-align:right}#top #payment div.payment_box{position:relative;width:90%;box-shadow:inset 0 1px 1px rgba(255,255,255,0.5) #888888;padding:1em 28px;margin:0 0 0 0;font-size:0.92em;left:-2px}#payment div.payment_box #cc-expire-month,#payment div.payment_box #cc-expire-year{width:48%;float:left}#top #payment div.payment_box #cc-expire-year{float:right}#top #payment div.payment_box span.help{font-size:11px;line-height:13px;font-weight:normal}#top #payment div.payment_box p,#payment div.payment_box .form-row{padding:0 0 1em;margin:0} div.shipping-address{padding:0;clear:left}#top #shiptobilling{float:right;line-height:1.62em;margin:0 0 0 0;padding:0} #top #shiptobilling label{font-size:0.6875em}.checkout .col-2 h3{float:left;clear:none;margin-top:0}.checkout .col-2 .notes{clear:left}.checkout .col-2 .form-row-first{clear:left}#top .checkout .col-1,#top .checkout .col-2{background:transparent}.order_details{overflow:hidden;zoom:1;margin:0 0 1.5em;list-style:none}.order_details li{float:left;margin-right:2em;text-transform:uppercase;font-size:0.715em;line-height:1em;border-right:1px dashed #ccc;padding-right:2em}.order_details li strong{display:block;font-size:1.4em;text-transform:none;line-height:1.5em}.order_details li.method{border:none}.addresses .title{overflow:hidden;zoom:1}.addresses .title h3{float:left}.addresses .title .edit{float:right}ol.commentlist.notes li.note p.meta{font-weight:bold;margin-bottom:0}ol.commentlist.notes li.note .description p:last-child{margin-bottom:0}#customer_details{padding-bottom:40px}#payment{margin-top:40px}td select{margin:0;min-width:100px}.template-search-none>p{display:none}.term-description{position:relative;clear:both;margin-bottom:10px;font-size:12px}.slideshow_container + .term-description{top:-18px} #top button:disabled{opacity:0.4;cursor:not-allowed} .pointer_arrow{height:20px;width:20px;position:absolute;top:-10px;left:50%;-ms-transform:rotate(45deg);-moz-transform:rotate(45deg);-webkit-transform:rotate(45deg);transform:rotate(45deg)} .pointer_arrow_wrap{position:absolute;width:20px;height:10px;top:-13px;left:50%;margin-left:-11px;overflow:hidden} .pointer_arrow_wrap .pointer_arrow{left:0;top:6px} .cart_dropdown{position:absolute;right:-60px;height:46px;width:46px;line-height:46px;text-decoration:none;text-align:center;top:50%;margin:-23px 0 0 0;border-radius:2px;border-style:solid;border-width:1px;font-weight:normal;z-index:101;-webkit-transition:all ease-in-out 0.8s;transition:all ease-in-out 0.8s} .html_bottom_nav_header .cart_dropdown{margin:-40px 0 0 0} .html_boxed .cart_dropdown{position:fixed;top:24px;margin:0;z-index:300} .bottom_nav_header #header_main{z-index:2000}.bottom_nav_header #header_meta{z-index:2001} .html_visible_cart .cart_dropdown{right:-2px} .html_burger_menu_active.html_visible_cart .cart_dropdown{display:block} .html_visible_cart .av-burger-menu-main{padding-right:25px} .cart_dropdown_first{line-height:38px;padding:0} .cart_dropdown_first .cart_dropdown_link{display:block;padding:0 0 0 0;text-decoration:none;line-height:44px;font-size:15px;position:absolute;z-index:2;width:100%;height:100%} #top .cart_list.product_list_widget{background:transparent} .cart_dropdown_first .cart_subtotal{display:block;float:left} .cart_dropdown .dropdown_widget{clear:both;position:absolute;right:7px;top:0;width:280px;line-height:18px;display:none;padding-top:54px} .cart_dropdown .dropdown_widget .widget_shopping_cart_content{padding:0;box-shadow:0 10px 15px rgba(0,0,0,0.1);overflow:hidden;border-style:solid;border-width:1px;text-align:left;border-radius:2px} .cart_dropdown .dropdown_widget .avia-arrow{top:49px;left:auto;margin-left:0;border-bottom:none;border-right:none;right:10px} .cart_dropdown_first:hover .dropdown_widget{display:block} .dropdown_widget .cart_list{border:none} div .dropdown_widget .cart_list li{padding:10px 12px;border-bottom-width:1px;border-bottom-style:dotted;border-top:none;font-size:11px;position:relative} .dropdown_widget .cart_list li.empty{border-bottom:none;text-align:center;font-weight:bold} .dropdown_widget ul.cart_list li a{display:block;font-weight:bold;float:none;text-decoration:none} .dropdown_widget ul.cart_list li a img{float:right;display:block;background:#fff;border:1px solid #e1e1e1;padding:2px;margin:0 0 0 10px;width:55px;height:auto} .dropdown_widget .quantity{overflow:hidden} #top .dropdown_widget .total{font-size:13px;border:none} .dropdown_widget .buttons{border-top-style:solid;border-top-width:1px} .cart_dropdown .dropdown_widget .widget_shopping_cart_content p{font-size:11px;padding:10px;margin:0;overflow:hidden} #top .dropdown_widget .buttons .button{width:43%;float:left;margin:0;background:transparent;padding:2px;font-weight:600;text-align:center} #top .dropdown_widget .buttons .button.checkout{float:right} #top .update_succes{margin:0px 10px} dl.variation{padding:0;margin:0} dl.variation dt{padding:0;margin:0} dl.variation dd{padding:0;margin:0 0 0 3px;font-weight:bold} .html_visible_cart.html_stretched.html_header_top.html_header_stretch .main_menu{-webkit-transition:right ease-in-out 0.8s;transition:right ease-in-out 0.8s;right:30px} .html_cart_at_menu.html_header_top #top .main_menu{right:0px} #menu-item-shop.cart_dropdown{right:0;top:0;margin:0;height:auto;border-top:none;border-radius:0;width:auto;position:relative;float:left} .av_menu_icon_beside + #menu-item-shop.cart_dropdown{right:26px}.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown{padding-right:15px}.html_burger_menu.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown{padding-right:0} .html_header_top #menu-item-shop.cart_dropdown{border-bottom:none} #menu-item-shop .cart_dropdown_link{background:transparent;margin:0;left:0;color:inherit;position:relative;width:auto;-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out;padding:0 38px;float:left;line-height:88px} #menu-item-shop .dropdown_widget{right:-1px;top:100%;padding:0;margin-top:-1px}.av_minimal_header #menu-item-shop .dropdown_widget{margin-top:0}#menu-item-shop .dropdown_widget .avia-arrow{top:-5px;right:40px} #top .av_header_transparency #menu-item-shop.cart_dropdown{border-color:transparent}#top .av_header_glassy.av_header_transparency #menu-item-shop.cart_dropdown,#top .av_header_with_border.av_header_transparency #menu-item-shop.cart_dropdown{border-color:rgba(255,255,255,0.25)} #header_main #menu-item-shop .added_to_cart_notification{top:100%;right:-1px}#header_main #menu-item-shop .added_to_cart_notification .avia-arrow{right:39px} .html_header_sidebar #menu-item-shop.cart_dropdown{width:100%;margin:0;right:0;border-right:none;height:46px;position:absolute;opacity:1} .html_header_sidebar #menu-item-shop.cart_dropdown .cart_dropdown_link{width:100%;line-height:46px} .html_cart_at_menu.html_header_sidebar #header_main .avia-menu{margin-top:46px}.html_cart_at_menu.html_header_sidebar #top #menu-item-shop .dropdown_widget.dropdown_widget_cart{width:100%}.html_cart_at_menu.html_header_sidebar #menu-item-shop .dropdown_widget .avia-arrow{right:48%}.html_cart_at_menu.html_header_sidebar #header_main #menu-item-shop .added_to_cart_notification{width:100%}.html_cart_at_menu.html_header_sidebar #header_main #menu-item-shop .added_to_cart_notification .avia-arrow{right:48%}.html_cart_at_menu.html_bottom_nav_header #menu-item-shop{float:right;right:-34px;border:none}.html_cart_at_menu.html_bottom_nav_header #header_main .social_bookmarks{right:60px}.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop{float:left;left:-34px}.html_cart_at_menu.html_bottom_nav_header.html_logo_right #header_main .social_bookmarks{left:60px}.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop .dropdown_widget{left:17px}.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop .dropdown_widget .avia-arrow{left:25px} .html_cart_at_menu.html_header_top.html_logo_left .av_seperator_big_border #menu-item-shop.cart_dropdown{margin-left:-1px}.html_cart_at_menu.html_main_nav_header #top .main_menu .menu>li:last-child{padding-right:13px;margin-right:20px}.html_cart_at_menu.html_main_nav_header #top .av_seperator_big_border .main_menu .menu>li:last-child{margin-right:0;padding-right:0} .animator2{-webkit-transition:all ease-in-out 0.2s;-moz-transition:all ease-in-out 0.2s;transition:all ease-in-out 0.2s} .animator3,.thumbnail_container{-webkit-transition:all linear 0.3s;-moz-transition:all linear 0.3s;transition:all linear 0.3s} #top .screen-reader-text{display:none} #top .form-row label.hidden{visibility:hidden;display:block;position:relative} .products .product h2,.products .product h3,.products .product h4,.products .product h5,.products .product h6,h2.woocommerce-loop-product__title{padding-top:5px;font-size:1em;line-height:1.3em;font-weight:normal;margin:0} #top .onsale{background:rgba(0,0,0,0.8);z-index:10;color:#FFF;background:#7E9A47;top:17px;right:8px;left:auto;margin:0;min-width:40px} ins{text-decoration:none} #top .price,#top .price span,#top del,#top ins{display:inline;text-decoration:none;font-size:15px;line-height:24px;font-weight:600} #top .price,div .stock{color:#7E9A47} #top .price .from{font-weight:normal;padding-right:2px} #top #wrap_all ins{color:#7E9A47} #top #wrap_all del{text-decoration:line-through;font-weight:normal;color:#8B2121} #top #wrap_all ins:before{content:\"\\2219\";text-decoration:none;display:inline-block;padding:0 7px 0 3px;font-size:20px;line-height:12px} #top .product_excerpt,#top .product_excerpt:hover{font-size:12px;text-decoration:none} .single-product-main-image .thumbnails{margin-top:10px;width:104%} #top .single-product-main-image .thumbnails a{float:left;width:31.3%;margin:0 4px 4px 0;clear:none;position:relative;padding:4px} .single-product-main-image .images > a{border-radius:2px} .single-product-main-image img{display:block} #top .single-product-main-image .onsale{top:0px;right:7px} .template-shop .single-product-main-image .images a{border-style:solid;border-width:1px} .lightbox_image,.image_overlay_effect_inside{border-radius:3px} .cart-loading{border-radius:100px;position:absolute;height:60px;width:60px;left:50%;top:48%;margin:-30px 0 0 -30px;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/loading-light.gif\') no-repeat center center #fff;display:none;opacity:0.9;-webkit-backface-visibility:hidden;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;-webkit-transform:scale(0.3);-ms-transform:scale(0.3);transform:scale(0.3)} .adding-to-cart-loading:hover .cart-loading{display:block;opacity:0.9;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)} #top .added-to-cart-check .cart-loading{-webkit-transform:scale(0);-ms-transform:scale(0);transform:scale(0);background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/icons-shop-added.png\') no-repeat center center #fff} #top .added-to-cart-check:hover .cart-loading{display:block;opacity:0.9;-webkit-transition-delay:300ms;transition-delay:300ms;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)} .avia_transform .added-to-cart-check .cart-loading{display:block;opacity:0;-webkit-transition-delay:300ms;transition-delay:300ms} .thumbnail_container .rating_container .star-rating{float:none;margin:0 auto} #top .woocommerce-ordering{position:absolute;right:0;margin:0;z-index:20;top:50%;margin-top:-23px;width:25%;min-width:200px} .template-shop .page-title{display:none} .products .product.first{clear:both} #top .products .product.last,#top #main .products .product.last{margin-right:0} div .products .product{float:left;margin:0 1% 1% 0;padding:0;position:relative;width:24.25%;margin-left:0} div .products .product a,div .products .product a img{display:block;overflow:hidden;border-radius:1px} div .products .product a:hover{text-decoration:none} .shop_columns_5 .products .product{margin:0 1% 1% 0;width:19.2%} .shop_columns_3 .products .product{margin:0 1% 1% 0;width:32.6%} .shop_columns_2 .products .product{width:49.5%} #top .inner_product_header{padding:10px 15px 15px;clear:both;position:relative;border-top-style:solid;border-top-width:1px;min-height:91px} .inner_product_header .avia-arrow{border-bottom:none;border-right:none;z-index:1000;top:-5px;margin-left:-6px} #top div .product_on_sale .inner_product_header{padding-right:47px} .thumbnail_container .rating_container{padding:5px;width:100px;position:absolute;bottom:20px;background:rgba(0,0,0,0.2);border-radius:3px;left:50%;margin-left:-50px;opacity:0;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .inner_product:hover .rating_container{opacity:1} .thumbnail_container{display:block;position:relative;overflow:hidden} .thumbnail_container_inner{display:block;position:relative;overflow:hidden} #top .thumbnail_container img{margin:0;display:block;width:100%;height:auto;border-bottom-right-radius:0px;border-bottom-left-radius:0px} .avia_cart_buttons{width:100%;z-index:9;padding:0;position:relative;-webkit-perspective:1000px;-webkit-backface-visibility:hidden} #top .avia_cart_buttons .button{min-width:50px;float:left;width:49%;text-align:center;border-radius:0px;padding:11px 2px;font-size:11px;font-weight:600;line-height:15px;margin:0} #top .avia_cart_buttons .button:last-child{float:right} #top #wrap_all .single_button .button,#top #wrap_all .shop_columns_5 .avia_cart_buttons .button{margin:0 auto;float:none;min-width:75px;width:100%} .avia_cart_buttons{opacity:0.2;border-top-width:1px;border-top-style:solid;padding:10px;overflow:hidden;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .inner_product:hover .avia_cart_buttons{opacity:1} .inner_product{border-style:solid;border-width:1px;border-radius:2px;overflow:hidden} .alternate_color .inner_product{border-radius:3px} #top .avia_cart_buttons .button{background:transparent;padding:3px 3px} #top .avia_cart_buttons .button > span{font-size:14px;position:relative;top:1px;font-weight:normal} .button-mini-delimiter{position:absolute;border-left-style:solid;border-left-width:1px;left:50%;height:14px;top:50%;margin-left:-4px;margin-top:-6px} .single-product .template-shop{padding-top:50px} #top .price_container{position:relative} #top .price_container .price,#top .price_container .price ins{font-size:15px;font-weight:normal} .template-shop .images a{display:block;position:relative;padding:5px} #top .template-shop .images a img{display:block;position:relative;border:0;padding:0} .template-shop div.product div.images{width:100%;float:none;margin:0} .template-shop div.product div.summary{width:100%;float:none;padding-bottom:10px} .summary .cart{float:none;clear:both;position:relative;z-index:2} .template-shop .product_meta{clear:both;font-size:11px;position:relative;top:8px} #top .product div.images img{display:block;width:100%;height:auto} #top .variations_form,#top div.product .woocommerce-tabs .panel{border-style:solid;border-width:1px} #top div.product .woocommerce-tabs{clear:both;padding:50px 0 0 0;margin:0 0 30px 0} #top .woocommerce-tabs h2{font-size:16px} #top .woocommerce-tabs .tabs li a{cursor:pointer;margin:0 -1px 0 0;display:block;float:left;z-index:2;position:relative;padding:12px 16px;top:0px;font-size:0.9em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-style:solid;border-width:1px} #top .woocommerce-tabs .tabs li.active{z-index:4;position:relative;font-weight:bold} #top .woocommerce-tabs .tabs li:first-child a{border-top-left-radius:2px} #top .woocommerce-tabs .tabs li:last-child a{border-top-right-radius:2px} #top div div.product .woocommerce-tabs ul.tabs li a{white-space:nowrap;border-style:solid;border-width:1px;border-bottom:none;padding:9px 20px 10px 20px;position:relative} #top div.product .woocommerce-tabs ul.tabs{border-bottom:none;overflow:visible;width:100%;float:left;zoom:1;margin:0;padding:0;list-style:none outside} #top div.product .woocommerce-tabs ul.tabs a{float:left;padding:10px 20px 10px 20px;background:transparent;text-decoration:none} #top div div.product .woocommerce-tabs .panel{padding:15px;border-bottom-left-radius:3px;border-bottom-right-radius:3px;overflow:hidden} .related.products,.upsells.products{zoom:1;clear:both;overflow:visible} #top .related.products .content,#top .upsells.products .content{width:100%;float:none;clear:both;padding:0;margin:0} #top .product_column_2 .products .product{width:49.5%;margin:0 1% 1% 0} #top .product_column_3 .products .product{margin:0 1% 1% 0;width:32.6%} #top .product_column_4 .products .product{margin:0 1% 1% 0;width:24.25%} #top .product_column_5 .products .product{margin:0 1% 1% 0;width:19.2%} #top .related.products h2,#top .upsells.products h2{font-size:18px} #top.single-product .related.products h2.woocommerce-loop-product__title{} #top.single-product h2.woocommerce-loop-product__title{font-size:1em;text-transform:none} .single .product_column{margin:30px 0;clear:both;float:left;width:100%} .col-1,.col-2{position:relative;border-radius:3px} .addresses.col2-set .col-1,.addresses.col2-set .col-2{border-style:solid;border-width:1px;padding:12px;width:44%} .fullsize .addresses.col2-set .col-1,.fullsize .addresses.col2-set .col-2{width:46%} .col2-set .col-1 h3,.col2-set .col-2 h3{padding:2px} .shipping_address{clear:both} #top .order_details li{float:left;margin:0 2em 7px 0;text-transform:uppercase;font-size:0.715em;line-height:1em;border-right:1px dotted #CCC;padding:0 2em 0 0;list-style-position:outside;list-style-type:none} #top #main .order_details{overflow:hidden;zoom:1;margin:0 0 1.5em;list-style:none;padding:20px 20px 13px 20px;border-style:solid;border-width:1px;border-radius:2px} #top #main .shop_table.order_details{border-collapse:separate;padding:5px} table.my_account_orders th,table.my_account_orders td{padding:4px 8px;vertical-align:top;line-height:25px} div table.shop_attributes td p{margin:0;padding:0} div table.shop_attributes td{font-style:italic;padding:8px;border:none;margin:0;line-height:1.5em} div table.shop_attributes{border:none} div table.shop_table td{padding:6px 12px;vertical-align:middle} #top table.shop_table .actions .button{min-width:182px;width:182px;margin:3px 0 3px 7px} td.actions .coupon{width:410px} #top table.shop_table .actions .coupon .button{width:200px;margin:3px 0;padding-left:0;padding-right:0} .cart-collaterals .cross-sells{width:100%;float:left;border-bottom-style:solid;border-bottom-width:1px;padding-bottom:40px;margin-bottom:40px} .cart-collaterals .shipping_calculator{width:48%;text-align:right;overflow:hidden;zoom:1;margin:0px 0 0 0;clear:right;float:right} .cart_totals table{border-top-style:solid;border-top-width:1px} #top div td.actions .button.alt{float:right;margin:3px 0 3px 6px} div table.shop_attributes th{width:100px;font-weight:bold;padding:8px;border:none;margin:0;line-height:1.5em} .cart-collaterals .cart_totals{margin:0px 0 0 0;clear:both;float:left} .cross-sells{padding-top:50px;margin-top:50px;border-top-style:solid;border-top-width:1px} .cross-sells h2{font-size:14px;text-align:left;float:none} form.cart{margin-bottom:44px;overflow:hidden;zoom:1} div form.cart table{font-size:12px;width:100%;text-align:center;margin:10px 0} #top div form.cart table .price{display:table-cell} table div.quantity{float:none;margin:0 auto;width:130px} div form.cart div.quantity{float:left;margin:0 3% 5px 0;min-width:130px} form.cart .group_table div.quantity{float:none;margin:0 auto} td.product-quantity{min-width:85px} div .cart-collaterals .cart_totals table{border-collapse:collapse;padding:0;margin:10px 0} #top .variations_form{margin-bottom:0px;border-radius:2px;padding:0 15px;position:relative;overflow:visible} #top .variations_form > table{margin:20px 0} .reset_variations{height:11px;line-height:11px;font-size:11px;position:absolute;right:0;bottom:-25px} #top .variations{border:none;background:transparent;margin:0} #top .variations select{min-width:100px} #top .variations td{padding:4px 10px;border:none;vertical-align:top} #top .variations td.label{width:77px} #top .variations .label label{margin-top:5px;text-align:right} .single_variation_wrap{overflow:hidden;display:block;margin:10px 0px 20px 90px} div.variations_button{overflow:hidden;width:100%} div.variations_button .button{margin:0;min-width:130px} #top .variations td:nth-child(2){text-align:left} div a.remove{display:block;height:18px;width:18px;text-indent:-9999px;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/remove.png\') #CCC;border-radius:100px;border-style:solid;border-width:1px} .summary .cart{margin-bottom:0} #top div form .form-row textarea,#top div #content .form-row textarea{height:14em;line-height:1.5em;display:block;box-shadow:none} #top div #shiptobilling label{font-size:11px} .entry-content-wrapper .avia_style_wrap{padding:0} .entry-content-wrapper .avia_select_unify{border-radius:0;width:100%;border-width:1px;border-style:solid} .entry-content-wrapper .avia_style_wrap{width:100%} #top div form .form-row input.input-text,#top div #content .form-row input.input-text,#top div form .form-row textarea,#top div #content .form-row textarea{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;box-shadow:none;width:100%;padding:8px 6px;margin:0;outline:0;font-size:12px;font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif;line-height:18px} #top .chzn-single{height:36px;line-height:35px} #top .chzn-single div b{background-position:0 4px!important} #payment ul li{list-style-type:none} #payment img{display:inline-block} #top .my_account_orders a.button{padding:7px 12px} #top div .quantity input.plus,#top div .quantity input.minus{padding:0;vertical-align:middle;line-height:41px;border:none;width:43px;height:43px;cursor:pointer;margin:0;display:inline;border:0;border-radius:0;-webkit-appearance:none;background-color:#F8F8F8;border:1px solid #E1E1E1;color:#666;background-image:url(\'https://solsculpting.com/wp-content/themes/enfold/images/layout/bg-button.png\');background-repeat:repeat-x;outline:none} #top div .quantity input.plus{border-left:none}#top div .quantity input.minus{border-right:none} #top div .quantity input.qty{height:43px;width:43px;display:inline;padding:0px 5px 0px;line-height:41px;vertical-align:middle;margin:0;text-align:center} #top div td.actions .coupon .input-text{width:200px;float:left;margin:3px 3px 3px 0;font:12px/1.7em \"Helvetica Neue\",Helvetica,Arial,sans-serif;line-height:17px;padding:11px;border-radius:2px} #top .actions .button[name=\"update_cart\"]{float:right;margin-right:0} #top .actions .button[name=\"update_cart\"]:disabled{opacity:0.4;cursor:not-allowed} #top .actions .checkout-button.button.alt{min-width:162px} div .product-sorting{width:100%;float:left;padding-bottom:30px;position:relative;z-index:9999} div .product-sorting ul,div .product-sorting li{list-style-position:outside;list-style-type:none;margin:0 2px 0 0} .sort-param{float:left;position:relative;z-index:100;margin:0 13px 13px 0;padding:0;font-size:11px;-webkit-perspective:1000px;-webkit-backface-visibility:hidden} .sort-param-order{margin-right:3px} .sort-param:hover{z-index:101} .sort-param li{position:relative;margin:0;display:block;z-index:100} .sort-param > li > span,.sort-param > li > a{border-width:1px;border-style:solid;display:block;line-height:31px;background-image:url(\'https://solsculpting.com/wp-content/themes/enfold/images/layout/bg-button.png\');background-repeat:repeat-x;background-position:top left} .sort-param > li:hover > a{box-shadow:inset 1px 1px 2px rgba(0,0,0,0.1)} .sort-param > li > span{padding:0px 40px 0px 10px;cursor:default;background:transparent url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/arrow_down.png\') right center no-repeat} .sort-param > li > a{width:33px;overflow:hidden;height:33px;text-indent:200%;background:transparent url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/arrow_up_down.png\') center -1px no-repeat} .sort-param .sort-param-asc{background:transparent url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/arrow_up_down.png\') center -28px no-repeat} .sort-param ul{margin:0;padding:10px 15px;border-width:1px;border-style:solid;position:absolute;left:0;top:35px;display:none;min-width:167px} .sort-param ul li{margin-left:10px} .sort-param-count ul{min-width:207px} .sort-param > li:hover ul,.sort-param.active-sort > li ul{display:block;box-shadow:0px 6px 14px 0 rgba(0,0,0,0.1)} .sort-param ul a{text-decoration:none;display:block;padding-left:6px} .avia-bullet{display:block;position:absolute;height:0;width:0;top:51%;margin-top:-3px;left:-3px;border-top:3px solid transparent !important;border-bottom:3px solid transparent !important;border-left:3px solid green} #top #main .checkout_coupon #coupon_code{padding:15px} .form-row .lost_password{line-height:49px;margin-left:10px} .clear{clear:both}.nobr{white-space:nowrap} dt,dd{float:left}dt{clear:both}dl{padding-bottom:10px;overflow:hidden}.woocommerce-account dt{width:30px;display:block;font-weight:bold} #top div.woocommerce-error,#top div.woocommerce-message,#top .woocommerce-info{margin:0px 0px 50px 0px;padding:32px 45% 32px 36px;background-repeat:no-repeat;background-position:10px center;overflow:hidden;position:relative;border-radius:2px}#top div.woocommerce-error a.button,#top div.woocommerce-message a.button{margin-top:0;float:right;color:#fff;position:absolute;right:22px;top:50%;margin-top:-19px;text-align:center;background:rgba(0,0,0,0.2);border-radius:2px} #top div.woocommerce-error a.button:hover,#top div.woocommerce-message a.button:hover{background:rgba(0,0,0,0.5)} #top div.woocommerce-error{border-color:#941210;background-color:#F0DCDB;color:#941210}#top div.woocommerce-message{border-color:#8BAF5B;background-color:#E0F1B5;color:#4F5F39}#top div.woocommerce-error a{color:#941210}#top div.woocommerce-message a{color:#4F5F39}#top .woocommerce-info{border-style:solid;border-width:1px;margin:0 0 20px 0;padding:19px} mark{background:transparent;font-weight:bold} #top div div.woocommerce-message a.button{text-decoration:none;width:20%;min-width:90px} .quantity input{border-width:1px;border-style:1px} div .star-rating,div #reviews #comments ol.commentlist li .comment-text .star-rating{float:right;width:80px;height:16px;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left 0 transparent} #top div .star-rating span ,div #reviews #comments ol.commentlist li .comment-text .star-rating span{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left -32px transparent;height:0;padding-top:16px;overflow:hidden;float:left} #top div p.stars span{width:80px;height:16px;position:relative;float:left;background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left 0 transparent} #top div p.stars span a:hover,#top div p.stars span a:focus{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left -16px transparent} div .woocommerce-tabs .star-rating{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left 0 transparent} #top #review_form p.stars,#top #commentform p{padding:0;margin:0 0 10px 0} #top #commentform p{padding:2px} #top .woocommerce-tabs div .star-rating span{background:url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/star.png\') repeat-x left -32px transparent} .add_review{display:none} #top #reviews h2{font:10px/17px \"HelveticaNeue\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;font-weight:bold;text-transform:uppercase;letter-spacing:1.5px} #top #reviews h2 span{display:inline} #top .woocommerce-tabs .commentlist{padding-top:20px} div #reviews .star-rating{margin:0 13px 0 0} .woocommerce-tabs .comment_container{float:left;width:100%} div #reviews #comments ol.commentlist li .comment-text{margin:0 0 0 50px;border-radius:0;padding:11px 11px 0} .rtl div #reviews #comments ol.commentlist li .comment-text{margin:0 50px} .rtl .av-woo-product-review #reviews #comments ol.commentlist li .comment-text{margin:0 50px 0 0} div #reviews #comments ol.commentlist li .avatar{float:left;position:absolute;top:0;left:0;padding:3px;width:32px;height:auto;margin:0;line-height:1;border-style:solid;border-width:1px} div #reviews #comments ol.commentlist li .comment-text{border-style:solid;border-width:1px} #top #commentform .comment-form-rating label,#top.logged-in div #commentform .comment-form-comment label{position:relative;left:auto;display:block;font-size:11px;top:auto} div #reviews #comment{height:125px} div #review_form #respond{overflow:hidden;zoom:1;border:none;margin:0;padding:0} #top #reviews .commentlist span{display:inline} div #reviews #comments ol.commentlist li{padding:0;margin:0 0 4px;border:0;position:relative;background:0;border:0;display:inline-block;width:100%} #top #review_form #respond .comment-form-rating{} #top.logged-in #review_form #respond .comment-form-rating{position:relative;right:auto;top:auto} #top div #commentform .comment-form-comment label{display:none} .summary-main-content{padding-bottom:20px} .template-login #customer_login .col-1,.template-register #customer_login .col-2{float:none;width:auto}.template-login #customer_login .col-2,.template-register #customer_login .col-1{display:none} div .widget_price_filter .price_slider_wrapper .button{margin:0}div .widget_price_filter .price_slider_wrapper .price_slider{margin:1em .6em .6em}div .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle{outline:0}div .widget_price_filter .price_slider_wrapper .price_slider_amount{overflow:hidden;line-height:35px;padding:4px 0 0 0}div .widget_price_filter .price_slider_wrapper .price_label{float:right}div .widget_price_filter .ui-state-default,div .widget_price_filter .ui-widget-content .ui-state-default,div .widget_price_filter .ui-widget-header .ui-state-default{font-weight:normal}div .widget_price_filter .ui-state-hover,div .widget_price_filter .ui-widget-content .ui-state-hover,div .widget_price_filter .ui-widget-header .ui-state-hover,div .widget_price_filter .ui-state-focus,div .widget_price_filter .ui-widget-content .ui-state-focus,div .widget_price_filter .ui-widget-header .ui-state-focus{font-weight:normal}div .widget_price_filter .ui-state-active,div .widget_price_filter .ui-widget-content .ui-state-active,div .widget_price_filter .ui-widget-header .ui-state-active{font-weight:normal}div .widget_price_filter .ui-corner-all{border-radius:24px}div .widget_price_filter .ui-slider{position:relative;text-align:left}div .widget_price_filter .ui-slider .ui-slider-handle{position:absolute;z-index:2;width:11px;height:11px;cursor:default}div .widget_price_filter .ui-slider .ui-slider-range{position:absolute;z-index:1;font-size:.7em;display:block;background-position:0 0}div .widget_price_filter .price_slider_wrapper .ui-widget-content{}div .widget_price_filter .price_slider_wrapper .ui-widget-header{font-weight:bold;cursor:pointer}div .widget_price_filter .ui-slider-horizontal{height:5px}div .widget_price_filter .ui-slider-horizontal .ui-slider-handle{top:-3px;margin-left:-5px;cursor:ew-resize}div .widget_price_filter .ui-slider-horizontal .ui-slider-range{top:0;height:100%}div .widget_price_filter .ui-slider-horizontal .ui-slider-range-min{left:0}div .widget_price_filter .ui-slider-horizontal .ui-slider-range-max{right:0}#top div .widget_price_filter .button{margin:0}#top .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle{background-color:#ddd;color:#666} #top .price_slider_amount .button{min-width:64px;padding:10px} div .widget_layered_nav ul{margin:0;padding:0;border:0;list-style:none outside}div .widget_layered_nav ul li{overflow:hidden;zoom:1;padding:0 6px 0 3px;width:auto;float:none}div .widget_layered_nav ul small.count{float:right;margin-left:6px;font-size:1em;padding:1px 0} #top .widget_product_categories ul{overflow:hidden;padding:0;margin:0}.widget_product_categories li{font-size:10px;font-style:italic;padding:1px}.widget_product_categories li a{padding:0 0 0 9px;background:transparent url(\'https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/images/bullet_grey.png\') left center no-repeat}.widget_product_categories .children li{padding:2px 0px 2px 10px}.widget_product_categories li a{font-size:12px;font-style:normal} #top .widget_product_search.widget{padding:0 0 18px 0;border:none}#top .widget_product_search.widget h3{padding-top:20px} #top .widget_product_search #searchform>div{max-width:100%}#top .widget_product_search #searchform #searchsubmit{font-size:12px;width:48px} div ul.product_list_widget li{padding:8px 0;margin:0;overflow:hidden;zoom:1;font-size:11px;border-top-style:dotted;border-top-width:1px;position:relative}#top div ul.product_list_widget li a{display:block;font-weight:bold;font-size:12px;line-height:1.5em !important;height:auto !important}div ul.product_list_widget li img{float:right;margin-left:4px;width:32px;padding:2px;height:auto}div ul.product_list_widget .star-rating{float:none;position:relative;margin:3px 0 0 0} div .widget_shopping_cart .total{border-top:none;padding:4px 0 0;margin:0}.widget_shopping_cart .total strong{min-width:40px;display:inline-block}div .widget_shopping_cart .buttons{overflow:hidden;zoom:1}div .widget_shopping_cart .button.checkout{float:right}#top div .widget_shopping_cart .button{width:40%} #top div .dropdown_widget_cart{display:none;-webkit-perspective:1000px;-webkit-backface-visibility:hidden} #customer_details{overflow:visible;width:100%;float:left} div .chzn-container-single .chzn-single{background:#fff;border-radius:0;background-clip:padding-box;border:1px solid #ccc;color:#999;height:32px;line-height:32px;box-shadow:none} div .chzn-container-single .chzn-single div b{background-position:0 5px} div .chzn-container-single .chzn-single div{border-radius:0;background-clip:padding-box;background:#fff;border-left:1px solid #ccc} #order_review,#order_review_heading{clear:both} ul.woocommerce-error{border:none;list-style:none;margin:0px 0px 23px 0px;padding:32px 45% 32px 36px;background-repeat:no-repeat;background-color:#F0DCDB;color:#941210} #top .thumbnail_container .button.single_button{margin-top:-15px} #top .template-shop .clear{clear:none;width:0} #top .template-shop .container{} #payment .terms{padding:7px 0 0 0} #customer_details .form-row{clear:right}#customer_details #order_comments_field{clear:left} .entry-content-wrapper ul.products li{list-style-type:none} .woocommerce-checkout div #shiptobilling{position:relative} #payment div.payment_box #cc-expire-month,#payment div.payment_box #cc-expire-year{margin-top:5px;margin-bottom:5px}#payment div.payment_box #cc-expire-year{float:left}#top.woocommerce-checkout .form-row.form-row-first label{display:block} #top.woocommerce-checkout .woocommerce-checkout label.screen-reader-text .optional{display:none} #top #main .single-product-main-image .sidebar,#top #main .single-product-main-image .inner_sidebar{border:none;margin:0;padding:20px 0 0 0;width:100%;min-height:0} #top #payment .payment_box p:last-child{padding-bottom:0} .quantity input[type=number]::-webkit-inner-spin-button,.quantity input[type=number]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0} ul.products .avia_cart_buttons .added_to_cart{display:none !important} .form-row.address-field{overflow:visible} #top .chzn-single div b{background-position:5px 6px!important} #top.woocommerce-page .woocommerce-ordering select{width:25%} @media only screen and (max-width:767px){#top.woocommerce-page .woocommerce-ordering select{width:auto}} .form-row.address-field{overflow:visible} #top .chzn-single div b{background-position:5px 8px !important} .inner_cart_button .added_to_cart{display:none} .added_to_cart_notification{position:fixed;top:20px;z-index:100000;width:280px;right:20px;padding:20px;border-style:solid;border-width:1px;border-radius:2px;box-shadow:0 10px 15px rgba(0,0,0,0.1);text-align:left;line-height:1.65em} #header_main .added_to_cart_notification{position:absolute;top:54px;right:6px;font-size:13px} #header_main .added_to_cart_notification .avia-arrow{display:block;background-color:inherit} .added_to_cart_notification .avia-arrow{border-bottom:none;border-right:none;left:auto;right:10px;display:none} .added_to_cart_notification strong{} .added_to_cart_notification .added-product-image{width:20%;float:right} .added-product-text{float:left;width:75%} .shop_table ul#shipping_method,.cart_totals ul#shipping_method{margin-left:0;padding-left:0;list-style:none} .shop_table ul#shipping_method li,.cart_totals ul#shipping_method li{margin-left:0;text-align:left} .shop_table ul#shipping_method li label,.cart_totals ul#shipping_method li label{display:inline} .avia_cart_buttons br{display:none} .avia-product-hover{position:absolute;top:0;left:0;opacity:0;filter:alpha(opacity=00);-webkit-transition:all ease-in-out 0.3s;-moz-transition:all ease-in-out 0.3s;transition:all ease-in-out 0.3s;-webkit-backface-visibility:hidden} .inner_product:hover .avia-product-hover{opacity:1;filter:alpha(opacity=100)} ul.products li.post{clear:none} ul.products li.post.first{clear:both} .products .product.post-password-required .thumbnail_container img,#top .products .product.post-password-required .inner_product_header .price,#top .products .product.post-password-required .inner_product_header .onsale{opacity:0.1} .woocommerce-account dt,.customer_details dt{width:auto;margin-right:5px} dl.customer_details{margin-bottom:20px} #top .my_account_orders a.button{margin-bottom:5px} #top.woocommerce-checkout #payment h3{padding:1em 1em 0} dl.variation p{margin:0} .entry-summary .woocommerce-product-rating{top:-13px;position:relative}.entry-summary .woocommerce-product-rating .star-rating{float:left;margin-right:8px}.entry-summary .woocommerce-product-rating .woocommerce-review-link{position:relative;top:-3px;font-size:11px} .form-row.form-row-wide{clear:both}form.cart .group_table .button{float:none}form.cart .group_table .added_to_cart{display:none}form.cart .group_table .price .stock{margin:0} #top div .chosen-search input[type=\'text\']{background:#fff;color:#777;border-color:#e1e1e1}#top .chosen-container-single .chosen-single,#top .chosen-container-active .chosen-single,#top .chosen-container .chosen-drop{border-color:#e1e1e1}#top .chosen-container-single .chosen-single{box-shadow:none;border-radius:0px;line-height:36px;height:37px} #top.woocommerce-checkout .form-row .chosen-container-single .chosen-single div b{background-position:0 8px!important} #top .chosen-container .chosen-results{margin:0;padding:9px 0;border-top:1px solid #E1E1E1} #top .chosen-container-single .chosen-search{padding:10px}#top .chosen-container-single .chosen-single,#top .active-result.highlighted{background:transparent}#top div .chosen-search input[type=\'text\']{margin-bottom:0;box-shadow:none} .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-16px 7px}.chosen-container-single .chosen-single div b{background-position:2px 8px} #top .entry-content .woocommerce .single-product{overflow:hidden}#top .entry-content .woocommerce .single-product .single-product-summary{float:none;overflow:hidden;margin-left:10px;width:auto}#top .entry-content .woocommerce .single-product .single-product-main-image{overflow:visible}#top .entry-content .woocommerce .single-product div.images{width:100%}#top .entry-content .woocommerce .single-product div.images img{padding:0}#top .entry-content .woocommerce .single-product div.product .woocommerce-tabs{margin:0} #top .products .product-category{border-radius:1px;border-style:solid;border-width:1px}#top .products .product-category img{display:block;margin:0}#top .products .product-category h3{margin:0;padding:15px 15px;position:relative;border-top-style:solid;border-top-width:1px}#top .products .product-category h3:before{content:\"\";height:10px;width:10px;position:absolute;left:50%;-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);transform:rotate(45deg);border-width:1px;border-style:solid;visibility:hidden\\9;border-bottom:none;border-right:none;z-index:1000;top:-6px;margin-left:-6px} #ship-to-different-address{padding:0}#top label.checkbox{display:inline} .html_header_sidebar .cart_dropdown{top:-46px;border-radius:0;z-index:210;opacity:0;margin:0}.html_header_left .cart_dropdown{right:-1px} .html_boxed.html_header_sidebar .cart_dropdown{top:24px} .html_av-framed-box.html_header_right #top .cart_dropdown{right:auto} .html_header_sidebar.html_visible_cart .cart_dropdown{opacity:1} .single-product-main-image{width:33%;float:left;margin-right:50px;overflow:hidden;padding-bottom:50px}.single-product-summary{overflow:hidden} .cart_dropdown .dropdown_widget .widget_shopping_cart_content .variation p{padding:0;margin:0} #top .variations_form .variations tr{background:rgba(0,0,0,0)} .woocommerce-tabs #tab-description ul,#top .woocommerce-tabs .commentlist .description ul{list-style-type:disc;list-style-position:inside} .woocommerce-tabs #tab-description ol,#top .woocommerce-tabs .commentlist .description ol{list-style-type:decimal;list-style-position:inside} #top .woocommerce-tabs .commentlist .description ul,#top .woocommerce-tabs .commentlist .description ol{margin:0 0 15px 15px;border:none} #top div ul.product_list_widget li a.remove{position:absolute;right:0px;top:26px;line-height:16px}#top .dropdown_widget_cart ul.product_list_widget li a.remove{right:5px;top:3px;display:none} a.about_paypal{margin-left:10px}#top .select2-container{width:100%}#top .select2-container .select2-choice{font-size:13px;box-shadow:none;border-radius:0px;line-height:36px;height:37px;background-image:none} #top .select2-drop{border-radius:0px}#top .select2-container .select2-choice .select2-arrow{background:transparent;border:none}#top .select2-container .select2-choice .select2-arrow b{background-position:-4px 5px!important} #top .select2-results{margin:0;padding:0}#top .select2-search{padding:10px;border-bottom-style:solid;border-bottom-width:1px}#top .select2-search input[type=\'text\']{margin-bottom:0;box-shadow:none;max-width:100%;width:100%}#top .select2-no-results{background:transparent;padding:10px}#top #wrap_all select.country_select{height:37px;border-radius:0px}#top form.cart .button{margin-top:0;margin-bottom:0;display:inline-block} #top .sidebar .widget_shopping_cart .button{min-width:0;width:48%} .av-woo-product-tabs{clear:both}#top .av-woo-product-review .comment_container,#top .av-woo-product-tabs .comment_container{padding:0}#top .av-woo-product-tabs .tabs{margin:0;list-style-type:none}#top .av-woo-product-tabs .tabs > li{float:left;padding:0}#top .av-cart-counter{position:absolute;top:50%;left:54%;height:16px;padding:0 5px;line-height:16px;border-radius:54px;font-size:11px;background:#333;color:#fff;text-align:center;margin:-20px 0 0 2px;-webkit-transform:scale(0.3);transform:scale(0.3);opacity:0} #top .av-cart-counter.av-active-counter{-webkit-transition:all cubic-bezier(0.175,0.885,0.320,1.275) 0.3s;transition:all cubic-bezier(0.175,0.885,0.320,1.275) 0.3s;opacity:1;-webkit-transform:scale(1);transform:scale(1)} #top .av-product-class-minimal{text-align:center;border:none;background:transparent;border-radius:0}#top .av-product-class-minimal .avia-arrow{display:none}#top .av-product-class-minimal .inner_product_header{border:none;padding:10px 0;background:transparent;min-height:0}#top .av-product-class-minimal a,#top .av-product-class-minimal img{border-radius:0} #av_product_description{color:#fff;text-align:center}#av_product_description *{color:inherit}#av_product_description h1{font-weight:300;font-size:40px;line-height:1.2em} .av-woo-purchase-button{clear:both}.widget_layered_nav_filters .chosen a{display:block;border-radius:2px;padding-left:3px}.widget_layered_nav_filters .chosen a:hover,.widget_layered_nav .chosen a:hover{text-decoration:none}.widget_layered_nav_filters .chosen a:before,.widget_layered_nav .chosen a:before{content:\"×\";margin-right:.53em;color:#e2401c;font-family:Arial,Baskerville,monospace !important;font-weight:bold} #top .widget_layered_nav,#top .widget_layered_nav_filters{padding:0 0 20px 0} p.order-again{clear:both;width:100%;float:left;margin:0 0 50px} .woocommerce .login .button{margin:0 20px 0 0;position:relative;z-index:5} .woocommerce .login .lost_password{margin:0;position:relative;top:-1em;left:5px;font-size:0.92em} #top .av-product-class-minimal-overlay{text-align:center;border:none;background:transparent;border-radius:0}#top .av-product-class-minimal-overlay .avia-arrow{display:none}#top #wrap_all .av-product-class-minimal-overlay .inner_product_header{border:none;padding:10px 0;background:rgba(0,0,0,0.35);min-height:0;height:100%;width:100%;position:absolute;top:0;padding:1em;-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;opacity:1} #top #wrap_all .av-product-class-minimal-overlay a:hover .inner_product_header{opacity:0} #top .av-product-class-minimal-overlay .inner_product_header_table{height:100%;width:100%;display:table}#top .av-product-class-minimal-overlay .inner_product_header_cell{vertical-align:middle;display:table-cell} #top .av-product-class-minimal-overlay a,#top .av-product-class-minimal-overlay img{border-radius:0}#top .av-product-class-minimal-overlay h2,#top .av-product-class-minimal-overlay h3,#top .av-product-class-minimal-overlay span,#top #wrap_all .av-product-class-minimal-overlay ins:before,#top #wrap_all .av-product-class-minimal-overlay .price,#top #wrap_all div .av-product-class-minimal-overlay del{color:#fff}#top .av-product-class-minimal-overlay h3{font-size:1.5em}#top .av-product-class-minimal-overlay .onsale{border-radius:0;top:0;right:0} .woocommerce-MyAccount-navigation{float:left;border-style:solid;border-width:1px;margin-right:50px} .woocommerce-MyAccount-navigation ul{margin:0} .woocommerce-MyAccount-navigation ul li{list-style-type:none;list-style-position:outside;margin:0;padding:0} .woocommerce-MyAccount-navigation ul li a{padding:10px;text-align:center;border-bottom-style:solid;border-bottom-width:1px;display:block;min-width:200px} .woocommerce-MyAccount-navigation ul li:last-child a{border:none} .woocommerce-MyAccount-content{overflow:hidden} .woocommerce-MyAccount-navigation-link.is-active a{font-weight:bold} .woocommerce-MyAccount-navigation-link a:hover{text-decoration:none} .av-parallax-inner.av-parallax-woo{background-size:cover} .single-product div.product .woocommerce-product-gallery{margin-bottom:2.617924em;margin-top:0} .single-product div.product .woocommerce-product-gallery{position:relative} .single-product .single-product-main-image .avia-wc-30-product-gallery-lightbox{position:absolute;top:15px;left:15px;display:block;height:40px;line-height:40px;text-align:center;background:#fff;width:40px;font-size:20px;border-radius:333px;z-index:99;text-align:center;overflow:hidden;border:0px;color:#b0b0b0} .single-product .single-product-main-image .avia-wc-30-product-gallery-lightbox:hover{opacity:0.6;cursor:pointer} .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before{font-family:dashicons;content:\"\\f179\";font-size:1.5em} .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger{position:absolute;top:.875em;right:.875em;display:block;height:2em;width:2em;z-index:99;text-align:center;overflow:hidden;background:transparent;border:0px} .single-product div.product .woocommerce-product-gallery .woocommerce-product-gallery__trigger img{display:block !important} .single-product div.product .woocommerce-product-gallery img{margin:0} .single-product div.product .woocommerce-product-gallery .flex-viewport{margin-bottom:20px} .single-product div.product .woocommerce-product-gallery .flex-control-thumbs{margin:0;padding:0} .single-product div.product .woocommerce-product-gallery .flex-control-thumbs:after,.single-product div.product .woocommerce-product-gallery .flex-control-thumbs:before{content:\"\";display:table}.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li{list-style:none;margin-bottom:0;cursor:pointer} .single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img{opacity:.5;-webkit-transition:all,ease,.2s;-moz-transition:all,ease,.2s;transition:all,ease,.2s} .single-product div.product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,.single-product div.product .woocommerce-product-gallery .flex-control-thumbs li:hover img{opacity:1} .single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li{width:50%;float:left;margin-right:0} .single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li:nth-child(2n){margin-right:0} .single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li{width:33.333%;float:left;margin-right:0} .single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n){margin-right:0} .single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li{width:25%;float:left;margin-right:0} .single-product div.product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n){margin-right:0} .single-product div.product .images .woocommerce-main-image{margin-bottom:1.618em;display:block} .single-product div.product .images .thumbnails a.zoom{display:block;width:22.05%;margin-right:3.8%;float:left;margin-bottom:1em} .single-product div.product .images .thumbnails a.zoom.last{margin-right:0} .single-product div.product .woocommerce-product-gallery img{border-style:solid;border-width:1px} .html_top_nav_header .cart_dropdown{margin:-24px 0 0 0} .html_top_nav_header.html_cart_at_menu #menu-item-shop{right:0;position:absolute;top:50%;margin-top:-45px} #top .woocommerce-terms-and-conditions-link{text-decoration:underline}#top .template-page .product_meta{margin-bottom:7px}#top .template-page .product_meta > span{margin-right:5px;font-size:11px} #top .entry-content > div[class*=\"wc-block-\"]{position:relative;width:100%;float:left} #top .wc-block-order-select.wc-block-review-order-select .wc-block-order-select__label{float:none;font-size:0.8em;margin-top:2px}#top .wc-block-order-select.wc-block-review-order-select .wc-block-order-select__label span{font-size:1.1em;color:inherit} #top .wc-block-order-select.wc-block-review-order-select .wc-block-order-select__select{width:140px;float:right;padding:2px;line-height:28px;height:28px;vertical-align:middle;font-size:0.9em} #top .wp-block-woocommerce-reviews-by-product .wc-block-load-more{float:left} #top .wc-block-review-list{width:100%;float:left} #top .wc-block-review-list a,#top .wc-block-review-list a:hover,#top .wc-block-grid a{text-decoration:none} #top .wc-block-grid .wc-block-grid__product-add-to-cart .added_to_cart{display:none} #top .wc-block-grid .wp-block-button a,#top .wc-block-featured-product .wp-block-button:not(.is-style-default):not(.is-style-outline) a,#top .wc-block-featured-category .wp-block-button:not(.is-style-default):not(.is-style-outline) a,#top .wc-block-load-more .wp-block-button__link{border-radius:3px;padding:10px;font-size:16px;text-decoration:none;display:inline-block;border-bottom-style:solid;border-bottom-width:1px;margin:3px 0;line-height:1.2em;position:relative;font-weight:normal;text-align:center;max-width:100%} #top .wc-block-grid .wp-block-button a:hover,#top .wc-block-featured-product .wc-block-featured-product__link a:hover,#top .wc-block-featured-category .wp-block-button a:hover{text-decoration:none;opacity:0.9} #top .wc-block-product-categories .wc-block-product-categories__button,#top .wc-block-product-search__fields .wc-block-product-search__field,#top .wc-block-product-search__fields .wc-block-product-search__button{height:38px} #top .wc-block-product-categories .wc-block-product-categories__dropdown{width:180px} #top .wc-block-grid ul{list-style:none} #top .wc-block-grid .wc-block-grid__product-price{font-weight:700} #top .wc-block-grid .star-rating > span,#top .wc-block-grid .star-rating .rating{background:none;height:auto} #top .wc-block-grid .star-rating{float:none;background:none;height:1.5em} #top .entry-content-wrapper .wc-block-grid li{margin-left:0} @media only screen and (max-width:959px){} @media only screen and (min-width:768px) and (max-width:989px){.responsive #top #wrap_all #main .summary .products .thumbnail_container .button{text-indent:20px} .responsive .shop_columns_5 .products .product .thumbnail_container .button{text-indent:20px} .responsive div table.shop_table td{padding:6px 5px;vertical-align:middle} .responsive #top .single-product-main-image .thumbnails a{width:30%;margin:0 3% 3% 0} .responsive #top .price_slider_amount .button{min-width:100%} .responsive div .widget_price_filter .price_slider_wrapper .price_label{clear:both;float:none} .html_header_sidebar .cart_dropdown .dropdown_widget{width:200px} .responsive .added_to_cart_notification{width:200px} .responsive .av_mobile_menu_tablet .cart_dropdown{position:absolute;top:50%;margin:-23px 0px 0 0} .responsive.html_mobile_menu_tablet.html_visible_cart #top .avia-menu + #menu-item-shop{border-left:none} .responsive.html_mobile_menu_tablet.html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main{padding-top:119px} .responsive.html_mobile_menu_tablet.html_top_nav_header .cart_dropdown{top:45px} .responsive.html_mobile_menu_tablet.html_top_nav_header.html_cart_at_menu #menu-item-shop{right:85px} .responsive.html_mobile_menu_tablet.html_cart_at_menu.html_bottom_nav_header #top #wrap_all .main_menu{right:40px} .responsive.html_mobile_menu_tablet.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop{left:60px} .responsive.html_mobile_menu_tablet.html_cart_at_menu #top .main_menu .menu>li:last-child{padding-right:13px;margin-right:20px} .responsive.html_mobile_menu_tablet.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown{padding-right:0}} @media only screen and (max-width:767px){.responsive .single-product-main-image{width:100%;margin:0 30px 0 0} .responsive #top .related.products .product,.responsive #top .upsells.products .product{margin:0 4% 0 0;width:48%} .responsive #top .related.products .product:nth-child(even),.responsive #top .upsells.products .product:nth-child(even){margin:0} .responsive #top #main .products .product{margin:0 1% 1% 0;width:49%} .responsive #top .products .product:nth-child(odd){clear:both} .responsive #top .products .product:nth-child(even){clear:none} .responsive .cart-collaterals .cross-sells,.responsive .cart-collaterals .cart_totals,.responsive .shipping_calculator{width:100%;margin-top:20px} .responsive .shipping_calculator{padding-top:20px} .responsive table.shop_table th{font-size:11px;font-weight:normal;line-height:18px;padding:3px 4px;text-transform:none} .responsive table.shop_table .product-thumbnail{display:none} .responsive #top .col2-set .col-1,.responsive #top .col2-set .col-2,.responsive .cart-collaterals .shipping_calculator{width:89%;float:none;margin-bottom:20px} .responsive #top .col2-set .col-1{display:inline-block} .responsive #top .woocommerce-ordering{position:absolute;bottom:10px;left:0;right:auto;float:none;clear:both;margin:0;top:auto} .responsive .shop_title_container{padding-bottom:50px} .responsive .title_container .term_description{padding-right:0} .responsive #top .single-product-main-image .thumbnails a{width:30%;margin:0 3% 3% 0} .responsive .shop_table .product-quantity{display:none} .responsive #order_review .shop_table .product-quantity{display:table !important} .responsive #top .single-product-main-image .onsale{top:7px;right:7px} .html_cart_at_menu.html_header_sidebar #header_main .avia-menu{margin-top:0} .html_cart_at_menu.html_header_sidebar #header .av-main-nav-wrap{width:auto} .responsive #top .cart_dropdown{position:absolute;top:50%;margin-top:-23px;z-index:-1} .html_av-framed-box.html_header_sidebar #top .cart_dropdown,.html_boxed.html_header_sidebar #top .cart_dropdown{position:fixed;right:0px;top:5%} .html_av-framed-box.html_header_sidebar #top.admin-bar .cart_dropdown,.html_boxed.html_header_sidebar #top.admin-bar .cart_dropdown{top:10%} .responsive #top #menu-item-shop.cart_dropdown{margin:0;top:0;border:none;height:100%;width:auto;line-height:80px;position:static;margin-left:-39px} .responsive.html_bottom_nav_header #top #menu-item-shop.cart_dropdown{position:absolute;right:0} .responsive.html_bottom_nav_header.html_cart_at_menu #top #wrap_all .main_menu{right:64px;z-index:102} .responsive #top #header_main #menu-item-shop .cart_dropdown_link{line-height:80px} .responsive.html_cart_at_menu.html_header_sidebar #top #menu-item-shop .dropdown_widget.dropdown_widget_cart{width:300px} .responsive.html_cart_at_menu.html_header_sidebar #menu-item-shop .dropdown_widget .avia-arrow{right:40px} .responsive.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop{left:auto} .responsive .single-product-main-image .sidebar{display:none} .responsive #top table .product-name{border-left-style:solid;border-left-width:1px} .responsive .single-product-main-image{padding-bottom:20px} .responsive .single-product-summary{clear:both} .responsive.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop .dropdown_widget{left:auto} .responsive.html_cart_at_menu.html_bottom_nav_header.html_logo_right #menu-item-shop .dropdown_widget .avia-arrow{left:auto} .responsive .woocommerce-MyAccount-navigation{float:none;display:block;margin:0 0 20px 0} .responsive.html_top_nav_header #top .cart_dropdown{top:40px} .responsive.html_top_nav_header.html_cart_at_menu #top #menu-item-shop{right:85px;position:absolute} .responsive.html_header_sidebar.html_visible_cart .cart_dropdown{right:-25px} .responsive.html_cart_at_menu #top .main_menu .menu>li:last-child{padding-right:13px;margin-right:20px} .responsive.html_cart_at_menu.html_header_searchicon .menu-item-search-dropdown{padding-right:0}} @media only screen and (max-width:479px){.responsive #top #main .products .product{margin:0 0 20px 0;width:100%} .responsive #top #review_form #respond .comment-form-rating,.responsive div #shiptobilling{position:relative;right:0;top:0;float:none} .responsive #commentform label{position:relative;left:0;font-size:11px;top:0;font-weight:bold} .responsive table.shop_table .product-subtotal{display:none} .responsive table.shop_table.cart{display:table} .responsive table.shop_table.cart .product-thumbnail{display:none} .responsive table.shop_table.cart td.product-remove{display:table-cell;padding:3px 0 3px 3px} .responsive table.shop_table.cart .product-remove{width:10%} .responsive table.shop_table.cart .product-name{display:table-cell;padding:3px 0 3px 3px;width:40%;text-align:center} .responsive table.shop_table.cart td.product-price,.responsive table.shop_table.cart td.product-tax{display:table-cell;padding:3px} .responsive table.shop_table.cart .product-price,.responsive table.shop_table.cart .product-tax{width:25%;text-align:center} .responsive table.shop_table td{display:table-cell} .responsive table.shop_table{display:table;border-width:1px;border-style:solid;overflow:hidden} .responsive td.actions{overflow:hidden;padding:10px} .responsive td.actions .coupon{width:100%} .responsive #top table.shop_table .actions .button,.responsive #top table.shop_table .actions .coupon .input-text{width:100%;margin:0 0 5px 0}}\";}s:13:\"avia-grid-css\";a:6:{s:4:\"name\";s:9:\"avia-grid\";s:3:\"url\";s:62:\"https://solsculpting.com/wp-content/themes/enfold/css/grid.css\";s:4:\"path\";s:37:\"wp-content/themes/enfold/css/grid.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:6742:\"html{min-width:910px}html.responsive{min-width:0px}.boxed#top{margin:0 auto;overflow:visible} .container{position:relative;width:100%;margin:0 auto;padding:0px 50px;clear:both} .inner-container{position:relative;height:100%;width:100%} .container_wrap{clear:both;position:relative;border-top-style:solid;border-top-width:1px} .unit,.units{float:left;display:inline;margin-left:50px;position:relative;z-index:1;min-height:1px}.row{position:relative;margin-bottom:20px;clear:both} #wrap_all{width:100%;position:static;z-index:2;overflow:hidden} .boxed #wrap_all{overflow:visible} body .unit.alpha,body .units.alpha,body div .first{margin-left:0;clear:left}body .unit.alpha,body .units.alpha{width:100%} .container .av-content-full.units{width:100%}.container .av-content-small.units{width:73%} .boxed#top,.html_boxed.html_header_sticky #header{width:1010px}.container{max-width:1010px} @media only screen and (min-width:768px) and (max-width:989px){.responsive #top{overflow-x:hidden} .responsive .boxed#top ,.responsive.html_boxed.html_header_sticky #header{width:782px} .responsive .container{max-width:782px} .responsive.html_mobile_menu_tablet .boxed #wrap_all{overflow:hidden}} @media only screen and (max-width:989px){.responsive #top #wrap_all .flex_column.av-break-at-tablet,.responsive #top #wrap_all .av-break-at-tablet .flex_cell{margin:0;margin-bottom:20px;width:100%;display:block} .responsive #top #wrap_all .av-break-at-tablet-flextable,.responsive .av-layout-grid-container.av-break-at-tablet{display:block}} @media only screen and (max-width:767px){.responsive .boxed #wrap_all{overflow:hidden} .responsive #top{overflow-x:hidden} .responsive .boxed#top,.responsive #top.boxed .stretch_full ,.responsive.html_boxed.html_header_sticky #header,.responsive.html_boxed.html_header_transparency div #header{width:100%;max-width:100%} .responsive #top .flex_column_table_cell{display:block} .responsive #top .flex_column_table{display:block} .responsive #top #wrap_all .container{width:85%;max-width:85%;margin:0 auto;padding-left:0;padding-right:0;float:none} .responsive .units,.responsive .unit{margin:0} .responsive #top .container .av-content-small,.responsive #top #wrap_all .flex_column,.responsive #top #wrap_all .av-flex-cells .no_margin{margin:0;margin-bottom:20px;width:100%} .responsive #top #wrap_all .av-flex-cells .no_margin{display:block;margin:0;height:auto !important;overflow:hidden;padding-left:8% !important;padding-right:8% !important} .responsive #top #wrap_all .av-flex-cells .no_margin .flex_cell_inner{width:100%;max-width:100%;margin:0 auto} .responsive #top #wrap_all .av-flex-cells .no_margin.av-zero-padding{padding-left:0% !important;padding-right:0% !important} .responsive #top #wrap_all .flex_column:empty{margin:0}} @media only screen and (min-width:480px) and (max-width:767px){} .container:after{content:\"\\0020\";display:block;height:0;clear:both;visibility:hidden} .clearfix:before,.clearfix:after,.flex_column:before,.flex_column:after,.widget:before,.widget:after{content:\'\\0020\';display:block;overflow:hidden;visibility:hidden;width:0;height:0}.flex_column:after,.clearfix:after{clear:both}.row,.clearfix{zoom:1} .clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0} body div .first,body div .no_margin{margin-left:0}div .flex_column{z-index:1;float:left;position:relative;min-height:1px;width:100%}div .av_one_fifth{margin-left:6%;width:15.2%}div .av_one_fourth{margin-left:6%;width:20.5%}div .av_one_third{margin-left:6%;width:29.333333333333332%}div .av_two_fifth{margin-left:6%;width:36.4%}div .av_one_half{margin-left:6%;width:47%}div .av_three_fifth{margin-left:6%;width:57.599999999999994%}div .av_two_third{margin-left:6%;width:64.66666666666666%}div .av_three_fourth{margin-left:6%;width:73.5%}div .av_four_fifth{margin-left:6%;width:78.8%}div .av_one_sixth{margin-left:6%;width:11.666666666666666%}div .av_one_seventh{margin-left:6%;width:9.142857142857142%}div .av_one_eighth{margin-left:6%;width:7.25%}div .av_one_nineth{margin-left:6%;width:5.777777777777778%}div .av_one_tenth{margin-left:6%;width:4.6%} #top div .no_margin{margin-left:0;margin-top:0}#top .no_margin.av_one_fifth{width:20%}#top .no_margin.av_one_fourth{width:25%}#top .no_margin.av_one_third{width:33.3%}#top .no_margin.av_two_fifth{width:40%}#top .no_margin.av_one_half{width:50%}#top .no_margin.av_three_fifth{width:60%}#top .no_margin.av_two_third{width:66.6%}#top .no_margin.av_three_fourth{width:75%}#top .no_margin.av_four_fifth{width:80%}#top .no_margin.av_one_sixth{width:16.666666666666668%}#top .no_margin.av_one_seventh{width:14.285714285714286%}#top .no_margin.av_one_eighth{width:12.5%}#top .no_margin.av_one_nineth{width:11.11111111111111%}#top .no_margin.av_one_tenth{width:10%} #top .flex_column_table{display:table;table-layout:fixed;width:100%} #top .flex_column_table_cell{float:none;display:table-cell} #top .av-flex-placeholder{display:table-cell;width:6%} .av-align-top{vertical-align:top}.av-align-middle{vertical-align:middle}.av-align-bottom{vertical-align:bottom} @media only screen and (min-width:768px) and (max-width:989px){.responsive .av_one_fourth.first.el_before_av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth.flex_column_div,.responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth.flex_column_div,.responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth + .av_one_fourth.flex_column_div,.responsive .avia-content-slider-inner .av_one_fourth.flex_column_div{margin-left:4%;width:48%} .responsive .av_one_fourth.first.el_before_av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth.flex_column_div,.responsive .av_one_half.first + .av_one_fourth.el_before_av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_half.flex_column_div,.responsive .avia-content-slider-inner .av_one_fourth.first.flex_column_div{margin-left:0%;clear:both} .responsive .av_one_half.first.el_before_av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_half.flex_column_div{width:100%} .responsive .av_one_half.first + .av_one_fourth.flex_column_div,.responsive .av_one_half.first + .av_one_fourth + .av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_fourth + .av_one_fourth.flex_column_div,.responsive .av_one_fourth.first + .av_one_fourth + .av_one_half.flex_column_div{margin-top:30px}}\";}s:13:\"avia-base-css\";a:6:{s:4:\"name\";s:9:\"avia-base\";s:3:\"url\";s:62:\"https://solsculpting.com/wp-content/themes/enfold/css/base.css\";s:4:\"path\";s:37:\"wp-content/themes/enfold/css/base.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:15645:\"html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline} article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block} body{line-height:1em} ol,ul{list-style:none} .special-quote{quotes:none} .special-quote:before,.special-quote:after{content:\'\';content:none} table{border-collapse:collapse;border-spacing:0} *{-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box} html.responsive,.responsive body{overflow-x:hidden} body{font:13px/1.65em \"HelveticaNeue\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;color:#444;-webkit-text-size-adjust:100%} .arial-websave{font-family:Arial,Helvetica,Helvetica Neue,HelveticaNeue,Verdana,sans-serif} .arial-black-websave{font-family:Arial Black,Arial Bold,Gadget,sans-serif} .arial-narrow-websave{font-family:Arial Narrow,Arial,sans-serif} .helvetica-websave{font-family:Helvetica,\"HelveticaNeue\",\"Helvetica Neue\",Arial,Verdana,sans-serif} .helvetica-neue-websave{font-family:\"HelveticaNeue\",\"Helvetica Neue\",Helvetica,Arial,Verdana,sans-serif} .lucida-sans-websave{font-family:\"Lucida Sans\",\"Lucida Grande\",\"Lucida Sans Unicode\",Helvetica,Helvetica Neue,HelveticaNeue,Arial,sans-serif} .tahoma-websave{font-family:Tahoma,Verdana,Segoe,sans-serif} .trebuchet-ms-websave{font-family:Trebuchet MS,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Tahoma,sans-serif} .verdana-websave{font-family:Verdana,Arial,Helvetica,Geneva,sans-serif} .georgia-websave{font-family:\"Georgia\",\"Times New Roman\",Times,serif} .lucida-bright-websave{font-family:Lucida Bright,Georgia,serif} .palatino-websave{font-family:Palatino,Palatino Linotype,Palatino LT STD,Book Antiqua,Georgia,serif} .times-new-roman-websave{font-family:TimesNewRoman,Times New Roman,Times,Baskerville,Georgia,serif} .courier-new-websave{font-family:Courier New,Courier,Lucida Sans Typewriter,Lucida Typewriter,monospace} .lucida-sans-typewriter-websave{font-family:Lucida Sans Typewriter,Lucida Console,monaco,Bitstream Vera Sans Mono,monospace} .copperplate-websave{font-family:Copperplate,Copperplate Gothic Light,fantasy} .papyrus-websave{font-family:Papyrus,fantasy} .brush-script-mt-websave{font-family:Brush Script MT,cursive} h1,h2,h3,h4,h5,h6{font-weight:600} #top h1 a,#top h2 a,#top h3 a,#top h4 a,#top h5 a,#top h6 a{font-weight:inherit;text-decoration:none;color:inherit} #top h1 strong,#top h2 strong,#top h3 strong,#top h4 strong,#top h5 strong,#top h6 strong{color:inherit} h1{font-size:34px;line-height:1.1em;margin-bottom:14px} h2{font-size:28px;line-height:1.1em;margin-bottom:10px} h3{font-size:20px;line-height:1.1em;margin-bottom:8px} h4{font-size:18px;line-height:1.1em;margin-bottom:4px} h5{font-size:16px;line-height:1.1em} h6{font-size:14px;line-height:1.1em} .flex_column h1 a:hover,.flex_column h2 a:hover,.flex_column h3 a:hover,.flex_column h4 a:hover,.flex_column h5 a:hover,.flex_column h6 a:hover{text-decoration:underline} p + h1,p + h2,p + h3,p + h4,p + h5,p + h6{margin-top:1.5em} p{margin:0.85em 0} p img{margin:0} p.lead{font-size:21px;line-height:27px} em{font-style:italic} strong,b{font-weight:bold} small{font-size:80%} hr{border:solid #ddd;border-width:1px 0 0;clear:both;margin:10px 0 30px;height:0} blockquote{border-left-style:solid;border-left-width:7px;padding-left:20px;margin-bottom:1em;margin-right:1em;font-size:1.235em;line-height:1.5em} blockquote small,blockquote cite,blockquote small a,blockquote cite a,blockquote a small,blockquote a cite{font-size:12px} mark{background-color:transparent;color:inherit} a{text-decoration:none;outline:0;max-width:100%;max-width:none\\9} a:hover,a:focus,a:visited{outline:0;text-decoration:underline} p a,p a:visited{line-height:inherit} a.avianolink,.avianolink a{cursor:default} #top .avia_hidden_link_text{display:none} ul,ol{margin-bottom:20px} ul{list-style:none outside;margin-left:7px} ol{list-style:decimal;margin-left:15px} ol,ul.square,ul.circle,ul.disc{} ul.square{list-style:square outside} ul.circle{list-style:circle outside} ul.disc,.entry-content-wrapper ul{list-style:disc outside} ul ul,ul ol,ol ol,ol ul{margin:4px 0 5px 30px} ul ul li,ul ol li,ol ol li,ol ul li{margin-bottom:6px} .entry-content-wrapper li{margin-left:1em;padding:3px 0} .entry-content-wrapper div li{text-indent:0} .entry-content-wrapper .borderlist>li:first-child{border-top:1px solid} .entry-content-wrapper .borderlist>li{border-bottom:1px solid;padding:5px 0;list-style-position:outside;margin:0} img,a img{border:none;padding:0;margin:0;display:inline-block;max-width:100%;height:auto;image-rendering:optimizeQuality} small.avia-copyright{display:none} input[type=\"submit\"],#submit,.button{padding:9px 22px;cursor:pointer;border:none;-webkit-appearance:none;border-radius:0px} [data-av_icon]:before{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:normal;content:attr(data-av_icon);speak:none} #top form{margin-bottom:20px} #top fieldset{margin-bottom:20px} #top .input-text,#top input[type=\"text\"],#top input[type=\"input\"],#top input[type=\"password\"],#top input[type=\"email\"],#top input[type=\"number\"],#top input[type=\"url\"],#top input[type=\"tel\"],#top input[type=\"search\"],#top textarea,#top select{-webkit-appearance:none;border:1px solid #e1e1e1;padding:8px 6px;outline:none;font:1em \"HelveticaNeue\",\"Helvetica Neue\",Helvetica,Arial,sans-serif;color:#777;margin:0;width:100%;display:block;margin-bottom:20px;background:#fff;border-radius:0px} #top input[type=\"text\"]:focus,#top input[type=\"password\"]:focus,#top input[type=\"email\"]:focus,#top input[type=\"number\"]:focus,#top input[type=\"url\"]:focus,#top input[type=\"tel\"]:focus,#top input[type=\"search\"]:focus,#top textarea:focus{box-shadow:0px 0px 2px 0px rgba(0,0,0,0.2);color:#555} #top textarea{min-height:60px;line-height:1.5em} #top label{font-weight:bold;font-size:0.92em} #top legend{display:block;font-weight:normal;font-size:1.2em} #top select{width:100%} #top input[type=\"checkbox\"]{display:inline} #top label span,#top legend span{font-weight:normal;font-size:13px;color:#444} #top textarea{width:100%} #top #wrap_all .valid .text_input,#top #wrap_all .valid .text_area,#top #wrap_all .valid .select{border:1px solid #9AA600} #top #wrap_all .error .text_input,#top #wrap_all .error .text_area,#top #wrap_all .error .select{border:1px solid #DF653E}#top #wrap_all .ajax_alert .text_input,#top #wrap_all .ajax_alert .text_area,#top #wrap_all .ajax_alert .select{border:1px solid #ffb628}#top #wrap_all .valid .input_checkbox_label{color:#9AA600}#top #wrap_all .error .input_checkbox_label{color:#DF653E} table{width:100%;padding:0;margin:0 0 20px 0;font-size:13px} table caption{padding:0 0 5px 0;width:auto;font-style:italic;text-align:right;font-size:12px} th{font-weight:bold;letter-spacing:1.5px;text-transform:uppercase;text-align:left;padding:9px 12px;border-style:solid;border-width:1px;border-left:none;border-top:none} td{font-size:13px;padding:9px 12px;border-style:solid;border-width:1px;border-left:none;border-top:none} tr th:first-child,tr td:first-child{border-left-style:solid;border-left-width:1px} tr:first-child th,tr:first-child td{border-top-style:solid;border-top-width:1px} #top th.nobg{background:none;border-top:0} pre{clear:both;border-style:solid;border-width:1px;overflow:auto;padding:2em;line-height:2em;font-size:12px;background-image:-webkit-linear-gradient(rgba(0,0,0,.05) 50%,transparent 50%,transparent);background-image:-moz-linear-gradient(rgba(0,0,0,.05) 50%,transparent 50%,transparent);background-image:linear-gradient(rgba(0,0,0,.05) 50%,transparent 50%,transparent);background-size:100% 4em;font-family:Monaco,\"Andale Mono\",\"Courier New\",Courier,monospace;-webkit-transition:all ease-in-out 0.5s;-moz-transition:all ease-in-out 0.5s;transition:all ease-in-out 0.5s;margin-bottom:30px;position:relative;left:0;text-transform:none;width:100%} code{font-family:Monaco,\"Andale Mono\",\"Courier New\",Courier,monospace} iframe,object,embed{max-width:100%} sup{vertical-align:super;font-size:smaller} sub{vertical-align:sub;font-size:smaller} .hidden{position:absolute;top:0;visibility:hidden} .floatleft{float:left} .floatright{float:right} .clearboth{clear:both} .special_amp{font-family:\"Baskerville\",\"Palatino Linotype\",\"Palatino\",\"Times New Roman\",serif;font-style:italic;font-size:1.3em;line-height:0.5em;font-weight:normal} #top .noborder,#top .noborder img{border:none;padding:0;background:transparent} .bg_container{background-position:center center;background-attachment:fixed;background-repeat:no-repeat;background-size:cover;height:100%;width:100%;position:fixed;z-index:-1;top:0;left:0} .image-overlay{position:absolute;background:#fff;z-index:300;height:100%;width:100%;opacity:0;filter:alpha(opacity=0)} .avia_transform a .image-overlay{-webkit-transition:opacity 0.4s ease-in-out;-moz-transition:opacity 0.4s ease-in-out;transition:opacity 0.4s ease-in-out} .avia_transform a:hover .image-overlay{opacity:0.7 !important} .image-overlay .image-overlay-inside{height:100%;width:100%;position:absolute;left:0;top:0} .image-overlay .image-overlay-inside:before{position:absolute;border-radius:50px;background:#000;height:80px;width:80px;line-height:80px;left:50%;top:50%;margin:-40px 0 0 -40px;z-index:500;text-align:center;color:#fff} .image-overlay .image-overlay-inside:before{content:\"\\E869\";font-family:\'entypo-fontello\';font-size:18px;font-weight:normal} .image-overlay.overlay-type-extern .image-overlay-inside:before{content:\"\\E832\"} .image-overlay.overlay-type-video .image-overlay-inside:before{content:\"\\E897\"} #top .hide-inner-overlay .image-overlay-inside{display:none} body .alignleft,.entry-content-wrapper a:hover .alignleft{float:left;margin:4px 10px 0px 0;display:block;position:relative}body .alignright,.entry-content-wrapper a:hover .alignright{float:right;margin:4px 0px 0px 10px;display:block;position:relative}body .aligncenter,.entry-content-wrapper a:hover .aligncenter{clear:both;display:block;margin:10px auto;padding:10px 0;position:relative}.alignleft img,.alignright img{display:block} #top .gallery a,#top .gallery a img{border:none;max-width:100%;display:block;position:relative} #top .gallery .gallery-item{margin:1px 1px 0 0;width:80px;height:80px;padding:0} #top .gallery-caption{display:none} .bypostauthor{} .gallery-icon{margin:0} .gallery-item{margin:0} .avia_textblock .gallery p{display:none} div .wp-caption{max-width:100%;font-size:11px;font-style:italic;border-width:1px;border-style:solid;margin:5px 15px 10px 0;position:relative} #top .wp-caption img{border:medium none;display:block;padding:5px;margin:0;width:100%} .wp-caption-text,#top .wp-caption .wp-caption-dd{display:block;font-size:11px;font-style:italic;margin:0 auto;padding:3px 10px 5px;text-align:center;font-family:Georgia,\"Times New Roman\";float:none} #top .wp-caption.aligncenter{margin:5px auto 10px auto;padding:0} #top .wp-caption.alignright{margin:4px 0px 0px 10px} #top .wp-smiley{display:inline-block;border:none} #wp-calendar td,#wp-calendar th{text-align:center;font-size:11px;padding:3px} @media only screen and (min-width:990px){.responsive.av-no-preview #top #wrap_all .av-desktop-hide,.responsive.av-no-preview #top #wrap_all .av-desktop-font-size-hidden,.responsive.av-no-preview #top #wrap_all .av-desktop-font-size-title-hidden{display:none}} @media only screen and (min-width:768px) and (max-width:989px){.responsive.av-no-preview #top #wrap_all .av-medium-hide,.responsive.av-no-preview #top #wrap_all .av-medium-font-size-hidden,.responsive.av-no-preview #top #wrap_all .av-medium-font-size-title-hidden{display:none}} @media only screen and (min-width:480px) and (max-width:767px){.responsive.av-no-preview #top #wrap_all .av-small-hide,.responsive.av-no-preview #top #wrap_all .av-small-font-size-hidden,.responsive.av-no-preview #top #wrap_all .av-small-font-size-title-hidden{display:none}} @media only screen and (max-width:479px){.responsive.av-no-preview #top #wrap_all .av-mini-hide,.responsive.av-no-preview #top #wrap_all .av-mini-font-size-hidden,.responsive.av-no-preview #top #wrap_all .av-mini-font-size-title-hidden{display:none}} @media print{.page-break{display:block;page-break-before:always}p,a,strong{color:#000!important}a{text-decoration:underline}.entry-content a:after{content:\" [\" attr(href) \"] \"}.related_posts a:after{content:attr(title)}.container{width:100%}#top{overflow-x:hidden}.boxed#top{width:100%}.container{width:100%;margin:0 auto}.units,.unit{margin:0}.container .one.unit,.container .one.units,.container .two.units,.container .three.units,.container .four.units,.container .five.units,.container .six.units,.container .seven.units,.container .eight.units,.container .nine.units,.container .ten.units,.container .eleven.units,.container .twelve.units,#top .flex_column{margin:0;margin-bottom:20px;width:100%}#top.boxed .stretch_full{width:100%}#top .offset-by-one,#top .offset-by-two,#top .offset-by-three,#top .offset-by-four,#top .offset-by-five,#top .offset-by-six,#top .offset-by-seven,#top .offset-by-eight,#top .offset-by-nine,#top .offset-by-ten,#top .offset-by-eleven{padding-left:0}.avia-section-large .content,.avia-section-large .sidebar{padding-top:2%;padding-bottom:2%}#top .flex_column.av_one_half{width:48%}#top .flex_column.av_one_half.first{padding-right:2%}.fixed_header #header,.html_header_top.html_header_sticky #header{position:relative;top:0}.fixed_header #main{padding-top:0}#header_main{border-bottom:0}nav,#footer,#scroll-top-link,#av-cookie-consent-badge,.image-overlay,#top #main .sidebar,#commentform,.comment_container .miniheading,.comment_container .minitext,#top .avia-post-nav{display:none}.avia-shadow{box-shadow:inset 0 0 0 rgba(0,0,0,0)}.grid-entry .inner-entry{margin-right:0;box-shadow:0 0 0 0 rgba(0,0,0,0);box-shadow:0 0 0 0 rgba(0,0,0,0)}.content{border:0}.boxed .container{margin:0}.avia-layerslider,.avia-fullwidth-slider{display:none}.avia_transform .avia-icon-list .iconlist_icon{opacity:1;-moz-transform:scale(1);-webkit-transform:scale(1);transform:scale(1)}#top .tab_titles{display:none}#top .tabcontainer .tab.fullsize-tab{display:block;border-bottom:none}#top .tab_content{display:block;visibility:visible;z-index:3;position:relative;overflow:auto;border-style:solid;border-width:1px;border-radius:2px;left:0;width:auto;background-color:#fcfcfc;color:#666}#top .tab_inner_content{left:0}#top .toggle_wrap{visibility:visible;display:block;position:static}.grid-sort-container{width:60%;margin:0 auto}#top .isotope-item{position:initial!important;top:0!important;left:0!important;-webkit-transform:translate3d(0,0,0)!important}.avia-progress-bar{margin:5px 0;border:1px solid #555!important;border-radius:3px!important}.avia-progress-bar .progress{box-shadow:inset 0 0 0 0 rgba(0,0,0,0)!important;border:0!important}.avia-progress-bar div.progress .bar{border:0 solid;border-right:1px solid #555!important;border-radius:0}.avia-testimonial-image{margin:0;width:100%;float:none;text-align:center;margin-bottom:15px;height:auto}.avia-grid-testimonials .avia-testimonial-meta{margin-left:0}body div .avia-testimonial{display:block;float:left}.avia_transform .avia-testimonial .avia-testimonial-image{opacity:1;-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}.avia_transform .avia-gallery-thumb img{opacity:1}}\";}s:15:\"avia-layout-css\";a:6:{s:4:\"name\";s:11:\"avia-layout\";s:3:\"url\";s:64:\"https://solsculpting.com/wp-content/themes/enfold/css/layout.css\";s:4:\"path\";s:39:\"wp-content/themes/enfold/css/layout.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:68834:\"#header{position:relative;z-index:501;width:100%;background:transparent} #header_main .container,.main_menu ul:first-child > li a{height:88px;line-height:88px} .html_header_top.html_header_sticky #main{padding-top:88px} .html_header_top.html_header_transparency #header{position:absolute}.html_header_top.html_header_sticky #header{position:fixed}.html_header_top.html_header_sticky.html_bottom_nav_header #main{padding-top:140px}.html_bottom_nav_header .avia-search-tooltip{top:101% !important;margin-left:-130px}.html_header_top.html_header_sticky.html_header_unstick_top .header-scrolled-full#header{} .html_header_top.html_header_sticky.html_large #main{padding-top:116px}.html_header_top.html_header_sticky.html_large #header_main .container,.html_header_top.html_header_sticky.html_large.html_main_nav_header .main_menu ul:first-child > li a{height:116px;line-height:116px}.html_header_top.html_header_sticky.html_large.html_bottom_nav_header #main{padding-top:168px} .html_header_top #top .av_header_stretch .container{width:96%;padding:0;max-width:100%} .html_header_top #top .av_logo_right .logo{left:auto;right:0}.html_header_top #top .av_menu_left .main_menu{left:0px;right:auto}.html_header_top.html_main_nav_header #top .av_menu_left .main_menu{left:-13px;right:auto} .html_header_top .av_bottom_nav_header #header_main_alternate .main_menu ul:first-child > li > a{height:50px;line-height:50px}.html_header_top .av_bottom_nav_header .av-logo-container .main_menu{display:none} .html_header_top.html_bottom_nav_header #header_main{z-index:3}.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu{clear:both;position:relative;line-height:40px;height:100%;width:100%;float:left}.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu>div,.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu ul:first-child{width:100%;height:50px}.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu ul:first-child>li:hover{z-index:1000;position:relative}.html_header_top.html_bottom_nav_header #header_main_alternate .main_menu .menu-item-search-dropdown{float:right} #header_main_alternate{z-index:2}#header #header_main_alternate .container{max-height:none;height:auto}#header_main_alternate .main_menu .menu li ul ul{left:207px}#header_main_alternate .avia_mega_div{right:auto;left:0} .html_header_top.html_logo_center .main_menu{text-align:center}.html_header_top.html_logo_center #header_main_alternate .main_menu ul:first-child{display:inline-block;width:auto;position:static}.html_header_top.html_logo_center .logo{left:50%;-webkit-transform:translate(-50%,0);-ms-transform:translate(-50%,0);transform:translate(-50%,0)} .avia-msie-8 .logo img{height:100%}.avia-msie-8.html_header_top.html_logo_center .logo{left:46%} .html_header_top.html_bottom_nav_header.html_logo_right .main_menu ul:first-child{width:auto;float:right}.html_header_top.html_bottom_nav_header.html_logo_right .main_menu ul:first-child{width:auto;float:right} .html_header_top.html_header_topbar_active.html_header_sticky #top #main{padding-top:119px} .html_header_top.html_header_topbar_active.html_header_sticky.html_large #top #main{padding-top:147px} .html_header_top.html_header_topbar_active.html_header_sticky.html_bottom_nav_header #top #main{padding-top:170px}.html_header_top.html_header_topbar_active.html_header_sticky.html_large.html_bottom_nav_header #top #main{padding-top:198px} .av_icon_active_left .social_bookmarks{float:left}.av_icon_active_right .social_bookmarks{float:right}.av_secondary_right .sub_menu{float:right}.av_phone_active_left .phone-info{float:left}.av_phone_active_right .phone-info{float:right} .phone-info{float:left;font-weight:bold;line-height:20px;font-size:11px;padding:5px 0} .phone-info span{display:inline-block;line-height:1em} .av_secondary_left .sub_menu>ul>li:last-child,.av_secondary_left .sub_menu>div>ul>li:last-child{border:none;padding-right:0}.av_secondary_right .sub_menu>ul>li:last-child,.av_secondary_right .sub_menu>div>ul>li:last-child{border:none;margin-right:0px;padding-right:0;padding-left:10px} .av_secondary_left .sub_menu>ul>li:first-child{padding-left:0}.av_icon_active_left.av_secondary_left .sub_menu>ul>li:first-child{padding-left:10px}.av_icon_active_right.av_secondary_right .sub_menu>ul>li:first-child{padding-left:10px} .av_secondary_right .sub_menu{padding-left:10px} .av_icon_active_right .social_bookmarks{padding-left:20px} .av_secondary_left .sub_menu{padding-right:10px} .html_boxed #main{position:static;overflow:hidden}.html_logo_right.html_bottom_nav_header #header_main .social_bookmarks{right:auto;left:0} #top nav .social_bookmarks{position:relative;top:50%;margin-top:-16px;right:0;overflow:hidden;clear:none;float:left} .avia-menu.av_menu_icon_beside{padding-right:25px;margin-right:25px;border-right-width:1px;border-right-style:solid;-webkit-transition:border-color 0.2s ease-in-out;transition:border-color 0.2s ease-in-out}.fallback_menu + .social_bookmarks{padding-left:18px} #header_meta{border-top:none;z-index:10;min-height:30px;border-bottom-style:solid;border-bottom-width:1px;margin-bottom:-1px} #header_meta .container{min-height:30px} #header_main{border-bottom-width:1px;border-bottom-style:solid;z-index:1} #header.shadow{box-shadow:0px 0px 3px rgba(0,0,0,0.2)} .header_bg{position:absolute;top:0;left:0;width:100%;height:100%;opacity:0.95;filter:alpha(opacity=95);z-index:0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;-webkit-perspective:1000px;-webkit-backface-visibility:hidden} .html_header_sticky_disabled .header_bg{opacity:1;filter:alpha(opacity=100)}.avia-msie-8.html_header_transparency .av_header_sticky_disabled#header{background:transparent} .av_minimal_header .header_bg{opacity:1;filter:alpha(opacity=100)}.av_minimal_header #header_main,.av_minimal_header #header_meta{border:none}.av_minimal_header .avia-menu-fx{display:none}#top #header.av_minimal_header .main_menu ul:first-child >li > ul,#top #header.av_minimal_header .main_menu .avia_mega_div > .sub-menu{border-top:none}.av_minimal_header #header_main .container,.av_minimal_header .main_menu ul:first-child > li a{height:90px;line-height:90px}.html_header_top.html_header_sticky.html_large .av_minimal_header #header_main .container,.html_header_top.html_header_sticky.html_large.html_main_nav_header .av_minimal_header .main_menu ul:first-child > li a{height:118px;line-height:118px} #top .av_minimal_header #s{border:none;padding:12px 47px 12px 5px}#top .av_minimal_header .av_ajax_search_entry{border:none} .av_minimal_header_shadow{box-shadow:0 0 2px 1px rgba(0,0,0,0.1)}.av_minimal_header_shadow.av_header_transparency{box-shadow:0 0 0px 0px rgba(0,0,0,0.0)} .av_minimal_header #header_main_alternate{border:none} .html_header_transparency #main{padding-top:0 !important}#top .av_header_transparency .main_menu ul:first-child > li > a:hover,#top #wrap_all .av_header_transparency .sub_menu > ul > li > a:hover{opacity:0.8}#top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:0;filter:alpha(opacity=0)}#top .av_header_transparency #header_main,#top .av_header_transparency .avia-menu.av_menu_icon_beside{border-color:transparent}#top .av_header_transparency .header_bg{background-color:transparent;opacity:0;filter:alpha(opacity=0)}#top .av_header_transparency .phone-info,#top .av_header_transparency .social_bookmarks li a{color:inherit} #top #header.av_header_transparency .avia_mega_div{margin-top:1px;padding-top:1px}#top .av_header_transparency .avia-menu-fx{bottom:22%;width:70%;left:15%}#top .av_header_transparency .phone-info.with_nav span{border-color:rgba(255,255,255,0.25);color:#fff}#top .av_header_transparency #header_meta li{border-color:rgba(255,255,255,0.25);color:inherit}#top .av_header_transparency #header_meta{background:transparent;box-shadow:none;border-bottom:1px solid rgba(255,255,255,0.25)}.html_header_transparency #header_meta{-webkit-transition:background 0.4s ease-in-out;transition:background 0.4s ease-in-out} #top .av_header_glassy.av_header_transparency .header_bg{background-color:#fff;opacity:0.1;filter:alpha(opacity=10)}#top .av_header_glassy.av_header_transparency #header_main{border-color:rgba(255,255,255,0.25);border-top-color:transparent}#top .av_header_glassy.av_header_transparency .avia-menu.av_menu_icon_beside{border-color:rgba(255,255,255,0.25)}#top .av_header_glassy.av_header_transparency .social_bookmarks li,#top .av_header_glassy.av_header_transparency .social_bookmarks li a{border-color:rgba(255,255,255,0.25);color:#fff}#top .av_header_glassy.av_header_transparency #header_main_alternate{border-bottom-color:rgba(255,255,255,0.25)} #top .av_header_with_border.av_header_transparency #header_main{border:1px solid rgba(255,255,255,0.25);border-left:none;border-right:none;border-top-color:transparent} #top .av_header_with_border.av_header_transparency .avia-menu.av_menu_icon_beside{border-color:rgba(255,255,255,0.25)} .html_header_searchicon_disabled #top .av_header_border_disabled.av_bottom_nav_disabled .main_menu .menu>li:last-child>a .avia-menu-fx{padding-right:13px;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box} #top .av_header_scrolldown{-webkit-transition:opacity 0.6s ease-out,margin 0.6s ease-out;transition:opacity 0.6s ease-out,margin 0.6s ease-out;margin-top:0px}#top .av_header_scrolldown.av_header_transparency{opacity:0;margin-top:-250px !important} .html_header_transparency.html_header_scrolldown #top .avia-builder-el-0 .container,.html_header_transparency.html_header_scrolldown #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0} #top .header_hidden{display:none} .av_seperator_small_border .av-main-nav > li > a > .avia-menu-text{border-left-style:solid;border-left-width:1px;padding-left:13px;margin-left:-13px} .av_seperator_small_border .av-main-nav > li:first-child > a > .avia-menu-text{border-left:none} .av_seperator_big_border .av-main-nav > li > a{border-left-style:solid;border-left-width:1px;text-align:center;min-width:90px}#top .av_seperator_big_border .av-main-nav > li:last-child > a,#top .av_seperator_big_border .av-main-nav > #menu-item-search > a{border-right-style:solid;border-right-width:1px} #top .av_seperator_big_border .av-main-nav > #menu-item-search > a{border-left-style:solid;border-left-width:1px;border-color:inherit} #top .av_seperator_big_border#header .av-menu-button > a .avia-menu-text{border:none}.av_seperator_big_border .avia-menu.av_menu_icon_beside{padding-right:0}#top .av_seperator_big_border#header .av-main-nav > li > a{padding:0 13px}#top .av_seperator_big_border .avia-menu.av_menu_icon_beside{border-right-style:none;border-right-width:0}.html_bottom_nav_header #top .av_seperator_big_border .av-main-nav > #menu-item-search > a{border-left-style:solid;border-left-width:1px;border-color:inherit;margin-left:-1px} .avia-menu-subtext,#top .sub-menu .avia-menu-subtext{display:none} .html_header_top #top .av_menu_left .main_menu .menu li ul ul{left:207px} .html_header_sidebar{}.html_header_sidebar #top #header{width:300px;position:absolute;min-height:100%;border-bottom:none}.html_boxed.html_header_sidebar #wrap_all{position:relative} .html_header_sidebar #top #header_main{border-top:none}.html_header_sidebar #header .container{width:100%;height:auto;line-height:1.3em;padding:0;float:none;max-width:100%}.html_header_sidebar .header_bg{opacity:1;filter:alpha(opacity=95)} .html_header_left #top #header{}.html_header_right #top #header{right:0}.html_header_left #main{margin-left:300px;position:relative;border-left-style:solid;border-left-width:1px}.html_header_right #main{margin-right:300px;position:relative;border-right-style:solid;border-right-width:1px} .html_header_sidebar #top #header.av_always_sticky{position:fixed;-webkit-backface-visibility:hidden} .html_header_sidebar .logo{position:relative;clear:both;padding:40px;border-bottom-style:solid;border-bottom-width:1px;height:auto;max-height:none;width:100%}.html_header_sidebar .logo img{width:100%;max-height:none;padding:0;height:auto}.html_header_sidebar .main_menu{position:relative;clear:both;z-index:200}.html_header_sidebar #header .av-main-nav ,.html_header_sidebar #header .av-main-nav-wrap{width:100%}.html_header_sidebar #header .av-main-nav{padding:20px 0}.html_header_sidebar #header .av-main-nav > li{float:none;display:block;margin:0 13%}.html_header_sidebar #header .av-main-nav > li > a{line-height:1.3em;height:auto;padding:15px 3px;border-bottom-style:solid;border-bottom-width:1px;margin:0 auto}.html_header_sidebar #header .av-main-nav > li > a .avia-menu-text{font-size:16px;font-weight:normal;display:block}.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext{display:block;font-weight:normal;font-size:12px;padding-top:3px}.html_header_sidebar #header .av-main-nav > li:last-child > a{border:none}.html_header_sidebar #header .av-main-nav > li:nth-last-child(2) > a{border:none}.html_header_sidebar #header .avia-menu-fx{display:none} .html_header_sidebar .av-main-nav ul{border-top-width:1px}.html_header_left .av-main-nav ul{top:0;left:100%;box-shadow:5px 5px 15px rgba(0,0,0,0.1)}.html_header_left #top .av-main-nav ul ul{left:207px;top:-1px}.html_header_right .av-main-nav ul{top:0;left:auto;right:100%;box-shadow:-5px 5px 15px rgba(0,0,0,0.1)}.html_header_right #top .av-main-nav ul ul{left:-207px;top:-1px} .html_header_sidebar #top .av-main-nav ul a{padding:12px 15px}.html_header_sidebar #main > .avia-builder-el-0{border-top:none} .html_header_sidebar #top #header .av-menu-button > a{border:none}.html_header_sidebar #top #header .av-menu-button + .av-menu-button > a{padding-top:0}.html_header_sidebar #top #header .av-menu-button-colored:hover{opacity:0.8} .html_header_left #header .avia_mega_div{left:100%;top:0}.html_header_right #header .avia_mega_div{right:100%;top:0}.html_header_sidebar #top #header .avia_mega_div > .sub-menu{border-width:1px;border-style:solid} .html_header_sidebar.html_content_align_left .container{float:left}.html_header_sidebar.html_content_align_right .container{float:right} .html_header_sidebar.html_content_align_left #footer,.html_header_sidebar.html_content_align_right #footer,.html_header_sidebar.html_content_align_left #socket,.html_header_sidebar.html_content_align_right #socket{overflow:hidden} .html_header_sidebar .container_wrap{width:100%} #header .avia-custom-sidebar-widget-area{margin:0;padding:0;float:none}#header .avia-custom-sidebar-widget-area .widget{border-top-style:solid;border-top-width:1px;padding:40px;width:100%;overflow:hidden} .html_header_sidebar .av-sidebar-social-container{position:relative;clear:both;overflow:hidden}.html_header_sidebar #top #header .social_bookmarks{position:relative;top:0;margin:0;border-top-style:solid;border-top-width:1px;clear:both;display:table;width:100%;table-layout:fixed}.html_header_sidebar #top #header .social_bookmarks li{float:none;display:table-cell;text-align:center}.html_header_sidebar #top #header .social_bookmarks li.social_icon_1 a{border:none}.html_header_sidebar #top #header .social_bookmarks li a{width:100%;border-radius:0;border-left-style:solid;border-left-width:1px;padding:10px 0} .html_header_sidebar .av_default_container_wrap,.html_header_sidebar .container_wrap_first{float:left} .html_top_nav_header #header_main_alternate{border-top:none;border-bottom-style:solid;border-bottom-width:1px}.html_top_nav_header.html_minimal_header #header_main_alternate{border:none}.html_top_nav_header div .logo{position:relative} .html_top_nav_header .av-logo-container .inner-container{position:relative;overflow:hidden}.html_top_nav_header.html_header_top.html_header_sticky #top #wrap_all #main{padding-top:50px}.html_top_nav_header .av-logo-container{height:88px}.html_top_nav_header.html_large .av-logo-container{height:150px}.html_top_nav_header #header_main{border:none} .av-hamburger{padding:0 0 0 0;display:inline-block;cursor:pointer;font:inherit;color:inherit;text-transform:none;background-color:transparent;border:0;margin:0;overflow:visible} .av-hamburger-box{width:35px;height:24px;display:inline-block;position:relative} .av-hamburger-inner{display:block;top:50%;margin-top:-2px} .av-hamburger-inner,.av-hamburger-inner::before,.av-hamburger-inner::after{width:40px;height:3px;background-color:#000;border-radius:3px;position:absolute;transition:transform 0.15s ease}.av-hamburger-inner::before,.av-hamburger-inner::after{content:\"\";display:block} .av-hamburger-inner::before{top:-10px} .av-hamburger-inner::after{bottom:-10px} .av-hamburger--spin .av-hamburger-inner{transition-duration:0.3s;transition-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)} .av-hamburger--spin .av-hamburger-inner::before{transition:top 0.1s 0.34s ease-in,opacity 0.1s ease-in,background-color 0.15s ease} .av-hamburger--spin .av-hamburger-inner::after{transition:bottom 0.1s 0.34s ease-in,transform 0.3s cubic-bezier(0.55,0.055,0.675,0.19) ,background-color 0.15s ease} .av-hamburger--spin.is-active .av-hamburger-inner{transform:rotate(225deg);transition-delay:0.14s;transition-timing-function:cubic-bezier(0.215,0.61,0.355,1)} .av-hamburger--spin.is-active .av-hamburger-inner::before{top:0;opacity:0;transition:top 0.1s ease-out,opacity 0.1s 0.14s ease-out,background-color 0.15s ease} .av-hamburger--spin.is-active .av-hamburger-inner::after{bottom:0;transform:rotate(-90deg);transition:bottom 0.1s ease-out,transform 0.3s 0.14s cubic-bezier(0.215,0.61,0.355,1),background-color 0.15s ease} .av-burger-menu-main{display:none;-webkit-transition:padding 0.3s ease-out;transition:padding 0.3s ease-out}.js_active.html_burger_menu #avia-menu > li{display:none} .js_active.html_burger_menu #avia-menu .av-burger-menu-main,.html_burger_menu #top #avia-menu .menu-item-search-dropdown{display:block} .av-burger-menu-main{cursor:pointer}.av-burger-menu-main a{padding-left:10px}.av-hamburger strong{display:none}.av-hamburger-box{height:8px} .av-hamburger-inner,.av-hamburger-inner::before,.av-hamburger-inner::after{width:100%} .html_burger_menu #top #wrap_all .menu-item-search-dropdown > a{font-size:24px}html.av-burger-overlay-active #top .menu-item-search-dropdown > a{color:#fff} .html_burger_menu_active #header .avia-menu .menu-item{display:none}.html_burger_menu_active .menu-item-avia-special{display:block}.html_burger_menu_active #top #wrap_all .menu-item-search-dropdown > a{font-size:24px}.html_header_sidebar #top div .av-burger-menu-main{display:none}.html_burger_menu_active #top #wrap_all #header .av-burger-menu-main > a{background:transparent;position:relative;z-index:10} .av-hamburger--spin-r .av-hamburger-inner{transition-duration:0.3s;transition-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}.av-hamburger--spin-r .av-hamburger-inner::before{transition:top 0.1s 0.34s ease-in,opacity 0.1s ease-in}.av-hamburger--spin-r .av-hamburger-inner::after{transition:bottom 0.1s 0.34s ease-in,-webkit-transform 0.3s cubic-bezier(0.55,0.055,0.675,0.19);transition:bottom 0.1s 0.34s ease-in,transform 0.3s cubic-bezier(0.55,0.055,0.675,0.19);transition:bottom 0.1s 0.34s ease-in,transform 0.3s cubic-bezier(0.55,0.055,0.675,0.19),-webkit-transform 0.3s cubic-bezier(0.55,0.055,0.675,0.19)} .av-hamburger--spin-r.is-active .av-hamburger-inner{-webkit-transform:rotate(-225deg);transform:rotate(-225deg);transition-delay:0.14s;transition-timing-function:cubic-bezier(0.215,0.61,0.355,1)}.av-hamburger--spin-r.is-active .av-hamburger-inner::before{top:0;opacity:0;transition:top 0.1s ease-out,opacity 0.1s 0.14s ease-out}.av-hamburger--spin-r.is-active .av-hamburger-inner::after{bottom:0;-webkit-transform:rotate(-90deg);transform:rotate(-90deg);transition:bottom 0.1s ease-out,-webkit-transform 0.3s 0.14s cubic-bezier(0.215,0.61,0.355,1);transition:bottom 0.1s ease-out,transform 0.3s 0.14s cubic-bezier(0.215,0.61,0.355,1);transition:bottom 0.1s ease-out,transform 0.3s 0.14s cubic-bezier(0.215,0.61,0.355,1),-webkit-transform 0.3s 0.14s cubic-bezier(0.215,0.61,0.355,1)} .av-burger-overlay{position:fixed;width:100%;height:100%;top:0;left:0;right:0;z-index:100;display:none;overflow:hidden;opacity:0} .av-burger-overlay-inner,.av-burger-overlay-bg{position:absolute;top:0;left:0;height:100%;width:100%;min-height:700px;display:table;vertical-align:middle;text-align:center;z-index:5} .av-burger-overlay-bg{z-index:3;opacity:0.9;background:#000;display:block;position:fixed} .av-burger-overlay-scroll{overflow:auto;position:absolute;height:100%;width:100%;z-index:10;-webkit-overflow-scrolling:touch} #av-burger-menu-ul li a{position:relative;display:block;-webkit-transition:none;transition:none}#av-burger-menu-ul li ul{background:transparent} html.av-burger-overlay-active #header_meta,html.av-burger-overlay-active #menu-item-shop.cart_dropdown,html.av-burger-overlay-active .cart_dropdown,html.av-burger-overlay-active #top .social_bookmarks{z-index:1} .av-burger-overlay-active #top .av-hamburger-inner,.av-burger-overlay-active #top .av-hamburger-inner::before,.av-burger-overlay-active #top .av-hamburger-inner::after{background-color:#fff} .av-burger-overlay-active #top #header .av-main-nav > li > a{background:transparent} .av-burger-overlay-active #scroll-top-link{z-index:150}#top #av-burger-menu-ul{display:table-cell;height:100%;width:100%;vertical-align:middle;padding:125px 0} .html_av-overlay-full #av-burger-menu-ul li{display:block;height:auto;width:100%;padding:0.3em 0;font-size:35px}.html_av-overlay-full #top #wrap_all #av-burger-menu-ul li{line-height:1.6em}.html_av-overlay-full #top #wrap_all #av-burger-menu-ul li li{font-size:0.6em;line-height:1.4em}.html_av-overlay-full #top #wrap_all #av-burger-menu-ul li li li{font-size:0.8em}.html_av-overlay-full #top #wrap_all #av-burger-menu-ul li a{color:#fff;height:auto;line-height:inherit;font-size:inherit}.html_av-overlay-full #av-burger-menu-ul li a:hover,.html_av-overlay-full #av-burger-menu-ul li a:active,.html_av-overlay-full #av-burger-menu-ul li a:focus{text-decoration:none;opacity:0.7} .html_av-overlay-full.av-burger-overlay-active #top #wrap_all #menu-item-search a,.html_av-overlay-full.av-burger-overlay-active #top #wrap_all #menu-item-search a:hover{color:#fff} .html_header_top.html_logo_center.av-burger-overlay-active .menu-item-avia-special{z-index:150} #top #wrap_all #av-burger-menu-ul > li{opacity:0;position:relative;top:18px;-webkit-transition:opacity 0.3s ease-out,top 0.3s ease-out,left 0.3s ease-out;transition:opacity 0.3s ease-out,top 0.3s ease-out,left 0.3s ease-out;-webkit-transform:translate3d(0,0,0)} .avia_desktop.avia-safari #top #wrap_all #av-burger-menu-ul > li{-webkit-transform:none} #top #wrap_all #header #av-burger-menu-ul > li.av-active-burger-items{opacity:1;top:0;left:0} .html_av-overlay-full #top #av-burger-menu-ul .av-menu-button > a .avia-menu-text{padding:0.5em 1.5em}.html_av-overlay-full #top #av-burger-menu-ul .av-menu-button{margin-top:0.4em}.html_av-overlay-full #av-burger-menu-ul li ul li a{font-size:1.3em} #av-burger-menu-ul li a .avia-menu-subtext{display:block;font-size:0.6em;line-height:1.2em;margin:-10px 0 13px 0;opacity:0.7;text-transform:none} .html_av-overlay-side #av-burger-menu-ul li a .avia-menu-subtext{font-size:1em;margin:0;opacity:0.9} #av-burger-menu-ul .avia-menu-fx{display:none} #top .av-small-burger-icon{-ms-transform:scale(0.6);transform:scale(0.6);transform-origin:right}#top #wrap_all #header .av-small-burger-icon a{padding:0} .html_av-overlay-side .av-burger-overlay-bg{opacity:0.3;cursor:pointer}.html_av-overlay-side #top .av-burger-overlay li{margin:0}.html_av-overlay-side #top #wrap_all .av-burger-overlay li a{line-height:1.3em;height:auto;padding:15px 50px;display:block;text-align:left;text-decoration:none}.html_av-overlay-side #top .av-burger-overlay li a:hover{text-decoration:none}.html_av-overlay-side #top #wrap_all #av-burger-menu-ul > li{top:0;left:18px} .html_av-overlay-side #top #wrap_all .av-burger-overlay li li a{padding-left:70px}.html_av-overlay-side #top #wrap_all .av-burger-overlay li li li a{padding-left:90px}.html_av-overlay-side #top #wrap_all .av-burger-overlay li li li li a{padding-left:110px}.html_av-overlay-side #top #wrap_all .av-burger-overlay li li li li li a{padding-left:130px} .html_av-overlay-side .av-burger-overlay-scroll{width:350px;right:0;max-width:100%;-webkit-transform:translateX(350px);transform:translateX(350px);-webkit-transition:all 0.5s cubic-bezier(0.75,0,0.25,1);transition:all 0.5s cubic-bezier(0.75,0,0.25,1)} .html_av-overlay-side.av-burger-overlay-active-delayed .av-burger-overlay-scroll{-webkit-transform:translateX(0);transform:translateX(0)}.html_av-overlay-side #top #wrap_all #av-burger-menu-ul > li{opacity:1;top:0;left:0} .html_av-overlay-side-classic #top .av-burger-overlay{font-size:1em}.html_av-overlay-side-classic #av-burger-menu-ul{vertical-align:top}.html_av-overlay-side-classic #top .av-burger-overlay li a{border-bottom-style:solid;border-bottom-width:1px}.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet{height:1px;display:block;position:absolute;margin-top:0;opacity:0.3;border:none!important;width:7px;left:50px;top:50%} .html_av-overlay-side-classic #top .av-burger-overlay li li li .avia-bullet{left:70px} .html_av-overlay-side-classic #top .av-burger-overlay li li li li .avia-bullet{left:90px} .html_av-overlay-side-classic #top .av-burger-overlay li li li li li .avia-bullet{left:110px} .html_av-overlay-side-classic #top .av-burger-overlay li li li li li li .avia-bullet{left:130px} .html_av-overlay-side-minimal .av-burger-overlay-bg{opacity:0.1}.html_av-overlay-side-minimal #top .av-burger-overlay{font-size:1.1em}.html_av-overlay-side-minimal #top .av-burger-overlay .sub-menu{font-size:0.9em} .html_av-submenu-hidden #av-burger-menu-ul li ul{display:none}.html_av-submenu-hidden .av-submenu-indicator{display:inline-block;padding:0 10px;font-size:11px;opacity:0.5;vertical-align:top;float:right;-webkit-transition:all 0.2s ease-out;transition:all 0.2s ease-out;position:absolute;right:30px;top:50%;margin-top:-9px;height:20px;line-height:20px}.html_av-submenu-hidden .av-submenu-indicator:before{content:\"\\E87d\";font-family:\'entypo-fontello\'}.html_av-submenu-hidden .av-show-submenu > a > .av-submenu-indicator{-webkit-transform:rotate(90deg);transform:rotate(90deg)} div .logo{float:left;position:absolute;left:0;z-index:1} .logo,.logo a{overflow:hidden;position:relative;display:block;height:100%} .logo img{padding:0;display:block;width:auto;height:auto;max-height:100%;image-rendering:auto;position:relative;z-index:2;height :100%\\9;height:auto\\9;-webkit-transition:opacity 0.4s ease-in-out;transition:opacity 0.4s ease-in-out} .logo img.alternate{position:absolute;z-index:1;top:0;left:0;opacity:0} .av_header_transparency .logo img.alternate{opacity:1} .main_menu{clear:none;position:absolute;z-index:100;line-height:30px;height:100%;margin:0;right:0}.main_menu .pointer_arrow_wrap{display:none} .av-main-nav-wrap{float:left;position:relative;z-index:3}.av-main-nav-wrap ul{margin:0;padding:0} .av-main-nav{z-index:110;position:relative}.av-main-nav ul{display:none;margin-left:0;left:0;position:absolute;top:100%;width:208px;z-index:2;padding:0;box-shadow:0 8px 15px rgba(0,0,0,0.1);margin-top:-1px}.av-main-nav ul li{margin:0;padding:0;width:100%}.av-main-nav ul li a{border-right-style:solid;border-right-width:1px;border-left-style:solid;border-left-width:1px}.av-main-nav ul li:last-child > a{border-bottom-style:solid;border-bottom-width:1px}.av-main-nav li{float:left;position:relative;z-index:20}.av-main-nav li:hover{z-index:100}.av-main-nav > li > ul{border-top-width:2px;border-top-style:solid}.av-main-nav > li{line-height:30px}.av-main-nav li a{max-width:none}.av-main-nav > li > a{display:block;text-decoration:none;padding:0 13px;font-weight:normal;font-size:12px;font-weight:600;font-size:13px;-webkit-transition:background-color 0.4s ease-in-out,color 0.4s ease-in-out,border-color 0.4s ease-in-out;transition:background-color 0.4s ease-in-out,color 0.4s ease-in-out,border-color 0.4s ease-in-out} .av-main-nav > li > a ,div #menu-item-shop.cart_dropdown{-webkit-transition:none;transition:none;-webkit-transition:background-color 0.4s ease-in-out,color 0.4s ease-in-out,border-color 0.4s ease-in-out;transition:background-color 0.4s ease-in-out,color 0.4s ease-in-out,border-color 0.4s ease-in-out} .av_header_transparency .av-main-nav > li > a ,.av_header_transparency #menu-item-shop.cart_dropdown{-webkit-transition:border-color 0.2s ease-in-out;transition:border-color 0.2s ease-in-out} #top .av-main-nav ul a{width:100%;height:auto;float:left;text-align:left;line-height:23px;padding:8px 15px;font-size:12px;min-height:23px;max-width:none;text-decoration:none;font-family:inherit} #top .av-main-nav ul ul{left:-207px;top:0px;margin:0;border-top-style:solid;border-top-width:1px;padding-top:0px} .av-main-nav li:hover ul ul{display:none}#top .av-main-nav li:hover > ul{display:block} .avia-menu-fx{position:absolute;bottom:-1px;height:2px;z-index:10;width:100%;left:0;opacity:0;visibility:hidden}.av-main-nav li:hover .avia-menu-fx,.current-menu-item > a > .avia-menu-fx,.av-main-nav li:hover .current_page_item > a > .avia-menu-fx{opacity:1;visibility:visible} .avia-menu-fx .avia-arrow-wrap{height:10px;width:10px;position:absolute;top:-10px;left:50%;margin-left:-5px;overflow:hidden;display:none;visibility:hidden} .current-menu-item>a>.avia-menu-fx>.avia-arrow-wrap,.current_page_item>a>.avia-menu-fx>.avia-arrow-wrap{display:block}.avia-menu-fx .avia-arrow-wrap .avia-arrow{top:10px} .html_main_nav_header.html_logo_left #top .main_menu .menu>li:last-child>a,.html_bottom_nav_header #top #menu-item-search>a{padding-right:0}.html_bottom_nav_header.html_logo_center #top .av_seperator_big_border #menu-item-search>a{padding-right:13px;border-right-style:solid;border-right-width:1px}.html_bottom_nav_header .av-logo-container .main_menu{display:none} .main_menu .avia-bullet{display:none}#top #header .menu-item-mega-parent.current-menu-item{overflow:visible!important} #top #header .mega_menu_title a{color:inherit;font-size:17px;line-height:1.1em;padding:0;margin:0;background:transparent;border:none} #top #header .mega_menu_title a:hover{text-decoration:underline} #header .avia_mega_div{display:none;margin:-1px 0 0 0;right:0;position:absolute;top:100%;z-index:2;box-shadow:0 32px 60px rgba(0,0,0,0.1);overflow:hidden;padding:1px 0 0;text-align:left} #header.av_minimal_header .avia_mega_div{margin:0;border-top-style:solid;border-top-width:1px}#header.av_minimal_header .avia_mega_div .units{border-right:none} #header .avia_mega_div .units{padding:0 14px 0 15px;margin:0;border-right-style:dotted;border-right-width:1px} #header li:hover .avia_mega_div{display:block} #top #header .avia_mega_div ul,#top #header .avia_mega_div li{position:relative;display:block;top:auto;left:auto;height:auto} #top #header .avia_mega_div .sub-menu{overflow:hidden;width:100%;box-shadow:none;border-style:none;border-width:0px;position:relative;top:0;display:block;left:0;clear:both} #top #header .avia_mega_div > .sub-menu{display:table;padding:20px 30px 30px;border-top-style:solid;border-top-width:2px} #top #header .avia_mega_div > .sub-menu.avia_mega_hr{padding-top:30px} #top #header .avia_mega_div > .sub-menu > li{display:table-cell;float:none;padding-top:10px;padding-bottom:0;vertical-align:top} #top #header .avia_mega_div > .sub-menu.avia_mega_hr{border-top-width:1px;border-top-style:dashed} #top #header .avia_mega_div > .sub-menu > li > ul{padding:0} #top #header .avia_mega_div > .sub-menu > li > ul li{display:block;float:none;padding:0;margin:0;list-style-type:circle;list-style-position:inside} #top #header .avia_mega_div > .sub-menu > li > ul ul li{margin-left:15px} #top #header .avia_mega_div > .sub-menu > li > ul > li a{width:auto;float:none;display:block;border:none;padding:3px 12px 3px 12px;font-weight:normal;height:auto;line-height:23px} #header .avia_mega_div .avia_mega_menu_columns_first{padding-left:0} #header .avia_mega_div .avia_mega_menu_columns_last{padding-right:0;border-right-style:none;border-right-width:0} .avia-bullet{display:block;position:absolute;height:0;width:0;top:51%;margin-top:-3px;left:-3px;border-top:3px solid transparent !important;border-bottom:3px solid transparent !important;border-left:3px solid green} .avia_mega_div .avia-bullet{margin-top:12px;left:3px;display:block;top:0} #header .mega_menu_title{margin-bottom:8px;font-size:17px;line-height:1.1em;font-weight:600;display:block} #header .avia_mega_text_block{line-height:21px} #top #header .avia_mega_div .sub-menu .avia_mega_text_block a{padding:0;display:inline;border:none;text-decoration:underline} #top #wrap_all #header .av-menu-button > a{background:transparent}#top #wrap_all .av_header_border_disabled .av-menu-button > a{border:none}.av-menu-button + .av-menu-button{margin-left:-10px}.av-menu-button + .av-menu-button > a{padding-left:0px}#top .av-menu-button > a .avia-menu-text{padding:9px}#top .av-menu-button > a .avia-menu-text{border:2px solid;border-radius:2px}.av-menu-button > a .avia-menu-fx{display:none}.av-menu-button-colored > a .avia-menu-text{padding:11px 10px 10px 10px} .av-menu-button-colored > a:hover .avia-menu-text{opacity:0.9}#top #header .av-menu-button > a .avia-menu-subtext{display:none}#top #header .av-menu-button > a .avia-menu-text{text-align:center;white-space:nowrap} #top #menu-item-search{z-index:100} #top .menu-item-search-dropdown > a,#searchform #searchsubmit,.av_ajax_search_image,.iconfont{font-size:17px} #top #menu-item-search.menu-item-search-dropdown>a{border-left:none} #top #menu-item-search:hover>a{background:transparent;color:inherit} .avia-search-tooltip{position:absolute;z-index:9999999;padding:0;width:300px;top:85% !important;margin-left:-120px;border-radius:2px;box-shadow:0px 3px 13px 0px rgba(0,0,0,0.2);border-width:1px;border-style:solid} .avia-search-tooltip .avia-arrow-wrap{width:20px;height:20px;position:absolute;top:-20px;right:10px;margin-left:-10px;overflow:hidden} .avia-arrow{height:10px;width:10px;position:absolute;top:-6px;left:50%;margin-left:-5px;-webkit-transform:rotate(45deg);transform:rotate(45deg);border-width:1px;border-style:solid;visibility:hidden\\9} .avia-search-tooltip .avia-arrow{top:15px} #top #searchform{margin:0;padding:0}#top #searchform>div{position:relative;max-width:300px}#top .widget #searchform>div{margin:0;max-width:100%}#top #searchform br{display:none}#top #s{width:100%;position:relative;padding:11px 47px 11px 5px;z-index:1;margin:0;box-shadow:none}#top #searchsubmit,.ajax_load{width:40px;height:100%;line-height:40px;padding:0;position:absolute;right:0;top :0;z-index:2;margin:0;border-radius:0;min-width:40px} .avia_mobile #top #searchsubmit,.avia_mobile .ajax_load{height:41px} .avia-search-tooltip #searchform>div{margin:16px} .ajax_load{z-index:5} .ajax_load_inner{background:url(\'https://solsculpting.com/wp-content/themes/enfold/images/layout/loading.gif\') no-repeat scroll center center #fff;opacity:0.5;position:absolute;top:0;left:0;right:0;bottom:0} #top #searchform .ajax_search_response{line-height:1.4em;font-size:12px;margin:0} .ajax_search_response h4{padding:20px 16px 2px 16px;font-size:14px;margin:0} .ajax_search_response h4:first-child{padding-top:0px;border:none} #top div .av_ajax_search_entry{display:block;text-decoration:none;line-height:1.4em;font-size:12px;height:auto;padding:10px 16px;border-bottom-style:dashed;border-bottom-width:1px;clear:both;overflow:hidden;position:relative} #top div .av_ajax_search_entry:hover{background-color:rgba(0,0,0,0.04)} #top div .av_ajax_search_entry.with_image .av_ajax_search_image{background:transparent} .av_ajax_search_content{overflow:hidden;display:block} .av_ajax_search_title{display:block;font-weight:bold;text-transform:uppercase} .ajax_not_found .av_ajax_search_title{text-transform:none} .av_ajax_search_image{height:32px;line-height:32px;text-align:center;width:32px;float:left;margin-right:8px;border-radius:40px;overflow:hidden;font-size:15px} .av_ajax_search_image img{display:block;border:none;max-width:100%;min-height:32px;min-width:32px} .ajax_search_excerpt{font-size:12px;line-height:1.4em;display:block;margin-top:3px;font-style:italic} #top div .av_ajax_search_entry_view_all{text-align:center;font-weight:bold;border:none} #top div .ajax_not_found,#top div .av_ajax_search_entry.ajax_not_found:hover{border:none;background:transparent} .title_container{position:relative} #top .title_container .container{padding-top:10px;padding-bottom:10px;min-height:56px} .title_container .main-title{margin:0;font-size:16px;position:relative;z-index:2;min-height:36px;line-height:2.3em;top:0;font-weight:400} .title_container .main-title a{text-decoration:none} .title_meta,#top .portfolio-entry .title_meta{display:block;clear:both;position:relative;z-index:1;margin-top:-1em;padding:0} .title_meta p{margin:1.3em 0 0 0} .title_container .breadcrumb{z-index:10;line-height:15px;font-size:11px;position:absolute;right:50px;top:50%;margin-top:-7px} .breadcrumb a{text-decoration:none}.breadcrumb a:hover{text-decoration:underline} .breadcrumb-trail .trail-before,.breadcrumb-trail .trail-end,.breadcrumb-trail .sep,.breadcrumb-trail a,.breadcrumb-trail .bbp-breadcrumb-current{display:block;float:left;padding:0px 3px} .breadcrumb-trail span,.bbp-breadcrumb-current a{display:inline;padding:0;float:none} .breadcrumb .sep{display:block;overflow:hidden;width:8px} #top.avia-blank #wrap_all #main{padding-top:0 !important;margin:0}#top.avia-blank #wrap_all #main .container{padding-top:0 !important} #top.avia-blank{height:100%;position:absolute;width:100% !important;margin:0;display:table;vertical-align:middle;float:none;top:0;left:0;table-layout:fixed} #top.boxed.avia-blank{max-width:100% !important} #top.boxed.avia-blank .container{margin:0 auto} #top.avia-blank #wrap_all{display:table-cell;float:none;vertical-align:middle} #top.avia-blank #wrap_all #main{padding:0} #top.avia-blank #main .container_wrap:last-child{border-bottom-style:solid;border-bottom-width:1px} #top.avia-blank #main .container_wrap:first-child{border-top-style:solid;border-top-width:1px} .av-frame{position:fixed;z-index:600} .html_av-framed-box .av-frame.av-frame-vert{left:0;width:100%;top:0} .html_av-framed-box .av-frame.av-frame-hor{top:0;height:100%;left:0} .html_av-framed-box .av-frame.av-frame-bottom{top:auto;bottom:0} .html_av-framed-box .av-frame.av-frame-right{left:auto;right:0} .html_av-framed-box.html_av_admin_bar_active .av-frame.av-frame-top{margin-top:32px} .html_header_top.html_header_sticky.html_av-framed-box #header{left:0} .html_header_top.html_header_sticky.html_av-framed-box #header_main,.html_header_top.html_header_sticky.html_av-framed-box #header_meta{margin:0 50px} #top .social_bookmarks{height:30px;z-index:150;-webkit-backface-visibility:hidden;margin:0 0 0 -9px} #top .social_bookmarks li{height:100%;float:left;padding:0;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;border-right-style:solid;border-right-width:1px;display:block;width:30px} #top #header .social_bookmarks li:last-child{border-right-style:none;border-right-width:0} #top .social_bookmarks li a{float:left;width:30px;line-height:30px;display:block;margin:0px;outline:none;padding:0;min-height:30px;height:100%;overflow:visible;z-index:2;position:relative;text-align:center} #top #wrap_all .social_bookmarks,#top #wrap_all .social_bookmarks a,#top #wrap_all .social_bookmarks li{background:transparent} #top #wrap_all .social_bookmarks li a:hover{text-decoration:none} #top #wrap_all .av-social-link-rss:hover a{color:#fff;background-color:#ffa133}#top #wrap_all .av-social-link-facebook:hover a{color:#fff;background-color:#37589b}#top #wrap_all .av-social-link-twitter:hover a{color:#fff;background-color:#46d4fe}#top #wrap_all .av-social-link-whatsapp:hover a{color:#fff;background-color:#00e676}#top #wrap_all .av-social-link-mail:hover a{color:#fff;background-color:#9fae37}#top #wrap_all .av-social-link-dribbble:hover a{color:#fff;background-color:#e44885}#top #wrap_all .av-social-link-linkedin:hover a{color:#fff;background-color:#419cca}#top #wrap_all .av-social-link-search:hover a{color:#fff;background-color:#222222}#top #wrap_all .av-social-link-gplus:hover a{color:#fff;background-color:#de5a49}#top #wrap_all .av-social-link-behance:hover a{color:#fff;background-color:#008cfa}#top #wrap_all .av-social-link-flickr:hover a{color:#fff;background-color:#ff0086}#top #wrap_all .av-social-link-forrst:hover a{color:#fff;background-color:#234317}#top #wrap_all .av-social-link-myspace:hover a{color:#fff;background-color:#000000}#top #wrap_all .av-social-link-tumblr:hover a{color:#fff;background-color:#345574}#top #wrap_all .av-social-link-vimeo:hover a{color:#fff;background-color:#31baff}#top #wrap_all .av-social-link-youtube:hover a{color:#fff;background-color:#a72b1d}#top #wrap_all .av-social-link-pinterest:hover a{color:#fff;background-color:#cb2027}#top #wrap_all .av-social-link-skype:hover a{color:#fff;background-color:#12a5f4}#top #wrap_all .av-social-link-instagram:hover a{color:#fff;background-color:#a67658}#top #wrap_all .av-social-link-five_100_px:hover a{color:#fff;background-color:#222222}#top #wrap_all .av-social-link-soundcloud:hover a{color:#fff;background-color:#F76700}#top #wrap_all .av-social-link-xing:hover a{color:#fff;background-color:#006567}#top #wrap_all .av-social-link-vk:hover a{color:#fff;background-color:#597BA5}#top #wrap_all .av-social-link-reddit:hover a{color:#fff;background-color:#FF4500}#top #wrap_all .av-social-link-yelp:hover a{color:#fff;background-color:#d32323} #top .av-section-bottom-logo .social_bookmarks,.html_bottom_nav_header #top .av-logo-container .social_bookmarks{position:absolute;top:50%;margin-top:-15px;right:0}.html_bottom_nav_header .main_menu .social_bookmarks{display:none} .html_cart_at_menu #top .av-section-bottom-logo .social_bookmarks,.html_bottom_nav_header.html_cart_at_menu #top .av-logo-container .social_bookmarks{left:0;right:auto} #top .av-logo-container .social_bookmarks li{border:none} #top .av-logo-container .social_bookmarks li a{border-radius:100px} .sub_menu{float:left;z-index:2;font-size:11px;line-height:30px;position:relative;top:10px} #top .sub_menu>ul{float:left;margin:0} #top .sub_menu>ul,#top .sub_menu>ul>li{background:transparent} .sub_menu li{float:left;position:relative;padding:0 10px;border-right-style:solid;border-right-width:1px;line-height:10px} .sub_menu>ul>li>a,.sub_menu>div>ul>li>a{text-decoration:none;font-weight:bold;padding:7px 0} #top .sub_menu li ul{display:none;position:absolute;width:170px;padding:4px 0;z-index:101;box-shadow:0 8px 15px rgba(0,0,0,0.1);left:-50%;margin:0;border-style:solid;border-width:1px;top:19px} #top .sub_menu li:hover>ul{display:block} .sub_menu>ul>li:hover>a{text-decoration:underline} .sub_menu li li{float:none;line-height:20px;border:none;padding:0 0;margin:0} #top .sub_menu li li a{width:100%;height:auto;text-align:left;line-height:23px;padding:6px 18px;font-size:12px;min-height:23px;max-width:none;text-decoration:none;display:block;border-top-style:dashed;border-top-width:1px} #top .sub_menu li li:first-child > a{border:none} #top .sub_menu li li a:hover{text-decoration:none;background:#f8f8f8} #top .sub_menu li li ul{top:-1px;left:-169px;background:none;padding:0} .pointer_arrow{border-style:solid;border-width:1px} .content,.sidebar{padding-top:50px;padding-bottom:50px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;min-height:1px;z-index:1} .content:hover,.sidebar:hover{z-index:1} #top #main .sidebar{border-left-style:solid;border-left-width:1px;margin-left:0;float:none;width:auto;overflow:hidden;display:block;clear:none} .inner_sidebar{margin-left:50px} .content{border-right-style:solid;border-right-width:1px;margin-right:-1px} .content .entry-content-wrapper{padding-right:50px} #top #main .sidebar_left .sidebar{border-right-style:solid;border-right-width:1px;border-left:none} .sidebar_left .inner_sidebar{margin-right:50px;margin-left:0} .sidebar_left .content{float:right;border-left-style:solid;border-left-width:1px;border-right:none;margin-right:-50px;margin-left:-1px;padding-left:50px} .fullsize .content{margin:0;border:none} .fullsize .content .entry-content-wrapper{padding-right:0} .container .minor-meta{font-size:0.9em} .post{clear:both;width:100%;float:left;position:relative} .rounded-container,.rounded-container img{border-radius:111px;overflow:hidden;display:block;position:relative;z-index:2} .rounded-container{float:left;width:81px;height:81px;text-align:center;line-height:81px} .rounded-container .iconfont,.small-preview .iconfont{font-size:23px;position:absolute;left:0;right:0;top:0;bottom:0;z-index:1} .entry-content-wrapper .post-title{font-size:21px;line-height:1.3em} .pagination{clear:both;padding:10px 0px 50px 0;position:relative;z-index:3;line-height:13px;overflow:hidden} .pagination span,.pagination a{display:block;float:left;font-size:11px;line-height:13px;padding:2px 9px 1px 9px;text-decoration:none;width:auto} #top .pagination .current,#top .pagination a,#top .fullsize .template-blog .pagination a{float:left;height:35px;width:35px;line-height:35px;text-align:center;padding:0;border-radius:100px;margin-right:3px;box-shadow:0px 0px 1px 0px rgba(0,0,0,0.2)} .pagination .current{font-size:11px;padding:1px 9px 1px 9px;font-weight:bold} .pagination .pagination-meta{float:right;line-height:35px} #top .avia-post-nav{position:fixed;height:110px;top:50%;background:#aaa;background:rgba(0,0,0,0.1);color:#fff;margin-top:-55px;padding:15px;text-decoration:none;z-index:501;-webkit-transform:translate3d(0,0,0)} #top .avia-post-nav:hover{background:#222;background:rgba(0,0,0,0.8)} .avia-post-nav .label{position:absolute;top:50%;height:22px;line-height:22px;margin-top:-11px;font-size:24px}.avia-post-nav .entry-image{height:80px;width:80px;display:block}.avia-post-nav .entry-image img{border-radius:100px;display:block} .avia-post-prev{left:0;border-top-right-radius:4px;border-bottom-right-radius:4px}.avia-post-prev .label{left:10px} .avia-post-next{right:0;border-top-left-radius:4px;border-bottom-left-radius:4px}.avia-post-next .label{right:10px}.avia-post-next.with-image{text-align:right} .avia-post-nav .entry-info{display:block;height:80px;width:220px;display:table} .avia-post-next .entry-info{margin:0 20px 0 1px}.avia-post-prev .entry-info{margin:0 1px 0 20px} .avia-post-nav .entry-info span{display:table-cell;vertical-align:middle;font-size:13px;line-height:1.65em}.avia-post-nav .entry-info-wrap{width:1px;overflow:hidden;display:block}.avia-post-nav:hover .entry-info-wrap{width:240px} .pagination_split_post{clear:both;padding-top:20px} .no_sidebar_border#top #main .sidebar,.no_sidebar_border .content{border-left:none;border-right:none} .sidebar_shadow#top #main .sidebar,.sidebar_shadow .content{border-left:none;border-right:none} .sidebar_shadow#top #main .sidebar_right.av-enable-shadow{box-shadow:inset 25px 0 25px -25px #e9e9eb}.sidebar_shadow .sidebar_right .content.av-enable-shadow{box-shadow:25px 0 25px -25px #e9e9eb} .sidebar_shadow#top #main .sidebar_left.av-enable-shadow{box-shadow:inset -25px 0 25px -25px #e9e9eb}.sidebar_shadow .sidebar_left .content.av-enable-shadow{box-shadow:-25px 0 25px -25px #e9e9eb} .template-page .entry-content-wrapper h1,.template-page .entry-content-wrapper h2{text-transform:uppercase;letter-spacing:1px} .extra-mini-title{padding-bottom:20px} .page-heading-container{position:relative;margin-bottom:40px;padding:0 0 44px 0;border-bottom-width:1px;border-bottom-style:solid;padding-right:50px} .fullsize .page-heading-container{padding-right:0} .page-thumb img{border-radius:3px} .template-page .template-blog .entry-content-wrapper h1,.template-page .template-blog .entry-content-wrapper h2{text-transform:none;letter-spacing:0} .content .entry-content-wrapper .entry-content-wrapper{padding-right:0;padding-left:0} .content .entry-content-wrapper .entry-content-wrapper .big-preview.single-big{padding:0 0 10px 0} .template-search #searchform>div{max-width:100%;margin-bottom:0} #top .template-search.content .entry-content-wrapper{padding-bottom:40px;padding-left:55px;font-size:13px;clear:both} .template-search .pagination{padding:1px 50px 10px 55px} .template-search .entry-content-wrapper .post-title{font-size:19px}#top .template-search .entry-content-wrapper .post-title a:hover{text-decoration:underline} .search-result-counter{position:absolute;left:0;top:1px;box-shadow:0px 0px 1px 0px rgba(0,0,0,0.2);height:44px;line-height:24px;padding:10px;text-align:center;border-radius:100px;width:44px} #top #search-fail{padding-left:0}#top #search-fail #searchform{padding-bottom:40px} .template-search .post-entry{position:relative;clear:both} .page-heading-container .author_description{overflow:hidden} .template-author .content .post .entry-content-wrapper{padding-bottom:40px;font-size:1em;line-height:1.65em} .template-author .pagination{padding:1px 50px 10px 0} .template-author .entry-content-wrapper .post-title{font-size:19px}#top .template-author .entry-content-wrapper .post-title a:hover{text-decoration:underline} .author-extra-border{display:block;position:absolute;bottom:-1px;width:600%;right:0;border-bottom-width:1px;border-bottom-style:solid} .fullsize .author-extra-border{right:auto;left:-100%}.template-author .post-entry{position:relative;clear:both} .template-archives .tab_inner_content li{width:48%;float:left;clear:none;margin:0 2% 0 0 ;list-style-position:inside} .template-archives .relThumWrap img,.template-archives .relThumWrap span{width:100%;text-decoration:none}.template-archives .relThumbTitle{display:block;clear:both} #top .fullsize .template-blog .tag-page-post-type-title{font-size:50px;text-transform:uppercase} .archive .category-term-description:empty{display:none} .archive .category-term-description{margin-bottom:25px} .widgettitle{font-weight:600;text-transform:uppercase;letter-spacing:1px;font-size:1.1em} .widget{clear:both;position:relative;padding:30px 0 30px 0;float:none} #footer .widget{padding:0;margin:30px 0 30px 0;overflow:hidden} #top .widget ul{padding:0;margin:0;width:100%;float:left} #top #footer .widget ul{float:none} .widget li{clear:both} .widget ul ul li,.widget ul ol li,.widget ol ol li,.widget ol ul li{margin-bottom:0} #mc_embed_signup .clear{visibility:visible;overflow:visible;height:auto} #footer{padding:15px 0 30px 0;z-index:1} #socket .container{padding-top:15px;padding-bottom:15px} #socket{font-size:11px;margin-top:-1px;z-index:1}#socket .menu{margin-top:6px}#socket .sub_menu_socket{float:right;margin:0}#socket .sub_menu_socket div{overflow:hidden}#socket .sub_menu_socket li{float:left;display:block;padding:0 10px;border-left-style:solid;border-left-width:1px;line-height:10px}#socket .sub_menu_socket li:first-child{border:none}#socket .sub_menu_socket li:last-child{padding-right:0} #socket .copyright{float:left} #scroll-top-link{position:fixed;border-radius:2px;height:50px;width:50px;line-height:50px;text-decoration:none;text-align:center;opacity:0;right:50px;bottom:50px;z-index:1030;visibility:hidden} #av-cookie-consent-badge{position:fixed;border-radius:2px;height:30px;width:30px;line-height:30px;text-decoration:none;text-align:center;opacity:0;right:50px;bottom:50px;z-index:1030;visibility:hidden} #scroll-top-link.avia_pop_class,#av-cookie-consent-badge.avia_pop_class{opacity:0.7;visibility:visible} #socket .social_bookmarks{float:right;margin:-10px 0 0 30px;position:relative}#socket .social_bookmarks li{border-radius:300px;border:none;overflow:hidden;top:5px;position:relative}#socket .social_bookmarks li a{border-radius:300px}#socket .avia-bullet,#socket .avia-menu-fx{display:none} .small-preview,.avia-post-nav .entry-info-wrap,.avia-post-nav,.avia-menu-fx,.team-social,.button,.related-format-icon,.avia-slideshow-controls a,#top .social_bookmarks li a,.fallback-post-type-icon,#scroll-top-link,#av-cookie-consent-badge,.avia-slideshow-button{-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out} .main_menu a,.pagination a{-webkit-transition:color 0.15s ease-out;transition:color 0.15s ease-out;-webkit-transition:background 0.15s ease-out;transition:background 0.15s ease-out} .avia_pop_class,.avia-search-tooltip{-webkit-animation:avia_pop 0.3s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_pop 0.3s 1 cubic-bezier(0.175,0.885,0.320,1.275)} a:hover .image-overlay .image-overlay-inside{-webkit-animation:avia_pop_small 0.5s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_pop_small 0.5s 1 cubic-bezier(0.175,0.885,0.320,1.275)} @-webkit-keyframes avia_pop{0%{-webkit-transform:scale(0.8)} 100%{-webkit-transform:scale(1)}}@keyframes avia_pop{0%{transform:scale(0.8)} 100%{transform:scale(1)}} @-webkit-keyframes avia_pop_small{0%{-webkit-transform:rotate(-175deg) scale(0.2)} 100%{-webkit-transform:rotate(0deg) scale(1)}}@keyframes avia_pop_small{0%{transform:rotate(-175deg) scale(0.2)} 100%{transform:rotate(0deg) scale(1)}} @-webkit-keyframes avia_pop_loader{0%{-webkit-transform:rotate(0deg) scale(0.2) } 100%{-webkit-transform:rotate(720deg) scale(1)}}@keyframes avia_pop_loader{0%{transform:rotate(0deg) scale(0.2)} 100%{transform:rotate(720deg) scale(1)}} @-webkit-keyframes avia_shrink{0%{opacity:0;-webkit-transform:scale(1);transform:scale(1)} 75%{opacity:0.7} 100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}} @keyframes avia_shrink{0%{opacity:0;-webkit-transform:scale(1);transform:scale(1)} 75%{opacity:0.7} 100%{opacity:0;-webkit-transform:scale(0);transform:scale(0)}} @-webkit-keyframes av-load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)} 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes av-load8{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)} 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}} @media only screen and (min-width:1140px){} @media only screen and (max-width:989px){.responsive.html_header_sidebar #top #header{width:27%} .responsive.html_header_left #main{margin-left:27%} .responsive.html_header_right #main{margin-right:27%} .responsive.html_header_sidebar #header .av-main-nav{padding:4% 0} .responsive.html_header_sidebar #header .av-main-nav > li{margin:0 10%} .responsive.html_header_sidebar #header .av-main-nav > li > a .avia-menu-text{font-size:14px} .responsive.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext{font-size:11px} .responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area .widget{padding:10%} .responsive.html_header_sidebar .logo{padding:10%} .responsive.html_mobile_menu_tablet #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1} .responsive.html_mobile_menu_tablet #top .av_header_transparency .logo img.alternate{display:none} .responsive .av-frame{display:none} .responsive.html_av-framed-box{padding:0} .responsive.html_header_top.html_header_sticky.html_av-framed-box #header_main,.responsive.html_header_top.html_header_sticky.html_av-framed-box #header_meta{margin:0 auto} .responsive #top .avia-post-prev{left:0px} .responsive #top .avia-post-next{right:0px} .responsive.html_av-framed-box.html_av-overlay-side .av-burger-overlay-scroll{right:0} .responsive .avia-cookie-consent .container{padding:0} .responsive .avia-cookie-consent a.avia_cookie_infolink,.responsive .avia-cookie-consent p{display:block;margin-right:0} .responsive .avia-cookie-consent-button{margin:0.5em} .responsive .av-framed-box .avia-cookiemessage-top,.responsive .av-framed-box .avia-cookiemessage-bottom{width:100% !important;left:0 !important} .responsive .av-framed-box .avia-cookiemessage-bottom{bottom:0 !important} .responsive .av-framed-box .avia-cookiemessage-top{top:0 !important} .responsive .avia-cookiemessage-top-left,.responsive .avia-cookiemessage-bottom-left,.responsive .avia-cookiemessage-top-right,.responsive .avia-cookiemessage-bottom-right{width:35%}} @media only screen and (min-width:768px) and (max-width:989px){.responsive .main_menu ul:first-child > li > a{padding:0 10px} .responsive #top .header_bg{opacity:1;filter:alpha(opacity=100)} .responsive #main .container_wrap:first-child{border-top:none} .responsive .logo{float:left} .responsive .logo img{margin:0} .responsive.html_top_nav_header.html_mobile_menu_tablet #top .social_bookmarks{right:50px} .responsive.html_top_nav_header.html_mobile_menu_tablet #top #wrap_all #main{padding-top:0} .responsive.js_active .avia_combo_widget .top_tab .tab{font-size:10px} .responsive.js_active .avia_combo_widget .news-thumb{display:none} .responsive #top #wrap_all .grid-sort-container .av_one_sixth{width:33.3%;margin-bottom:0} .responsive body.boxed#top,.responsive.html_boxed.html_header_sticky #top #header,.responsive.html_boxed.html_header_transparency #top #header{max-width:100%} .responsive.html_header_top.html_header_sticky.html_bottom_nav_header.html_mobile_menu_tablet #main{padding-top:88px} .responsive.html_header_top.html_header_sticky.html_bottom_nav_header.html_top_nav_header.html_mobile_menu_tablet #main{margin-top:0} .responsive #top .av-hide-on-tablet{display:none !important} .responsive.html_mobile_menu_tablet .av-burger-menu-main{display:block} .responsive #top #wrap_all .av_mobile_menu_tablet .main_menu{top:0;left:auto;right:0;display:block} .responsive.html_logo_right #top #wrap_all .av_mobile_menu_tablet .main_menu{top:0;left:0;right:auto} .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item{display:none} .responsive #top .av_mobile_menu_tablet .av-main-nav .menu-item-avia-special{display:block} .responsive #top #wrap_all .av_mobile_menu_tablet .menu-item-search-dropdown > a{font-size:24px} .responsive #top .av_mobile_menu_tablet #header_main_alternate{display:none} .responsive.html_mobile_menu_tablet #top #wrap_all #header{position:relative;width:100%;float:none;height:auto;margin:0 !important;opacity:1;min-height:0} .responsive.html_mobile_menu_tablet #top #header #header_meta .social_bookmarks{display:none} .responsive.html_mobile_menu_tablet #top .av-logo-container .social_bookmarks{display:none} .responsive.html_mobile_menu_tablet #top .av-logo-container .main_menu .social_bookmarks{display:block;position:relative;margin-top:-15px;right:0} .responsive.html_logo_center.html_bottom_nav_header .av_mobile_menu_tablet .avia-menu.av_menu_icon_beside{height:100%} .responsive.html_mobile_menu_tablet #top #wrap_all .menu-item-search-dropdown > a{font-size:24px} .responsive.html_mobile_menu_tablet #top #main .av-logo-container .main_menu{display:block} .responsive.html_mobile_menu_tablet.html_header_top.html_header_sticky #top #wrap_all #main{padding-top:88px} .responsive.html_mobile_menu_tablet.html_header_top #top #main{padding-top:0 !important;margin:0} .responsive.html_mobile_menu_tablet.html_top_nav_header.html_header_sticky #top #wrap_all #main{padding-top:0} .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a,.responsive.html_mobile_menu_tablet #top #wrap_all .av-logo-container{height:90px;line-height:90px} .responsive.html_mobile_menu_tablet #top #header_main > .container .main_menu .av-main-nav > li > a{min-width:0;padding:0 0 0 20px;margin:0;border-style:none;border-width:0} .responsive.html_mobile_menu_tablet #top .av_seperator_big_border .avia-menu.av_menu_icon_beside{border-right-style:solid;border-right-width:1px;padding-right:25px} .responsive.html_mobile_menu_tablet #top #header .av-main-nav > li > a,.responsive #top #header .av-main-nav > li > a:hover{background:transparent;color:inherit} .responsive.html_mobile_menu_tablet.html_top_nav_header .av-logo-container .inner-container{overflow:visible}} @media only screen and (max-width:767px){.responsive .template-archives .tab_inner_content li{width:98%} .responsive .template-blog .blog-meta,.responsive .post_author_timeline,.responsive #top #main .sidebar{display:none} .responsive #top #main .sidebar.smartphones_sidebar_active{display:block;text-align:left;border-left:none;border-right:none;border-top-style:dashed;border-top-width:1px;width:100%;clear:both} .responsive #top #main .sidebar.smartphones_sidebar_active .inner_sidebar{margin:0} .responsive .content .entry-content-wrapper{padding:0} .responsive .content{border:none} .responsive .template-blog .post_delimiter{margin:0 0 30px 0;padding:30px 0 0 0} .responsive .big-preview{padding:0 0 10px 0} .responsive .related_posts{padding:20px 0} .responsive .comment_content{padding-right:0;padding-left:0} .responsive .fullsize div .template-blog .entry-content-wrapper{text-align:left;font-size:14px;line-height:24px} .responsive #top .fullsize .template-blog .post .entry-content-wrapper > *{max-width:100%} .responsive #top .avia-post-nav{display:none} .responsive #top .av-related-style-full .no_margin.av_one_half.relThumb{display:block;width:100%;clear:both} .responsive .title_container .breadcrumb{left:-2px} .responsive .title_container .main-title + .breadcrumb{position:relative;right:auto;top:-6px;margin:0;left:-2px} .responsive .pagination{padding-left:0;padding-right:0} .responsive #top .av-hide-on-mobile,.responsive #top .av-hide-on-tablet{display:none !important} .responsive #top .av_header_transparency.av_alternate_logo_active .logo a > img{opacity:1} .responsive #top .av_header_transparency .logo img.alternate{display:none} .responsive #top #wrap_all #header{position:relative;width:100%;float:none;height:auto;margin:0 !important;opacity:1;min-height:0} .responsive #top #main{padding-top:0 !important;margin:0} .responsive #top #main .container_wrap:first-child{border-top:none} .responsive.html_header_top.html_logo_center .logo{left:0%;-webkit-transform:translate(0%,0);-ms-transform:translate(0%,0);transform:translate(0%,0);margin:0} .responsive .phone-info{float:none;width:100%;clear:both;text-align:center} .responsive .phone-info span{margin:0;padding:0;border:none} .responsive.html_header_top #header_main .social_bookmarks ,.responsive.html_top_nav_header #top .social_bookmarks{width:auto;margin-top:-16px} .responsive #top .logo{position:static;display:table;height:80px !important;float:none;padding:0;border:none;width:80%} .responsive .logo a{display:table-cell;vertical-align:middle} .responsive .logo img{height:auto !important;width:auto;max-width:100%;display:block;max-height:80px} .responsive #header_main .container{height:auto !important} .responsive #top .header_bg{opacity:1;filter:alpha(opacity=1)} .responsive.social_header .phone-info{text-align:center;float:none;clear:both;margin:0;padding:0} .responsive.social_header .phone-info span{border:none;width:100%;text-align:center;float:none;clear:both;margin:0;padding:0} .responsive #header_meta .social_bookmarks li{border-style:solid;border-width:1px;margin-bottom:-1px;margin-left:-1px} .responsive #top #header_meta .social_bookmarks li:last-child{border-right-style:solid;border-right-width:1px} .responsive #header .sub_menu,.responsive #header_meta .sub_menu>ul{float:none;width:100%;text-align:center;margin:0 auto;position:static} .responsive #header .social_bookmarks{padding-bottom:2px;width:100%;text-align:center;height:auto;line-height:0.8em;margin:0} .responsive #header_meta .sub_menu>ul>li{float:none;display:inline-block;padding:0 10px} .responsive #header .social_bookmarks li{float:none;display:inline-block} .responsive.bottom_nav_header #header_main .social_bookmarks{position:relative;top:0;right:0;margin:10px auto;clear:both} .responsive.bottom_nav_header.social_header .main_menu>div{height:auto} .responsive .logo img{margin:0} .responsive.html_header_sidebar #top #header .social_bookmarks{display:none} .responsive body.boxed#top,.responsive.html_boxed.html_header_sticky #top #header{max-width:100%} .responsive.html_header_transparency #top .avia-builder-el-0 .container,.responsive.html_header_transparency #top .avia-builder-el-0 .slideshow_inner_caption{padding-top:0} .responsive #top .av_phone_active_right .phone-info.with_nav span{border:none} .responsive #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a,.responsive #top #wrap_all .av_header_transparency .sub_menu > ul > li > a,.responsive #top .av_header_transparency #header_main_alternate,.responsive .av_header_transparency #header_main .social_bookmarks li a,.responsive #top #wrap_all .av_header_transparency .phone-info.with_nav span,.responsive #top .av_header_transparency #header_meta,.responsive #top .av_header_transparency #header_meta li,.responsive #top #header_meta .social_bookmarks li a{color:inherit;border-color:inherit;background:inherit} .responsive.html_top_nav_header .av-logo-container{height:auto} .responsive.html_top_nav_header .av-section-bottom-logo{border-bottom-style:solid;border-bottom-width:1px} .responsive .av-burger-menu-main{display:block} .responsive #top #wrap_all .main_menu{top:0;height:80px;left:auto;right:0;display:block;position:absolute} .responsive .main_menu ul:first-child > li a{height:80px;line-height:80px} .responsive #top .av-main-nav .menu-item{display:none} .responsive #top .av-main-nav .menu-item-avia-special{display:block} .responsive #top #wrap_all .menu-item-search-dropdown > a{font-size:24px} .responsive #header_main_alternate{display:none} .responsive #top #header .social_bookmarks{display:none} .responsive #top #header .main_menu .social_bookmarks{display:block;position:relative;margin-top:-15px} .responsive #top .av-logo-container .avia-menu{height:100%} .responsive #top .av-logo-container .avia-menu > li > a{line-height:80px} .responsive #top #main .av-logo-container .main_menu{display:block} .responsive #top #main .av-logo-container .social_bookmarks{display:none} .responsive #top #main .av-logo-container .main_menu .social_bookmarks{display:block;position:relative} .responsive #top #main .av-logo-container .main_menu{display:block} .responsive #top #header_main > .container .main_menu .av-main-nav > li > a,.responsive #top #wrap_all .av-logo-container{height:80px;line-height:80px} .responsive #top #wrap_all .av-logo-container{padding:0} .responsive #top #header_main > .container .main_menu .av-main-nav > li > a{min-width:0;padding:0 0 0 20px;margin:0;border-style:none;border-width:0} .responsive #top .av_seperator_big_border .avia-menu.av_menu_icon_beside{border-right-style:solid;border-right-width:1px;padding-right:25px} .responsive #top #header .av-main-nav > li > a,.responsive #top #header .av-main-nav > li > a:hover{background:transparent;color:inherit} .responsive.html_top_nav_header .av-logo-container .inner-container{overflow:visible} .responsive #top .related_entries_container .av_one_eighth{width:25%} .responsive #top .relThumb5{clear:both} .responsive.html_header_transparency #top .avia-builder-el-0 .container{padding-top:0px} .responsive.html_header_sidebar #header .avia-custom-sidebar-widget-area{display:none} .responsive.html_header_sidebar #main{border:none} .responsive.js_active #top .avia_combo_widget .top_tab .tab{border-top:1px solid;border-bottom:none;width:100%} .responsive.js_active #top .avia_combo_widget .news-wrap li{padding:5px} .tagcloud a{padding:8px 20px;margin:0 8px 8px 0} .widget li{line-height:1.8em;font-size:15px} .responsive #scroll-top-link{display:none} .responsive #socket .sub_menu_socket{display:block;float:none;width:100%;clear:both;margin:0 0 0 -15px} body.responsive.admin-bar .avia-cookiemessage-top,body.responsive.admin-bar .avia-cookiemessage-top-left,body.responsive.admin-bar .avia-cookiemessage-top-right{margin-top:46px} .responsive .avia-cookiemessage-top-left,.responsive .avia-cookiemessage-bottom-left,.responsive .avia-cookiemessage-top-right,.responsive .avia-cookiemessage-bottom-right{width:55%}} @media only screen and (min-width:480px) and (max-width:767px){.responsive #top #wrap_all .grid-sort-container.grid-total-odd .grid-entry.grid-loop-1{width:100%} .responsive #top #wrap_all .grid-sort-container .grid-entry{width:50%;margin-bottom:0} .responsive #top #wrap_all .portfolio-parity-odd{clear:both}} @media only screen and (max-width:479px){.responsive #top .related_entries_container .av_one_eighth{width:50%} .responsive #top .related_entries_container .av_one_eighth:nth-child(odd){clear:both} .responsive.html_header_top #header_main .social_bookmarks,.responsive.html_top_nav_header .social_bookmarks{display:none} .responsive .avia-menu.av_menu_icon_beside{padding:0;margin:0;border:none} .responsive #top #wrap_all #header .social_bookmarks,.responsive #top #wrap_all #main .av-logo-container .social_bookmarks{display:none} .responsive #top .av_seperator_big_border .avia-menu.av_menu_icon_beside{margin-right:0;padding-right:0;border:none} .responsive .avia-cookiemessage-top-left,.responsive .avia-cookiemessage-bottom-left,.responsive .avia-cookiemessage-top-right,.responsive .avia-cookiemessage-bottom-right{width:85% !important;left:7.5% !important;right:7.5% !important}}\";}s:20:\"avia-module-blog-css\";a:6:{s:4:\"name\";s:16:\"avia-module-blog\";s:3:\"url\";s:102:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css\";s:4:\"path\";s:77:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/blog/blog.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:19358:\".template-blog .blog-meta{float:left;margin-right:50px} .multi-big .post_author_timeline ,.single-small .post_author_timeline{position:absolute;top:0;left:40px;width:1px;height:100%;border-right-width:1px;border-right-style:dashed} .single-post .post_author_timeline{display:none} .sidebar_left .template-blog .blog-meta{float:right;margin-left:50px;margin-right:0} .sidebar_left .multi-big .post_author_timeline ,.sidebar_left .single-small .post_author_timeline{left:auto;right:40px} .sidebar_left .big-preview{padding:0 131px 10px 0} div .single-big .pagination{padding:1px 50px 10px 1px} .sidebar_left .author-extra-border{right:auto;left:-50px} #top .fullsize .template-blog .post-title{text-align:center;font-size:30px;padding:15px 0;max-width:800px;margin:0 auto}#top.single-post .fullsize .template-blog .post_delimiter{visibility:hidden}#top .fullsize .template-blog .post-meta-infos{text-align:center}#top .fullsize .template-blog .post .entry-content-wrapper{text-align:justify;font-size:1.15em;line-height:1.7em;max-width:800px;margin:0 auto;overflow:visible}#top .fullsize .template-blog .post .entry-content-wrapper > *{max-width:40em;margin-left:auto;margin-right:auto}#top .fullsize .template-blog .post_delimiter{border-bottom-width:1px;border-bottom-style:solid;width:3000px;left:-1500px;position:relative;max-width:3000px}#top .fullsize .template-blog .post_author_timeline{display:none}#top .fullsize .template-blog .blog-meta{float:none;margin:0 auto;display:block;position:relative;width:81px;overflow:hidden;text-align:center;z-index:1000} #top .av-alb-blogposts.template-blog div.post_delimiter{width:100%;left:0;position:relative} #top .fullsize .related_entries_container img{margin:0 auto}#top .fullsize .related_title{text-align:center}#top .fullsize .related_posts{padding:23px 0 33px 0} #top .fullsize .template-blog .big-preview{padding:0 0 10px 0}#top .fullsize .template-blog .first-quote{margin-top:15px}#top .fullsize .template-blog .big-preview.multi-big{margin-bottom:15px;padding:0;width:100%}#top .fullsize .template-blog .big-preview.multi-big a,.fullsize div .template-blog .big-preview.multi-big a img{width:100%}#top .fullsize .template-blog .big-preview img{width:100%} .fullsize .big-preview .avia-gallery{width:40em;max-width:100%;margin:0 auto} .fullsize .comment_content{padding-right:0}.fullsize .blog-tags{display:block} #top .fullsize .flex_column .template-blog .post-title,#top .fullsize .flex_column .template-blog .post-meta-infos{text-align:left}#top .fullsize .flex_column .big-preview .avia-gallery{width:100%}#top .fullsize .flex_column .template-blog .post .entry-content-wrapper > *{max-width:100%} .html_header_sidebar #top .fullsize .template-blog .multi-big .post-title,.html_header_sidebar #top .fullsize .template-blog .single-big .post-title{max-width:none;text-align:left}.html_header_sidebar #top .fullsize .template-blog .multi-big .post-meta-infos,.html_header_sidebar #top .fullsize .template-blog .single-big .post-meta-infos{text-align:left}.html_header_sidebar #top .fullsize .template-blog .post .entry-content-wrapper{max-width:none}.html_header_sidebar #top .fullsize .template-blog .post .entry-content-wrapper > *{max-width:none} .post-meta-infos{font-size:0.9em;position:relative;top:-8px;display:block} .post-meta-infos a{text-decoration:none}.post-meta-infos a:hover{text-decoration:underline}.text-sep{padding:0 5px}.more-link{clear:both;display:inline-block} .big-preview{display:block;padding:0 50px 10px 131px} .template-page .big-preview{display:block;padding:0 0 10px 131px;text-align:center} .big-preview a{display:block;position:relative;overflow:hidden} .big-preview.single-big{padding:0 50px 10px 0} .entry-content-wrapper .big-preview.single-big{padding:0 0px 10px 0} .fullsize .big-preview.single-big{padding:0 0 10px 0} .post-loop-1 .big-preview{position:relative;z-index:4} .small-preview{width:81px;height:81px;overflow:hidden;border-radius:4px;float:left;margin:6px 0 0 0;position:relative;text-align:center;line-height:81px;position:relative;z-index:4;display:block} .small-preview img,.big-preview img{display:block;border-radius:4px;position:relative;z-index:4;width:100%} .single-post .single-small.with-slider .small-preview{width:180px;height:180px} .single-post .single-small.with-slider .post_author_timeline{display:none}#top.single-post .fullsize .single-small.with-slider .blog-meta{width:180px} .archive .av-content-full > .extra-mini-title{text-align:center}.archive .av-content-full .author-box{text-align:center} .av-content-full > .related_posts{max-width:1200px;margin-left:auto;margin-right:auto;float:none;clear:both}.av-content-full > .comment-entry{max-width:800px;margin-left:auto;margin-right:auto;float:none;clear:both} .template-blog .pagination{padding:1px 50px 10px 24px} .related_posts{position:relative;clear:both;width:100%;float:left;border-top-style:solid;border-top-width:1px;padding:23px 50px 33px 0;margin-bottom:30px}.related_posts:hover{z-index:9999}.related_title{margin-bottom:20px}.related_column{float:left;padding-right:3px}.related_posts img,.related_posts a{display:block;border-radius:2px;overflow:hidden;max-width:100%;margin:0 auto}.related_posts_default_image{border-width:1px;border-style:solid;display:block;float:left;border-radius:2px;min-height:60px;min-width:100%;max-width:100%}.related_posts_default_image img{visibility:hidden}.relThumb{text-align:center}.related_posts .av-related-title{display:none} .related_image_wrap{position:relative;display:block;float:left;width:100%;-webkit-backface-visibility:hidden}.avia-related-tooltip{position:absolute;z-index:9999999;padding:0;width:200px;border-radius:2px;box-shadow:0px 3px 13px 0px rgba(0,0,0,0.1);border-width:1px;border-style:solid;padding:15px;margin-top:-10px} .avia-related-tooltip .avia-arrow-wrap{top:auto;bottom:0;position:absolute;left:50%} .avia-related-tooltip .avia-arrow-wrap .avia-arrow{border-top:none;border-left:none;top:-4px} .related-format-icon{position:absolute;text-align:center;top:1px;left:1px;bottom:1px;right:1px;opacity:0;filter:alpha(opacity=0)}.related-format-icon-inner{position:absolute;height:30px;font-size:30px;line-height:30px;top:50%;margin-top:-15px;left:0;width:100%}.related-format-icon:hover{opacity:0.8;filter:alpha(opacity=80)}.related-format-visible{opacity:0.5 ;filter:alpha(opacity=50)} .sidebar_left .related_posts_sep{right:auto;left:0} .single-big + .related_posts.av-related-style-full{border-top:none;padding-top:0} .related_posts.av-related-style-full a{margin:2px 0;padding:6px;border-radius:3px;display:table;width:100%;text-decoration:none;text-align:left;border:1px solid transparent;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .related_posts.av-related-style-full a:hover{border-width:1px;border-style:solid}.av-related-style-full .related-format-visible{opacity:1 ;filter:alpha(opacity=100)} #top .av-related-style-full .related_column{width:50%}#top .av-related-style-full .relThumb{text-align:left}#top .av-related-style-full .related-format-icon{width:58px;height:58px;bottom:auto;right:auto;border-radius:100px}#top .av-related-style-full .related_image_wrap{display:table-cell;float:none;background-color:transparent}#top .av-related-style-full .related_image_wrap,#top .av-related-style-full .related_image_wrap img,#top .av-related-style-full .related_image_wrap .related_posts_default_image{width:60px;height:60px;border-radius:100px}#top .av-related-style-full .av-related-title{text-decoration:none;display:table-cell;vertical-align:middle;padding:5px 15px;line-height:1.2em}.responsive .av-related-style-full .relThumb1,.responsive .av-related-style-full .relThumb3,.responsive .av-related-style-full .relThumb5{clear:both} .avia-post-format-image img{border-radius:3px}.avia-post-format-image{margin-bottom:10px} .entry-content-wrapper.gallery-content .avia-gallery{margin-bottom:10px} #top #wrap_all .big-preview + .big-preview{position:relative;top:-60px;background:transparent;margin:0 20px -40px 20px;z-index:550;width:auto} #top #wrap_all .big-preview.multi-big + .big-preview.multi-big{margin:0 20px -30px 20px} .flex_column .template-blog .post .entry-content-wrapper{} #top .flex_column .template-blog .post-title{font-size:1.3em} .flex_column .template-blog .post_delimiter{margin:0 0 20px 0;padding:20px 0 0 0} .flex_column .template-blog .single-big .pagination{padding:1px 0 10px 0} .flex_column .template-blog .big-preview.single-big{padding:0 0 10px 0} .flex_column .template-blog .post-meta-infos{margin-bottom:-13px} .html_elegant-blog #top .post-entry .post-title,.html_elegant-blog .avia-content-slider .slide-entry-title{text-align:center;font-size:30px;text-transform:uppercase;padding:0px 0 15px;letter-spacing:2px;line-height:1.3em;margin-bottom:10px} .html_elegant-blog #top .post-entry .post-title:hover,.html_elegant-blog .avia-content-slider .slide-entry-title:hover{opacity:0.7} .html_elegant-blog #top .post-entry .post-meta-infos,.html_elegant-blog .avia-content-slider .slide-meta{display:block;text-align:center;padding:10px 0;border-top-width:1px;border-top-style:solid;border-bottom-width:1px;border-bottom-style:solid;margin-top:40px;width:100%;clear:both;float:left} .html_elegant-blog #top .post-entry .blog-categories{text-align:center;display:block;font-weight:bold;position:relative} .html_elegant-blog #top .post-entry .minor-meta{text-transform:uppercase} .html_elegant-blog .post-entry .post-meta-infos .text-sep,.html_elegant-blog .post-entry .slide-meta .slide-meta-del{border-left-width:1px;border-left-style:solid;padding:0;display:inline-block;margin:0 10px;text-indent:-126px;overflow:hidden;vertical-align:bottom} .html_elegant-blog .av-vertical-delimiter{display:block;margin:0 auto;width:40px;border-top-width:3px;border-top-style:solid;padding-bottom:16px} .html_elegant-blog .entry-content-wrapper .big-preview.single-big{margin-top:20px} .html_elegant-blog .more-link{display:block;text-align:center;margin:30px auto 20px auto;clear:both;width:250px;border:none;border-style:solid;border-width:1px;padding:10px 0;border-radius:2px} .html_elegant-blog .more-link:hover{text-decoration:none} .more-link-arrow:after{content:\"\\E87d\";font-family:\'entypo-fontello\';font-size:10px;vertical-align:middle;padding:0 8px} .html_elegant-blog .more-link-arrow{display:none} .html_elegant-blog .multi-big .post_author_timeline,.html_elegant-blog .single-small .post_author_timeline{border-right-style:solid} .html_elegant-blog .blog-tags.minor-meta,.html_elegant-blog .av-share-link-description,.html_elegant-blog .related_title{display:block;text-align:center} .html_elegant-blog #top .big-preview{padding-left:0;padding-right:0} .html_elegant-blog .avia-content-slider .slide-entry-title{padding-top:15px;font-size:1.4em} .html_elegant-blog #top .avia-content-slider .blog-categories{top:15px} .html_elegant-blog .avia-content-slider .read-more-link{position:relative;top:18px;padding-bottom:10px} .html_elegant-blog .avia-content-slider .av-vertical-delimiter{position:relative;top:-5px} .html_elegant-blog .template-blog .post_delimiter{margin:0 0 20px 0;padding:20px 0 0 0} .html_elegant-blog .av-share-box{margin-bottom:0} .html_elegant-blog .template-author .extra-mini-title{display:none} .html_elegant-blog #top .template-search .post-title{text-align:left} .html_elegant-blog #top .template-search .blog-categories{display:none} .html_elegant-blog #top .template-search .entry-content-wrapper .post-title a:hover{text-decoration:none} .html_elegant-blog #top .template-search .post-entry .post-meta-infos{margin-top:-20px;text-align:left;border:none} .html_modern-blog #top .post-entry .post-title,.html_modern-blog .avia-content-slider .slide-entry-title{font-size:2em;text-align:left;letter-spacing:1px} .html_modern-blog #top .post-entry .blog-categories{text-align:left;font-weight:normal;font-size:0.8em;top:-25px} .html_modern-blog .av-vertical-delimiter{margin:0} .html_modern-blog #top .post-entry .post-meta-infos,.html_modern-blog .avia-content-slider .slide-meta{text-align:left;border:none;margin-top:15px;font-size:0.9em} .html_modern-blog .av-vertical-delimiter{display:none} .html_modern-blog .post-entry .post-meta-infos .text-sep,.html_modern-blog .post-entry .slide-meta .slide-meta-del{border:none;text-indent:0;opacity:0.3} .html_modern-blog .more-link{margin:30px 0 20px 0;display:inline;border:none;position:relative;top:-0.3em} .html_modern-blog .more-link .more-link-arrow{display:inline} .html_modern-blog .blog-tags.minor-meta,.html_modern-blog .av-share-link-description,.html_modern-blog .related_title{text-align:left} .html_modern-blog #top .template-page .big-preview{margin-top:0} #top .av-blog-meta-author-disabled .minor-meta.blog-author{display:none}#top .av-blog-meta-comments-disabled .minor-meta.comment-container,#top .av-blog-meta-comments-disabled .text-sep-comment{display:none}#top .av-blog-meta-category-disabled .minor-meta.blog-categories,#top .av-blog-meta-category-disabled .text-sep-cat{display:none} #top .av-blog-meta-date-disabled .minor-meta.date-container,#top .av-blog-meta-date-disabled .text-sep-date{display:none} #top .av-blog-meta-html-info-disabled .form-allowed-tags{display:none}#top .av-blog-meta-tag-disabled .blog-tags{display:none} #top .fullsize .template-blog.av_force_fullwidth.template-blog .post .entry-content-wrapper > *,#top .fullsize .template-blog.av_force_fullwidth .post .entry-content-wrapper{max-width:100%} #top .fullsize .template-blog.av_force_fullwidth .post-title{max-width:100%;padding-top:0;padding-bottom:0} .bloglist-simple .read-more-link{display:block;position:absolute;right:50px;top:50%;transform:translateY(-50%)} .av_force_fullwidth .bloglist-simple .read-more-link{right:0} .bloglist-simple .more-link{padding:0;margin:0;font-size:0;line-height:0;top:auto;width:30px;height:30px;display:block;border-width:2px;border-style:solid;border-radius:100%;text-decoration:none} .bloglist-simple .more-link:hover{text-decoration:none} .bloglist-simple .more-link-arrow{width:100%;height:100%;display:block} .bloglist-simple .more-link-arrow:after{font-size:10px;line-height:26px;display:block;padding:0;text-align:center} .bloglist-simple .read-more-link:hover{opacity:1} .template-blog .bloglist-simple .post_delimiter{border-bottom:1px solid rgba(0,0,0,0.15);margin:0;padding:0;clear:both} #top .fullsize .template-blog .bloglist-simple:last-of-type .post_delimiter{border-bottom-width:0} .bloglist-simple.post-entry{float:none} .bloglist-simple .entry-content-header{padding:25px 60px 25px 0} .av_force_fullwidth .bloglist-simple .entry-content-header{padding:25px 0 25px 0} #top .fullsize .template-blog .bloglist-simple .post-title,.bloglist-simple .entry-content-wrapper .post-title{font-size:17px;margin-bottom:0.1em;text-align:left} #top .fullsize .template-blog .bloglist-simple .post-meta-infos,.bloglist-simple .post-meta-infos{top:auto;position:static;text-align:left;margin-bottom:0} .bloglist-simple .pagination{padding:20px 50px 10px 0} .av_force_fullwidth .bloglist-simple .pagination{padding-right:0} @media only screen and (max-width:767px){.bloglist-simple .read-more-link{right:0}} .html_elegant-blog #top .bloglist-simple .entry-content-header{padding:0} .html_elegant-blog #top .bloglist-simple.post-entry{padding-top:20px;padding-bottom:20px} .html_elegant-blog #top .bloglist-simple.post-entry .post-title,.html_elegant-blog .avia-content-slider .bloglist-simple .slide-entry-title{text-align:left;font-size:26px;margin-bottom:0} .html_elegant-blog #top .bloglist-simple.post-entry .blog-categories{text-align:left} .html_elegant-blog #top .bloglist-simple.post-entry .post-meta-infos,.html_elegant-blog .avia-content-slider .bloglist-simple .slide-meta{text-align:left;margin-top:0;padding-right:60px;position:relative} .html_elegant-blog .template-blog .bloglist-simple .post_delimiter{margin:0;padding:0} .html_elegant-blog .read-more-link{right:0} .html_elegant-blog .template-blog .bloglist-simple .post_delimiter{display:none} .html_modern-blog #top .post-entry.bloglist-simple{border-bottom-width:1px;border-bottom-style:solid} .html_modern-blog #top .post-entry.bloglist-simple .blog-categories{top:auto;font-size:0.9em} .html_modern-blog #top .bloglist-simple.post-entry .post-meta-infos,.html_modern-blog .avia-content-slider .bloglist-simple .slide-meta{font-size:0.8em;padding-bottom:0} .bloglist-compact.post-entry{border-bottom-width:1px;border-bottom-style:dashed;padding:15px 0;float:none} .bloglist-compact.post-entry:last-of-type{border-bottom-width:0} .main_color .bloglist-compact .fallback-post-type-icon{position:relative;top:auto;left:auto;margin:0 0.5em 0 0 ;background:transparent;color:inherit;line-height:normal;font-size:1.3em;text-align:center;height:auto} #top .fullsize .template-blog .bloglist-compact .post-title,.bloglist-compact .post-title{display:inline;font-size:1em;font-weight:normal} .bloglist-compact .post_delimiter{display:none} .bloglist-compact .pagination{margin-top:2em;padding:20px 50px 10px 0} .av_force_fullwidth .bloglist-compact .pagination{padding-right:0} .html_elegant-blog #top .post-entry.bloglist-compact .post-title,.html_elegant-blog .avia-content-slider .bloglist-compact .slide-entry-title{display:inline;font-size:1em} .bloglist-excerpt .read-more-link{text-align:right;position:relative;margin-top:40px} .bloglist-excerpt .read-more-link:after{content:\"\";height:1px;border-top-style:solid;border-top-width:1px;border-color:inherit;display:block;width:100%;left:0;top:50%;position:absolute;z-index:1} .bloglist-excerpt .more-link{display:inline-block;border-width:1px;border-style:solid;border-radius:100px;padding:0 20px;text-transform:uppercase;font-size:0.8em;font-weight:bold;position:relative;z-index:2;background-color:#ffffff;color:inherit;line-height:2.1em;font-size:0.75em} .bloglist-excerpt .more-link:hover{text-decoration:none} .bloglist-excerpt .more-link-arrow{display:none} .template-blog .bloglist-excerpt .post_delimiter{margin:0 0 20px 0;padding:20px 0 0 0;border-color:transparent} .bloglist-excerpt .pagination{padding:20px 50px 10px 0} .av_force_fullwidth .bloglist-excerpt .pagination{padding-right:0} #top .fullsize .template-blog .bloglist-excerpt .post-title,.bloglist-excerpt .post-title{text-align:left} #top .fullsize .template-blog .bloglist-excerpt .post-meta-infos{text-align:left;margin-bottom:0;top:auto} #top .fullsize .template-blog .bloglist-excerpt .post_delimiter{border-bottom-width:0} .html_elegant-blog #top .bloglist-excerpt.post-entry .post-title,.html_elegant-blog .avia-content-slider .bloglist-excerpt .slide-entry-title{text-align:left;margin-bottom:0;font-size:26px} .html_elegant-blog #top .bloglist-excerpt.post-entry .post-meta-infos,.html_elegant-blog .avia-content-slider .bloglist-excerpt .slide-meta{text-align:left;margin-top:1em;margin-bottom:1em} .html_elegant-blog .bloglist-excerpt .more-link{margin:0;border-color:inherit;color:inherit} .html_elegant-blog .bloglist-excerpt .more-link:hover{color:initial} .html_modern-blog #top .bloglist-excerpt.post-entry .post-meta-infos,.html_modern-blog .avia-content-slider .bloglist-excerpt .slide-meta{text-align:left;margin:0} .html_modern-blog .bloglist-excerpt .more-link .more-link-arrow{display:none} @media only screen and (max-width:767px){.responsive #top .template-page .big-preview.multi-big{padding:0 0 10px 0}}\";}s:26:\"avia-module-postslider-css\";a:6:{s:4:\"name\";s:22:\"avia-module-postslider\";s:3:\"url\";s:114:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css\";s:4:\"path\";s:89:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/postslider/postslider.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3128:\".avia-content-slider{margin:30px 0;clear:both}.avia-content-slider,.avia-content-slider-inner{position:relative;overflow:hidden;clear:both}.avia-content-slider .slide-entry-title{font-size:1.1em;line-height:1.4em;margin:0}.avia-content-slider .slide-image,.avia-content-slider .slide-image img{border-radius:3px;display:block;position:relative;-webkit-perspective:1000px;-webkit-backface-visibility:hidden;margin:0 auto}.avia-content-slider .slide-image{overflow:hidden;margin-bottom:6px;border-radius:3px}.avia-content-slider .slide-entry-excerpt{overflow:hidden;text-overflow:ellipsis} .avia-content-slider .slide-entry-wrap{width:100%;float:left;margin-bottom:40px}.avia-content-slider-active .slide-entry-wrap{position:absolute;top:0;visibility:hidden;margin:0}.avia-content-slider .slide-entry-wrap:first-child{position:relative}.avia-content-slider .slide-meta div,.avia-content-slider .slide-meta time{display:inline-block;font-size:0.9em}.avia-content-slider .slide-meta a{position:relative}.avia-content-slider .slide-meta{position:relative;padding-bottom:10px}.avia-content-slider .slide-meta-del{margin:0px 4px}.avia-content-slider.avia-builder-el-no-sibling{margin:0} .slider-fallback-image{visibility:hidden}.avia-content-slider .fake-thumbnail .slide-image{border-width:1px;border-style:solid;-webkit-perspective:1000px;-webkit-backface-visibility:hidden;min-height:70px}.fallback-post-type-icon{position:absolute;top:49%;left:50%;margin:-28px 0 0 -30px;height:60px;width:60px;line-height:59px;font-size:25px;text-align:center;border-radius:100px}.avia-content-slider .slide-image:hover .fallback-post-type-icon{opacity:0}.pagination-slider .pagination{padding:1px 0 10px 0} .avia_desktop .avia-content-slider .avia-slideshow-arrows a{opacity:0}#top .avia-content-slider:hover .avia-slideshow-arrows a{opacity:1} #top .avia-content-slider .avia-slideshow-arrows a{top:38%;margin:-30px 0 0} #top .avia-content-slider,#top .avia-content-slider-inner,#top .avia-content-slider-inner .slide-entry-wrap{-webkit-transform-style:flat;-webkit-backface-visibility:hidden} #top #wrap_all .avia-content-slider .audio-preview{margin-top:-36px;margin-bottom:-4px} #top .avia-content-slider .audio-preview .mejs-volume-button,#top .avia-content-slider .audio-preview .mejs-time{display:none} #top #wrap_all .mejs-controls a.mejs-horizontal-volume-slider{width:60px} .avia-safari .avia-content-slider,.avia-safari .avia-content-slider-inner,.avia-safari .avia-content-slider-inner .slide-entry-wrap{-webkit-perspective:0 !important} @media only screen and (max-width:767px){.responsive #top #wrap_all .slide-entry{width:48%;margin-left:4%} .responsive #top #wrap_all .avia-content-slider-even .slide-entry.slide-parity-odd,.responsive #top #wrap_all .avia-content-slider-odd .slide-entry.slide-parity-even{margin:0;clear:both} .responsive #top #wrap_all .avia-content-slider-odd .slide-entry.first{margin-left:0;width:100%} .responsive avia-content-slider .slide-image img{width:100%}} @media only screen and (max-width:479px){.responsive #top #wrap_all .avia-content-slider-odd .slide-entry{margin-left:0;clear:both;width:100%}}\";}s:22:\"avia-module-button-css\";a:6:{s:4:\"name\";s:18:\"avia-module-button\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons/buttons.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:4029:\".avia-button-wrap{display:inline-block} .avia-button{color:#777;border-color:#e1e1e1;background-color:#f8f8f8} body div .avia-button{border-radius:3px;padding:10px;font-size:12px;text-decoration:none;display:inline-block;border-bottom-style:solid;border-bottom-width:1px;margin:3px 0;line-height:1.2em;position:relative;font-weight:normal;text-align:center;max-width:100%} .avia-button:hover{opacity:0.9}.avia-button:active{border-bottom-width:0px;border-top-width:1px !important;border-top-style:solid}.avia-button.avia-color-theme-color-subtle{background-image:none}.avia-button.avia-color-theme-color-subtle:hover{} .avia-button .avia_button_icon{position:relative;left:-0.3em;-webkit-perspective:1000px;-webkit-backface-visibility:hidden}.avia-button .avia_button_icon.avia_button_icon_right{left:0.3em}.avia-button.avia-icon_select-no .avia_button_icon{display:none} .avia-button.avia-color-grey,.avia-button.avia-color-grey:hover{background-color:#555;border-color:#333333;color:#fff}.avia-button.avia-color-black,.avia-button.avia-color-black:hover{background-color:#2c2c2c;border-color:#000;color:#fff}.avia-button.avia-color-red,.avia-button.avia-color-red:hover{background-color:#B02B2C;border-color:#8B2121;color:#fff}.avia-button.avia-color-orange,.avia-button.avia-color-orange:hover{background-color:#edae44;border-color:#CA9336;color:#fff}.avia-button.avia-color-green,.avia-button.avia-color-green:hover{background-color:#83a846;border-color:#6F8F3B;color:#fff}.avia-button.avia-color-blue,.avia-button.avia-color-blue:hover{background-color:#7bb0e7;border-color:#6693C2;color:#fff}.avia-button.avia-color-aqua,.avia-button.avia-color-aqua:hover{background-color:#4ecac2;border-color:#3EAAA3;color:#fff}.avia-button.avia-color-teal,.avia-button.avia-color-teal:hover{background-color:#5f8789;border-color:#3F5E5F;color:#fff}.avia-button.avia-color-purple,.avia-button.avia-color-purple:hover{background-color:#745f7e;border-color:#514358;color:#fff}.avia-button.avia-color-pink,.avia-button.avia-color-pink:hover{background-color:#d65799;border-color:#BB4B85;color:#fff}.avia-button.avia-color-silver,.avia-button.avia-color-silver:hover{background-color:#DADADA;border-color:#B4B4B4;color:#555} #top .avia-button.avia-color-light{color:#fff;border:3px solid #fff;background:transparent}#top .avia-button.avia-color-dark{color:#000;border:3px solid #000;color:rgba(0,0,0,0.6);border-color:rgba(0,0,0,0.6);background:transparent}.avia-button.avia-color-light:hover{opacity:0.7;color:#fff}.avia-button.avia-color-dark:hover{opacity:0.7;color:#000;color:rgba(0,0,0,0.6)} .avia-button.avia-color-theme-color-subtle{border-width:1px;border-style:solid} .avia-button-center{display:block;text-align:center;clear:both}.avia-button-right{display:block;float:right}.avia-button.avia-position-right{float:right;display:block}.avia-button.avia-position-left{float:left;display:block} .avia-button.avia-size-small{padding:9px 10px 7px;font-size:13px;min-width:80px} .avia-button.avia-size-medium{padding:12px 16px 10px;font-size:13px;min-width:90px} .avia-button.avia-size-large{padding:15px 30px 13px;font-size:13px;min-width:139px} .avia-button.avia-size-x-large{padding:25px 50px 23px;font-size:15px;min-width:200px} .av-icon-on-hover .avia_button_icon{width:0px;overflow:hidden;display:inline-block;height:1em;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;opacity:0}.av-icon-on-hover:hover .avia_button_icon{width:1.5em;opacity:1} #top .av-button-notext{min-width:0}#top .av-button-notext .avia_button_icon{left:0} .av-button-label-on-hover{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box} .av-button-label-on-hover.avia-button.avia-size-small{padding:0;line-height:30px;width:32px}.av-button-label-on-hover.avia-button.avia-size-medium{padding:0;line-height:36px;width:38px}.av-button-label-on-hover.avia-button.avia-size-large{padding:0;line-height:42px;width:44px}.av-button-label-on-hover.avia-button.avia-size-x-large{padding:0;line-height:66px;width:68px}\";}s:32:\"avia-module-button-fullwidth-css\";a:6:{s:4:\"name\";s:28:\"avia-module-button-fullwidth\";s:3:\"url\";s:128:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css\";s:4:\"path\";s:103:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttons_fullwidth/buttons_fullwidth.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1074:\"#top .avia-button-fullwidth{width:100%;padding:20px;font-size:1.5em;margin:0;border:none;position:relative;display:block}#top .avia-button-fullwidth .avia-button-fullwidth{font-size:1em}#top .avia-button-fullwidth .av-button-description{font-size:0.8em;position:relative;z-index:3;opacity:0.7}#top .avia-button-fullwidth .av-button-description-above p:first-child{margin-top:0}#top .avia-button-fullwidth .av-button-description-below p:last-child{margin-bottom:0} #top .avia-button-fullwidth:hover{opacity:1}#top .avia-button-fullwidth .avia_button_icon,#top .avia-button-fullwidth .avia_iconbox_title{position:relative;z-index:3;-webkit-perspective:1000px;-webkit-backface-visibility:hidden} #top .avia_button_background{opacity:0;position:absolute;top:0;left:0;bottom:0;right:0;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out} #top .avia-button-fullwidth:hover .avia_button_background{opacity:1} #top .av-fullscreen-button .avia-button-fullwidth{border-radius:0;padding:50px 10px}.avia-safari .avia-button-fullwidth{-webkit-transform:translateZ(0)}\";}s:25:\"avia-module-catalogue-css\";a:6:{s:4:\"name\";s:21:\"avia-module-catalogue\";s:3:\"url\";s:112:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css\";s:4:\"path\";s:87:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/catalogue/catalogue.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1032:\".av-catalogue-container{margin:30px 0}.av-catalogue-heading{text-align:center;padding-bottom:15px;font-weight:normal;letter-spacing:1px}.av-catalogue-list{border-top:1px dashed;margin:0}.av-catalogue-list li{list-style-type:none;margin:0;border-bottom:1px dashed;padding:0;clear:both}#top .av-catalogue-item{text-decoration:none;padding:10px 5px;display:block;overflow:hidden}div.av-catalogue-item:hover{cursor:default}.av-catalogue-title-container{position:relative;font-size:1.3em;line-height:1.4em}.av-catalogue-title{padding-right:60px;text-transform:uppercase}.av-catalogue-price{position:absolute;right:0;top:0} .av-catalogue-content{padding-right:60px;font-size:1.1em}.av-catalogue-content p:first-child{margin-top:0}.av-catalogue-content p:last-child{margin-bottom:0}.av-catalogue-list .added_to_cart.wc-forward{display:none} .av-catalogue-image{border-radius:400px;width:44px;float:left;margin-right:15px}.av-catalogue-image-no{display:none}.av-catalogue-item-inner{overflow:hidden}.av-catalogue-container-woo{margin-top:0}\";}s:24:\"avia-module-comments-css\";a:6:{s:4:\"name\";s:20:\"avia-module-comments\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/comments/comments.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:4658:\"h4#comments{margin-bottom:30px} #respond{margin-top:20px} .commentlist ul{border-left-style:dashed;border-left-width:1px} .children .children .says{border-bottom-style:dashed;border-bottom-width:1px} .miniheading,.author_name,#reply-title,#top .logged-in-as,.dynamic-column-title{font-weight:600;letter-spacing:1px} #comments span,.minitext,.form-allowed-tags,#reply-title small,#commentform label{font-size:0.85em;display:block;letter-spacing:0;text-transform:none;padding-top:8px;line-height:1.5em;font-weight:normal} .comment_meta_container{clear:both;float:none} #top .commentlist{margin:0;padding:0 0 10px 0px;border:none} #top .commentlist .comment{list-style-type:none;list-style-position:outside;width:100%;position:relative;display:block;background:none;min-height:100px;clear:both} #top .commentlist .comment.depth-1{float:left} #top .commentlist .comment>div{min-height:100px;float:left;width:100%} .commentlist>.comment{border-bottom-style:dashed;border-bottom-width:1px;margin-bottom:30px} .gravatar{position:relative;z-index:2;border-radius:200px;overflow:hidden;float:left} .gravatar img{padding:0;margin:0;display:block;border-radius:200px} .comment_content{position:relative;margin:0 0 0 85px;padding:0 35px 15px 0;z-index:10;overflow:hidden} .author_name a,.author_name a:hover{font-weight:bold;text-decoration:none} .comment-edit-link,#cancel-comment-reply-link{display:inline-block;font-size:10px} .author_name,.comment_title{font-family:\"Helvetica Neue\",Helvetica,Arial,sans-serif} .commentmetadata{font-size:11px;line-height:1em} .commentmetadata a{text-decoration:none} .commentmetadata a:hover{text-decoration:underline} .says{display:block;height:1px;left:-70px;position:absolute;text-indent:200%;top:18px;width:40px;overflow:hidden} #top .comment_text{clear:both;font-size:13px;padding:0 0 15px 0;border:none} #top .comment-reply-link{font-size:11px;text-decoration:none;line-height:20px} .side-container-comment-inner{text-align:center;position:relative;overflow:hidden;margin-bottom:15px} .comment-count{font-size:24px;line-height:60px;width:60px;display:block;text-align:center;border-radius:200px;margin:0 auto;position:relative;z-index:100} .side-container-comment-inner .comment-text{font-size:12px;text-transform:uppercase} .center-border{position:absolute;top:39%;width:42%;border-top-style:solid;border-top-width:1px;z-index:1}.center-border-left{left:0}.center-border-right{right:0} #top .commentlist ul{margin:0 0 0 74px;clear:both} #top .commentlist .children ul{margin:0 0 0 47px} .children .comment_content{margin:0 0 0 28px;padding-bottom:30px;z-index:1} .children .gravatar{position:relative;left:-24px;z-index:2;width:45px} #top .children .comment-reply-link{left:-42px;top:51px} .comment_page_nav_links{position:relative;display:block;clear:both;overflow:hidden;font-size:11px} .comment_prev_page a{float:left} .comment_next_page a{float:right} .comment_page_nav_links_bottom{} .comment_page_nav_links_top{} .sidebar_right .comment_container{padding-right:50px} .sidebar_left .comment_container{margin-left:0} .comment_container{max-width:100%} #commentform{position:relative}#commentform p{position:relative;padding:0 0 10px 0;margin:0} #reply-title small a{float:right} #commentform label{position:absolute;left:245px;font-size:11px;top:0;font-weight:bold} #commentform input[type=\'checkbox\'] + label{left:2.5em} #commentform div input{margin:0} .commentlist #commentform label{position:static;display:block} .comment-notes,#commentform .comment-form-comment label{display:none} #top .comment-form-url input,#top .comment-form-email input,#top .comment-form-author input{width:220px} #top .commentlist .comment-form-url input,#top .commentlist .comment-form-email input,#top .commentlist .comment-form-author input{width:70%} #comment{width:602px;height:150px;padding:10px 7px;font-size:12px;margin:0} .form-allowed-tags{font-size:11px;line-height:1.5em;margin-bottom:5px} .form-allowed-tags code{display:block;padding-top:5px} .commentlist #respond{padding:0 0 30px 56px} .commentlist #respond #comment{width:90%} .commentlist #respond .form-allowed-tags{display:none} #reply-title{display:none}#reply-title small{display:inline}.commentlist #reply-title{display:block} #comment{width:94%;font-size:12px} .personal_data p{float:left;width:33%} .personal_data label{display:none} .template-blog .post .entry-content-wrapper{overflow:hidden} .template-blog .post_delimiter{margin:0 0 50px 0;padding:50px 0 0 0;clear:both} .template-blog .post-entry-last .post_delimiter{border:none;height:1px} .av-buildercomment .av-buildercomment-unapproved{padding:30px 0 15px;text-align:center;font-size:1.4em;font-weight:500}\";}s:23:\"avia-module-contact-css\";a:6:{s:4:\"name\";s:19:\"avia-module-contact\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:11453:\".avia_ajax_form{clear:both} .avia_ajax_form fieldset p br{display:none}.avia_ajax_form label{display:block;visibility:visible;position:relative} .avia_ajax_form label,.modified_width:before{display:block;visibility:visible;position:relative;margin-bottom:7px;font-weight:600} #ajaxresponse.hidden{visibility:visible;position:static;display:none} #top .avia_ajax_form .text_input,#top .avia_ajax_form .select,#top .avia_ajax_form .text_area{width:100%;margin-bottom:0;display:inline;min-width:50px;padding:13px;border-radius:2px} #top .avia_ajax_form .select[multiple] option{padding:5px} #top .avia_ajax_form input[type=\"checkbox\"]{float:left;margin-right:8px;top:2px;position:relative} #top .avia_ajax_form input[type=\'submit\'].avia-button-default-style{background-color:#9a9a9a;border-color:#737373;pointer-events:none;opacity:0;animation:all 0.7s} #top .avia_ajax_form.av-form-input-visible input[type=\'submit\'].avia-button-default-style{opacity:1;animation:all 0.7s} .value_verifier_label{position:absolute;bottom:11px;left:10px;font-size:13px;line-height:21px} .avia_ajax_form.av-form-labels-hidden label{position:fixed;top:-1000px;left:-2000px} .avia_ajax_form.av-form-labels-hidden label.input_checkbox_label{position:initial;top:initial;left:initial} .avia_ajax_form p{position:relative;clear:both;float:left;width:100%;margin:11px 0}.avia_ajax_form.av-form-labels-hidden p{margin-top:8px;margin-bottom:8px}.avia_ajax_form p.hidden{position:absolute;width:0px;left:0;top:0}.avia_ajax_form .form_element_half{width:49.5%;float:left;margin-left:1%;clear:none}.avia_ajax_form .form_element_third{width:32.6%;float:left;margin-left:1%;clear:none}.avia_ajax_form .form_element_two_third{width:66.4%;float:left;margin-left:1%;clear:none}.avia_ajax_form .form_element_fourth{width:24.2%;float:left;margin-left:1%;clear:none}.avia_ajax_form .form_element_three_fourth{width:74.8%;float:left;margin-left:1%;clear:none} .avia_ajax_form .first_form{clear:both;margin-left:0} .avia_ajax_form .button{margin:0;padding:16px 20px;border-radius:2px;border-bottom-width:1px;border-bottom-style:solid;font-weight:normal;font-size:0.92em;min-width:142px;outline:none} .modified_width .button{width:100%;padding:13px 10px 14px;min-width:0} .av-form-labels-visible .modified_width:before{display:block;content:\"Submit Form\";visibility:hidden} .av-form-labels-visible .av-last-visible-form-element.first_form.modified_width:before{display:none} #footer .avia_ajax_form textarea{height:90px} .avia_ajax_form p input,.avia_ajax_form p textarea,.avia_ajax_form p select,.avia_ajax_form p .input_checkbox_label{-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} #top .button.av-sending-button{-webkit-transition:none;transition:none;background-size:32px 32px;-webkit-animation:avia-bg-move 1.2s linear infinite;animation:avia-bg-move 1.2s linear infinite} .av-centered-form,#top .av-centered-form input{text-align:center} #top .av-centered-form ::-webkit-input-placeholder{text-align:center}#top .av-centered-form ::-moz-placeholder{text-align:center}#top .av-centered-form :-ms-input-placeholder{text-align:center} #top .avia_ajax_form input.captcha,#top .av-centered-form input.captcha{text-align:left;padding-left:70px} .avia_ajax_form .av-hidden-submit{display:none} .avia-form-success{text-align:center;border-style:solid;border-width:1px;padding:20px 15px;line-height:1.4em;border-radius:2px;clear:both} .avia-form-error{text-align:center;border-style:solid;border-width:1px;padding:20px 15px;line-height:1.4em;border-radius:2px;clear:both;font-weight:bold} #top .av-centered-form input[type=\"checkbox\"]{float:none}#top .av-centered-form .input_checkbox_label{display:inline-block} .avia_ajax_form .required{text-decoration:none} #top .avia-datepicker-div{background:#fff;border:1px solid #e1e1e1;font-size:15px}#top .avia-datepicker-div a{color:#333;background-color:#f8f8f8;background-image:none}#top .avia-datepicker-div a.ui-state-active{color:#8bba34}#top .avia-datepicker-div a.ui-state-highlight{color:#8bba34}#top .avia-datepicker-div a.ui-state-hover{color:#FFF;background-color:#bbb}#top .avia-datepicker-div .ui-datepicker-buttonpane button{background-color:#8BBA34;color:#FFF;border-color:#8BBA34} #top .avia-datepicker-div.ui-datepicker{width:300px;padding:20px;display:none;box-shadow:0px 0px 44px 0px rgba(0,0,0,0.2);border-radius:0}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-header{position:relative;padding:.2em 0;background:transparent;border:none}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-prev,#top .avia-datepicker-div.ui-datepicker .ui-datepicker-next{position:absolute;top:4px;width:50px;text-align:center;line-height:34px;height:34px;cursor:pointer;border-radius:0;text-decoration:none;font-size:12px}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-prev{left:2px}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-next{right:2px}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-title{margin:0px 53px;line-height:32px;text-align:center;font-weight:bold;letter-spacing:1.5px;text-transform:uppercase} #top .ui-datepicker-title select{width:72px;float:left;font-size:12px;margin-left:3px;margin-bottom:0;border-radius:0px} #top .avia-datepicker-div.ui-datepicker .ui-datepicker-title select{font-size:14px;margin:1px}#top .avia-datepicker-div.ui-datepicker select.ui-datepicker-month-year{width:100%}#top .avia-datepicker-div.ui-datepicker select.ui-datepicker-month,#top .avia-datepicker-div.ui-datepicker select.ui-datepicker-year{width:48%}#top .avia-datepicker-div.ui-datepicker select.ui-datepicker-year{float:right}#top .avia-datepicker-div.ui-datepicker table{width:100%;font-size:.9em;border-collapse:collapse;margin:0 0 .4em}#top .avia-datepicker-div.ui-datepicker th{padding:.7em .3em;text-align:center;font-weight:bold;border:0}#top .avia-datepicker-div.ui-datepicker td{border:0;padding:1px}#top .avia-datepicker-div.ui-datepicker td span,#top .avia-datepicker-div.ui-datepicker td a{border:none;display:block;padding:.2em;text-align:center;text-decoration:none}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-buttonpane{background-image:none;margin:.7em 0 0 0;padding:0 .2em;border-left:0;border-right:0;border-bottom:0}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-buttonpane button{float:right;margin:.5em 0 .4em;cursor:pointer;padding:10px 20px;width:auto;overflow:visible;border:none;background-image:none;border-radius:3px;font-size:13px}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current{float:left}#top .avia-datepicker-div .ui-widget-content{background:transparent;border:none}#top .avia-datepicker-div.ui-datepicker .ui-datepicker-prev span,#top .avia-datepicker-div.ui-datepicker .ui-datepicker-next span{text-indent:0;overflow:visible;background-image:none;display:inline;position:static;margin:0;font-weight:normal} .avia-datepicker-div.ui-datepicker-rtl{direction:rtl}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-prev{right:2px;left:auto}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-next{left:2px;right:auto}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-prev:hover{right:1px;left:auto}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-next:hover{left:1px;right:auto}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-buttonpane{clear:right}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-buttonpane button{float:left}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-buttonpane button.ui-datepicker-current{float:right}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-group{float:right}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-group-last .ui-datepicker-header{border-right-width:0;border-left-width:1px}.avia-datepicker-div.ui-datepicker-rtl .ui-datepicker-group-middle .ui-datepicker-header{border-right-width:0;border-left-width:1px} #top .av-custom-form-color *{color:inherit}#top .av-custom-form-color a{text-decoration:underline}#top .av-custom-form-color ::-webkit-input-placeholder{color:inherit;opacity:0.8}#top .av-custom-form-color ::-moz-placeholder{color:inherit;opacity:0.8}#top .av-custom-form-color :-ms-input-placeholder{color:inherit;opacity:0.8}#top .av-custom-form-color .button{border:2px solid}#top .av-custom-form-color .button:hover{} #top .av-light-form,#top .av-light-form + .ajaxresponse *{color:#fff}#top .av-light-form + .ajaxresponse .avia-form-success{background:transparent} #top div .av-light-form .input-text,#top div .av-light-form input[type=\'text\'],#top div .av-light-form input[type=\'input\'],#top div .av-light-form input[type=\'password\'],#top div .av-light-form input[type=\'email\'],#top div .av-light-form input[type=\'number\'],#top div .av-light-form input[type=\'url\'],#top div .av-light-form input[type=\'tel\'],#top div .av-light-form input[type=\'search\'],#top div .av-light-form textarea,#top div .av-light-form select,div div .av-light-form .button{color:#fff;border-color:#fff;border-width:2px !important;background-color:transparent} #top .av-dark-form,#top .av-dark-form + .ajaxresponse *{color:#222}#top .av-dark-form + .ajaxresponse .avia-form-success{background:transparent} #top div .av-dark-form .input-text,#top div .av-dark-form input[type=\'text\'],#top div .av-dark-form input[type=\'input\'],#top div .av-dark-form input[type=\'password\'],#top div .av-dark-form input[type=\'email\'],#top div .av-dark-form input[type=\'number\'],#top div .av-dark-form input[type=\'url\'],#top div .av-dark-form input[type=\'tel\'],#top div .av-dark-form input[type=\'search\'],#top div .av-dark-form textarea,#top div .av-dark-form select,div div .av-dark-form .button{color:#222;border-color:#222;border-width:2px !important;background-color:transparent} #top .avia_ajax_form .av-recaptcha-area{display:block} #top .avia_ajax_form .av-recaptcha-submit.avia_button_inactive,#top .avia_ajax_form .av-recaptcha-submit-real.avia_button_inactive{opacity:0.3}#top .avia_ajax_form .av-recaptcha-submit.avia_button_inactive:hover,#top .avia_ajax_form .av-recaptcha-submit-real.avia_button_inactive:hover{cursor:default} #top .avia_ajax_form .av-recaptcha-error{display:inline-block;width:100%} #top .avia_ajax_form .av-recaptcha-error.av-recaptcha-severe-error{background-color:red;color:white;border-radius:8px;padding:10px;text-align:center} #top .avia_ajax_form .av-recaptcha-error.av-recaptcha-severe-error .av-recaptcha-error-main{color:white;font-weight:900 !important} #top .avia_ajax_form .av-recaptcha-error.av-err-content{margin:5px 0;color:#fe6d4e;background-color:#FFF;font-weight:700;display:block;clear:both} #top .avia_ajax_form.avia_recaptcha_v3 .av_form_privacy_check{margin-top:-15px} body .grecaptcha-badge{z-index:9000} body.av-google-badge-hide .grecaptcha-badge{visibility:hidden} body.av-google-badge-visible #scroll-top-link{bottom:80px} #top .avia_ajax_form .av-google-badge-message{padding:12px 0 0 0;min-width:300px;max-width:100%;font-size:0.8em;line-height:1.3em} #top .avia_ajax_form.av-centered-form .av-google-badge-message{text-align:center;width:100%;max-width:100%;float:left} #top .avia_ajax_form .avia-disabled-form{padding:15px 15px;font-size:1.5em;font-weight:900;display:none} #top .avia_ajax_form.av-form-user-disabled .avia-disabled-form{display:block} #top .avia_ajax_form.av-centered-form .avia-disabled-form{text-align:center} @media only screen and (max-width:479px){.responsive .avia_ajax_form .form_element{width:100%;clear:both;margin-right:0;margin-left:0;float:none}}\";}s:25:\"avia-module-slideshow-css\";a:6:{s:4:\"name\";s:21:\"avia-module-slideshow\";s:3:\"url\";s:112:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css\";s:4:\"path\";s:87:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:10202:\".avia-slideshow{position:relative;margin:50px 0;width:100%;clear:both;overflow:hidden}.flex_column .avia-slideshow{margin:20px 0}.flex_column .avia-slideshow.avia-builder-el-no-sibling{margin-top:0px} .avia-slideshow-inner{padding:0;margin:0;position:relative;overflow:hidden;width:100%}#top .av-default-height-applied .avia-slideshow-inner{height:0px}.avia-slideshow li{padding:0;margin:0;list-style-type:none;list-style-position:outside;position:absolute;visibility:hidden;z-index:1;top:0;left:0;width:100%;clear:both;opacity:0;overflow:hidden}.avia-slideshow li:first-child{position:relative;visibility:visible;z-index:3}.avia-slideshow li img{display:block;width:100%;margin:0 auto;border-radius:3px;position:relative}.flex_cell_inner .avia-slideshow li img{border-radius:0}.avia-slideshow.image_no_stretch li img{width:auto}.avia-slideshow li>p{margin:0} .avia-slideshow-carousel{overflow:hidden}.avia-slideshow-carousel ul{transition:all 0.7s cubic-bezier(0.230,1.000,0.320,1.000);white-space:nowrap}.avia-slideshow-carousel ul *{white-space:normal}.avia-slideshow-carousel li{position:relative;visibility:visible;opacity:1;vertical-align:top} #top .avia-slideshow-arrows a{display:block;text-decoration:none;color:#fff;visibility:visible;position:absolute;width:60px;text-align:center;height:60px;line-height:62px;font-size:25px;top:50%;margin:-30px 15px 0;z-index:99;overflow:hidden;text-indent:-600%} #top .avia-slideshow-arrows a.next-slide{right:0} .avia-slideshow-arrows a:before{visibility:visible;display:block;position:absolute;z-index:100;background:#aaa;background:rgba(0,0,0,0.3);top:0;left:0;right:0;bottom:0;border-radius:3px;text-align:center;line-height:62px;color:inherit} .prev-slide:before{text-indent:-2px;border-top-right-radius:3px;border-bottom-right-radius:3px}.next-slide:before{border-top-left-radius:3px;border-bottom-left-radius:3px;text-indent:0px} .avia-slideshow-dots{position:absolute;z-index:200;width:100%;bottom:0;text-align:center;left:0;height:0px}.avia-slideshow-dots a{display:inline-block;height:13.5px;width:13.5px;border-radius:14px;background:#000;opacity:0.6;filter:alpha(opacity=60);text-indent:100px;overflow:hidden;margin:0 1px;padding:7px;position:relative;bottom:33px;-webkit-backface-visibility:hidden}.avia-slideshow-dots a.active,.avia-slideshow-dots a:hover{opacity:0.8;filter:alpha(opacity=80);background:#fff} .avia-caption{position:absolute;z-index:10;bottom:17px;left:17px;padding:10px 20px;color:#fff;border-radius:3px}.avia-slideshow .avia-caption .avia-caption-title{color:#fff} .js_active .avia-slideshow li:first-child{visibility:hidden}.js_active .avia-slideshow-carousel li:first-child{visibility:visible} .avia_desktop .av_slideshow.avia-slideshow .avia-slideshow-controls a{opacity:0;filter:alpha(opacity=0)}.avia_desktop .av_slideshow.avia-slideshow:hover .avia-slideshow-controls a{opacity:0.6;filter:alpha(opacity=60)}.avia_desktop .av_slideshow.avia-slideshow:hover .avia-slideshow-controls a:hover{opacity:0.8;filter:alpha(opacity=80)} #top .av-control-hidden .avia-slideshow-controls{display:none}#top .av-control-minimal .avia-slideshow-arrows a:before{border:2px solid #fff;background:transparent;line-height:60px}#top .av-control-minimal .avia-slideshow-dots a{border:2px solid #fff;background:transparent;padding:5px}#top .av-control-minimal .avia-slideshow-dots a.active{background:#fff} #top .av-control-minimal-dark .avia-slideshow-arrows a{color:#000}#top .av-control-minimal-dark .avia-slideshow-arrows a:before{border-color:#000}#top .av-control-minimal-dark .avia-slideshow-dots a{border-color:#000}#top .av-control-minimal-dark .avia-slideshow-dots a.active{background:#000} #top .scroll-down-link.av-control-minimal-dark{color:#000}#top .scroll-down-link.av-custom-scroll-down-color{text-shadow:none} #top .avia-small-width-slider .avia-slideshow-arrows a{width:30px;height:30px;margin:-15px 5px 0;line-height:32px;font-size:15px} #top .avia-small-width-slider .avia-slideshow-arrows a:before{line-height:32px} #top .avia-super-small-width-slider .avia-slideshow-dots{display:none} #top .av-video-slide ,#top .av-video-slide .avia-slide-wrap{width:100%;height:100%;position:absolute;overflow:hidden}#top .av-video-slide .mejs-poster{width:100% !important;height:100% !important;background-size:cover;background-position:center center}#top .av-video-slide .mejs-poster img{display:none}#top .av-video-slide .avia-iframe-wrap{padding:0;height:100%;margin:0}#top .av-video-slide iframe,#top .av-video-slide embed,#top .av-video-slide object,#top .av-video-slide video{max-width:none;max-height:none;width:100%;height:100%;position:absolute}#top .av-video-slide .caption_fullwidth{top:0;left:0;right:0;bottom:40px}#top .av-video-slide.av-hide-video-controls .caption_fullwidth{bottom:0px}#top .av-video-slide .mejs-container{height:100% !important;width:100% !important;position:absolute}#top .av-video-slide .me-plugin{width:100%;height:100%}span.mejs-offscreen{display:none!important} #top .avia-fullscreen-slider .av-video-slide.av-video-service-vimeo iframe{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)} .avia_video{z-index:8}.mejs-controls{z-index:9}#top .av-video-slide.av-video-service-vimeo .mejs-controls,.av-force-resize .av-video-service-youtube .avia_video,.av-hide-video-controls .mejs-controls{display:none !important} .av-video-slide.slide-1 .mejs-mediaelement{opacity:0}.av-video-slide .mejs-mediaelement{height:100%}#top .av-video-slide .mejs-overlay-button{display:none}#top .av-video-slide .avia-slide-wrap,#top .av-video-slide iframe{background:#000} #top .av-video-slide.av-video-4-3-stretch iframe,#top .av-video-slide.av-video-4-3-stretch embed,#top .av-video-slide.av-video-4-3-stretch object,#top .av-video-slide.av-video-4-3-stretch video{height:270%} #top .av-section-with-video-bg .av-section-video-bg:after,.av-click-overlay{content:\".\";position:absolute;text-indent:-200px;overflow:hidden;top:0;left:0;right:0;bottom:0;z-index:11;filter:alpha(opacity=0);opacity:0;background:#000} .av-click-overlay{z-index:9;bottom:30px} .av-hide-video-controls .av-click-overlay{bottom:0}.av-video-service-vimeo .av-click-overlay{bottom:42px}.av-video-service-youtube .av-click-overlay{bottom:36px} .av-video-stretch.av-video-service-vimeo .av-click-overlay,.av-video-stretch.av-video-service-youtube .av-click-overlay{bottom:0} .avia_playpause_icon{position:absolute;height:100px;width:100px;margin:-50px 0 0 -50px;background:#000;background:rgba(0,0,0,0.4);border-radius:3px;top:50%;left:50%;z-index:50;display:none;-webkit-transform:scale(0.7);-ms-transform:scale(0.7);transform:scale(0.7)} .avia_playpause_icon.av-play,.avia_playpause_icon.av-pause{display:block !important} #top .avia_playpause_icon:before{top:0;left:0;right:0;bottom:0;position:absolute;color:#fff;line-height:100px;text-align:center;font-size:40px} .avia_transform .avia_playpause_icon.av-play,.avia_transform .avia_playpause_icon.av-pause{-webkit-animation:avia_appear_short 1.7s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_appear_short 1.7s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:0} .avia_playpause_icon.av-pause{} .av-fallback-message{text-align:center;position:absolute;z-index:1000;top:45%;width:100%;left:0}.av-fallback-message span{display:inline-block;border:1px solid #e1e1e1;padding:10px;background:#fff} .caption_fullwidth{position:absolute;right:0;bottom:0;left:0;top:0;z-index:10} .slideshow_caption{z-index:100;width:42%;position:absolute;bottom:0;top:auto;height:100%;display:block;text-decoration:none;padding:50px} div .slideshow_caption h2{text-transform:uppercase}div .slideshow_caption,div .slideshow_caption a,div .slideshow_caption a:hover,div .slideshow_caption h2,div .slideshow_caption h2 .special_amp,div .slideshow_caption strong ,div .slideshow_caption h2 strong{color:#fff} .slideshow_inner_caption{position:relative;display:table;height:100%;width:100%} .slideshow_align_caption{display:table-cell;vertical-align:middle;position:relative} .avia-caption-content{line-height:1.3em}.avia-caption-content p{margin:15px 0} .caption_framed .slideshow_caption .avia-caption-content p,.caption_framed .slideshow_caption .avia-caption-title,.avia-caption .avia-caption-content p,.avia-caption .avia-caption-title{background:#000;filter:alpha(opacity = 80);background:rgba(0,0,0,0.5);display:inline-block;margin:0 0 1px 0;padding:10px 15px} #top .avia-caption-content .wp-smiley{display:none}#top .avia-caption-content a{text-decoration:underline}#top .avia-caption-content a:hover{text-decoration:none} .avia_transform .av_slideshow_full .avia-caption-title{} .caption_left .slideshow_caption{left:0}.caption_right .slideshow_caption{right:0}.caption_right .slideshow_caption .slideshow_inner_caption{float:right}.caption_bottom .slideshow_caption{left:0;width:100%;bottom:0;height:auto}#top div .caption_center .slideshow_caption{left:0;width:100%;text-align:center} .caption_bottom .slideshow_caption .slideshow_inner_caption{display:block;height:auto;bottom:0;position:absolute;padding:0 50px;width:100%;left:0} .caption_bottom .slideshow_caption .slideshow_inner_caption .slideshow_align_caption{padding:20px 0;display:block} #top .avia-slideshow-button{border-radius:3px;text-transform:uppercase;padding:15px 16px;display:inline-block;margin-top:20px;text-decoration:none;font-weight:bold} #top .avia-slideshow-button.avia-color-light{padding:12px 16px;background-color:rgba(0,0,0,0.2)}#top .avia-slideshow-button.avia-color-dark{padding:12px 16px;background-color:rgba(255,255,255,0.1)} .avia-multi-slideshow-button{min-width:140px}.avia-multi-slideshow-button.avia-slideshow-button{margin-right:20px}.avia-multi-slideshow-button.avia-slideshow-button-2{margin-right:0px} #top .av-video-slide .avia-slide-wrap{background-position:center center;background-size:cover} #top .av-video-lazyload .av-click-to-play-overlay{position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer;z-index:1000} #top .av-video-lazyload .av-click-to-play-overlay .avia_playpause_icon{display:block;-webkit-transition:opacity 0.4s ease-out;transition:opacity 0.4s ease-out} #top .av-video-lazyload .av-click-to-play-overlay:hover .avia_playpause_icon{opacity:0.7}\";}s:40:\"avia-module-slideshow-contentpartner-css\";a:6:{s:4:\"name\";s:36:\"avia-module-slideshow-contentpartner\";s:3:\"url\";s:120:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css\";s:4:\"path\";s:95:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contentslider/contentslider.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2166:\"#top .avia-smallarrow-slider{position:relative;overflow:visible}#top .avia-smallarrow-slider .avia-slideshow-arrows{position:relative;width:51px;top:-3px;left:0;height:24px}#top .avia-smallarrow-slider .avia-slideshow-arrows a{opacity:1;margin:0;width:24px;height:24px;line-height:25px;font-size:10px;top:0}#top .avia-smallarrow-slider .avia-slideshow-arrows a:hover{opacity:0.5}#top .avia-smallarrow-slider .avia-slideshow-arrows a:before{line-height:25px;border-radius:1px}#top .avia-smallarrow-slider .slide-image,#top .avia-logo-element-container img{margin:0 auto;display:block;width:auto;width:100%\\9}#top .avia-smallarrow-slider-heading{display:table;width:100%}#top .avia-smallarrow-slider-heading> div{display:table-cell}#top .avia-smallarrow-slider-heading h3{top:-3px;position:relative}#top .avia-logo-grid .slide-entry-wrap{margin:0}#top .avia-smallarrow-slider .avia-slideshow-dots{position:relative;width:100%;left:0;bottom:0;margin-top:10px}#top .avia-smallarrow-slider .avia-slideshow-dots a{border-style:solid;border-width:1px;bottom:0}#top .avia-smallarrow-slider .avia-slideshow-dots a.active,#top .avia-logo-element-container .avia-slideshow-dots a:hover{background:#aaa} #top .avia-content-slider-element-container .avia-slideshow-dots{left:0;text-align:right;width:auto} #top .avia-logo-element-container .slide-entry{padding:1px}#top .avia-logo-element-container img,.av-partner-fake-img{box-shadow:0px 0px 2px rgba(0,0,0,0.3)}#top .av-border-deactivate.avia-logo-element-container img,.av-border-deactivate .av-partner-fake-img{box-shadow:none}#top .avia-logo-element-container .slide-image{overflow:visible}.av-partner-fake-img{width:100%;display:block;position:relative;background-size:contain;background-repeat:no-repeat} @media only screen and (max-width:767px){.responsive #top .avia-smallarrow-slider .flex_column{margin:0px;width:50%}} @media only screen and (max-width:479px){.responsive #top #wrap_all .avia-logo-element-container.avia-logo-grid .flex_column{margin:0}} #top .avia-content-slider-element-container .avia-slideshow-dots a.active,#top .avia-content-slider-element-container .avia-slideshow-dots a:hover{background:#aaa}\";}s:25:\"avia-module-countdown-css\";a:6:{s:4:\"name\";s:21:\"avia-module-countdown\";s:3:\"url\";s:112:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css\";s:4:\"path\";s:87:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1670:\".av-countdown-timer{clear:both;position:relative;opacity:0;margin:30px 0}.av-countdown-timer-inner{display:table;width:100%;table-layout:fixed}.av-countdown-timer-inner:hover{text-decoration:none}.av-countdown-cell{display:table-cell}.av-countdown-cell-inner{display:block;margin:1px 1px 0 0;padding:20px}.av-countdown-time{display:block;font-size:40px;line-height:1em;font-weight:100;color:inherit;text-decoration:none}.av-countdown-time-label{display:block;text-transform:uppercase;color:inherit;overflow:hidden;text-overflow:ellipsis;-moz-hyphens:inherit;line-height:1.65em}.av-countdown-timer-title{display:block;font-size:30px;line-height:1.3em;margin:0 0 15px 0;text-decoration:none;position:relative}.av-countdown-timer-title:hover{text-decoration:none}.av-countdown-timer-title-bottom{margin:15px 0 0 0}.av-countdown-active.av-countdown-timer{opacity:1} #top .av-default-style .av-countdown-cell-inner{border-style:solid;border-width:1px;margin:2px}#top .av-trans-light-style .av-countdown-cell-inner{color:#fff;background:transparent;border:3px solid #fff;margin:2px}#top .av-trans-dark-style .av-countdown-cell-inner{color:#000;background:transparent;border:3px solid #000;margin:2px} #top .av-trans-light-style .av-countdown-timer-title{color:#fff}#top .av-trans-dark-style .av-countdown-timer-title{color:#000} #av-admin-preview .av-countdown-timer{opacity:1} @media only screen and (max-width:989px){.responsive .av-countdown-cell-inner{padding:10px 10px}} @media only screen and (max-width:767px){.responsive .av-countdown-cell-inner{padding:12px 7px} .responsive .av-countdown-time{font-size:30px !important} .av-countdown-time-label{text-transform:none}}\";}s:23:\"avia-module-gallery-css\";a:6:{s:4:\"name\";s:19:\"avia-module-gallery\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1898:\"#top div .avia-gallery{overflow:hidden;padding-bottom:2px;clear:both}#top div .avia-gallery img{float:left;border-style:solid;border-width:1px;padding:7px;width:100%;border-radius:0}#top div .avia-gallery .avia-gallery-big{display:block;overflow:hidden;padding:7px;margin-bottom:-1px;border-top-left-radius:2px;border-top-right-radius:2px;border-style:solid;border-width:1px}#top div .avia-gallery .avia-gallery-big-inner{display:block;overflow:hidden;height:100%}#top div .avia-gallery .avia-gallery-big img{padding:0;border:none}#top .avia-gallery .avia-gallery-thumb a{width:20%;opacity:1}#top #wrap_all .avia-gallery .avia-gallery-thumb a{display:block;float:left}#top .avia-gallery .avia-gallery-thumb a:hover{opacity:0.5}#top .avia-gallery .avia-gallery-caption{display:none}#top div .avia-gallery .avia-gallery-big-no-crop-thumb{text-align:center}#top div .avia-gallery .avia-gallery-big-no-crop-thumb img{clear:both;float:none;text-align:center} .avia_transform .avia-gallery-animate .avia-gallery-thumb img{opacity:0.1;-webkit-transform:scale(0.5);transform:scale(0.5)}.avia_transform .avia-gallery-animate .avia-gallery-thumb img.avia_start_animation{-webkit-animation:avia_appear 0.9s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_appear 0.9s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1;-webkit-transform:scale(1);transform:scale(1)} .avia-gallery-animate .av-hover-grow{overflow:hidden}.avia-gallery-animate .av-hover-grow img{-webkit-transition:all 1.7s cubic-bezier(0.230,1.000,0.320,1.000);transition:all 1.7s cubic-bezier(0.230,1.000,0.320,1.000)}.avia-gallery-animate .av-hover-grow:hover img{-webkit-transform:scale(1.1);transform:scale(1.1)} .av-hide-gallery-thumbs .avia-gallery-thumb{display:none} #top #av-admin-preview .avia-gallery .avia-gallery-big-inner{height:auto} @media only screen and (max-width:767px){.responsive .avia-gallery-thumb img{padding:3px}}\";}s:27:\"avia-module-gallery-hor-css\";a:6:{s:4:\"name\";s:23:\"avia-module-gallery-hor\";s:3:\"url\";s:130:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css\";s:4:\"path\";s:105:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3158:\".av-horizontal-gallery{clear:both;position:relative;z-index:1;overflow:hidden} .av-horizontal-gallery-inner{position:relative;white-space:nowrap;opacity:0} .av-horizontal-gallery-slider{left:0;position:absolute;height:100%;width:100%} .av-horizontal-gallery-wrap{height:100%;top:0;display:inline-block;position:relative;z-index:1;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer;vertical-align:top} .av-horizontal-gallery-animated .av-horizontal-gallery-inner{-webkit-transition:opacity 0.4s ease-in-out;transition:opacity 0.4s ease-in-out;opacity:1} .av-horizontal-gallery-animated .av-horizontal-gallery-slider{-webkit-transition:left 0.4s ease-in-out;transition:left 0.4s ease-in-out} .av-horizontal-gallery-animated .av-horizontal-gallery-wrap{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out} .av-horizontal-gallery-wrap:after{height:100%;width:100%;position:absolute;content:\"\";top:0;left:0;z-index:5} .av-horizontal-gallery-enlarge-effect.av-horizontal-gallery{padding:60px 0} .av-horizontal-gallery-enlarge-effect .av-horizontal-gallery-wrap.av-active-gal-item{z-index:2;-webkit-transform:scale(1.3);-ms-transform:scale(1.3);transform:scale(1.3)} .av-horizontal-gallery-wrap:first-child{transform-origin:0% 50%} .av-horizontal-gallery-wrap:last-child{transform-origin:100% 50%} .av-horizontal-gallery-wrap.av-active-gal-item:after{display:none} .av-horizontal-gallery-link{position:absolute;opacity:0;bottom:10px;right:10px;-webkit-transition:opacity 0.4s ease-in-out;transition:opacity 0.4s ease-in-out;z-index:100} .av-horizontal-gallery-wrap:hover .av-horizontal-gallery-link{opacity:1} .av-horizontal-gallery-img{height:100%;width:auto;display:block} .av-horizontal-gallery-large-gap .av-horizontal-gallery-wrap{margin-right:15px} .av-horizontal-gallery-1px-gap .av-horizontal-gallery-wrap{margin-right:1px} #top .av-horizontal-gallery-link{color:#fff;background:rgba(0,0,0,0.3);display:block;line-height:24px;width:24px;text-align:center;border-radius:3px;text-decoration:none;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out} #top .av-horizontal-gallery-link:hover{-webkit-transform:scale(1.3);-ms-transform:scale(1.3);transform:scale(1.3)} .av-horizontal-gallery .avia-slideshow-controls a{opacity:0}.av-horizontal-gallery:hover .avia-slideshow-controls a{opacity:1} @media only screen and (max-width:767px){.responsive #top .avia-slideshow-controls a{display:none} .responsive #top .av-horizontal-gallery .avia-slideshow-controls a{display:block} .responsive .av-horizontal-gallery-inner{position:static;min-height:180px} .responsive .av-horizontal-gallery-enlarge-effect .av-horizontal-gallery-wrap.av-active-gal-item{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)} .responsive .av-horizontal-gallery-wrap{max-width:85vw;margin:0;overflow:hidden} .responsive .av-horizontal-gallery-img{height:auto;width:100%;-webkit-transform:translate(0,-50%);-ms-transform:translate(0,-50%);transform:translate(0,-50%);top:50%;position:relative} .responsive .av-horizontal-gallery-fullwidth .av-horizontal-gallery-wrap{max-width:100vw}}\";}s:20:\"avia-module-maps-css\";a:6:{s:4:\"name\";s:16:\"avia-module-maps\";s:3:\"url\";s:116:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css\";s:4:\"path\";s:91:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/google_maps/google_maps.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1529:\".avia-google-maps-section{border:none} .avia-google-maps-section.avia-builder-el-0{border-top-style:solid;border-top-width:1px} .avia-google-map-container{position:relative;clear:both} .avia-google-map-container img{max-width:none} .avia-google-map-container div,.avia-google-map-container img,.avia-google-map-container a{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} .avia-google-map-container .gm-style-iw p{color:#444} .av_gmaps_sc_main_wrap .avia-google-map-container.avia-google-map-sc{background:no-repeat center;background-size:cover} .av_gmaps_sc_main_wrap .av_text_confirm_link{padding:25px;text-align:center;opacity:0;position:absolute;width:150px;left:50%;top:50%;margin-left:-75px;margin-top:-50px;background:rgba(0,0,0,0.7);border-radius:3px;color:#fff;font-size:1em;line-height:1.3em;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;text-decoration:none} .av_gmaps_sc_main_wrap .av_text_confirm_link:hover{color:#fff;background:rgba(0,0,0,0.9)} .av_gmaps_sc_main_wrap .av_gmaps_show_delayed.av-no-fallback-img .av_text_confirm_link,.av_gmaps_sc_main_wrap .av_gmaps_show_page_only.av-no-fallback-img .av_text_confirm_link{height:auto;opacity:1} .av_gmaps_sc_main_wrap .av_text_confirm_link span{width:100%} .av_gmaps_sc_main_wrap:hover .av_text_confirm_link{opacity:1;text-decoration:none} #top .av_gmaps_browser_disabled,#top .av-maps-user-disabled .av_text_confirm_link{display:none} #top .av-maps-user-disabled .av_gmaps_browser_disabled{display:block}\";}s:23:\"avia-module-gridrow-css\";a:6:{s:4:\"name\";s:19:\"avia-module-gridrow\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/grid_row/grid_row.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:814:\".av-layout-grid-container{width:100%;table-layout:fixed;display:table;border-top-style:none;border-top-width:0px} .flex_cell{display:table-cell;padding:30px;vertical-align:top} .flex_cell_inner{display:block;position:relative} .av-border-top-bottom{border-top-style:solid;border-top-width:1px;border-bottom-style:solid;border-bottom-width:1px} .av-border-cells .flex_cell{border-left-style:solid;border-left-width:1px} .av-border-cells .flex_cell:first-child{border:none} .av-layout-grid-container + .av-layout-grid-container{border-top:none} .av-zero-padding .av-hotspot-container-inner-wrap img{border-radius:0} body .flex_cell.avia-link-column{cursor:pointer} body .flex_cell.avia-link-column.avia-link-column-hover:hover{opacity:0.8} .av-layout-grid-container .flex_cell.av_one_full.av-cell-link{display:block}\";}s:23:\"avia-module-heading-css\";a:6:{s:4:\"name\";s:19:\"avia-module-heading\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/heading/heading.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2652:\".av-special-heading{width:100%;clear:both;display:block;margin-top:50px;position:relative} .avia_mobile .av-special-heading{-webkit-perspective:1000px;-webkit-backface-visibility:hidden} .av-special-heading.avia-builder-el-no-sibling{margin-top:0px;margin-bottom:0px} .flex_column + .av-special-heading{float:left} body .av-special-heading .av-special-heading-tag{padding:0;margin:0;float:left} .meta-heading .av-special-heading-tag{font-weight:normal} .custom-color-heading .av-special-heading-tag{color:inherit} .special-heading-border{position:relative;overflow:hidden} .av-special-heading-h1 .special-heading-border{height:3.4em}.av-special-heading-h2 .special-heading-border{height:2.6em}.av-special-heading-h3 .special-heading-border{height:1.9em}.av-special-heading-h4 .special-heading-border{height:1.6em}.av-special-heading-h5 .special-heading-border{height:1.5em}.av-special-heading-h6 .special-heading-border{height:1.4em} .special-heading-inner-border{display:block;width:100%;margin-left:15px;border-top-style:solid;border-top-width:1px;position:relative;top:50%;opacity:0.15;filter:alpha(opacity=15)} .meta-heading .special-heading-inner-border{opacity:0.2;filter:alpha(opacity=20)}.custom-color-heading .special-heading-inner-border{opacity:0.4;filter:alpha(opacity=40)}#top #wrap_all .custom-color-heading .av-special-heading-tag,#top .custom-color-heading a,#top .custom-color-heading strong,#top .custom-color-heading .special_amp{color:inherit}#top .custom-color-heading a{text-decoration:underline}#top .custom-color-heading a:hover{opacity:0.8;text-decoration:none} #top #wrap_all .av-inherit-size .av-special-heading-tag{font-size:1em}.av-thin-font .av-special-heading-tag,.modern-quote .av-special-heading-tag{font-weight:300}.av-thin-font strong,.modern-quote strong{font-weight:600} body .av-special-heading.modern-centered{text-align:center} body .av-special-heading.blockquote > *{white-space:normal;float:none} .av-special-heading.classic-quote{text-align:center} body .av-special-heading.classic-quote > *{display:block;font-family:\"Droid Serif\",Georgia,Times,serif;font-weight:normal;font-style:italic;float:none} body .av-special-heading.blockquote .special-heading-border{display:none} #top .av-special-heading.av-linked-heading a:hover{opacity:0.5} .av-subheading{font-size:15px;line-height:1.3em}.av-subheading p:first-child{margin-top:0}.av-subheading p:last-child{margin-bottom:0}.av-subheading_below{margin-top:0.3em}.av-subheading_above{margin-bottom:0.3em}.av-subheading.av_custom_color{opacity:0.8}@media only screen and (max-width:767px){#top #wrap_all .av-inherit-size .av-special-heading-tag{font-size:0.8em}}\";}s:23:\"avia-module-rotator-css\";a:6:{s:4:\"name\";s:19:\"avia-module-rotator\";s:3:\"url\";s:126:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css\";s:4:\"path\";s:101:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1437:\"#top .av-rotator-container{position:relative}#top .av-rotator-container-inner{position:relative;line-height:1.1em;margin:0;font-weight:300;text-transform:none;color:inherit;font-size:inherit}#top p.av-rotator-container .av-rotator-container-inner{line-height:1.1em}.av-rotator-text,.av-rotator-text-single{position:relative;display:inline} .av-rotator-text-single{display:none;top:0}.av-rotator-text-single:first-child{display:inline-block}.av-typewriter .av-rotator-text-single:first-child{display:inline} #top .av-rotator-container a:hover{text-decoration:underline}.av-fixed-rotator-width .av-rotator-text{text-align:left;display:inline-block}.av-typewriter .av-rotator-text{display:inline}.av-rotator-multiline-on.av-rotator-text{display:block}.av-rotation-container-center .av-rotator-multiline-on.av-rotator-text{display:block;margin:0 auto;text-align:center} .av-caret .av-rotator-text-single:after{border-right-width:1px;border-right-style:solid;border-color:currentColor;content:\"\"} .av-blinking-caret .av-rotator-text-single:after{-webkit-animation:blink-caret 1s step-end infinite;animation:blink-caret 1s step-end infinite} .av-marked-text .av-rotator-text-single{color:#fff !important} @media only screen and (max-width:767px){.responsive.no-preview #top .av-rotator-container-inner{font-size:0.7em}} @-webkit-keyframes blink-caret{from,to{opacity:0} 50%{opacity:1}} @keyframes blink-caret{from,to{opacity:0} 50%{opacity:1}}\";}s:18:\"avia-module-hr-css\";a:6:{s:4:\"name\";s:14:\"avia-module-hr\";s:3:\"url\";s:98:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css\";s:4:\"path\";s:73:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/hr/hr.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1786:\".hr{clear:both;display:block;width:100%;height:25px;line-height:25px;position:relative;margin:30px 0;float:left} .hr-inner{width:100%;position:absolute;height:1px;left:0;top:50%;width:100%;margin-top:-1px;border-top-width:1px;border-top-style:solid} #top .hr-invisible,.hr-invisible .hr-inner{margin:0;border:none} .hr-invisible{float:none} .hr-full,.hr-big{margin:70px 0}.hr-full .hr-inner{width:300%;left:-100%}.hr-full.hr-shadow .hr-inner{box-shadow:0 1px 2px 0px rgba(0,0,0,0.1)}.sidebar_right .hr-full .hr-inner{left:auto;right:-50px}.sidebar_left .hr-full .hr-inner{left:-50px} .hr-short{height:20px;line-height:20px;margin:30px 0;float:none}.hr-short .hr-inner{width:32%;left:50%;margin-left:-16%}.hr-short.hr-left .hr-inner{left:0%;margin-left:0%}.hr-short.hr-right .hr-inner{left:auto;right:0;margin-left:0%}.hr-short .hr-inner-style{border-radius:20px;height:9px;width:9px;border-width:2px;border-style:solid;display:block;position:absolute;left:50%;margin-left:-5px;margin-top:-5px}.hr-short.hr-left .hr-inner-style{left:5px}.hr-short.hr-right .hr-inner-style{left:auto;right:0} body .container_wrap .hr.avia-builder-el-last,body .container_wrap .hr.avia-builder-el-first{margin:30px 0} .hr-custom{margin:0;display:block;min-height:21px;height:auto;overflow:hidden;white-space:nowrap;width:100%;float:left}.hr-custom .hr-inner{display:inline-block;position:relative;vertical-align:middle}.hr-custom.hr-center{text-align:center}.hr-custom.hr-right{text-align:right}.hr-custom.hr-left{text-align:left} .hr-custom .hr-inner.inner-border-av-border-none{border:none}.hr-custom .hr-inner.inner-border-av-border-fat{border-top-width:2px}.av-seperator-icon{display:inline-block;vertical-align:middle;font-size:15px}.hr-custom.hr-icon-yes .hr-inner{margin-left:10px;margin-right:10px}\";}s:20:\"avia-module-icon-css\";a:6:{s:4:\"name\";s:16:\"avia-module-icon\";s:3:\"url\";s:102:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css\";s:4:\"path\";s:77:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icon/icon.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1851:\"#top .av_font_icon a{color:inherit;display:block}.av_font_icon a:hover,.av_font_icon a:focus{text-decoration:none}.av_font_icon{display:block;text-align:center}.avia-icon-pos-left{float:left;margin-right:0.5em}.avia-icon-pos-right{float:right;margin-left:0.5em} #top .avia-icon-tooltip{width:250px;font-size:15px;line-height:1.6em} .av_font_icon.av-icon-style-border .av-icon-char{-webkit-backface-visibility:hidden} .av_font_icon.av-icon-style-border .av-icon-char{-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;border-radius:1000px;border-width:3px;border-style:solid;display:block;margin:0 auto;padding:30px;color:inherit;border-color:inherit;position:relative;clear:both} .av_icon_caption{font-size:16px;text-transform:uppercase;line-height:1.3em;display:block;text-align:center;margin-top:8px;font-weight:400} .av_font_icon.av-icon-style-border .av-icon-char:after{pointer-events:none;position:absolute;width:100%;height:100%;border-radius:50%;content:\'\';-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;top:0;left:0;padding:0;z-index:-1;box-shadow:0 0 0 2px rgba(255,255,255,0.1);opacity:0;-webkit-transform:scale(0.9);-ms-transform:scale(0.9);transform:scale(0.9);-webkit-transform-style:preserve-3d} .av_font_icon.av-icon-style-border a.av-icon-char:hover:after{-webkit-animation:sonarEffect 1s ease-out ;animation:sonarEffect 1s ease-out } .avia_transform .av_font_icon.avia-icon-animate{opacity:0.1;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)} .avia_transform .avia_start_delayed_animation.av_font_icon.avia-icon-animate{-webkit-animation:avia_appear 0.7s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_appear 0.7s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}\";}s:23:\"avia-module-iconbox-css\";a:6:{s:4:\"name\";s:19:\"avia-module-iconbox\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconbox/iconbox.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2515:\"#top .iconbox{background:transparent} .iconbox{margin-bottom:30px;position:relative;clear:both} .iconbox_icon{float:left;margin:2px 10px 0 0;height:23px;width:23px;font-size:23px;line-height:18px;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} a.iconbox_icon:hover{text-decoration:none} .iconbox_left .iconbox_icon{border-radius:50px;text-align:center;position:relative;top:-7px;left:-5px;height:30px;width:30px;line-height:30px;margin:2px 0px 0 0} .iconbox .iconbox_content .iconbox_content_title{border:medium none;padding:2px 0 0 0;position:relative;margin:0 0 16px 0;clear:none;letter-spacing:1px;text-transform:uppercase;font-size:1.25em} #top .iconbox_top{margin-top:20px;text-align:center} .iconbox_top .iconbox_content{padding:45px 20px 20px 20px;border-radius:3px;box-shadow:0px 0px 1px 0px rgba(0,0,0,0.3)} .iconbox_top .iconbox_icon{float:none;position:absolute;left:50%;top:-26px;margin:0 0 0 -26px;padding:15px;border-radius:100px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;font-size:20px;line-height:24px} .iconbox_left_content .iconbox_content,.iconbox_right_content .iconbox_content{overflow:hidden}.iconbox_left_content .iconbox_content .iconbox_content_title,.iconbox_right_content .iconbox_content .iconbox_content_title{margin:0 0 -3px 0} #top .iconbox_left_content .iconbox_icon,#top .iconbox_right_content .iconbox_icon{width:74px;height:74px;font-size:27px;line-height:72px;border-style:solid;border-width:1px;border-radius:500px;text-align:center;margin-right:22px} #top .iconbox_right_content{text-align:right}#top .iconbox_right_content .iconbox_icon{float:right;margin-right:0;margin-left:22px} .iconbox .iconbox_content p:last-child{margin-bottom:0} #top .iconbox.av-no-box .iconbox_content{padding:0;border:none;box-shadow:none;background:transparent}#top .iconbox.av-no-box .iconbox_icon{position:relative;top:0;margin:0 auto 20px auto;left:0;width:90px;height:90px;line-height:90px;border-style:solid;border-width:1px;padding:0;font-size:30px;display:block} #top .iconbox_left_content.av-icon-style-no-border .iconbox_icon,#top .iconbox_right_content.av-icon-style-no-border .iconbox_icon{border:none;height:50px;width:50px;line-height:50px;margin-top:0;font-size:50px} #top .iconbox_content_container{line-height:1.65em} @media only screen and (min-width:768px) and (max-width:989px){#top .iconbox_left_content .iconbox_icon,#top .iconbox_right_content .iconbox_icon{margin-bottom:15px;float:none;display:inline-block}}\";}s:24:\"avia-module-iconlist-css\";a:6:{s:4:\"name\";s:20:\"avia-module-iconlist\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3019:\".avia-icon-list-container{margin:30px 0;clear:both}.avia-icon-list{margin:0;padding:0}.avia-icon-list li{margin:0;padding:0 0 30px 0;list-style-type:none;list-style-position:outside;clear:both;position:relative;min-height:60px}.avia-icon-list .iconlist_icon{height:64px;width:64px;line-height:64px;font-size:30px;text-align:center;border-radius:500px;position:relative;float:left;margin-right:30px;margin-left:2px;z-index:5;color:#fff}.avia-icon-list a.iconlist_icon:hover{color:#fff;text-decoration:none}.avia-icon-list .iconlist_title{text-transform:uppercase;top:4px;margin-bottom:0;position:relative}#top .avia-icon-list .iconlist_title a:hover{text-decoration:underline}.avia-icon-list .iconlist_content_wrap{overflow:hidden;min-height:1.5em;padding-bottom:4px}.avia-icon-list article.article-icon-entry{min-height:45px}.avia-icon-list .av-iconlist-empty .iconlist_title{margin-top:17px}.avia-icon-list .iconlist-timeline{position:absolute;top:1%;left:32px;width:1px;height:99%;border-right-width:1px;border-right-style:dashed} .avia-icon-list .iconlist_content{line-height:1.65em}.avia-icon-list .iconlist_content li{min-height:0;padding:0;list-style:disc outside} .avia-icon-list li:last-child .iconlist-timeline{display:none} #top .av_iconlist_title a{text-decoration:none}#top .av_iconlist_title a:hover{text-decoration:underline} #top .av-iconlist-small li{padding:0px;min-height:0px}#top .av-iconlist-small article.article-icon-entry{min-height:0px}#top .av-iconlist-small .iconlist-timeline{display:none}#top .av-iconlist-small .iconlist_icon{background:transparent;color:inherit;height:1.45em;width:1.45em;line-height:1.45em;font-size:inherit;margin-right:0.25em}#top .av-iconlist-small.avia-icon-list-right .iconlist_icon{float:right;margin-left:0.1em;margin-right:2px} #top .av-iconlist-small .iconlist_content_wrap{min-height:0;padding:0} .av-iconlist-small .iconlist_title_small{line-height:1.45em} .av-iconlist-small .iconlist_content p:first-child{margin-top:2px} .avia-icon-list-right{text-align:right}.avia-icon-list-right .iconlist_icon{float:right;margin-left:30px;margin-right:0;margin-right:2px}.avia-icon-list-right .iconlist-timeline{left:auto;right:32px} .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .iconlist_icon{opacity:0.1;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)} .avia_transform .avia-iconlist-animate .iconlist-timeline{height:0%} .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .avia_start_animation .iconlist_icon{-webkit-animation:avia_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)} .avia_transform .avia-icon-list.av-iconlist-big.avia-iconlist-animate .avia_start_animation .iconlist-timeline{-webkit-animation:avia_slide_down 1s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_slide_down 1s 1 cubic-bezier(0.175,0.885,0.320,1.275);height:100%}\";}s:21:\"avia-module-image-css\";a:6:{s:4:\"name\";s:17:\"avia-module-image\";s:3:\"url\";s:104:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css\";s:4:\"path\";s:79:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image/image.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:5287:\".avia-image-container{display:block;position:relative;max-width:100%}.avia-image-container-inner,.avia_image,.av-image-caption-overlay{border-radius:3px;display:block;position:relative;max-width:100%}.avia-image-container.avia-align-center{display:block;margin:0 auto 10px auto;text-align:center;clear:both}.avia-image-container.avia-align-center .avia-image-container-inner{margin:0 auto;display:inline-block;vertical-align:bottom}.avia-image-container.avia-align-left{display:block;float:left;margin-right:15px;margin-top:5px}.avia-image-container.avia-align-right{display:block;float:right;margin-left:15px;margin-top:5px}.avia-image-container.avia-align-center.avia-builder-el-no-sibling{margin-bottom:0;margin-top:0} .avia_image + br{display:none} .avia-image-overlay-wrap a.avia_image{overflow:hidden}.avia-image-overlay-wrap a.avia_image .image-overlay{-webkit-transform:scale(1.5);-ms-transform:scale(1.5);transform:scale(1.5)} .avia-image-container .avia_image,.avia-image-container .avia-image-overlay-wrap{-webkit-transition:all 0.7s;transition:all 0.7s} .avia-image-container.av-hover-grow img:hover,.avia-image-container.av-hover-grow .avia-image-overlay-wrap:hover{-webkit-transform:scale(1.1);transform:scale(1.1)} .avia-image-container.av-hover-grow,.avia-image-container.av-hover-grow .avia-image-container-inner,.avia-image-container.av-hover-grow .avia-image-overlay-wrap a.avia_image{overflow:visible} .avia-image-container.av-hover-grow.av-hide-overflow,.avia-image-container.av-hover-grow.av-hide-overflow .avia-image-container-inner,.avia-image-container.av-hover-grow.av-hide-overflow .avia-image-overlay-wrap a.avia_image{overflow:hidden} .av-styling-circle .avia-image-container-inner,.av-styling-circle .avia_image,.av-styling-circle .av-image-caption-overlay,.av-styling-circle div.av-caption-image-overlay-bg{overflow:hidden;border-radius:10000px}.avia-safari div.av-image-caption-overlay-center{-webkit-transform:translate3d(0,0,0)} .av-styling-no-styling .avia-image-container-inner,.av-styling-no-styling .avia_image,.av-styling-no-styling .av-image-caption-overlay{border-radius:0;border:none} .av-image-caption-overlay{position:absolute;height:100%;width:100%;z-index:10;text-align:center;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .avia-msie-8 .av-image-caption-overlay{background:#000;filter:alpha(opacity=40)}.av-image-caption-overlay-position{display:table;width:100%;height:100%;position:relative}.av-image-caption-overlay-center{display:table-cell;vertical-align:middle;font-size:1.3em;line-height:1.5em;padding:0px 1.5em}.av-image-caption-overlay-center p:first-child{margin-top:0}.av-image-caption-overlay-center p:last-child{margin-bottom:0} .av-caption-image-overlay-bg{position:absolute;height:100%;width:100%;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out}.av-overlay-hover-deactivate .avia-image-overlay-wrap:hover .av-caption-image-overlay-bg{opacity:0 !important}.av-overlay-on-hover .av-image-caption-overlay{opacity:0;filter:alpha(opacity=00)}.av-overlay-on-hover .avia-image-container-inner:hover .av-image-caption-overlay{opacity:1;filter:alpha(opacity=100)} .avia_transform .avia_animated_image{opacity:0} .avia-image-container small.avia-copyright{font-size:0.8em;text-align:left;line-height:1.7em} .avia-image-container .avia-copyright{display:block} .avia-image-container.av-has-copyright .avia-image-overlay-wrap{position:relative;overflow:hidden} .av-styling-circle.avia-image-container.av-has-copyright .avia-image-container-inner{overflow:visible} .avia-image-container.av-has-copyright.av-styling-circle .avia-copyright{text-align:center} .avia-image-container.av-has-copyright.av-copyright-icon-reveal .avia-copyright{position:absolute;background-color:rgba(0,0,0,0.1);text-align:right;color:#fff;padding:0 2em 0 0;right:0;bottom:0;width:2em;line-height:2em;max-height:2em;text-indent:-99999px;overflow:hidden;transition:all 0.3s ease-in;z-index:308} .avia-image-container.av-has-copyright.av-copyright-icon-reveal .avia-copyright:hover{width:100%;padding:0 3em 0 1em;text-indent:0;max-height:100%;background-color:rgba(0,0,0,0.4)} .avia-image-container.av-has-copyright.av-copyright-icon-reveal .avia-copyright:after{content:\"\\E81e\";font-family:\"entypo-fontello\";display:block;position:absolute;right:0;bottom:0;text-indent:0;font-size:0.8em;width:2.6em;height:2.6em;line-height:2.8em;text-align:center;color:rgba(255,255,255,0.7);-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;cursor:pointer} .avia-image-container.av-has-copyright.av-copyright-icon-reveal .avia-copyright:hover:after{background-color:rgba(0,0,0,0.2);color:rgba(255,255,255,1)} .avia-image-container.av-styling-circle.av-has-copyright.av-copyright-icon-reveal .avia-copyright{-webkit-border-radius:20px;-moz-border-radius:20px;border-radius:20px;background-color:rgba(0,0,0,0.15);text-align:right} .avia-image-container.av-styling-circle.av-has-copyright.av-copyright-icon-reveal .avia-copyright:after{-webkit-border-radius:100%;-moz-border-radius:100%;border-radius:100%} .avia-image-container.av-styling-circle.av-has-copyright.av-copyright-icon-reveal .avia-copyright:hover{-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;background-color:rgba(0,0,0,0.5)}\";}s:23:\"avia-module-hotspot-css\";a:6:{s:4:\"name\";s:19:\"avia-module-hotspot\";s:3:\"url\";s:122:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css\";s:4:\"path\";s:97:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3725:\".av-hotspot-container{position:relative;display:table;margin:0 auto;clear:both;table-layout:fixed}.av-hotspot-container-inner-cell{display:table-cell}.av-fullwidth-hotspots .av-hotspot-container-inner-cell{width:100%;display:block}.av-hotspot-container-inner-wrap img{width:100%;display:block} .av-hotspot-container .av-image-hotspot{height:18px;width:18px;font-size:10px;line-height:18px;text-align:center;position:absolute;z-index:1;margin:-9px 0 0 -9px}.av-hotspot-container .av-image-hotspot_inner{display:block;border-radius:100px;position:absolute;height:100%;width:100%;background:#fff;color:#888;z-index:2;cursor:pointer;text-decoration:none}.av-hotspot-container .av-image-hotspot_inner:hover{background:#fff;color:#888} .av-hotspot-blank .av-hotspot-container .av-image-hotspot_inner{overflow:hidden;text-indent:-200%}.av-hotspot-container .av-image-hotspot-pulse{display:block;background:#fff;border-radius:100px;height:40px;width:40px;position:absolute;-webkit-animation:av_pulsate 2s ease-out infinite;animation:av_pulsate 2s linear infinite;opacity:0;top:-11px;left:-11px;z-index:1} .av-tt-hotspot{text-align:left}.av-hotspot-fallback-tooltip{padding:15px 15px 0 15px;position:relative;display:none}.av-hotspot-image-container .av-hotspot-fallback-tooltip:last-child{padding-bottom:15px}.av-hotspot-fallback-tooltip-count{height:40px;width:40px;line-height:40px;border-style:solid;border-width:1px;text-align:center;border-radius:100px;position:absolute;top:15px;left:15px;z-index:10}.av-hotspot-fallback-tooltip-inner{margin-left:60px;border:1px solid;padding:15px;position:relative;border-radius:2px}.av-hotspot-fallback-tooltip-inner img{max-width:100px;margin:0 10px 0 0;display:block}.av-hotspot-fallback-tooltip-inner p:first-child,.inner_tooltip p:first-child{margin-top:0}.av-hotspot-fallback-tooltip-inner p:last-child,.inner_tooltip p:last-child{margin-bottom:0}.av-hotspot-fallback-tooltip div.avia-arrow{left:60px;top:13px;border-right:none;border-top:none} body .av-tt-large-width{width:250px}body .av-tt-xlarge-width{width:350px} .av-non-fullwidth-hotspot-image .av-hotspot-fallback-tooltip{padding-left:0;padding-right:0}.av-non-fullwidth-hotspot-image .av-hotspot-fallback-tooltip-count{left:0px} .av-fullwidth-hotspots{border-top:none}.av-fullwidth-hotspots img{width:100%;border-radius:0px}.av-fullwidth-hotspots .av-hotspot-container{display:block} .avia_transform.js_active .avia_animated_image .av-image-hotspot{opacity:0;visibility:hidden}.avia_transform.js_active .avia_animated_image .av-display-hotspot{-webkit-animation:avia_hotspot_appear 0.7s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_hotspot_appear 0.7s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1;visibility:visible} .avia_transform.js_active .avia_animated_image .av-image-hotspot .av-permanent-tooltip-single{opacity:0 !important;-webkit-transition:all 0.7s cubic-bezier(0.230,1.000,0.320,1.000) 1s;transition:all 0.7s cubic-bezier(0.230,1.000,0.320,1.000) 1s;-webkit-transform:translate(0px,10px);transform:translate(0px,10px)} .avia_transform.js_active .avia_animated_image .av-display-hotspot .av-permanent-tooltip-single{opacity:1 !important;-webkit-transform:translate(0px,0);transform:translate(0px,0)} @media only screen and (min-width:990px){.responsive .av-image-hotspot{height:24px;width:24px;line-height:24px;font-size:11px} .responsive .av-image-hotspot-pulse{height:54px;width:54px;top:-15px;left:-15px}} @media only screen and (max-width:767px){.responsive .av-hotspot-fallback-tooltip{display:block} .responsive .av-mobile-fallback-active.avia-tooltip{visibility:hidden} .responsive .av-hotspot-image-container.av-hotspot-blank.av-mobile-fallback-active .av-image-hotspot_inner{text-indent:0px}}\";}s:24:\"avia-module-magazine-css\";a:6:{s:4:\"name\";s:20:\"avia-module-magazine\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3335:\".av-magazine{clear:both;overflow:hidden;margin-bottom:30px;-webkit-perspective:1000px;-webkit-backface-visibility:hidden}.av-magazine-group{clear:both;position:relative;overflow:hidden}.av-magazine-group.av-hidden-mag{display:none}.av-magazine-entry{clear:both;position:relative;margin-bottom:10px}.av-magazine-thumbnail{float:left;margin-right:15px;width:61px;min-height:61px;border:1px solid;padding:5px;display:block;text-align:center;position:relative}.av-magazine-thumbnail-link{overflow:hidden;display:block}.av-magazine-thumbnail img{display:block;margin:0 auto}.av-magazine .av-magazine-no-thumb .av-magazine-content-wrap{min-height:0px}.av-magazine .av-magazine-no-thumb .av-magazine-content-wrap .av-magazine-title{padding-bottom:10px}.av-magazine .av-magazine-entry-icon{font-size:20px;position:absolute;top:5px;left:5px;right:5px;bottom:5px;line-height:51px}.av-magazine .av-magazine-entry-icon:hover{text-decoration:none} .av-magazine-content-wrap{overflow:hidden;border-bottom:1px solid;min-height:61px}.av-magazine header{position:relative}.av-magazine-time,.av-magazine-author,.av-magazine-text-sep{font-size:12px;text-transform:uppercase}.av-magazine-text-sep{padding:0 5px} .av-magazine .av-magazine-content-wrap .av-magazine-title{font-size:14px;line-height:1.3em;text-transform:none;letter-spacing:normal;padding:0;margin:0} .av-magazine .minor-meta{font-size:12px}.av-magazine .av-magazine-text-sep.text-sep-cats,.av-magazine .av-magazine-text-sep.text-sep-tags{padding:0 5px 0 0;text-transform:uppercase}.av-magazine .av-magazine-cats-wrap,.av-magazine .av-magazine-tags-wrap{width:100%;float:left;margin-top:-10px} .av-magazine-hero .av-magazine-thumbnail{margin:0 0 8px 0;float:none;width:100%;border-radius:2px;padding:7px}.av-magazine-hero .av-magazine-content-wrap{padding-bottom:10px}.av-magazine-hero-left .av-magazine-hero .av-magazine-content-wrap{border:none;margin-bottom:0px;padding-bottom:0px}.av-magazine-hero .av-magazine-content{margin-top:10px} .av-magazine .av-magazine-sideshow.av_one_half{margin-left:3%;padding-left:3%;width:50%;border-left-width:1px;border-left-style:solid} .av-magazine-top-bar{line-height:30px;overflow:hidden;border-bottom-width:1px;border-bottom-style:solid;margin-bottom:10px}.av-magazine-hero-left .av-magazine-top-bar{margin-bottom:0px}.av-magazine-hero-top .av-magazine-top-bar{margin-bottom:0px;border:none}.av-magazine-hero-left.av-magazine-top-bar-active .flex_column{padding-top:20px}.av-magazine-top-heading{font-size:15px;font-weight:bold;text-transform:uppercase;float:left}.av-magazine-sort{float:right;font-size:12px} #top .av-magazine .avia-inherit-font-color a.av-magazine-top-heading,#top .av-magazine .avia-inherit-font-color a.active_sort,#top .av-magazine .avia-inherit-font-color a:hover{color:inherit} .avia-font-color-grey{color:#555}.avia-font-color-black{color:#2c2c2c}.avia-font-color-red{color:#B02B2C}.avia-font-color-orange{color:#edae44}.avia-font-color-green{color:#83a846}.avia-font-color-blue{color:#7bb0e7}.avia-font-color-aqua{color:#4ecac2}.avia-font-color-teal{color:#5f8789}.avia-font-color-purple{color:#745f7e}.avia-font-color-pink{color:#d65799}.avia-font-color-silver{color:#DADADA} @media only screen and (max-width:767px){.responsive #top #wrap_all .av-magazine .flex_column{margin:0px;padding-left:0px;width:100%;border:none}}\";}s:23:\"avia-module-masonry-css\";a:6:{s:4:\"name\";s:19:\"avia-module-masonry\";s:3:\"url\";s:124:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css\";s:4:\"path\";s:99:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:15883:\".av-masonry{position:relative;overflow:hidden;clear:both} .av-masonry-container{width:100.4%;float:left;clear:both;position:relative} .av-masonry-entry{position:relative;display:block;width:24.90%;float:left;clear:none;text-decoration:none;visibility:hidden;opacity:0} #top .masonry-no-border{border-top:none} .av-masonry-entry.av-landscape-img{width:49.80%} .av-masonry-col-2 .av-masonry-entry{width:49.80%}.av-masonry-col-2 .av-masonry-entry.av-landscape-img{width:99.50%} .av-masonry-col-3 .av-masonry-entry{width:33.3%}.av-masonry-col-3 .av-masonry-entry.av-landscape-img{width:66.6%} .av-masonry-col-4 .av-masonry-entry{}.av-masonry-col-4 .av-masonry-entry.av-landscape-img{} .av-masonry-col-5 .av-masonry-entry{width:19.90%}.av-masonry-col-5 .av-masonry-entry.av-landscape-img{width:39.80%} .av-masonry-col-6 .av-masonry-entry{width:16.6%}.av-masonry-col-6 .av-masonry-entry.av-landscape-img{width:33.2%} @media only screen and (min-width:768px) and (max-width:989px){.responsive.av-no-preview #top .av-medium-columns-4 .av-masonry-entry{width:24.90%}.responsive.av-no-preview #top .av-medium-columns-3 .av-masonry-entry{width:33.3%}.responsive.av-no-preview #top .av-medium-columns-2 .av-masonry-entry{width:49.80%}.responsive.av-no-preview #top .av-medium-columns-1 .av-masonry-entry{width:100%}} @media only screen and (min-width:480px) and (max-width:767px){.responsive.av-no-preview #top .av-small-columns-4 .av-masonry-entry{width:24.90%}.responsive.av-no-preview #top .av-small-columns-3 .av-masonry-entry{width:33.3%}.responsive.av-no-preview #top .av-small-columns-2 .av-masonry-entry{width:49.80%}.responsive.av-no-preview #top .av-small-columns-1 .av-masonry-entry{width:100%}} @media only screen and (max-width:479px){.responsive.av-no-preview #top .av-mini-columns-4 .av-masonry-entry{width:24.90%}.responsive.av-no-preview #top .av-mini-columns-3 .av-masonry-entry{width:33.3%}.responsive.av-no-preview #top .av-mini-columns-2 .av-masonry-entry{width:49.80%}.responsive.av-no-preview #top .av-mini-columns-1 .av-masonry-entry{width:100%}} .av-masonry-outerimage-container{overflow:hidden} .av-masonry-outerimage-container,.av-masonry-image-container{position:relative;top:0;left:0;bottom:0;right:0;z-index:1} .av-masonry-image-container{text-align:center;background-size:cover;background-position:center center} .av-masonry-image-container img{display:block;margin:0 auto} #top .av-inner-masonry{overflow:hidden;background-color:transparent} .av-masonry-entry .av-inner-masonry-content{padding:20px;z-index:2;position:relative;width:100%} .av-masonry-entry .avia-arrow{border:none;top:-5px}.av-masonry-item-no-image .avia-arrow{display:none} .av-masonry-entry .av-masonry-entry-title{line-height:1.3em;margin:0;font-size:15px} .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content{padding-top:4px;text-overflow:ellipsis;overflow:hidden} .av-masonry-date,.av-masonry-text-sep,.av-masonry-author{font-size:11px}.av-masonry-text-sep{padding:0 5px}.av-masonry-text-sep.text-sep-author,.av-masonry-author{display:none} .av-masonry-entry.av-masonry-item-loaded{opacity:1;visibility:visible} .avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry{-webkit-perspective:600px;-moz-perspective:600px;perspective:600px} .avia_desktop.avia_transform3d .av-masonry-animation-active .av-masonry-entry.av-masonry-item-loaded .av-inner-masonry{-webkit-animation:avia_msonry_show 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.075);animation:avia_msonry_show 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.075)} .av-large-gap.av-masonry{padding:15px 0 0 15px} .av-no-gap.av-fixed-size .av-masonry-entry .av-inner-masonry{position:absolute;top:0px;left:-1px;right:0px;bottom:-2px}.av-1px-gap.av-fixed-size .av-masonry-entry .av-inner-masonry{position:absolute;top:0px;left:0px;right:1px;bottom:1px}.av-large-gap.av-fixed-size .av-masonry-entry .av-inner-masonry{position:absolute;top:0px;left:0px;right:15px;bottom:15px} .av-no-gap.av-flex-size .av-masonry-entry .av-inner-masonry{position:relative}.av-1px-gap.av-flex-size .av-masonry-entry .av-inner-masonry{position:relative;margin-right:1px;margin-bottom:1px}.av-large-gap.av-flex-size .av-masonry-entry .av-inner-masonry{position:relative;margin-right:15px;margin-bottom:15px} .avia-mozilla .av-1px-gap.av-flex-size .av-masonry-entry .av-inner-masonry{margin-bottom:2px} .av-flex-size .av-masonry-image-container{background-image:none !important} .av-fixed-size .av-masonry-image-container,.av-fixed-size .av-masonry-outerimage-container{position:absolute}.av-fixed-size .av-masonry-image-container img{display:none}.av-fixed-size .av-masonry-entry .av-inner-masonry-sizer{width:100%;padding-bottom:80%;z-index:1}.av-fixed-size .av-masonry-entry.av-landscape-img .av-inner-masonry-sizer{padding-bottom:40%}.av-fixed-size .av-masonry-entry.av-portrait-img .av-inner-masonry-sizer{padding-bottom:160%}.av-fixed-size .av-masonry-entry.av-portrait-img.av-landscape-img .av-inner-masonry-sizer{padding-bottom:80%} #top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content,#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content{display:table;position:relative;height:100%;width:100%;bottom:0;table-layout:fixed}#top .av-fixed-size .av-masonry-entry.av-masonry-item-no-image .av-inner-masonry-content-pos,#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content-pos{display:table-cell;vertical-align:middle;text-align:center}#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry{background:transparent} .av-fixed-size .av-masonry-entry .av-inner-masonry-content,.av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry .av-inner-masonry-content,.av-flex-size.av-caption-on-hover-hide .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content{position:absolute;bottom:-1px} #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content{background:rgba(0,0,0,0.35)} #top .av-caption-style-overlay.av-hover-overlay- .av-masonry-item-with-image .av-inner-masonry-content{background:transparent} #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content *,#top .av-caption-style-overlay .av-masonry-item-with-image ins:before,#top #wrap_all .av-caption-style-overlay .av-masonry-item-with-image del{color:#fff} #top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content .avia-arrow,#top .av-caption-style-overlay .av-masonry-item-with-image .av-inner-masonry-content .av-icon-display{display:none} #top #wrap_all .av-caption-style-overlay.av-flex-size .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content{position:absolute;top:-2px;left:-2px;right:-2px;bottom:-2px;display:block;height:auto;width:auto} #top .av-caption-style-overlay.av-flex-size .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content-pos{display:table;height:100%;width:100%} #top .av-caption-style-overlay.av-flex-size .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content-pos-content{display:table-cell;vertical-align:middle} #top .av-caption-style-overlay .av-masonry-entry .av-masonry-entry-title{font-size:1.5em} .av-fixed-size.av-orientation-landscape-large .av-masonry-entry .av-inner-masonry-sizer{width:100%;padding-bottom:50%}.av-fixed-size.av-orientation-square .av-masonry-entry .av-inner-masonry-sizer{width:100%;padding-bottom:100%}.av-fixed-size.av-orientation-portrait .av-masonry-entry .av-inner-masonry-sizer{width:100%;padding-bottom:130%}.av-fixed-size.av-orientation-portrait-large .av-masonry-entry .av-inner-masonry-sizer{width:100%;padding-bottom:150%} #top .av-masonry-entry:hover{text-decoration:none} .av-masonry-image-container,.av-inner-masonry-content,.av-masonry-pagination{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out} .avia_desktop .av-hover-overlay-active .av-masonry-image-container{opacity:0.7}.avia_desktop .av-hover-overlay-active .av-masonry-entry:hover .av-masonry-image-container,.avia_desktop .av-hover-overlay-active.av-caption-style-overlay .av-masonry-entry .av-masonry-image-container{opacity:1}.avia_desktop .av-masonry-entry:hover .av-masonry-image-container{-webkit-transform:scale(1.05,1.05);transform:scale(1.05,1.05)} .avia_desktop .av-caption-on-hover .av-masonry-item-with-image .av-inner-masonry-content{opacity:0;filter:alpha(opacity=00)}.avia_desktop .av-caption-on-hover .av-masonry-item-with-image.av-masonry-entry:hover .av-inner-masonry-content{opacity:1;filter:alpha(opacity=100)} .avia_desktop .av-caption-on-hover-hide .av-masonry-item-with-image .av-inner-masonry-content{opacity:1;filter:alpha(opacity=100)}.avia_desktop .av-caption-on-hover-hide .av-masonry-item-with-image.av-masonry-entry:hover .av-inner-masonry-content{opacity:0;filter:alpha(opacity=00)} .avia_desktop .av-inner-masonry-content{-webkit-backface-visibility:hidden} .avia_desktop.avia_transform3d .av-caption-on-hover.av-caption-style- .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content,.avia_desktop.avia_transform3d .av-caption-on-hover-hide.av-caption-style- .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content{-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;backface-visibility:hidden;-webkit-transform-origin:center bottom;-moz-transform-origin:center bottom;transform-origin:center bottom;-webkit-transform:rotateX(120deg);transform:rotateX(120deg);-webkit-transform-style:preserve-3d;transform-style:preserve-3d} .avia_desktop.avia_transform3d .av-caption-on-hover-hide.av-caption-style- .av-masonry-entry.av-masonry-item-with-image .av-inner-masonry-content,.avia_desktop.avia_transform3d .av-caption-on-hover.av-caption-style- .av-masonry-entry.av-masonry-item-with-image:hover .av-inner-masonry-content{-webkit-transform:rotateX(0deg);transform:rotateX(0deg);-webkit-transform-origin:center bottom;-moz-transform-origin:center bottom;transform-origin:center bottom} .avia_desktop.avia_transform3d .av-masonry-entry:hover .av-icon-display{-webkit-transform:rotateY(180deg);transform:rotateY(180deg);border-color:transparent} .avia_desktop.avia_transform3d .av-masonry-image-container{-webkit-perspective:1000px;-webkit-backface-visibility:hidden} .av-masonry-sort{text-align:center;padding:20px 40px;visibility:hidden;overflow:hidden}#top div.container .av-masonry .av-masonry-sort{padding:0px;background:transparent;line-height:30px;margin-bottom:15px;font-size:0.9em} .av-large-gap .av-masonry-sort{}.av-masonry-sort a{text-decoration:none}.av-masonry-sort .avia_hide_sort{display:none}.av-sort-by-term > *{display:inline-block}.av-no-gap .av-masonry-sort,.av-1px-gap .av-masonry-sort{margin:0 0 1px 0}.av-large-gap .av-masonry-sort{margin:0 15px 15px 0}.avia-term-count{display:none} #top .av-sort-yes-tax{line-height:50px}#top .av-sort-yes-tax .av-sort-by-term,#top .av-sort-yes-tax .sort_by_cat{float:right}#top .av-current-sort-title{float:left;font-weight:normal;font-size:26px} .av-masonry-pagination{clear:both;z-index:2;bottom:20px;right:20px;padding:20px;display:block} #top .av-masonry-load-more{text-align:center;text-decoration:none;text-transform:uppercase;font-weight:600;letter-spacing:1px;font-size:13px;visibility:hidden;opacity:0;overflow:hidden} #top .av-masonry-load-more.av-masonry-no-more-items{opacity:0 !important;height:0px;padding:0px;filter:alpha(opacity=00)} #top .av-masonry-load-more:hover{letter-spacing:0px}.av-no-gap .av-masonry-load-more{margin:1px 0 0 0;float:left;width:100%}.av-large-gap .av-masonry-pagination{margin:0 15px 15px 0}.av-masonry-pagination .pagination{padding:5px}.av-masonry-pagination .pagination-meta{line-height:30px} .av-masonry-entry.sale .av-masonry-entry-title{padding-right:48px}#top .av-masonry-entry.type-product .av-masonry-image-container{-webkit-transform:scale(1);transform:scale(1)}#top .av-masonry-entry .price,#top .av-masonry-entry .price span,#top .av-masonry-entry del,#top .av-masonry-entry ins{font-size:14px}#top .av-masonry-entry .onsale{top:20px;right:20px} #top .av-caption-style-overlay .av-masonry-entry .onsale{top:0px;right:0px;border-radius:0}#top .av-caption-style-overlay .av-masonry-entry.sale .av-masonry-entry-title{padding-right:0px} #top .av-masonry-entry .av-inner-masonry .av-masonry-overlay{opacity:0;filter:alpha(opacity=0);width:100%;z-index:10;position:absolute;top:0;left:0;right:0;bottom:0}#top .av-masonry-entry:hover .av-inner-masonry .av-masonry-overlay{opacity:1;filter:alpha(opacity=100)} #top .av-icon-display.av-masonry-media{position:absolute;left:50%;margin-left:-30px;top:-75px;opacity:0.7;filter:alpha(opacity=70)} #top .av-masonry-entry:hover .av-icon-display.av-masonry-media{opacity:1;filter:alpha(opacity=100);-webkit-transform:rotateY(0deg);transform:rotateY(0deg)} #top .av-masonry-entry.format-quote .av-icon-display{position:absolute;z-index:-1;border:none;background:rgba(0,0,0,0);opacity:0.1;filter:alpha(opacity=10);bottom:-20px;left:0;font-size:50px;line-height:100px;width:100px} #top div .av-masonry-entry.format-quote:hover .av-icon-display{-webkit-transform:rotateY(0deg);transform:rotateY(0deg);opacity:0.3;filter:alpha(opacity=30)} #top .container .av-masonry{background:transparent}#top .container .av-masonry.av-large-gap{padding:0;width:102%;width:calc(100% + 15px)} #top .av-hover-overlay-fade_out .av-masonry-image-container{opacity:1.0}#top .av-hover-overlay-fade_out .av-masonry-entry:hover .av-masonry-image-container{opacity:0.2} #top .av-hover-overlay-grayscale .av-masonry-entry .av-masonry-image-container{-webkit-filter:grayscale(1);filter:grayscale(1)} #top .av-hover-overlay-grayscale .av-masonry-entry:hover .av-masonry-image-container{-webkit-filter:grayscale(0);filter:grayscale(0)} #top .av-hover-overlay-desaturation .av-masonry-image-container{-webkit-filter:saturate(30%);filter:saturate(30%)} #top .av-hover-overlay-desaturation .av-masonry-entry:hover .av-masonry-image-container{-webkit-filter:saturate(100%);filter:saturate(100%)} #top .av-hover-overlay-bluronhover .av-masonry-image-container{-webkit-filter:blur(0px);filter:blur(0px)} #top .av-hover-overlay-bluronhover .av-masonry-entry:hover .av-masonry-image-container{-webkit-filter:blur(10px);filter:blur(10px)} @media only screen and (min-width:1800px){.responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry,.responsive.html_av-framed-box .av-masonry-col-flexible .av-masonry-entry{width:16.6%} .responsive.html_stretched .av-masonry-col-flexible .av-masonry-entry.av-landscape-img,.responsive.html_av-framed-box .av-masonry-col-flexible .av-masonry-entry.av-landscape-img{width:33.2%}} @media only screen and (min-width:989px) and (max-width:1340px){.responsive .av-masonry-col-flexible .av-masonry-entry{width:33.3%}.responsive .av-masonry-col-flexible .av-masonry-entry.av-landscape-img{width:66.6%}} @media only screen and (max-width:767px){.responsive #top .av-masonry-entry{width:100%}} @media only screen and (min-width:480px) and (max-width:767px){.responsive #top .av-masonry-entry{width:49.90%} .responsive #top .av-masonry-entry.av-landscape-img{width:100%}} @media only screen and (max-width:480px){.responsive #top .av-masonry-entry{width:100%}} @media only screen and (min-width:767px) and (max-width:989px){.responsive .av-masonry-col-flexible.av-masonry-gallery .av-masonry-entry{width:33.3%} .responsive .av-masonry-col-flexible.av-masonry-gallery .av-masonry-entry.av-landscape-img{width:66.6%} .responsive .av-masonry-col-automatic .av-masonry-entry .av-masonry-entry-title{font-size:13px} .responsive .av-masonry-entry .av-masonry-entry-title+.av-masonry-entry-content{display:none}} @media only screen and (min-width:767px) and (max-width:989px){.responsive .av-masonry-col-flexible .av-masonry-entry{width:49.90%} .responsive .av-masonry-col-flexible .av-masonry-entry.av-landscape-img{width:100%}}\";}s:19:\"avia-siteloader-css\";a:6:{s:4:\"name\";s:15:\"avia-siteloader\";s:3:\"url\";s:85:\"https://solsculpting.com/wp-content/themes/enfold/css/avia-snippet-site-preloader.css\";s:4:\"path\";s:60:\"wp-content/themes/enfold/css/avia-snippet-site-preloader.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1829:\".av-siteloader-wrap{position:fixed;top:0;left:0;right:0;bottom:0;width:100%;height:100%;z-index:1000000;background:#fff;display:none}html.av-preloader-active{}html.av-preloader-active .av-siteloader-wrap{display:block} .av-siteloader-inner{position:relative;display:table;width:100%;height:100%;text-align:center} .av-siteloader-cell{display:table-cell;vertical-align:middle} .av-siteloader ,#top div.avia-popup .mfp-preloader{font-size:10px;position:relative;text-indent:-9999em;margin:0 auto;border-top:2px solid rgba(0,0,0,0.2);border-right:2px solid rgba(0,0,0,0.2);border-bottom:2px solid rgba(0,0,0,0.2);border-left:2px solid #000;-webkit-animation:av-load8 0.8s infinite linear;animation:av-load8 0.8s infinite linear} #top div.avia-popup .mfp-preloader{position:absolute;background:transparent;border-top:2px solid #fff;border-right:2px solid #fff;border-bottom:2px solid #fff} .av-preloader-reactive #top .av-siteloader{-webkit-animation:avia_pop_loader 1.3s 1 linear;animation:avia_pop_loader 1.3s 1 linear} .av-preloader-reactive #top .av-siteloader-extra{border-radius:50%;width:400px;height:400px;background:#eee;position:absolute;left:50%;top:50%;-webkit-transform:scale(0);transform:scale(0);opacity:0;-webkit-animation:avia_shrink 1.1s 1 linear;animation:avia_shrink 1.1s 1 linear;margin:-200px 0 0 -200px} .av-siteloader,#top div.avia-popup .mfp-preloader,.av-siteloader:after ,#top div.avia-popup .mfp-preloader:after{border-radius:50%;width:40px;height:40px} .av-preloading-logo{position:relative;margin:0 auto;display:block;max-width:450px;max-height:450px;margin-bottom:20px;z-index:100} #top div.avia-popup .mfp-s-error .mfp-preloader{background:transparent;width:100%;-webkit-animation:none;animation:none;white-space:nowrap;border:none;text-indent:0;font-size:17px;-webkit-transition:none;transition:none}\";}s:20:\"avia-module-menu-css\";a:6:{s:4:\"name\";s:16:\"avia-module-menu\";s:3:\"url\";s:102:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css\";s:4:\"path\";s:77:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:8166:\"#top .sticky_placeholder{height:51px;position:relative;clear:both}#top .av-submenu-container{min-height:52px;position:relative;width:100%;border-bottom-style:solid;border-bottom-width:1px;-webkit-perspective:1000px;-webkit-backface-visibility:hidden;font-size:13px;line-height:1.65em}#top .av-submenu-container.av-sticky-submenu{position:absolute} #top .av-submenu-container .container{padding:0 !important}#top .av-subnav-menu{margin:0}#top .av-subnav-menu li{position:relative;display:block;margin:0}#top .av-subnav-menu > li{padding:15px 0;display:inline-block}#top .av-subnav-menu > li > a{padding:0px 10px 0px 12px;display:block;border-left-style:solid;border-left-width:1px}#top .av-subnav-menu > li:first-child a{border-left:none}#top .av-subnav-menu > li ul{visibility:hidden;position:absolute;width:200px;top:50px;left:0;text-align:left;border-style:solid;border-width:1px;margin:0;opacity:0;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out}#top .av-subnav-menu > li ul a{line-height:23px;padding:8px 15px;width:100%;display:block}#top .av-subnav-menu > li ul ul{left:198px;top:-1px} #top .av-subnav-menu li a{text-decoration:none}#top .av-subnav-menu li:hover > ul{visibility:visible;opacity:1}#top .av-subnav-menu li > ul.av-visible-mobile-sublist{visibility:visible;opacity:1} #top .av-subnav-menu .avia-bullet{display:none}#top .av-subnav-menu .av-menu-button > a{padding:0;border:none} #top .av-submenu-pos-left{text-align:left}#top .av-submenu-pos-center{text-align:center}#top .av-submenu-pos-right{text-align:right}#top .av-submenu-pos-right.av-subnav-menu > li ul ul{left:-200px} #top .av-submenu-container .avia-menu-fx{display:none} #top .mobile_menu_toggle{display:none;height:46px;min-width:46px;line-height:46px;padding:0px 20px;text-decoration:none;text-align:center;margin:0 3px;z-index:10000;border-style:solid;border-width:1px;border-top:none;border-bottom:none;font-size:30px;position:relative} #top .mobile_menu_toggle .av-current-placeholder{font-size:14px;vertical-align:bottom;display:inline-block;margin-left:20px}#top .av-subnav-menu li:hover > ul{z-index:10}#top .av-submenu-container:hover{z-index:400 !important} @media only screen and (max-width:989px){.responsive #top .av-switch-990 .sticky_placeholder{max-height:0px} .responsive #top .av-switch-990.av-submenu-container{top:auto !important;position:relative !important;height:auto;min-height:0;margin-bottom:-1px} .responsive #top .av-switch-990 .av-menu-mobile-active{text-align:center} .responsive #top .av-switch-990 .av-menu-mobile-active .mobile_menu_toggle{display:inline-block} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu{display:none} .responsive #top #wrap_all .av-switch-990 .av-menu-mobile-active.container{width:100%;max-width:100%} .responsive #top .av-switch-990 .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu > li:first-child{margin-top:-1px} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu li{display:block;border-top-style:solid;border-top-width:1px;padding:0} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu > li > a{border-left:none;padding:15px 15%;text-align:left} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu > li a:before{content:\"\\25BA\";position:absolute;top:15px;margin-left:-10px;font-family:\'entypo-fontello\';font-size:7px} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu li > ul{visibility:visible;opacity:1;top:0;left:0;position:relative;width:100%;border:none} .responsive #top .av-switch-990 .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul{display:none} .responsive #top .av-switch-990 .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul.av-visible-sublist{display:block} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu li > ul a{padding:15px 19%} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu li li > ul a{padding:15px 24%} .responsive #top .av-switch-990 .av-menu-mobile-active .av-subnav-menu li li li > ul a{padding:15px 29%}} @media only screen and (max-width:767px){.responsive #top .av-switch-768 .sticky_placeholder{max-height:0px} .responsive #top .av-switch-768.av-submenu-container{top:auto !important;position:relative !important;height:auto;min-height:0;margin-bottom:-1px} .responsive #top .av-switch-768 .av-menu-mobile-active{text-align:center} .responsive #top .av-switch-768 .av-menu-mobile-active .mobile_menu_toggle{display:inline-block} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu{display:none} .responsive #top #wrap_all .av-switch-768 .av-menu-mobile-active.container{width:100%;max-width:100%} .responsive #top .av-switch-768 .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu > li:first-child{margin-top:-1px} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu li{display:block;border-top-style:solid;border-top-width:1px;padding:0} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu > li > a{border-left:none;padding:15px 15%;text-align:left} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu > li a:before{content:\"\\25BA\";position:absolute;top:15px;margin-left:-10px;font-family:\'entypo-fontello\';font-size:7px} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu li > ul{visibility:visible;opacity:1;top:0;left:0;position:relative;width:100%;border:none} .responsive #top .av-switch-768 .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul{display:none} .responsive #top .av-switch-768 .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul.av-visible-sublist{display:block} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu li > ul a{padding:15px 19%} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu li li > ul a{padding:15px 24%} .responsive #top .av-switch-768 .av-menu-mobile-active .av-subnav-menu li li li > ul a{padding:15px 29%}} @media only screen and (max-width:479px){.responsive #top .av-switch-480 .sticky_placeholder{max-height:0px} .responsive #top .av-switch-480.av-submenu-container{top:auto !important;position:relative !important;height:auto;min-height:0;margin-bottom:-1px} .responsive #top .av-switch-480 .av-menu-mobile-active{text-align:center} .responsive #top .av-switch-480 .av-menu-mobile-active .mobile_menu_toggle{display:inline-block} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu{display:none} .responsive #top #wrap_all .av-switch-480 .av-menu-mobile-active.container{width:100%;max-width:100%} .responsive #top .av-switch-480 .av-menu-mobile-active .av-open-submenu.av-subnav-menu{display:block} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu > li:first-child{margin-top:-1px} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu li{display:block;border-top-style:solid;border-top-width:1px;padding:0} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu > li > a{border-left:none;padding:15px 15%;text-align:left} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu > li a:before{content:\"\\25BA\";position:absolute;top:15px;margin-left:-10px;font-family:\'entypo-fontello\';font-size:7px} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu li > ul{visibility:visible;opacity:1;top:0;left:0;position:relative;width:100%;border:none} .responsive #top .av-switch-480 .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul{display:none} .responsive #top .av-switch-480 .av-menu-mobile-active.av-submenu-hidden .av-subnav-menu li > ul.av-visible-sublist{display:block} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu li > ul a{padding:15px 19%} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu li li > ul a{padding:15px 24%} .responsive #top .av-switch-480 .av-menu-mobile-active .av-subnav-menu li li li > ul a{padding:15px 29%}}\";}s:29:\"avia-modfule-notification-css\";a:6:{s:4:\"name\";s:25:\"avia-modfule-notification\";s:3:\"url\";s:118:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css\";s:4:\"path\";s:93:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2385:\".avia_message_box{text-align:center;position:relative;border-color:#e1e1e1;background-color:#f8f8f8;clear:both;margin:30px 0} div .avia_message_box .avia_message_box_title{background-color:rgba(0,0,0,0.05);position:absolute;top:0;left:0;padding:5px 20px;font-size:11px;text-shadow:none} .avia_message_box_content{font-size:14px;text-transform:uppercase;font-weight:600}.avia_message_box_icon{position:relative;left:-0.5em;font-size:1.3em}.avia_message_box.avia-size-normal{padding:17px}.avia_message_box.avia-size-large{padding:35px} .avia_message_box.avia-color-green ,.avia_message_box.avia-color-green a{background-color:#E0F1B5;border-color:#8BAF5B;text-shadow:0 1px 0 rgba(255,255,255,0.7);color:#4F5F39}.avia_message_box.avia-color-blue ,.avia_message_box.avia-color-blue a{background-color:#F5F6FC;border-color:#9DADBF;text-shadow:0 1px 0 rgba(255,255,255,0.7);color:#4671A3}.avia_message_box.avia-color-red ,.avia_message_box.avia-color-red a{background-color:#FFF8F4;border-color:#CDA18F;text-shadow:0 1px 0 rgba(255,255,255,0.7);color:#AF2C20}.avia_message_box.avia-color-orange,.avia_message_box.avia-color-orange a{background-color:#FFFDF3;border-color:#E6BF4A;text-shadow:0 1px 0 rgba(255,255,255,0.7);color:#C96D11}.avia_message_box.avia-color-grey ,.avia_message_box.avia-color-grey a{background-color:#333;border-color:#444;text-shadow:0 1px 0 rgba(0,0,0,1);color:#fff}.avia_message_box.avia-color-silver,.avia_message_box.avia-color-silver a{background-color:#f8f8f8;border-color:#e1e1e1;text-shadow:0 1px 0 rgba(255,255,255,1);color:#444}.avia_message_box_content p{display:inline}#top .avia_message_box_content strong{color:inherit} .avia_message_box a{text-decoration:underline}#top .avia_message_box a:hover{color:inherit;opacity:0.7} .avia_message_box.avia-icon_select-no .avia_message_box_icon{display:none} .avia_message_box.avia-border-solid{border-width:3px;border-style:solid}.avia_message_box.avia-border-dashed{border-width:1px;border-style:dashed}.avia_message_box a.av_message_close{position:absolute;right:0;top:0;text-decoration:none;display:block;width:1.2em;height:1.2em;background:rgba(0,0,0,0.05);text-shadow:none;text-align:center;cursor:pointer;line-height:1.2em;font-size:1em;font-family:Arial,Baskerville,monospace !important} .avia_message_box.messagebox-hidden{display:none}.avia_message_box.avia-color-custom .av_message_close{color:inherit}\";}s:23:\"avia-module-numbers-css\";a:6:{s:4:\"name\";s:19:\"avia-module-numbers\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2094:\".avia-animated-number{display:block;clear:both;position:relative;text-align:center} .avia-animated-number:hover{text-decoration:none}.avia-animated-number-content{line-height:1.3em}.avia-animated-number.avia-color-font-light .avia-animated-number-content,.avia-animated-number.avia-color-font-light .heading{color:#fff} .avia-animated-number.avia-color-font-dark .avia-animated-number-content,.avia-animated-number.avia-color-font-dark .heading{color:#222} #top .avia-color-font-custom .heading{color:inherit} .avia-animated-number.avia-color-font-embossed .avia-single-number{text-shadow:0 1px 0 rgb(203,203,203),0 2px 0 rgb(201,201,201),0 3px 0 rgb(186,186,186),0 4px 0 rgb(184,184,184),0 5px 0 rgb(171,171,171),0 6px 1px rgba(0,0,0,.1),0 0 5px rgba(0,0,0,.1),0 1px 3px rgba(0,0,0,.3),0 3px 5px rgba(0,0,0,.2),0 5px 10px rgba(0,0,0,.25),0 10px 10px rgba(0,0,0,.2),0 20px 20px rgba(0,0,0,.15);color:rgb(255,255,255)} .avia-animated-number-title{font-size:40px;white-space:nowrap;line-height:1em;position:relative;letter-spacing:-2px;font-weight:400;margin-bottom:4px} .avia-no-number{opacity:0.5;font-size:0.8em;font-weight:normal} .avia-animated-number-content{padding:0;position:relative;clear:none;overflow:hidden;font-size:15px} .avia-animated-number-content p{margin:0} .js_active .avia-animated-number-title{visibility:hidden} .number_prepared .avia-animated-number-title{visibility:visible} .av-icon-before-number{margin-right:10px}.av-icon-after-number{margin-left:10px} .avia-animated-number-circle{display:block;position:absolute;width:100%;max-width:600px;top:50%;left:50%;transform:translateY(-50%) translateX(-50%)} .avia-animated-number-circle:after{content:\"\";display:block;padding-bottom:100%} .avia-animated-number-circle-inner{display:block;position:absolute;width:100%;height:100%;border-radius:100%;border-width:1px;border-style:solid} .avia-animated-number-circle-inner:after{content:\"\";display:block;padding-bottom:100%} .av-circle-hover-animate:hover{animation:sonarEffect 1s ease-out} @media only screen and (max-width:767px){.avia-animated-number-circle{display:none}}\";}s:25:\"avia-module-portfolio-css\";a:6:{s:4:\"name\";s:21:\"avia-module-portfolio\";s:3:\"url\";s:112:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css\";s:4:\"path\";s:87:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:8676:\"#top .grid-sort-container .no_margin.av_one_half{width:49.999%} .sort_width_container{margin:30px 0} .entry-content-wrapper .sort_width_container:first-child{margin-top:0} .sort_width_container,#js_sort_items{overflow:hidden;position:relative;clear:both} #js_sort_items{visibility:hidden;font-size:0.9em} #js_sort_items a{display:block;float:left;text-decoration:none} .av-cat-count{display:none} #js_sort_items .text-sep{float:left;padding:0 6px} .grid-sort-container{clear:both;position:relative;z-index:20} .isotope_activated .isotope-item{margin-left:0} #top .isotope-item{z-index:2} #top .isotope-hidden{z-index:1} .avia_sortable_active .isotope{-webkit-transition:height 0.5s 0.2s cubic-bezier(0.165,0.840,0.440,1.000);transition:height 0.5s 0.2s cubic-bezier(0.165,0.840,0.440,1.000)} #top .isotope-item.special_av_fullwidth .inner-entry{text-align:left;display:table;table-layout:fixed} #top .isotope-item.special_av_fullwidth .av_table_col.grid-content{width:33.3%;vertical-align:middle} #top .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image{width:67.7%;vertical-align:middle} #top .isotope-item.special_av_fullwidth .av_table_col .entry-title{margin:0 0 20px;font-size:25px} #top .isotope-item.special_av_fullwidth .av_table_col .grid-entry-excerpt{font-size:1em;font-style:normal} #top .isotope-item.special_av_fullwidth .av_table_col .avia-arrow{z-index:5;margin:-5px 0 0 -5px;top:50%;right:-5px;left:auto} @media only screen and (max-width:989px){#top .isotope-item.special_av_fullwidth .av_table_col .entry-title{font-size:20px;margin:0 0 10px}} @media only screen and (max-width:767px){#top .isotope-item.special_av_fullwidth .av_table_col.grid-content{width:100%;display:block} #top .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image{width:100%;display:block} #top .isotope-item.special_av_fullwidth .av_table_col .entry-title{font-size:15px;margin:0 0 10px} #top .isotope-item.special_av_fullwidth .av_table_col .avia-arrow{z-index:5;top:100%;margin-top:-5px;left:50%;right:auto} #top div .av-current-sort-title{float:none} #top div .av-sort-yes-tax .av-sort-by-term,#top div .av-sort-yes-tax .sort_by_cat{float:none}} .grid-entry{overflow:visible}.grid-entry .avia-arrow{border:none;top:-4px}.grid-entry .inner-entry{margin-right:1px;box-shadow:0px 0px 0px 1px rgba(0,0,0,0.1);position:relative}.grid-image{display:block;width:100%;position:relative;overflow:hidden}.grid-image img{width:100%;display:block}.grid-content{padding:20px;position:relative}.grid-entry-title{font-size:13px;margin:0;padding:0;font-weight:500}.grid-entry-excerpt{font-size:12px;font-style:italic;margin-bottom:-2px}.with-excerpt-container .grid-entry{text-align:center} .grid-circle .inner-entry{margin:0;border-radius:999px;overflow:hidden} .grid-circle .grid-content{padding:16px 35px 45px;position:absolute;bottom:0;left:0;right:0;text-align:center} .pagination-portfolio .pagination{padding:20px 0} .avia-section .pagination-portfolio .pagination{padding:16px} .portfolio_preview_container{position:relative;clear:both;width:100%;overflow:hidden;display:none;margin-bottom:25px;padding:0} .portfolio-details-inner{display:none;clear:both;width:100%;position:relative;overflow:hidden;border-style:solid;border-width:1px} .portfolio-preview-title{font-size:22px} .ajax_slide{display:block;clear:both;width:100%;overflow:hidden;position:absolute;left:120%;top:0;z-index:1} .ajax_slide.open_slide{display:block;position:relative;left:0;z-index:2} .ajax_slide .inner_slide{display:table;position:relative;table-layout:fixed;width:100%} .av_table_col{display:table-cell;vertical-align:top;position:relative} .portfolio-preview-image{width:66.6%} .portfolio-preview-content{width:33.5%;padding:63px 30px 30px 30px} .portfolio_preview_container .portfolio-details-inner .no_portfolio_preview_gallery{width:100%} div .portfolio-preview-image .avia-slideshow{margin:0} div .portfolio-preview-image .avia-slideshow img{border-radius:0} #top .portfolio-preview-image .avia-gallery{padding:0;margin-bottom:-1px} #top .portfolio-preview-image .avia-gallery .avia-gallery-big{border-top:none;border-left:none;border-right:none;position:relative;margin-bottom:-1px;padding:0;border-radius:0} #top .portfolio-preview-image .avia-gallery-thumb{position:relative;margin-right:-1px} #top .portfolio-preview-image .avia-gallery-thumb img{border-left:none} #top .portolio-preview-list-image,#top .portolio-preview-list-image img{display:block;position:relative;width:100%} #top .portolio-preview-list-image{border-bottom-style:solid;border-bottom-width:1px} div .portfolio-preview-image{border-right-style:solid;border-right-width:1px} div .portfolio-preview-image:last-child{border:none} .portfolio-preview-content .avia-arrow{top:50%;left:-1px;margin-top:-6px;border-right:none;border-top:none;z-index:510} .open_container,.open_container .portfolio-details-inner{display:block;height:auto} .ajax_controlls{position:absolute;z-index:100;right:0;top:0} .ajax_controlls a{text-decoration:none;line-height:40px;width:40px;height:40px;display:block;float:left;margin-left:-1px;overflow:hidden;border-style:solid;border-width:1px;border-radius:0px;text-align:center} .avia_loading_icon{background:rgba(0,0,0,0.7);width:100%;height:100%;position:fixed;top:0;left:0;margin:0;display:none;z-index:10000} .avia-msie-8 .avia_loading_icon{background:#000;filter:alpha(opacity=70) !important} #top .avia_loading_icon .av-siteloader{border-top-color:#fff;border-right-color:#fff;border-bottom-color:#fff;position:absolute;top:50%;left:50%;margin:-20px 0 0 -20px} .avia_transform .portfolio-preview-image .avia-gallery-thumb img{opacity:1;-webkit-transform:scale(1);transform:scale(1)} .avia_transform .portfolio-preview-image .avia-gallery-thumb img.avia_start_animation{-webkit-animation:none;animation:none} .avia-fullwidth-portfolio .sort_width_container{margin:0;padding:20px 40px;border-top-style:solid;border-top-width:1px}.avia-fullwidth-portfolio .pagination{padding:15px 40px}.avia-fullwidth-portfolio #js_sort_items{text-align:center}.avia-fullwidth-portfolio #js_sort_items a,.avia-fullwidth-portfolio #js_sort_items .text-sep{float:none;display:inline-block}.avia-fullwidth-portfolio .grid-entry .inner-entry{margin:0}.avia-fullwidth-portfolio .portfolio_preview_container{margin-top:25px} .js_active .grid-image{opacity:0} .fullsize .grid-col-4 .grid-image{height:161px}.fullsize .grid-col-3 .grid-image{height:249px} @media only screen and (min-width:1140px){.responsive .fullsize .grid-col-4 .grid-image{height:183px} .responsive .fullsize .grid-col-3 .grid-image{height:276px}} @media only screen and (min-width:1340px){.responsive .fullsize .grid-col-4 .grid-image{height:215px} .responsive .fullsize .grid-col-3 .grid-image{height:325px}} @media only screen and (min-width:768px) and (max-width:989px){.responsive .fullsize .grid-col-4 .grid-image{height:121px} .responsive .fullsize .grid-col-3 .grid-image{height:183px}} @media only screen and (max-width:767px){.responsive .fullsize .grid-col-4 .grid-image,.responsive .fullsize .grid-col-3 .grid-image{height:auto} .responsive .portfolio-preview-image,.responsive .portfolio-preview-content{display:block;width:100%;border-right:none} .responsive .portfolio-preview-content{border-top-style:solid;border-top-width:1px} .responsive .ajax_slide .inner_slide{display:block} .responsive .ajax_slide .av_table_col{display:block;padding:30px} .responsive #top #wrap_all .avia-fullwidth-portfolio .flex_column{margin-bottom:0}} @media only screen and (min-width:768px) and (max-width:989px){.responsive.av-no-preview #top #wrap_all .av-medium-columns-4 .grid-entry{width:25%}.responsive.av-no-preview #top #wrap_all .av-medium-columns-3 .grid-entry{width:33.3%}.responsive.av-no-preview #top #wrap_all .av-medium-columns-2 .grid-entry{width:50%}.responsive.av-no-preview #top #wrap_all .av-medium-columns-1 .grid-entry{width:100%}} @media only screen and (min-width:480px) and (max-width:767px){.responsive.av-no-preview #top #wrap_all .av-small-columns-4 .grid-entry{width:25%}.responsive.av-no-preview #top #wrap_all .av-small-columns-3 .grid-entry{width:33.3%}.responsive.av-no-preview #top #wrap_all .av-small-columns-2 .grid-entry{width:50%}.responsive.av-no-preview #top #wrap_all .av-small-columns-1 .grid-entry{width:100%}} @media only screen and (max-width:479px){.responsive.av-no-preview #top #wrap_all .av-mini-columns-4 .grid-entry{width:25%}.responsive.av-no-preview #top #wrap_all .av-mini-columns-3 .grid-entry{width:33.3%}.responsive.av-no-preview #top #wrap_all .av-mini-columns-2 .grid-entry{width:50%}.responsive.av-no-preview #top #wrap_all .av-mini-columns-1 .grid-entry{width:100%}}\";}s:28:\"avia-module-progress-bar-css\";a:6:{s:4:\"name\";s:24:\"avia-module-progress-bar\";s:3:\"url\";s:116:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css\";s:4:\"path\";s:91:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:6664:\".avia-progress-bar-container{margin:15px 0;clear:both}.avia-progress-bar{position:relative;margin-bottom:4px}.avia-progress-bar .progressbar-title-wrap{position:absolute;z-index:2;bottom:3px;left:3px;color:white;background:black;background:rgba(0,0,0,0.5);padding:1px 10px 2px 10px;border-radius:3px;line-height:21px}.progressbar-icon{float:left;margin-right:5px}.icon-bar-no .progressbar-icon{display:none}.progressbar-title{float:left}.avia-progress-bar .progress{width:100%;height:30px;line-height:30px;position:relative;border-radius:3px;overflow:hidden;box-shadow:inset 0px 0px 15px 0px rgba(0,0,0,0.07)} #top .avia-progress-bar div.progress .bar-outer,#top .avia-progress-bar div.progress .bar{height:100%;position:absolute;top:0;left:0;width:100%;background-size:32px 32px;border-radius:3px} .av-animated-bar .avia-progress-bar div.progress .bar{-webkit-animation:avia-bg-move 1.2s linear infinite;animation:avia-bg-move 1.2s linear infinite;height:100%} .avia-progress-bar div.progress{clear:both} .avia_transform #top div.progress .bar-outer{width:0} .av-small-bar .avia-progress-bar{margin-top:1.9em} .av-small-bar .avia-progress-bar:first-child{margin-top:0em} .av-small-bar .avia-progress-bar .progressbar-title-wrap{position:relative;bottom:0;left:0;padding:0;background:none;color:inherit;line-height:1.65em;font-size:0.9em;font-weight:bold;text-transform:uppercase;letter-spacing:0.5px} .av-small-bar .avia-progress-bar .progress{height:10px;line-height:1em;border-radius:0px} .progressbar-percent{float:right;opacity:0.6} #top .av-small-bar .avia-progress-bar div.progress .bar-outer,#top .av-small-bar .avia-progress-bar div.progress .bar{border-radius:0px} .avia_transform #top .avia-progress-bar div.progress.avia_start_animation .bar-outer{-webkit-animation:avia_expand 1.5s cubic-bezier(0.165,0.840,0.440,1.000);animation:avia_expand 1.5s cubic-bezier(0.165,0.840,0.440,1.000);width:100%} .grey-bar .bar{background:#555} .av-striped-bar .grey-bar .bar{background-image:-webkit-linear-gradient(-45deg,#666 25%,#444 25%,#444 50%,#666 50%,#666 75%,#444 75%,#444);background-image:-moz-linear-gradient(-45deg,#666 25%,#444 25%,#444 50%,#666 50%,#666 75%,#444 75%,#444);background-image:linear-gradient(-45deg,#666 25%,#444 25%,#444 50%,#666 50%,#666 75%,#444 75%,#444)} .blue-bar .bar{background:#7bb0e7} .av-striped-bar .blue-bar .bar{background-image:-webkit-linear-gradient(-45deg,#96C8FB 25%,#74a6d9 25%,#74a6d9 50%,#96C8FB 50%,#96C8FB 75%,#74a6d9 75%,#74a6d9);background-image:-moz-linear-gradient(-45deg,#96C8FB 25%,#74a6d9 25%,#74a6d9 50%,#96C8FB 50%,#96C8FB 75%,#74a6d9 75%,#74a6d9);background-image:linear-gradient(-45deg,#96C8FB 25%,#74a6d9 25%,#74a6d9 50%,#96C8FB 50%,#96C8FB 75%,#74a6d9 75%,#74a6d9)} .green-bar .bar{background:#83a846} .av-striped-bar .green-bar .bar{background-image:-webkit-linear-gradient(-45deg,#A5CA68 25%,#83a846 25%,#83a846 50%,#A5CA68 50%,#A5CA68 75%,#83a846 75%,#83a846);background-image:-moz-linear-gradient(-45deg,#A5CA68 25%,#83a846 25%,#83a846 50%,#A5CA68 50%,#A5CA68 75%,#83a846 75%,#83a846);background-image:linear-gradient(-45deg,#A5CA68 25%,#83a846 25%,#83a846 50%,#A5CA68 50%,#A5CA68 75%,#83a846 75%,#83a846)} .orange-bar .bar{background:#EDAE44} .av-striped-bar .orange-bar .bar{background-image:-webkit-linear-gradient(-45deg,#EDAE44 25%,#FFCF66 25%,#FFCF66 50%,#EDAE44 50%,#EDAE44 75%,#FFCF66 75%,#FFCF66);background-image:-moz-linear-gradient(-45deg,#EDAE44 25%,#FFCF66 25%,#FFCF66 50%,#EDAE44 50%,#EDAE44 75%,#FFCF66 75%,#FFCF66);background-image:linear-gradient(-45deg,#EDAE44 25%,#FFCF66 25%,#FFCF66 50%,#EDAE44 50%,#EDAE44 75%,#FFCF66 75%,#FFCF66)} .black-bar .bar{background:#222} .av-striped-bar .black-bar .bar{background-image:-webkit-linear-gradient(-45deg,#222 25%,#444 25%,#444 50%,#222 50%,#222 75%,#444 75%,#444);background-image:-moz-linear-gradient(-45deg,#222 25%,#444 25%,#444 50%,#222 50%,#222 75%,#444 75%,#444);background-image:linear-gradient(-45deg,#222 25%,#444 25%,#444 50%,#222 50%,#222 75%,#444 75%,#444)} .red-bar .bar{background:#B02B2C} .av-striped-bar .red-bar .bar{background-image:-webkit-linear-gradient(-45deg,#B02B2C 25%,#D24D4E 25%,#D24D4E 50%,#B02B2C 50%,#B02B2C 75%,#D24D4E 75%,#D24D4E);background-image:-moz-linear-gradient(-45deg,#B02B2C 25%,#D24D4E 25%,#D24D4E 50%,#B02B2C 50%,#B02B2C 75%,#D24D4E 75%,#D24D4E);background-image:linear-gradient(-45deg,#B02B2C 25%,#D24D4E 25%,#D24D4E 50%,#B02B2C 50%,#B02B2C 75%,#D24D4E 75%,#D24D4E)} .teal-bar .bar{background:#5F8789} .av-striped-bar .teal-bar .bar{background-image:-webkit-linear-gradient(-45deg,#5F8789 25%,#7FA9AB 25%,#7FA9AB 50%,#5F8789 50%,#5F8789 75%,#7FA9AB 75%,#7FA9AB);background-image:-moz-linear-gradient(-45deg,#5F8789 25%,#7FA9AB 25%,#7FA9AB 50%,#5F8789 50%,#5F8789 75%,#7FA9AB 75%,#7FA9AB);background-image:linear-gradient(-45deg,#5F8789 25%,#7FA9AB 25%,#7FA9AB 50%,#5F8789 50%,#5F8789 75%,#7FA9AB 75%,#7FA9AB)} .aqua-bar .bar{background:#4ECAC2} .av-striped-bar .aqua-bar .bar{background-image:-webkit-linear-gradient(-45deg,#4ECAC2 25%,#6FECE4 25%,#6FECE4 50%,#4ECAC2 50%,#4ECAC2 75%,#6FECE4 75%,#6FECE4);background-image:-moz-linear-gradient(-45deg,#4ECAC2 25%,#6FECE4 25%,#6FECE4 50%,#4ECAC2 50%,#4ECAC2 75%,#6FECE4 75%,#6FECE4);background-image:linear-gradient(-45deg,#4ECAC2 25%,#6FECE4 25%,#6FECE4 50%,#4ECAC2 50%,#4ECAC2 75%,#6FECE4 75%,#6FECE4)} .purple-bar .bar{background:#745F7E} .av-striped-bar .purple-bar .bar{background-image:-webkit-linear-gradient(-45deg,#745F7E 25%,#967F9F 25%,#967F9F 50%,#745F7E 50%,#745F7E 75%,#967F9F 75%,#967F9F);background-image:-moz-linear-gradient(-45deg,#745F7E 25%,#967F9F 25%,#967F9F 50%,#745F7E 50%,#745F7E 75%,#967F9F 75%,#967F9F);background-image:linear-gradient(-45deg,#745F7E 25%,#967F9F 25%,#967F9F 50%,#745F7E 50%,#745F7E 75%,#967F9F 75%,#967F9F)} .pink-bar .bar{background:#D65799} .av-striped-bar .pink-bar .bar{background-image:-webkit-linear-gradient(-45deg,#D65799 25%,#F879BB 25%,#F879BB 50%,#D65799 50%,#D65799 75%,#F879BB 75%,#F879BB);background-image:-moz-linear-gradient(-45deg,#D65799 25%,#F879BB 25%,#F879BB 50%,#D65799 50%,#D65799 75%,#F879BB 75%,#F879BB);background-image:linear-gradient(-45deg,#D65799 25%,#F879BB 25%,#F879BB 50%,#D65799 50%,#D65799 75%,#F879BB 75%,#F879BB)} .silver-bar .bar{background:#D7D7D7} .av-striped-bar .silver-bar .bar{background-image:-webkit-linear-gradient(-45deg,#D7D7D7 25%,#F9F9F9 25%,#F9F9F9 50%,#D7D7D7 50%,#D7D7D7 75%,#F9F9F9 75%,#F9F9F9);background-image:-moz-linear-gradient(-45deg,#D7D7D7 25%,#F9F9F9 25%,#F9F9F9 50%,#D7D7D7 50%,#D7D7D7 75%,#F9F9F9 75%,#F9F9F9);background-image:linear-gradient(-45deg,#D7D7D7 25%,#F9F9F9 25%,#F9F9F9 50%,#D7D7D7 50%,#D7D7D7 75%,#F9F9F9 75%,#F9F9F9)}\";}s:24:\"avia-module-promobox-css\";a:6:{s:4:\"name\";s:20:\"avia-module-promobox\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/promobox/promobox.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:896:\".av_promobox{position:relative;border-width:1px;border-style:solid;overflow:hidden;padding:20px 30px;clear:both;margin:50px 0;width:100%;float:left} .flex_column >.av_promobox:first-child{margin-top:0} .av_promobox .avia-button{right:30px;top:50%;position:absolute;z-index:2} .avia-promocontent{margin-right:200px;position:relative;z-index:3} .avia-promocontent p{font-size:14px} .avia-button-no .avia-promocontent{margin:0}.avia-button-no .avia-button{display:none} .av_promobox .avia-button.avia-size-small{margin-top:-15px}.av_promobox .avia-button.avia-size-medium{margin-top:-19px}.av_promobox .avia-button.avia-size-large{margin-top:-21px} @media only screen and (max-width:767px){.responsive .avia-promocontent{margin:0} .responsive .av_promobox .avia-button,.responsive .av_promobox .avia-button-wrap{width:100%;margin-top:4px;position:relative;top:0;left:0;text-align:center;float:none}}\";}s:35:\"avia-module-slideshow-accordion-css\";a:6:{s:4:\"name\";s:31:\"avia-module-slideshow-accordion\";s:3:\"url\";s:132:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css\";s:4:\"path\";s:107:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1914:\"#top .avia-accordion-slider-wrap{border:none;z-index:2}#top .avia-accordion-slider-wrap.el_after_av_slideshow_accordion{box-shadow:0px 0px 6px rgba(0,0,0,0.4)}#top .aviaccordion{position:relative;overflow:hidden}#top .aviaccordion-inner,#top .aviaccordion-slide,#top .aviaccordion-slide-link{position:absolute;margin:0;padding:0;width:100%;height:100%;list-style-type:none}#top .aviaccordion-slide img{height:100%;position:absolute;display:block;opacity:0;filter:alpha(opacity=0)}#top .aviaccordion-slide{box-shadow:0px 0px 6px rgba(0,0,0,0.4);z-index:2;overflow:hidden}#top .aviaccordion-preview{position:absolute;z-index:10;height:100%}#top .aviaccordion-preview-title-pos{position:absolute;bottom:0;left:0;z-index:10;width:100%;height:100%;opacity:0;filter:alpha(opacity=0)}#top .aviaccordion-preview-title-wrap{position:relative;display:table;height:100%;width:100%;background:#000;background:rgba(0,0,0,0.5);padding:0;filter:alpha(opacity=60)}#top .aviaccordion-preview-title{display:table-cell;vertical-align:middle;color:#fff;-webkit-font-smoothing:subpixel-antialiased;padding:10%}#top .aviaccordion-preview-title h3{color:#fff}#top .aviaccordion-excerpt{line-height:1.65em}#top .aviaccordion .av-accordion-text-center{text-align:center} #top .aviaccordion-title{text-transform:uppercase;font-size:14px} #top .aviaccordion-title-on-hover .aviaccordion-preview{opacity:0;filter:alpha(opacity=0);text-align:center}#top .aviaccordion-title-on-hover .aviaccordion-active-slide .aviaccordion-preview{opacity:1;filter:alpha(opacity=100)} #top .aviaccordion.av-animation-active .aviaccordion-slide,#top .aviaccordion-title-on-hover .aviaccordion-preview{-webkit-transition:all 0.7s cubic-bezier(0.230,1.000,0.320,1.000);transition:all 0.7s cubic-bezier(0.230,1.000,0.320,1.000)} @media only screen and (max-width:767px){.responsive #top .aviaccordion-title-no-mobile .aviaccordion-preview-title-pos{display:none}}\";}s:39:\"avia-module-slideshow-feature-image-css\";a:6:{s:4:\"name\";s:35:\"avia-module-slideshow-feature-image\";s:3:\"url\";s:140:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css\";s:4:\"path\";s:115:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_feature_image/slideshow_feature_image.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1391:\"#top .avia-featureimage-slideshow{margin:0} #top .avia-slideshow-fixed-height > li{position:absolute;width:100%;height:100%;background-size:cover;background-position:center center} .avia-featureimage-slideshow .caption_container{height:100%} .avia-featureimage-slideshow .slideshow_caption h2{margin:0;text-shadow:0px 0px 7px rgba(0,0,0,0.7)} .avia-featureimage-slideshow h2.avia-caption-title:after{display:block;content:\"\";width:40px;border-top:3px solid #fff;margin:11px auto;position:relative;top:7px} .main_color .av-no-image-slider h2 a{text-shadow:none} .avia_desktop .avia-featureimage-slideshow .avia-slideshow-arrows a{opacity:0}#top .avia-featureimage-slideshow:hover .avia-slideshow-arrows a{opacity:1} #top .avia-featureimage-slideshow .avia-caption-content{margin:0 auto;max-width:600px;padding-top:4px} @media only screen and (max-width:767px){#top .avia-featureimage-slideshow .avia-caption-content{display:none}} @media only screen and (min-width:768px) and (max-width:989px){.responsive.av-no-preview #top .av-mdedium-font-size-overwrite.avia-caption-content{display:block}} @media only screen and (min-width:480px) and (max-width:767px){.responsive.av-no-preview #top .av-small-font-size-overwrite.avia-caption-content{display:block}} @media only screen and (max-width:479px){.responsive.av-no-preview #top .av-mini-font-size-overwrite.avia-caption-content{display:block}}\";}s:34:\"avia-module-slideshow-fullsize-css\";a:6:{s:4:\"name\";s:30:\"avia-module-slideshow-fullsize\";s:3:\"url\";s:130:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css\";s:4:\"path\";s:105:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullsize/slideshow_fullsize.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:4180:\".avia-slideshow-inner li{-webkit-transform-style:preserve-3d} .avia-fullwidth-slider{border-top-style:solid;border-top-width:1px;z-index:1} .avia-fullwidth-slider.avia-builder-el-0{border-top:none} div.slider-not-first,.html_header_transparency #top .avia-builder-el-0{border-top:none} .avia-slide-wrap{position:relative;display:block} .avia-slide-wrap>p{margin:0;padding:0}.av_slideshow_full.avia-slideshow{margin:0}#top .av_slideshow_full.av-control-default .avia-slideshow-arrows a{margin:-50px 0 0 0;width:35px;text-align:center;height:100px;line-height:102px;opacity:0.5} #top .av_slideshow_full .avia-slideshow-arrows a:hover{opacity:1} #top .av_slideshow_full.av-control-default .next-slide:before{border-top-right-radius:0;border-bottom-right-radius:0;line-height:102px}#top .av_slideshow_full.av-control-default .prev-slide:before{border-top-left-radius:0;border-bottom-left-radius:0;line-height:102px} .av_slideshow_full li img{border-radius:0px} .av_slideshow_full .container.caption_container{position:relative;top:0;z-index:5;height:100%;left:0%;overflow:visible} .avia_transform .av_slideshow_full .avia-caption-content,.avia_transform .av_slideshow_full .avia-caption-title,.avia_transform .av_fullscreen .avia-caption-content,.avia_transform .av_fullscreen .avia-caption-title,.avia_transform .av_fullscreen .avia-slideshow-button,.avia_transform .av_slideshow_full .avia-slideshow-button{-webkit-transform:translate(0,0);transform:translate(0,0);visibility:hidden} .avia_transform .av_slideshow_full .active-slide .avia-caption-content,.avia_transform .av_fullscreen .active-slide .avia-caption-content{visibility:visible;-webkit-animation:caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1);animation:caption-right 1s 1 cubic-bezier(0.985,0.005,0.265,1)} .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button,.avia_transform .av_fullscreen .active-slide .avia-slideshow-button{visibility:visible;-webkit-animation:caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1);animation:caption-left 1.2s 1 cubic-bezier(0.985,0.005,0.265,1)} .avia_transform .av_slideshow_full .active-slide .avia-slideshow-button-2,.avia_transform .av_fullscreen .active-slide .avia-slideshow-button-2{visibility:visible;-webkit-animation:caption-right 1.2s 1 cubic-bezier(0.985,0.005,0.265,1);animation:caption-right 1.2s 1 cubic-bezier(0.985,0.005,0.265,1)} .avia_transform .av_slideshow_full .active-slide .avia-caption-title,.avia_transform .av_fullscreen .active-slide .avia-caption-title{visibility:visible;-webkit-animation:caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1);animation:caption-left 1s 1 cubic-bezier(0.985,0.005,0.265,1)} .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-content,.avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-content{visibility:visible;-webkit-animation:caption-bottom 0.5s 1 ease-out;animation:caption-bottom 0.5s 1 ease-out} .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-caption-title,.avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-caption-title{visibility:visible;-webkit-animation:caption-top 0.5s 1 ease-out;animation:caption-top 0.5s 1 ease-out} .avia_transform .av_slideshow_full.avia-fade-slider .active-slide .avia-slideshow-button,.avia_transform .av_fullscreen.avia-fade-slider .active-slide .avia-slideshow-button{visibility:visible;-webkit-animation:caption-top 1.2s 1 ease-out;animation:caption-top 1.2s 1 ease-out} @media only screen and (max-width:479px){.responsive #top .slideshow_caption{left:0;width:100%;padding:0} .responsive #top .slideshow_caption h2{font-size:20px !important} .responsive #top .slideshow_caption .avia-caption-content{font-size:13px !important}} @media only screen and (min-width:480px) and (max-width:767px){.responsive #top .slideshow_caption{left:0;width:100%;padding:0} .responsive #top .slideshow_caption h2{font-size:20px !important} .responsive #top .slideshow_caption .avia-caption-content{font-size:13px !important}} @media only screen and (min-width:768px) and (max-width:989px){} @media only screen and (min-width:1140px){} @media only screen and (min-width:1340px){}\";}s:36:\"avia-module-slideshow-fullscreen-css\";a:6:{s:4:\"name\";s:32:\"avia-module-slideshow-fullscreen\";s:3:\"url\";s:134:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css\";s:4:\"path\";s:109:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1580:\".avia-fullscreen-slider{border-top:none}.avia-fullscreen-slider .avia_loading_icon{position:absolute}.avia-fullscreen-slider .avia-slideshow{margin:0;height:1500px;height:100vh;min-height:250px}.avia-fullscreen-slider .avia-slideshow-inner{width:100%;height:100%;position:absolute;-ms-perspective:1000px;-ms-backface-visibility:hidden} .avia-fullscreen-slider .avia-slideshow>ul>li{width:100%;height:100%;background-size:cover;background-position:center center} .avia-fullscreen-slider .avia-slideshow[data-image_attachment=\"fixed\"]>ul>li{background-attachment:fixed} .avia-fullscreen-slider .avia-slide-wrap{display:block;width:100%;height:100%}.avia-fullscreen-slider .caption_container{height:100%}.avia-fullscreen-slider .caption_right{text-align:right}.avia-fullscreen-slider .caption_bottom .slideshow_caption{bottom:40px} .avia-fullscreen-slider .avia-slideshow-controls a,.av-control-minimal .avia-slideshow-controls a{opacity:0;filter:alpha(opacity=00)}.avia-fullscreen-slider:hover .avia-slideshow-arrows a,.avia-fullscreen-slider:hover .avia-slideshow-dots a:hover,.av-control-minimal:hover .avia-slideshow-arrows a,.av-control-minimal:hover .avia-slideshow-dots a:hover{opacity:1;filter:alpha(opacity=100)}.avia-fullscreen-slider:hover .avia-slideshow-dots a,.av-control-minimal:hover .avia-slideshow-dots a{opacity:0.8;filter:alpha(opacity=80)} .av-slider-scroll-down-active .avia-slideshow-dots a{bottom:80px} @media only screen and (max-width:767px){.avia-fullscreen-slider .avia-slideshow{min-height:150px}.caption_right .slideshow_align_caption{text-align:right}}\";}s:28:\"avia-module-slideshow-ls-css\";a:6:{s:4:\"name\";s:24:\"avia-module-slideshow-ls\";s:3:\"url\";s:136:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css\";s:4:\"path\";s:111:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:4201:\"div .avia-layerslider .ls-fullwidth .ls-nav-sides,div .avia-layerslider .ls-fullwidth .ls-bottom-slidebuttons a,div .avia-layerslider .ls-fullwidth .ls-nav-prev,div .avia-layerslider .ls-fullwidth .ls-nav-next,div .avia-layerslider .ls-fullwidth .ls-nav-start,div .avia-layerslider .ls-fullwidth .ls-nav-stop,div .avia-layerslider .ls-fullwidth .ls-fullscreen,div .avia-layerslider .ls-fullwidth .ls-loading-container,div .avia-layerslider .ls-noskin .ls-loading-container,div .avia-layerslider .ls-noskin .ls-fullscreen{background-image:none} .avia-layerslider .ls-container.ls-fullwidth{margin-bottom:0 !important} .avia-layerslider{border-top-style:solid;border-top-width:1px;overflow:hidden !important} .avia-layerslider.container_wrap{max-width:100% !important} #top #wrap_all .ls-wp-container .ls-slide > *{line-height:1.1em} #top .avia-layerslider .ls-nav-prev,#top .avia-layerslider .ls-nav-next{display:block;text-decoration:none;color:#fff;position:absolute;width:60px;text-align:center;height:60px;line-height:62px;font-size:25px;top:50%;margin:-30px 15px 0;background:transparent;color:#fff;visibility:hidden;opacity:0.5;z-index:10000;left:30px} .avia-layerslider .ls-inner div,.avia-layerslider .ls-inner img{-webkit-backface-visibility:hidden} #top .avia-layerslider .ls-nav-next{left:auto;right:30px} #top .avia-layerslider .ls-nav-prev:before{text-indent:-4px} #top .avia-layerslider .ls-nav-prev:hover,#top .avia-layerslider .ls-nav-next:hover{opacity:1} #top .avia-layerslider .ls-nav-prev:before,#top .avia-layerslider .ls-nav-next:before{visibility:visible;display:block;position:absolute;z-index:100;background:#000;background:rgba(0,0,0,0.3);top:0;left:0;right:0;bottom:0;border-radius:3px;text-align:center;line-height:62px} #top .avia-layerslider .ls-nav-start,#top .avia-layerslider .ls-nav-stop{font-size:13px} #top .avia-layerslider .ls-bottom-slidebuttons a,#top .avia-layerslider .ls-nav-start,#top .avia-layerslider .ls-nav-stop{display:inline-block;height:10px;width:10px;border-radius:30px;background:#000;opacity:0.3;filter:alpha(opacity=30);border:2px solid #fff !important;text-indent:300%;overflow:hidden;text-indent:0;z-index:10000} #top .avia-layerslider .ls-bottom-slidebuttons{height:30px}#top .avia-layerslider .ls-bottom-slidebuttons a.ls-nav-active,#top .avia-layerslider .ls-bottom-slidebuttons a:hover,#top .avia-layerslider a.ls-nav-start:hover,#top .avia-layerslider a.ls-nav-stop:hover,#top .avia-layerslider a.ls-nav-start-active,#top .avia-layerslider a.ls-nav-stop-active{opacity:0.6;filter:alpha(opacity=60);background:#000} #top .avia-layerslider .ls-nav-start,#top .avia-layerslider .ls-nav-stop{position:relative;height:23px;width:23px;margin:0px 5px;top:-35px} #top .avia-layerslider .ls-nav-start:before,#top .avia-layerslider .ls-nav-stop:before{top:0;left:0;right:0;bottom:0;position:absolute;color:#fff;line-height:23px} #top .avia-layerslider .ls-nav-start:before{text-indent:1px} .avia-layerslider div .ls-fullwidth .ls-thumbnail-hover{bottom:39px;padding:2px;margin-left:2px} div .avia-layerslider .ls-fullwidth .ls-bottom-slidebuttons,div .avia-layerslider .ls-fullwidth div .avia-layerslider .ls-nav-start,div .avia-layerslider .ls-fullwidth .ls-nav-stop,div .avia-layerslider .ls-fullwidth .ls-nav-sides{top:-40px} #top .avia-layerslider .ls-wp-container{margin:0px auto !important} .avia-layerslider .ls-bottom-nav-wrapper{position:relative} html * div .avia-layerslider .ls-wp-container .ls-layer > *,body * div .avia-layerslider .ls-wp-container .ls-layer > *,#ls-global * div .avia-layerslider .ls-wp-container .ls-layer > *{line-height:1em} .avia-layerslider .ls-thumbnail-wrapper{bottom:120px;opacity:1 !important;display:block !important} #top .avia-layerslider .ls-nav-prev:before{content:\"\\E87c\"}#top .avia-layerslider .ls-nav-next:before{content:\"\\E87d\"}#top .avia-layerslider .ls-nav-start:before{content:\"\\E897\"}#top .avia-layerslider .ls-nav-stop:before{content:\"\\E899\"}#top .avia-layerslider .ls-bottom-slidebuttons a,#top .avia-layerslider .ls-nav-next:before,#top .avia-layerslider .ls-nav-prev:before,#top .avia-layerslider .ls-nav-start:before,#top .avia-layerslider .ls-nav-stop:before{font-family:\'entypo-fontello\'}\";}s:22:\"avia-module-social-css\";a:6:{s:4:\"name\";s:18:\"avia-module-social\";s:3:\"url\";s:118:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css\";s:4:\"path\";s:93:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/social_share/social_share.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:866:\".av-share-box{width:100%;clear:both;float:left;font-size:13px;margin-top:30px;margin-bottom:-50px;padding:0}.av-share-box .av-share-link-description{margin-bottom:20px}#top .av-share-box ul{margin:0;padding:0;list-style-type:none;overflow:hidden;border-style:solid;border-width:1px;display:table;width:100%;text-align:center;table-layout:fixed;border-radius:3px;background:transparent}.av-share-box ul li{margin:0;padding:0;display:table-cell;border-left-style:solid;border-left-width:1px}.av-share-box ul li:first-child{border:none}.av-share-box ul li a{display:block;padding:15px 0;text-decoration:none;color:inherit;font-size:14px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.av-share-box .avia-related-tooltip{width:150px} .av-social-sharing-box .av-share-box{margin:0}#top .av-social-sharing-box-minimal .av-share-box ul{border:none}\";}s:26:\"avia-module-tabsection-css\";a:6:{s:4:\"name\";s:22:\"avia-module-tabsection\";s:3:\"url\";s:116:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css\";s:4:\"path\";s:91:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3881:\".av-inner-tab-title,.av-tab-section-icon,.av-tab-arrow-container,.av-tab-section-image{width:90px} .av-tab-section-container{width:100%;overflow:hidden;position:relative;border:none} .av-tab-section-outer-container{overflow:hidden} .av-tab-section-inner-container{display:table;position:relative;left:0%;margin-left:-1px;margin-right:-1px} .av-tab-slide-transition .av-tab-section-inner-container{-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out} .av-layout-tab{width:100vw;display:block;vertical-align:middle;padding:50px 0;border-top-style:solid;border-top-width:1px} .js_active .av-layout-tab{display:table-cell;border:none} .av-tab-section-tab-title-container{text-align:center;padding:20px 0 0 0;display:none;position:relative;-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out} .js_active .av-tab-section-tab-title-container{display:block} #top .av-section-tab-title{padding:10px 20px 0px 20px;display:inline-block;text-decoration:none} .av-outer-tab-title{display:block} .av-inner-tab-title{text-transform:uppercase;display:block;line-height:1.2em;margin-top:7px;margin-bottom:3px;font-size:13px;text-align:center} .av-tab-with-image .av-inner-tab-title{display:table-cell;vertical-align:middle;height:40px} .av-tab-section-icon{display:inline-block;font-size:40px;line-height:1em} .av-tab-arrow-container{display:block;height:15px;overflow:hidden;position:relative;top:8px} .avia_transform .av-tab-arrow-container span{position:absolute;left:50%;width:50px;height:50px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);-webkit-transition:all 0.4s ease-in-out;transition:all 0.4s ease-in-out;top:40px} .avia_transform .av-active-tab-title .av-tab-arrow-container span{top:10px} .av-tab-section-image{display:block;opacity:0.65;filter:grayscale(1);background-size:contain;background-repeat:no-repeat;background-position:center;height:90px} .av-section-tab-title:hover .av-tab-section-image{opacity:0.85} .av-active-tab-title .av-tab-section-image{opacity:1;filter:grayscale(0)} .av-tab-image-circle .av-tab-section-image{border-radius:200px} .av-tab-image-rounded .av-tab-section-image{border-radius:4px} .av_tab_navigation{position:absolute} .avia-section-small .av-layout-tab{padding-top:20px;padding-bottom:20px} .avia-section-large .av-layout-tab{padding-top:70px;padding-bottom:70px} .avia-section-huge .av-layout-tab{padding-top:130px;padding-bottom:130px} .avia-section-no-padding .av-layout-tab{padding-top:0;padding-bottom:0} #top .av-custom-tab-color a{color:inherit} .av-tab-no-icon.av-tab-no-image .av-inner-tab-title{margin-bottom:15px} .avia-tab-title-padding-none .av-outer-tab-title{padding:0 0;position:relative;top:-6px} .avia-tab-title-padding-small .av-outer-tab-title{padding:0 0} .avia-tab-title-padding-default .av-outer-tab-title{padding:10px 0} .avia-tab-title-padding-large .av-outer-tab-title{padding:20px 0} .av-tab-with-icon .av-outer-tab-title{margin-bottom:10px;padding:0 0} .av-tab-without-text .av-outer-tab-title{display:none} #top .av-tab-without-text.av-section-tab-title{padding-top:0} #top .av-tab-below-content .av-tab-without-text.av-section-tab-title{padding-bottom:10px} .av-tab-below-content .av-tab-arrow-container{position:absolute;top:0} .avia_transform .av-tab-below-content .av-tab-arrow-container span{top:-65px} .avia_transform .av-tab-below-content .av-active-tab-title .av-tab-arrow-container span{top:-45px} #top .av-tab-below-content .av-section-tab-title{padding:5px 20px 0px 20px} .av-tab-below-content .av-tab-section-tab-title-container{padding:30px 0px 20px 0px} .boxed .av-layout-tab-inner .container,.av-framed-box .av-layout-tab-inner .container,.html_header_sidebar .av-layout-tab-inner .container{margin:0} .av-tab-content-auto .av-layout-tab-inner{-webkit-transition:height 0.4s ease-in-out;transition:height 0.4s ease-in-out}\";}s:21:\"avia-module-table-css\";a:6:{s:4:\"name\";s:17:\"avia-module-table\";s:3:\"url\";s:104:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css\";s:4:\"path\";s:79:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/table/table.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:5662:\"div .avia-table{background:transparent;width:100%;clear:both;margin:30px 0;table-layout:fixed}.avia-data-table .avia-heading-row .avia-desc-col{border-top:none;border-left:none}.avia-data-table .avia-button-row td{text-align:center}.avia-data-table .avia-center-col{text-align:center}.avia-data-table td:before{display:none}.avia-data-table .avia-pricing-row td,.avia-data-table .avia-pricing-row th{text-align:center;font-size:40px;line-height:1.3em}.avia-data-table .avia-desc-col{text-align:right}.avia-data-table .avia-pricing-row small{display:block;font-size:11px;font-style:italic;line-height:1.7em}.avia-data-table .avia-pricing-row .avia-desc-col{font-size:14px;text-align:right} .avia-data-table.avia_pricing_minimal th,.avia-data-table.avia_pricing_minimal td{text-align:center;padding:12px;color:inherit}#top .avia-data-table.avia_pricing_minimal tr{background:transparent} @media only screen and (max-width:767px){.responsive div .avia_responsive_table .avia-data-table table,.responsive div .avia_responsive_table .avia-data-table tbody,.responsive div .avia_responsive_table .avia-data-table tr,.responsive div .avia_responsive_table .avia-data-table td,.responsive div .avia_responsive_table .avia-data-table th{display:block;border-top:none;border-right:none;border-left:none;text-align:center} .responsive .avia_responsive_table .avia-data-table{border-style:solid;border-width:1px} .responsive .avia_responsive_table .avia-data-table .avia-pricing-row .avia-desc-col{text-align:center} .responsive .avia_responsive_table .avia-data-table .avia-button-row,.responsive .avia_responsive_table .avia-data-table tr:first-child th{display:none} .responsive .avia_responsive_table .avia-data-table td:before{display:block;font-style:italic;font-size:11px} .responsive .avia_responsive_table .avia-data-table td{position:relative} .responsive .avia_scrollable_table{width:100%;overflow-x:scroll;overflow-y:hidden;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar} .avia_scrollable_table .avia-table{width:auto} .responsive .avia_scrollable_table .avia-data-table > thead > tr > th,.responsive .avia_scrollable_table .avia-data-table > tbody > tr > th,.responsive .avia_scrollable_table .avia-data-table > tfoot > tr > th,.responsive .avia_scrollable_table .avia-data-table > thead > tr > td,.responsive .avia_scrollable_table .avia-data-table > tbody > tr > td,.responsive .avia_scrollable_table .avia-data-table > tfoot > tr > td{white-space:nowrap}} .avia-pricing-table-container{position:relative;clear:both;width:100%;display:table;table-layout:fixed}.pricing-table-wrap{display:table-cell}.pricing-table{margin:10px}.pricing-table>li{list-style-type:none;list-style-position:outside;padding:9px 12px;border-top-style:solid;border-top-width:1px;border-left-style:solid;border-left-width:1px;border-right-style:solid;border-right-width:1px;margin:0;text-align:center;position:relative} .avia-pricing-table-container .pricing-table>li:last-child{border-bottom-left-radius:3px;border-bottom-right-radius:3px;border-bottom-style:solid;border-bottom-width:1px;display:block} .pricing-table > li:first-child,.pricing-extra{border-top-left-radius:3px;border-top-right-radius:3px;border-top-style:solid;border-top-width:1px;border-left-style:solid;border-left-width:1px;border-right-style:solid;border-right-width:1px} .pricing-extra{display:none}.avia-desc-col.pricing-table li{border-style:dashed;border-left:none;border-right:none;text-align:right}#top .avia-desc-col.pricing-table .avia-button-row{border:none}#top .avia-button-row .avia-button-wrap{margin:10px 0}.avia-center-col.pricing-table{text-align:center}.pricing-table li.avia-pricing-row{text-align:center;font-size:60px;line-height:1em;padding:25px 12px;font-weight:600}.pricing-table li.avia-pricing-row small{display:block;font-size:16px;font-style:italic;line-height:1.4em;font-weight:normal;letter-spacing:1px;text-shadow:none} .pricing-table.avia-highlight-col .pricing-extra{display:block;position:absolute;top:-20px;height:25px;left:-1px;right:-1px;border-top-left-radius:5px;border-top-right-radius:5px} .pricing-table li.empty-table-cell{display:none}.pricing-table.avia-desc-col li.empty-table-cell{display:block}.fallback-table-val{visibility:hidden}.pricing-table.avia-highlight-col{box-shadow:0 0 9px 1px rgba(0,0,0,0.1);margin:4px}.pricing-table.avia-highlight-col>li:last-child{padding-bottom:25px}.pricing-table.avia-highlight-col .first-table-item{position:relative;top:-9px;z-index:10} .pricing-table li.avia-pricing-row .currency-symbol{font-size:0.5em;position:relative;top:-0.6em;line-height:1em;text-shadow:none;font-weight:normal}.avia_pricing_default .pricing-table li.avia-pricing-row small,.avia_pricing_default .pricing-table li.avia-pricing-row .currency-symbol{opacity:0.4;color:#fff;filter:alpha(opacity=40);text-shadow:0 1px 1px rgba(0,0,0,0.3)} .avia_show_empty_cells .pricing-table .empty-table-cell{display:block}.avia_pricing_minimal .pricing-table{box-shadow:0 0 1px 0px rgba(0,0,0,0.1)}#top .avia_pricing_minimal .pricing-table>li{border:none}.avia_pricing_minimal .pricing-table > li:first-child,#top .avia_pricing_minimal .pricing-extra,.avia_pricing_minimal .pricing-table>li:last-child{border-radius:0;border:none} .avia_pricing_minimal .pricing-table.avia-highlight-col .pricing-extra{left:0;right:0}.avia_pricing_minimal .pricing-table li.avia-pricing-row{font-weight:300} @media only screen and (max-width:767px){.responsive .avia-pricing-table-container ,.responsive .pricing-table-wrap{display:block} .responsive .pricing-table{display:block;margin-bottom:40px} .responsive .pricing-table.avia-desc-col{display:none}}\";}s:20:\"avia-module-tabs-css\";a:6:{s:4:\"name\";s:16:\"avia-module-tabs\";s:3:\"url\";s:102:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css\";s:4:\"path\";s:77:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3049:\"#top .tabcontainer{background:transparent} .tabcontainer{margin:30px 0;position:relative;width:100%;clear:both;overflow:hidden;background:transparent} .tab_titles{position:relative;width:100%;clear:both;float:left;z-index:5} .widget .tabcontainer{margin-top:0px} .js_active .tab_content{visibility:hidden;clear:both;padding:10px 19px;overflow:auto;position:absolute;top:0;z-index:0;left:120%;width:100%} .js_active .tab{cursor:pointer;margin:0 -1px 0 0;display:block;float:left;z-index:2;position:relative;padding:12px 16px;top:1px;font-size:0.8em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-style:solid;border-width:1px} .js_active .top_tab .tab{border-bottom:none;padding:12px 16px 14px 16px} .js_active .active_tab{z-index:4;position:relative;font-weight:bold} .js_active .tab_titles .tab:first-child{border-top-left-radius:2px} .js_active .tab_titles .tab:last-child{border-top-right-radius:2px} .js_active .active_tab_content{display:block;visibility:visible;z-index:3;position:relative;overflow:auto;border-style:solid;border-width:1px;border-radius:2px;left:0;width:auto} .tabcontainer .tab_icon{margin-right:7px;font-size:1em} .tab_inner_content{margin:11px 0;left:-200%;position:relative} .active_tab_content .tab_inner_content{left:0;position:relative} .sidebar_tab .tab_titles{width:30%;min-width:170px;max-width:250px;float:left;display:block} .sidebar_tab_right .tab_titles{float:right} .sidebar_tab .tab_titles .tab{width:100%;margin:0 0 -1px 0;top:0} .sidebar_tab .tab_content{overflow:hidden;clear:none;left:-1px} .sidebar_tab_right .tab_content{left:1px} .js_active .sidebar_tab .tab_titles .tab:last-child{border-top-right-radius:0;border-bottom-left-radius:2px} .sidebar_tab_left .active_tab.tab{width:100.5%;border-right:none} .sidebar_tab_right .active_tab.tab{width:100.5%;border-left:none;left:-1px} .noborder_tabs.sidebar_tab_left .tab_content,.noborder_tabs.sidebar_tab_right .tab_content{border:none;box-shadow:-8px 0px 20px -10px rgba(0,0,0,0.2);left:0;padding:0px 0 0 30px} .noborder_tabs.sidebar_tab_right .tab_content{box-shadow:8px 0px 20px -10px rgba(0,0,0,0.2);padding:0px 30px 0 0} .noborder_tabs.sidebar_tab_left .tab{border-left:none} .noborder_tabs.sidebar_tab_right .tab{border-right:none} .noborder_tabs .tab:first-child{border-top:none}.noborder_tabs .tab:last-child{border-bottom:none} .tabcontainer .tab.fullsize-tab{display:none} @media only screen and (max-width:767px){.responsive .tabcontainer{border-width:1px;border-style:solid;border-top:none;overflow:hidden} .responsive .tabcontainer .tab_titles{display:none} .responsive .tabcontainer .tab_content,.responsive .tabcontainer .tab{width:100%;max-width:100%;border-left:none;border-right:0;left:0;top:0;min-height:0!important} .responsive .tabcontainer .tab_content{border-bottom:none;padding:15px 30px;clear:both} .responsive .tabcontainer .tab.fullsize-tab{display:block;margin-bottom:-1px} .responsive .top_tab .tab.fullsize-tab{margin-bottom:0px}}\";}s:20:\"avia-module-team-css\";a:6:{s:4:\"name\";s:16:\"avia-module-team\";s:3:\"url\";s:102:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css\";s:4:\"path\";s:77:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/team/team.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2741:\".avia-team-member{margin:30px 0;clear:both}.avia-team-member.avia-builder-el-no-sibling{margin:0}.team-member-name{margin-top:7px;font-size:1.55em}.team-member-job-title{margin-top:-7px;font-size:1em}.team-member-description{}.team-social a{text-decoration:none;position:relative;border-radius:30px;padding:0 16px;background:#fff;margin:3px;display:inline-block;height:53px;line-height:54px;width:53px}.team-img-container{position:relative;overflow:hidden;border-radius:3px;text-align:center;margin-bottom:10px}.team-img-container img{display:block;margin:0 auto;width:100%}.team-img-container img.av-team-img-original{width:auto;max-width:100%} .avia-team-member .team-social{border:7px solid rgba(0,0,0,0.1);position:absolute;font-size:19px;background:#fff;background:rgba(255,255,255,0.7);opacity:0;visibility:hidden;top:0;left:0;right:0;bottom:0;text-align:center;border-radius:3px} .team-social-inner{width:100%;padding:0 5%;position:absolute;top:50%;margin-top:-26px;left:0} .team-img-container:hover .team-social{visibility:visible;opacity:1} .avia-team-member .plus-google:hover{color:#de5a49}.avia-team-member .rss:hover{color:#ffa133}.avia-team-member .facebook:hover{color:#37589b}.avia-team-member .twitter:hover{color:#46d4fe}.avia-team-member .mail:hover{color:#9fae37}.avia-team-member .dribbble:hover{color:#e44885}.avia-team-member .linkedin:hover{color:#419cca}.avia-team-member .search:hover{color:#222222}.avia-team-member .behance:hover{color:#008cfa}.avia-team-member .flickr:hover{color:#ff0086}.avia-team-member .forrst:hover{color:#234317}.avia-team-member .myspace:hover{color:#000000}.avia-team-member .tumblr:hover{color:#345574}.avia-team-member .vimeo:hover{color:#31baff}.avia-team-member .youtube:hover{color:#a72b1d}.avia-team-member .pinterest:hover{color:#cb2027}.avia-team-member .skype:hover{color:#12a5f4}.avia-team-member .five_100_px:hover{color:#222222}.avia-team-member .soundcloud:hover{color:#F76700}.avia-team-member .xing:hover{color:#006567}.avia-team-member .reddit:hover a{color:#FF4500} @media only screen and (max-width:989px){.responsive.av-no-preview .team-social a{padding:0 8px;background:#fff;margin:3px;margin-top:11px;display:inline-block;height:33px;line-height:32px;width:33px;border-style:solid;border-width:1px} .responsive.av-no-preview #top .avia-team-member .team-img-container img{position:relative;z-index:3} .responsive.av-no-preview #top .avia-team-member .team-social{border:1px solid rgba(0,0,0,0.1);position:relative;font-size:20px;background:#FFF;background:rgba(0,0,0,0.03);opacity:1;visibility:visible;top:auto;left:0;right:0;bottom:5px;height:60px;text-align:center;border-radius:3px;border-top-right-radius:0px;border-top-left-radius:0px;font-size:15px;z-index:1}}\";}s:28:\"avia-module-testimonials-css\";a:6:{s:4:\"name\";s:24:\"avia-module-testimonials\";s:3:\"url\";s:118:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css\";s:4:\"path\";s:93:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:5445:\".avia-testimonial{border-right-style:dashed;border-right-width:1px;border-bottom-style:dashed;border-bottom-width:1px;padding:20px} .avia-first-testimonial{clear:both}.avia-testimonial-wrapper .avia-testimonial-row:last-child .avia-testimonial{border-bottom:none}.avia-testimonial.avia-last-testimonial,.avia-grid-1-testimonials .avia-testimonial{border-right:none}.avia-testimonial-image img{border-radius:100px}.avia-testimonial-image{float:left;margin:0 20px 0 0;width:80px;height:80px;border-radius:100px;overflow:hidden;background-size:contain;background-position:center center}.avia-testimonial-content{overflow:hidden}.avia-testimonial-content p:first-child{margin-top:0}.avia-testimonial-meta{position:relative;overflow:hidden;margin-left:100px}.avia-testimonial-meta-mini{overflow:hidden;line-height:1.3em;padding-top:0.2em}.avia-testimonial-name{display:block}.avia-testimonial-arrow-wrap{display:none} .avia-testimonial-wrapper{display:table;margin:30px 0;clear:both;width:100%;table-layout:fixed}.avia-testimonial-row{display:table-row}body div .avia-testimonial{display:table-cell;float:none} .avia_transform .avia-testimonial .avia-testimonial-image{opacity:0.2;-webkit-transform:scale(0.5);transform:scale(0.5)} .avia_transform .avia_start_animation.avia-testimonial .avia-testimonial-image{-webkit-animation:avia_appear 0.4s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_appear 0.4s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1;-webkit-transform:scale(1);transform:scale(1)} .av-minimal-grid-style .avia-testimonial{border:none;padding:40px}.av-minimal-grid-style .avia-testimonial-image{width:45px;height:45px;margin:0 15px 0 0;overflow:visible}.av-minimal-grid-style .avia-testimonial-meta{margin-left:0;overflow:visible}.av-minimal-grid-style .avia-testimonial-meta-mini{} .av-boxed-grid-style.avia-testimonial-wrapper{border-spacing:3px;border-collapse:separate}.av-boxed-grid-style .avia-testimonial{border:none;padding:0px}.av-boxed-grid-style .avia-testimonial_inner{padding:40px} .avia-testimonial.avia-first-testimonial{padding-left:0}.avia-testimonial.avia-last-testimonial{padding-right:0} #top .avia-slider-testimonials.avia-testimonial-wrapper{display:block;clear:both;position:relative}#top .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial-row{display:block;width:100%;position:relative}#top .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial{visibility:hidden;border:none;width:100%;float:none;padding:0;position:absolute;top:0}.js_active .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial{opacity:0}#top .avia-slider-testimonials.avia-testimonial-wrapper .avia-testimonial:first-child{display:block;visibility:visible;position:relative}.avia-slider-testimonials .avia-testimonial-meta{margin:13px 0 0 20px;overflow:visible;font-size:12px}.avia-slider-testimonials .avia-testimonial-meta .avia-testimonial-image{margin:0 10px 0 0;width:40px;height:40px}.avia-slider-testimonials .avia-testimonial-content{padding:15px;border-style:solid;border-width:1px;border-radius:2px}.avia-slider-testimonials .avia-testimonial-content p:last-child{margin-bottom:0}.avia-slider-testimonials .avia-testimonial-arrow-wrap{display:block;position:absolute;top:-14px;left:14px;overflow:hidden;width:10px;height:10px}.avia-slider-testimonials .avia-testimonial-name{font-size:14px}.avia_mobile .avia-slider-testimonials{pointer-events:none} #top .av-large-testimonial-slider{text-align:center;pointer-events:all}#top .av-large-testimonial-slider .avia-testimonial-content{border:none;padding:0;background:transparent;font-size:1.3em;line-height:1.65em}#top .av-large-testimonial-slider .avia-testimonial-meta{display:inline-block;width:auto;margin:30px 0 0 0}#top .av-large-testimonial-slider .avia-testimonial-arrow-wrap{display:none}#top .av-large-testimonial-slider .avia-testimonial-meta-mini{text-align:left;overflow:visible;float:left;line-height:1.8em;padding-top:0}#top .av-large-testimonial-slider .avia-testimonial-name{font-size:1.6em;margin-top:1em}#top .av-large-testimonial-slider .avia-testimonial-meta .avia-testimonial-image{width:80px;height:80px}#top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial{padding:0px 100px } #top .av-large-testimonial-slider .avia-slideshow-arrows a{top:0;margin-top:-1px;color:inherit;opacity:0.1;font-size:45px}#top .av-large-testimonial-slider:hover .avia-slideshow-arrows a{opacity:0.5}#top .av-large-testimonial-slider .avia-slideshow-arrows a:hover{opacity:0.9}#top .av-large-testimonial-slider .avia-slideshow-arrows a:before{background:transparent} @media only screen and (max-width:767px){.responsive .avia-testimonial-wrapper,.responsive .avia-testimonial-row,.responsive .avia-testimonial{display:block;width:100%;float:none} .responsive .avia-testimonial{padding:20px 0;border-right:none;margin:0} .responsive #top .avia-testimonial{border-bottom-style:dashed;border-bottom-width:1px} .responsive #top .avia-testimonial-row:last-child .avia-testimonial:last-child{border:none} .responsive #top .avia-slider-testimonials .avia-testimonial{border:none} .responsive #top .av-large-testimonial-slider.avia-testimonial-wrapper .avia-testimonial{padding:0px 70px ;font-size:0.85em} .responsive #top .av-large-testimonial-slider .avia-slideshow-arrows a{font-size:30px}} @media only screen and (max-width:479px){.responsive .avia-grid-testimonials .avia-testimonial-meta{margin-left:0}}\";}s:23:\"avia-module-toggles-css\";a:6:{s:4:\"name\";s:19:\"avia-module-toggles\";s:3:\"url\";s:108:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css\";s:4:\"path\";s:83:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:3607:\".js_active .toggle_wrap{visibility:hidden;position:absolute;z-index:0;width:100%;left:120%} .active_tc.toggle_wrap{position:static;visibility:visible;left:0;width:auto;z-index:1;display:none} .js_active .toggler{cursor:pointer;display:block;margin:0;padding:9px 3px 9px 35px;position:relative;top:1px;border-style:solid;border-width:1px;line-height:1.65em;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none} .togglecontainer{margin:30px 0;position:relative;clear:both} .togglecontainer .single_toggle:first-child .toggler,.togglecontainer .taglist + .single_toggle .toggler{border-top-left-radius:2px;border-top-right-radius:2px} .togglecontainer > div:last-of-type .toggler{border-bottom-left-radius:2px;border-bottom-right-radius:2px} .togglecontainer > p.activeTitle{border-radius:0} .toggle_content{padding:12px 30px 11px 30px;margin:0px 0 5px 0;border-style:solid;border-width:1px;border-top:none;border-bottom-left-radius:2px;border-bottom-right-radius:2px;overflow:hidden} .toggle_icon{position:absolute;width:15px;height:15px;border-style:solid;border-width:1px;top:50%;left:10px;margin-top:-8px} .toggle_icon .vert_icon{border-left-style:solid;border-left-width:3px;position:absolute;left:5px;top:1px;height:11px} .toggle_icon .hor_icon{border-top-style:solid;border-top-width:3px;position:absolute;top:5px;left:1px;width:11px} .activeTitle .toggle_icon .vert_icon{border:none} .hasCurrentStyle .toggle_icon,.hasCurrentStyle .toggle_icon > span{border-color:inherit !important} #top .av_toggle_section .av-inherit-border-color *{border-color:inherit}#top .av_toggle_section .av-inherit-font-color *{color:inherit} .taglist{margin-bottom:5px}.taglist .tag-seperator:last-child{display:none}.taglist .tag-seperator{padding:0px 4px}.single_toggle{width:100%;float:left;display:block;margin:0 0 -2px 0;padding-bottom:1px;overflow:hidden;position:relative} .av-minimal-toggle.togglecontainer .single_toggle .toggler{border-radius:0;border-left:none;border-right:none;border-top:none;font-size:1.1em}.av-minimal-toggle .toggle_content{border-radius:0;border:none;padding:12px 35px 11px 35px}.av-minimal-toggle .single_toggle{margin:0 0 7px 0;padding-bottom:0px}.av-minimal-toggle .toggle_icon{margin-top:-7px;border:none}.av-minimal-toggle .toggler:hover{opacity:0.8}.av-minimal-toggle .activeTitle.toggler:hover{opacity:1} .av-elegant-toggle.togglecontainer .single_toggle:first-child .toggler,.av-elegant-toggle.togglecontainer .taglist + .single_toggle .toggler{border-top-left-radius:0;border-top-right-radius:0} .av-elegant-toggle.togglecontainer .av_toggle_section:first-of-type .toggler{border-top-width:1px;border-top-style:1px} .js_active .av-elegant-toggle .toggler{padding:35px 10px 30px 35px;font-size:17px;top:0;border-top-width:0;border-left-width:0;border-right-width:0} .av-elegant-toggle .toggle_icon{width:32px;height:32px;border-radius:40px;left:auto;right:20px;margin-top:-16px;border-width:2px;opacity:0.4;transition:all 0.2s ease-in} .av-elegant-toggle .activeTitle .toggle_icon,.av-elegant-toggle .single_toggle:hover .toggle_icon{opacity:1} .av-elegant-toggle .toggle_icon .hor_icon,.av-elegant-toggle .toggle_icon .vert_icon{border-width:2px;top:50%;left:50%;transform:translateX(-50%) translateY(-50%)} .av-elegant-toggle .toggle_content{margin-bottom:0;font-size:15px;line-height:1.4;padding:20px 35px 30px 35px;border-top-width:0;border-left-width:0;border-right-width:0;border-bottom-width:1px;border-radius:0} .av-elegant-toggle .single_toggle{border-width:0;margin:0;padding:0;float:none}\";}s:21:\"avia-module-video-css\";a:6:{s:4:\"name\";s:17:\"avia-module-video\";s:3:\"url\";s:104:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css\";s:4:\"path\";s:79:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1275:\".avia-video,.avia-iframe-wrap{clear:both;position:relative;margin-bottom:20px} .avia-video,.avia-video iframe,.avia-video video{background-color:#000} .avia-video iframe,.js_active .avia-iframe-wrap iframe,div .avia-video .avia-iframe-wrap{position:absolute;width:100%;height:100%;left:0;top:0;padding:0}.avia-video-custom{height:0}.avia-video-16-9,.js_active .avia-iframe-wrap{padding-bottom:56.25%;height:0}.avia-video-4-3{padding-bottom:75%;height:0} video{width:100%;height:auto} .mejs-layer{z-index:1;width:100% !important} .mejs-layer.mejs-overlay-play{height:100% !important} #top .avia-video .mejs-container,#top .avia-video .mejs-container video{height:100% !important;width:100% !important;position:absolute} #top .avia-video .av-click-to-play-overlay{position:absolute;left:0;top:0;width:100%;height:100%;cursor:pointer;z-index:1000} #top .avia-video .av-click-to-play-overlay .avia_playpause_icon{display:block;-webkit-transition:opacity 0.4s ease-out;transition:opacity 0.4s ease-out} #top .avia-video .av-click-to-play-overlay:hover .avia_playpause_icon{opacity:0.7} .avia-video .mejs-poster,.avia-video{background-position:center center;background-size:cover}.avia-video .mejs-poster{position:absolute;height:100% !important;width:100% !important;top:0;left:0}\";}s:12:\"avia-scs-css\";a:6:{s:4:\"name\";s:8:\"avia-scs\";s:3:\"url\";s:68:\"https://solsculpting.com/wp-content/themes/enfold/css/shortcodes.css\";s:4:\"path\";s:43:\"wp-content/themes/enfold/css/shortcodes.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:23967:\"p:empty,.entry-content-wrapper:empty{display:none}.avia-shadow{box-shadow:inset 0 1px 3px rgba(0,0,0,0.1)} .webkit_fix{-webkit-perspective:1000px;-webkit-backface-visibility:hidden} body .container_wrap .avia-builder-el-no-sibling{margin-top:0;margin-bottom:0}body .container_wrap .avia-builder-el-last{margin-bottom:0}body .container_wrap .avia-builder-el-first{margin-top:0} body .av-align-left{text-align:left}body .av-align-right{text-align:right}body .av-align-center{text-align:center} #top .av_inherit_color *{color:inherit}#top .av_inherit_color a{text-decoration:underline} #top .av_opacity_variation{opacity:0.7} #top .av-shortcode-disabled-notice{display:block;text-align:center;margin:5px;padding:20px;background-color:#FFFDF3;color:#C96D11;border:1px solid #E6BF4A;clear:both}#top .av-shortcode-disabled-notice a{color:inherit;text-decoration:underline} .av-screen-reader-only{position:absolute;left:-10000px;top:auto;width:1px;height:1px;overflow:hidden} .avia_textblock{clear:both;line-height:1.65em} .flex_column + .avia_textblock{padding-top:50px} body .column-top-margin{margin-top:50px} body .flex_column.avia-link-column{cursor:pointer}body .flex_column.avia-link-column.avia-link-column-hover:hover{opacity:0.8} .av-icon-display{display:block;font-size:30px;line-height:58px;margin:0 auto 20px auto;width:60px;border-radius:100px;border-style:solid;border-width:1px;text-align:center;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .avia-section{clear:both;width:100%;float:left;min-height:100px;position:static} .avia-section.avia-section-small{min-height:0} .js_active .av-minimum-height .container{z-index:1;opacity:0;-webkit-transition:opacity 0.6s ease-in;transition:opacity 0.6s ease-in} .js_active.av-preloader-enabled .av-minimum-height .container{-webkit-transition:opacity 1.2s ease-in;transition:opacity 1.2s ease-in} .avia-section.av-minimum-height .container{display:table;table-layout:fixed}.avia-section.av-minimum-height .container .content{display:table-cell;vertical-align:middle;height:100%;float:none !important}.av-minimum-height-100 .container{height:1500px} .avia-full-stretch{background-size:cover !important} .avia-full-contain{background-size:contain !important} .avia_mobile .avia-full-stretch{background-attachment:scroll !important} #top #main .avia-section .template-page{width:100%;border:none;margin-left:auto;padding-left:0;margin-right:auto} .avia-section .template-page .entry-content-wrapper{padding-right:0} .avia-section-small .content,.avia-section-small .sidebar{padding-top:20px;padding-bottom:20px}.avia-section-large .content,.avia-section-large .sidebar{padding-top:70px;padding-bottom:70px}.avia-section-huge .content,.avia-section-huge .sidebar{padding-top:130px;padding-bottom:130px}.avia-section-no-padding .content,.avia-section-no-padding .sidebar,.avia-section-custom .content,.avia-section-custom .sidebar{padding-top:0;padding-bottom:0} .html_header_sticky_disabled .container_wrap:first-child,.avia-section.avia-full-stretch,.html_header_transparency .avia-section.avia-builder-el-0{border-top:none}#top #wrap_all #main .avia-no-border-styling{border:none} #top .scroll-down-link{height:60px;width:80px;margin:0px 0 0 -40px;line-height:60px;position:absolute;left:49.85%;bottom:0px;color:#FFF;text-align:center;font-size:70px;z-index:100;text-decoration:none;text-shadow:0px 0px 3px rgba(0,0,0,0.4);-webkit-animation:avia_fade_move_down 2s ease-in-out infinite;animation:avia_fade_move_down 2s ease-in-out infinite} #top .av-section-with-video-bg{border-top:none;position:relative} #top .av-section-video-bg{position:absolute;top:0;left:0;right:0;bottom:0;padding:0;margin:0;z-index:1} #top .av-section-video-bg .av-click-to-play-overlay{display:none} #top .av-section-video-bg .avia-slideshow-inner{height:100% !important} #top .av-section-with-video-bg .av-section-video-bg .av-video-service-vimeo iframe{-webkit-transform:scale(1.2);-ms-transform:scale(1.2);transform:scale(1.2)} .avia_mobile #top .av-parallax-section{z-index:0;-webkit-transform:translate3d(0,0,0)}.avia_mobile #top .av-parallax{position:absolute;z-index:-10}.avia_mobile #top .av-parallax .container{z-index:10}.avia_mobile #top .av-section-mobile-video-disabled .av-section-video-bg{display:none}.avia_desktop #top .av-section-mobile-video-disabled{background-image:none !important}.avia_desktop #top .av-section-mobile-video-disabled .av-parallax{display:none} .av-parallax-section{position:relative;border-top:none;overflow:hidden} .av-parallax{position:absolute;bottom:0;left:0;width:100%;height:100%;z-index:0;height:calc((100vh * 0.3) + 100%);will-change:transform} .av-parallax-inner{position:absolute;width:100%;height:100%;bottom:0;left:0} .js_active .av-parallax{opacity:0}.js_active .av-parallax.enabled-parallax{opacity:1}.js_active .av-parallax.active-parallax{opacity:1;-webkit-transition:opacity 0.3s ease-in-out;transition:opacity 0.3s ease-in-out} .avia_transform .av-extra-border-element{position:relative;width:100%;overflow:visible} .avia_transform .av-extra-border-element.border-extra-arrow-down{position:relative;width:50px;height:25px;left:50%;margin-left:-26px;margin-top:-1px;z-index:25;margin-bottom:-25px;clear:both} .avia_transform .av-extra-border-element .av-extra-border-outer{overflow:hidden;height:100%;width:100%;position:absolute} .avia_transform .av-extra-border-element.border-extra-arrow-down .av-extra-border-inner{position:absolute;left:50%;width:50px;height:50px;-webkit-transform:translateX(-50%) rotate(45deg);transform:translateX(-50%) rotate(45deg);top:-39px} .av-section-color-overlay + .container + .border-extra-diagonal,.av-section-color-overlay + .scroll-down-link + .container + .border-extra-diagonal{z-index:1} .avia_transform .av-extra-border-element.border-extra-diagonal{height:250px;margin-top:-250px} .avia_transform .av-extra-border-element.border-extra-diagonal .av-extra-border-inner{top:250px;right:0;width:110%;height:100%;-webkit-transform-origin:right top;transform-origin:right top;-webkit-transform:rotate(5deg);transform:rotate(5deg);position:absolute} .avia_transform .av-extra-border-element.border-extra-diagonal.border-extra-diagonal-inverse .av-extra-border-inner{-webkit-transform:rotate(-5deg);transform:rotate(-5deg);-webkit-transform-origin:left top;transform-origin:left top;right:auto;left:0} .av-extra-border-element.diagonal-box-shadow .av-extra-border-inner{box-shadow:0 0 44px -8px rgba(0,0,0,0.2)} div .av-section-color-overlay-wrap{position:relative;width:100%}.html_header_sidebar .av-section-color-overlay-wrap{float:left}div .av-section-color-overlay{position:absolute;top:0;left:0;bottom:0;width:100%}div .av-arrow-down-section .av-section-color-overlay{bottom:24px}div .av-section-color-overlay{z-index:1}div .av-video-service-html5 .av-section-color-overlay{z-index:8} .html_minimal_header #main > .avia-builder-el-0,.av_minimal_header + #main .container_wrap_first:first-child{border-top:none} .av_dropcap1{display:block;float:left;font-size:38px;line-height:32px;margin:4px 8px 0 0} .av_dropcap2{display:block;float:left;font-size:18px;line-height:35px;width:35px;text-align:center;margin:4px 8px 0 0;border-radius:100px;font-weight:bold} fieldset{border:none} #top select,#top .avia_ajax_form .select,#top .entry-content-wrapper select{-webkit-appearance:none;border-radius:0px;background-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);background-position:center right;background-repeat:no-repeat;border-radius:2px} #top select[multiple],#top .avia_ajax_form .select[multiple]{background-image:none} #top select[multiple]{background-image:none} .avia-builder-widget-area{position:relative} .flex_column .widget:first-child,.content .widget:first-child{padding-top:0;border-top:none} .flex_column .widget .widgettitle ,.content .widget .widgettitle{margin-top:0.85em} .avia_textblock .wp-playlist{margin:0}.wp-playlist-light .wp-playlist-item.wp-playlist-playing{background:transparent}.wp-playlist-current-item img{border-radius:3px}.wp-playlist-current-item img[src$=\"media/audio.png\"]{border-radius:0px;background:#fff}.wp-playlist-item-meta.wp-playlist-item-title{font-weight:bold}.wp-playlist-tracks .wp-playlist-item{padding:4px 3px}.wp-playlist-tracks .wp-playlist-item-length{top:4px}div .mejs-controls .mejs-time-rail .mejs-time-loaded,div .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current{background:#9c9c9c}div .mejs-controls .mejs-time-rail > span,div .mejs-controls .mejs-time-rail a,div .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,div .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{height:7px}div .mejs-controls div.mejs-time-rail{padding-top:7px}div .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-total{top:12px}div .mejs-container,div .mejs-embed,div .mejs-embed body,div .mejs-container div .mejs-controls{background:transparent}div .mejs-container{border-radius:2px;background:#313131}div .wp-playlist-item-album{font-style:normal}div .mejs-controls .mejs-playpause-button ,div .mejs-controls .mejs-volume-button{height:30px}#top .mejs-container .mejs-controls .mejs-time,#top .mejs-time-rail .mejs-time-float{color:#fff}#top .mejs-time-rail .mejs-time-float{border:none}div .mejs-container .mejs-controls{height:30px;width:100%}#top .mejs-container{height:30px}#top .mejs-container.mejs-audio{max-height:30px} div .mejs-button>button{margin:6px 6px}div .mejs-time{padding:12px 6px 0;height:18px}div .mejs-time-rail,div .mejs-horizontal-volume-slider{height:30px}div .mejs-controls .mejs-time-rail .mejs-time-handle{display:none}div .mejs-time-buffering,div .mejs-time-current,div .mejs-time-float-corner,div .mejs-time-hovered,div .mejs-time-loaded,div .mejs-time-marker,div .mejs-time-total{height:7px;outline:none}div .mejs-controls{padding:0} #top .av-toggle-switch{display:block;margin-bottom:10px;margin-top:10px;opacity:0;text-align:left} #top .av-toggle-switch.active{-webkit-animation:avia-fadein 1s 1 ease-in;animation:avia-fadein 1s 1 ease-in;opacity:1} #top .av-toggle-switch input[type=\"checkbox\"]{display:none}#top .av-toggle-switch label{cursor:pointer;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#top .av-toggle-switch label .toggle-track{display:block;height:27px;width:54px;background:rgba(0,0,0,0.08);border-radius:100px;position:relative;margin-right:15px;border:1px solid rgba(0,0,0,0.15);clear:both;vertical-align:bottom;float:left;transition:all .1s ease-in} #top .av-toggle-switch .toggle-track:before{content:\'\';display:inline;height:25px;width:25px;background:#fff;border-radius:100px;position:absolute;top:0;right:0;transition:right .1s ease-in;box-shadow:rgba(0,0,0,0.2) 0px 1px 1px 1px} #top .av-toggle-switch.av-cookie-sc-disabled .toggle-track{opacity:0.2} #top .av-toggle-switch input[type=\"checkbox\"]:checked + .toggle-track:before{right:27px} #top .av-toggle-switch input[type=\"checkbox\"]:checked + .toggle-track{background:#5dceba} #top .av-toggle-switch .toggle-label-content{color:inherit;font-weight:bold;display:block;overflow:hidden;font-size:inherit} #top .avia-cookie-consent-modal-buttons-wrap{text-align:center} .avia-tooltip{position:absolute;z-index:9999999;padding:12px;margin-top:-18px;margin-left:-4px;background:#000;background:rgba(0,0,0,0.8);color:#fff;width:140px;border-radius:2px;text-align:center} .avia-tooltip .inner_tooltip{font-size:0.925em;line-height:1.65em} #top .avia-tooltip.transparent_dark,#top .avia-tooltip.transparent_dark .avia-arrow{background:#000;background:rgba(0,0,0,0.8);color:#fff;border:none} #top .avia-tooltip.transparent_dark h1,#top .avia-tooltip.transparent_dark h2,#top .avia-tooltip.transparent_dark h3,#top .avia-tooltip.transparent_dark h4,#top .avia-tooltip.transparent_dark h5,#top .avia-tooltip.transparent_dark h6{color:inherit} .avia-tooltip.av-tooltip-shadow,.avia-tooltip.av-tooltip-shadow .avia-arrow{box-shadow:0px 0px 10px 0px rgba(0,0,0,0.15)} .avia-tooltip ul,.avia-tooltip ol,.avia-tooltip blockquote{text-align:left;list-style-position:inside} .avia-tooltip .avia-arrow{background:rgba(0,0,0,0.8);border:none} .avia-tooltip .avia-arrow-wrap{width:20px;height:20px;position:absolute;bottom:-20px;left:50%;margin-left:-7px;overflow:hidden} .avia-tooltip .inner_tooltip br:first-child{display:none} .av-tt-hotspot .avia-arrow-wrap{bottom:auto;bottom:-19px}.transparent_dark.av-tt-hotspot .avia-arrow-wrap{bottom:-20px} .avia-tooltip.av-tt-pos-below{margin-top:18px}.avia-tooltip.av-tt-pos-below .avia-arrow-wrap{bottom:auto;top:-19px}.avia-tooltip.av-tt-pos-below .avia-arrow{bottom:-6px;top:auto} .avia-tooltip.av-tt-pos-left{margin-top:0;margin-left:-18px}.avia-tooltip.av-tt-pos-left .avia-arrow-wrap{left:auto;margin-left:0;right:-19px;top:50%;margin-top:-10px}.avia-tooltip.av-tt-pos-left .avia-arrow{top:5px;left:-5px;margin-left:0} .avia-tooltip.av-tt-pos-right{margin-top:0;margin-left:18px}.avia-tooltip.av-tt-pos-right .avia-arrow-wrap{left:-19px;margin-left:0;top:50%;margin-top:-10px}.avia-tooltip.av-tt-pos-right .avia-arrow{top:5px;left:auto;right:-5px;margin-left:0} .av-tt-pos-above.av-tt-align-right.avia-tooltip,.av-tt-pos-below.av-tt-align-right.avia-tooltip{margin-left:4px}.av-tt-pos-above.av-tt-align-left .avia-arrow-wrap,.av-tt-pos-below.av-tt-align-left .avia-arrow-wrap{left:0;margin-left:7px}.av-tt-pos-above.av-tt-align-right .avia-arrow-wrap,.av-tt-pos-below.av-tt-align-right .avia-arrow-wrap{left:auto;right:0;margin-left:auto;margin-right:7px} .av-tt-pos-left.av-tt-align-top .avia-arrow-wrap,.av-tt-pos-right.av-tt-align-top .avia-arrow-wrap{top:0;margin-top:2px}.av-tt-pos-left.av-tt-align-bottom .avia-arrow-wrap,.av-tt-pos-right.av-tt-align-bottom .avia-arrow-wrap{bottom:0;margin-bottom:4px;top:auto} .av-tt-pos-above.av-tt-align-centered,.av-tt-pos-below.av-tt-align-centered{text-align:center} .avia_transform.avia_desktop .av-animated-generic{opacity:0} .avia_transform .avia_start_delayed_animation.fade-in{-webkit-animation:avia-fadein 1.5s 1 ease-out;animation:avia-fadein 1.5s 1 ease-out;opacity:1} .avia_transform .avia_start_delayed_animation.pop-up{-webkit-animation:avia_image_appear 0.5s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia_image_appear 0.5s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} .avia_transform .avia_start_delayed_animation.top-to-bottom{-webkit-animation:avia-ttb 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia-ttb 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} .avia_transform .avia_start_delayed_animation.bottom-to-top{-webkit-animation:avia-btt 0.8s 1 cubic-bezier(0.165,0.840,0.440,1.000);animation:avia-btt 0.8s 1 cubic-bezier(0.165,0.840,0.440,1.000);opacity:1} .avia_transform .avia_start_delayed_animation.left-to-right{-webkit-animation:avia-ltr 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia-ltr 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} .avia_transform .avia_start_delayed_animation.right-to-left{-webkit-animation:avia-rtl 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia-rtl 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} .avia_transform .avia_start_delayed_animation.av-rotateIn{-webkit-animation:avia-rotateIn 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia-rotateIn 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} .avia_transform .avia_start_delayed_animation.av-rotateInUpLeft{-webkit-animation:avia-rotateInUpLeft 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia-rotateInUpLeft 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} .avia_transform .avia_start_delayed_animation.av-rotateInUpRight{-webkit-animation:avia-rotateInUpRight 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);animation:avia-rotateInUpRight 0.8s 1 cubic-bezier(0.175,0.885,0.320,1.275);opacity:1} @-webkit-keyframes avia_appear{0%{-webkit-transform:scale(0.5);opacity:0.1} 100%{-webkit-transform:scale(1);opacity:1}}@keyframes avia_appear{0%{transform:scale(0.5);opacity:0.1} 100%{transform:scale(1);opacity:1}} @-webkit-keyframes avia_image_appear{0%{-webkit-transform:scale(0.7);opacity:0.1} 100%{-webkit-transform:scale(1);opacity:1}}@keyframes avia_image_appear{0%{transform:scale(0.7);opacity:0.1} 100%{transform:scale(1);opacity:1}} @-webkit-keyframes avia_hotspot_appear{0%{-webkit-transform:translate(0,80px);opacity:0.1} 100%{-webkit-transform:translate(0,0px);opacity:1}}@keyframes avia_hotspot_appear{0%{transform:translate(0,80px);opacity:0.1} 100%{transform:translate(0,0px);opacity:1}} @-webkit-keyframes avia_appear_short{0%{-webkit-transform:scale(0.5);opacity:0} 50%{opacity:1} 100%{-webkit-transform:scale(1);opacity:0}}@keyframes avia_appear_short{0%{transform:scale(0.5);opacity:0} 50%{opacity:1} 100%{transform:scale(1);opacity:0}} @-webkit-keyframes avia_msonry_show{0%{-webkit-transform:translateZ(300px) translateY(200px) rotateX(-70deg);opacity:0.1} 100%{-webkit-transform:translateZ(0px) translateY(0px) rotateX(0deg);opacity:1}}@keyframes avia_msonry_show{0%{transform:translateZ(300px) translateY(200px) rotateX(-70deg);opacity:0.1} 100%{transform:translateZ(0px) translateY(0px) rotateX(0deg);opacity:1}} @-webkit-keyframes avia_fade_move_down{0%{-webkit-transform:translate(0,-20px);opacity:0} 50%{opacity:1} 100%{-webkit-transform:translate(0,20px);opacity:0}}@keyframes avia_fade_move_down{0%{transform:translate(0,-20px);opacity:0} 50%{opacity:1} 100%{transform:translate(0,20px);opacity:0}} @-webkit-keyframes avia_slide_down{0%{height:0%} 100%{height:100%}}@keyframes avia_slide_down{0%{height:0%} 100%{height:100%}} @-webkit-keyframes avia_expand{0%{width:0%} 100%{width:100%}}@keyframes avia_expand{0%{width:0%} 100%{width:100%}} @-webkit-keyframes avia-ltr{0%{-webkit-transform:translate(-10%,0);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes avia-ltr{0%{transform:translate(-10%,0);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes avia-rtl{0%{-webkit-transform:translate(10%,0);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes avia-rtl{0%{transform:translate(10%,0);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes avia-btt{0%{-webkit-transform:translate(0,50%);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes avia-btt{0%{transform:translate(0,50%);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes avia-ttb{0%{-webkit-transform:translate(0,-10%);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes avia-ttb{0%{transform:translate(0,-10%);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes avia-fadein{0%{opacity:0} 100%{opacity:1}}@keyframes avia-fadein{0%{opacity:0} 100%{opacity:1}} @-webkit-keyframes avia-rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0} 100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}} @keyframes avia-rotateIn{0%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0} 100%{-webkit-transform-origin:center;transform-origin:center;-webkit-transform:none;transform:none;opacity:1}} @-webkit-keyframes avia-rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0} 100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}} @keyframes avia-rotateInUpLeft{0%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0} 100%{-webkit-transform-origin:left bottom;transform-origin:left bottom;-webkit-transform:none;transform:none;opacity:1}} @-webkit-keyframes avia-rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-22deg);transform:rotate3d(0,0,1,-22deg);opacity:0} 100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}} @keyframes avia-rotateInUpRight{0%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:rotate3d(0,0,1,-22deg);transform:rotate3d(0,0,1,-22deg);opacity:0} 100%{-webkit-transform-origin:right bottom;transform-origin:right bottom;-webkit-transform:none;transform:none;opacity:1}} @-webkit-keyframes avia-bg-move{0%{background-position:-31px 0} 100%{background-position:0 0}}@keyframes avia-bg-move{0%{background-position:-31px 0} 100%{background-position:0 0}} @-webkit-keyframes caption-right{0%{-webkit-transform:translate(2000px,0);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes caption-right{0%{transform:translate(2000px,0);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes caption-left{0%{-webkit-transform:translate(-2000px,0);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes caption-left{0%{transform:translate(-2000px,0);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes caption-top{0%{-webkit-transform:translate(0,-20px);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes caption-top{0%{transform:translate(0,-20px);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes caption-bottom{0%{-webkit-transform:translate(0,20px);opacity:0} 100%{-webkit-transform:translate(0,0);opacity:1}}@keyframes caption-bottom{0%{transform:translate(0,20px);opacity:0} 100%{transform:translate(0,0);opacity:1}} @-webkit-keyframes av_pulsate{0%{-webkit-transform:scale(0.1);opacity:0.0} 50%{opacity:0.7} 100%{-webkit-transform:scale(1);opacity:0.0}} @keyframes av_pulsate{0%{transform:scale(0.1);opacity:0.0} 50%{opacity:0.7} 100%{transform:scale(1);opacity:0.0}} @-webkit-keyframes sonarEffect{0%{opacity:0.3} 40%{opacity:0.5;box-shadow:0 0 0 2px rgba(255,255,255,0.1),0 0 10px 10px #fff,0 0 0 10px rgba(255,255,255,0.5)} 100%{box-shadow:0 0 0 2px rgba(255,255,255,0.1),0 0 10px 10px #fff,0 0 0 10px rgba(255,255,255,0.5);-webkit-transform:scale(1.5);opacity:0}}@keyframes sonarEffect{0%{opacity:0.3} 40%{opacity:0.5;box-shadow:0 0 0 2px rgba(255,255,255,0.1),0 0 10px 10px #fff,0 0 0 10px rgba(255,255,255,0.5)} 100%{box-shadow:0 0 0 2px rgba(255,255,255,0.1),0 0 10px 10px #fff,0 0 0 10px rgba(255,255,255,0.5);transform:scale(1.5);opacity:0}}\";}s:18:\"avia-popup-css-css\";a:6:{s:4:\"name\";s:14:\"avia-popup-css\";s:3:\"url\";s:81:\"https://solsculpting.com/wp-content/themes/enfold/js/aviapopup/magnific-popup.css\";s:4:\"path\";s:56:\"wp-content/themes/enfold/js/aviapopup/magnific-popup.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:5323:\".mfp-bg{top:0;left:0;width:100%;height:100%;z-index:1042;overflow:hidden;position:fixed;background:#000;opacity:0.8} .mfp-wrap{top:0;left:0;width:100%;height:100%;z-index:1043;position:fixed;outline:none !important;-webkit-backface-visibility:hidden} .mfp-container{text-align:center;position:absolute;width:100%;height:100%;left:0;top:0;padding:0 8px;box-sizing:border-box} .mfp-container:before{content:\'\';display:inline-block;height:100%;vertical-align:middle} .mfp-align-top .mfp-container:before{display:none} .mfp-content{position:relative;display:inline-block;vertical-align:middle;margin:0 auto;text-align:left;z-index:1045} .mfp-inline-holder .mfp-content,.mfp-ajax-holder .mfp-content{width:100%;cursor:auto} .mfp-ajax-cur{cursor:progress} .mfp-zoom-out-cur,.mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:-moz-zoom-out;cursor:-webkit-zoom-out;cursor:zoom-out} .mfp-zoom{cursor:pointer;cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in} .mfp-auto-cursor .mfp-content{cursor:auto} .mfp-close,.mfp-arrow,.mfp-preloader,.mfp-counter{-webkit-user-select:none;-moz-user-select:none;user-select:none} .mfp-loading.mfp-figure{display:none} .mfp-hide{display:none !important} .mfp-preloader{color:#CCC;position:absolute;top:50%;width:auto;text-align:center;margin-top:-0.8em;left:8px;right:8px;z-index:1044} .mfp-preloader a{color:#CCC} .mfp-preloader a:hover{color:#FFF} .mfp-s-ready .mfp-preloader{display:none} .mfp-s-error .mfp-content{display:none} button.mfp-close,button.mfp-arrow{overflow:visible;cursor:pointer;background:transparent;border:0;-webkit-appearance:none;display:block;outline:none;padding:0;z-index:1046;box-shadow:none;touch-action:manipulation} button::-moz-focus-inner{padding:0;border:0} .mfp-close{width:44px;height:44px;line-height:44px;position:absolute;right:0;top:0;text-decoration:none;text-align:center;opacity:0.65;padding:0 0 18px 10px;color:#FFF;font-style:normal;font-size:28px;font-family:Arial,Baskerville,monospace} .mfp-close:hover,.mfp-close:focus{opacity:1} .mfp-close:active{top:1px} .mfp-close-btn-in .mfp-close{color:#333} .mfp-image-holder .mfp-close,.mfp-iframe-holder .mfp-close{color:#FFF;right:-6px;text-align:right;padding-right:6px;width:100%} .mfp-counter{position:absolute;top:0;right:0;color:#CCC;font-size:12px;line-height:18px;white-space:nowrap} .mfp-arrow{position:absolute;opacity:0.65;margin:0;top:50%;margin-top:-55px;padding:0;width:90px;height:110px;-webkit-tap-highlight-color:transparent} .mfp-arrow:active{margin-top:-54px} .mfp-arrow:hover,.mfp-arrow:focus{opacity:1} .mfp-arrow:before,.mfp-arrow:after{content:\'\';display:block;width:0;height:0;position:absolute;left:0;top:0;margin-top:35px;margin-left:35px;border:medium inset transparent} .mfp-arrow:after{border-top-width:13px;border-bottom-width:13px;top:8px} .mfp-arrow:before{border-top-width:21px;border-bottom-width:21px;opacity:0.7} .mfp-arrow-left{left:0} .mfp-arrow-left:after{border-right:17px solid #FFF;margin-left:31px} .mfp-arrow-left:before{margin-left:25px;border-right:27px solid #3F3F3F} .mfp-arrow-right{right:0} .mfp-arrow-right:after{border-left:17px solid #FFF;margin-left:39px} .mfp-arrow-right:before{border-left:27px solid #3F3F3F} .mfp-iframe-holder{padding-top:40px;padding-bottom:40px} .mfp-iframe-holder .mfp-content{line-height:0;width:100%;max-width:900px} .mfp-iframe-holder .mfp-close{top:-40px} .mfp-iframe-scaler{width:100%;height:0;overflow:hidden;padding-top:56.25%} .mfp-iframe-scaler iframe{position:absolute;display:block;top:0;left:0;width:100%;height:100%;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#000} img.mfp-img{width:auto;max-width:100%;height:auto;display:block;line-height:0;box-sizing:border-box;padding:40px 0 40px;margin:0 auto} .mfp-figure{line-height:0} .mfp-figure:after{content:\'\';position:absolute;left:0;top:40px;bottom:40px;display:block;right:0;width:auto;height:auto;z-index:-1;box-shadow:0 0 8px rgba(0,0,0,0.6);background:#444} .mfp-figure small{color:#BDBDBD;display:block;font-size:12px;line-height:14px} .mfp-figure figure{margin:0} .mfp-bottom-bar{margin-top:-36px;position:absolute;top:100%;left:0;width:100%;cursor:auto} .mfp-title{text-align:left;line-height:18px;color:#F3F3F3;word-wrap:break-word;padding-right:36px} .mfp-image-holder .mfp-content{max-width:100%} .mfp-gallery .mfp-image-holder .mfp-figure{cursor:pointer} @media screen and (max-width:800px) and (orientation:landscape),screen and (max-height:300px){.mfp-img-mobile .mfp-image-holder{padding-left:0;padding-right:0} .mfp-img-mobile img.mfp-img{padding:0} .mfp-img-mobile .mfp-figure:after{top:0;bottom:0} .mfp-img-mobile .mfp-figure small{display:inline;margin-left:5px} .mfp-img-mobile .mfp-bottom-bar{background:rgba(0,0,0,0.6);bottom:0;margin:0;top:auto;padding:3px 5px;position:fixed;box-sizing:border-box} .mfp-img-mobile .mfp-bottom-bar:empty{padding:0} .mfp-img-mobile .mfp-counter{right:5px;top:3px} .mfp-img-mobile .mfp-close{top:0;right:0;width:35px;height:35px;line-height:35px;background:rgba(0,0,0,0.6);position:fixed;text-align:center;padding:0}} @media all and (max-width:900px){.mfp-arrow{-webkit-transform:scale(0.75);transform:scale(0.75)} .mfp-arrow-left{-webkit-transform-origin:0;transform-origin:0} .mfp-arrow-right{-webkit-transform-origin:100%;transform-origin:100%} .mfp-container{padding-left:6px;padding-right:6px}}\";}s:17:\"avia-lightbox-css\";a:6:{s:4:\"name\";s:13:\"avia-lightbox\";s:3:\"url\";s:79:\"https://solsculpting.com/wp-content/themes/enfold/css/avia-snippet-lightbox.css\";s:4:\"path\";s:54:\"wp-content/themes/enfold/css/avia-snippet-lightbox.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:2825:\".mfp-ready .mfp-figure{opacity:0} div .mfp-title{line-height:1.4em;font-size:13px} .mfp-title a{text-decoration:underline;color:#fff}.mfp-title a:hover{text-decoration:none;opacity:0.8} .mfp-zoom-in .mfp-figure,.mfp-zoom-in .mfp-iframe-holder .mfp-iframe-scaler{opacity:0;-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-transform:scale(0.95);-ms-transform:scale(0.95);transform:scale(0.95)}.mfp-zoom-in.mfp-bg,.mfp-zoom-in .mfp-preloader{opacity:0;-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.mfp-zoom-in.mfp-image-loaded .mfp-figure,.mfp-zoom-in.mfp-ready .mfp-iframe-holder .mfp-iframe-scaler{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}.mfp-zoom-in.mfp-ready.mfp-bg,.mfp-zoom-in.mfp-ready .mfp-preloader{opacity:0.8}.mfp-zoom-in.mfp-removing .mfp-figure,.mfp-zoom-in.mfp-removing .mfp-iframe-holder .mfp-iframe-scaler{-webkit-transform:scale(0.95);-ms-transform:scale(0.95);transform:scale(0.95);opacity:0}.mfp-zoom-in.mfp-removing.mfp-bg,.mfp-zoom-in.mfp-removing .mfp-preloader{opacity:0}div.avia-popup .mfp-iframe-scaler{overflow:visible}div.avia-popup .mfp-zoom-out-cur{cursor:auto}div.avia-popup .mfp-zoom-out-cur .mfp-image-holder .mfp-close{cursor:pointer}div.avia-popup .mfp-close{width:40px;height:40px;right:-13px;text-align:center;border-radius:100px;border:2px solid transparent;line-height:38px;padding:0;top:-5px;-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out;font-family:Arial,Baskerville,monospace !important} div.avia-popup .mfp-close:hover{border:2px solid #fff;transform:scale(0.8);-webkit-transform:scale(0.8) rotateZ(90deg)} div.avia-popup .mfp-iframe-scaler .mfp-close{top:-43px} div.avia-popup .mfp-figure:after{box-shadow:none;display:none} div.avia-popup button.mfp-arrow:before,div.avia-popup button.mfp-arrow:after{border:none;margin:0;display:none}div.avia-popup button.mfp-arrow:before{opacity:1;display:block;position:absolute;top:50%;left:0;width:100%;height:80px;line-height:80px;margin-top:-40px;color:#fff;font-size:50px;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-weight:normal;-webkit-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-transform:scale(1,1);transform:scale(1,1)}div.avia-popup button.mfp-arrow:hover:before{-webkit-transform:scale(0.8,0.8);transform:scale(0.8,0.8)}div.avia-popup button.mfp-arrow:before{content:\"\\E87d\";font-family:\'entypo-fontello\'}div.avia-popup button.mfp-arrow-left:before{content:\"\\E87c\";font-family:\'entypo-fontello\'} .mfp-img{-webkit-animation:none !important;animation:none !important} @media (max-width:900px){.mfp-arrow{text-shadow:0px 0px 5px rgba(0,0,0,0.5)}} div.avia-popup .mfp-s-error .mfp-preloader{background:transparent;width:100%;-webkit-animation:none;animation:none;white-space:nowrap}\";}s:19:\"avia-widget-css-css\";a:6:{s:4:\"name\";s:15:\"avia-widget-css\";s:3:\"url\";s:77:\"https://solsculpting.com/wp-content/themes/enfold/css/avia-snippet-widget.css\";s:4:\"path\";s:52:\"wp-content/themes/enfold/css/avia-snippet-widget.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:20794:\".sidebar .widget:first-child,.content .sidebar .widget:first-child{padding-top:0;border-top-style:none;border-top-width:0} .widget_archive label.screen-reader-text{display:none} .widget_nav_menu a{display:block;padding:4px 0px 5px 0;text-decoration:none} div .widget_nav_menu{padding-bottom:24px} #top .widget_nav_menu ul{margin:0;padding:0;float:none;list-style-type:none} #top .widget_nav_menu li{position:relative;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;clear:both;font-size:13px} #top #footer .widget_nav_menu li{background-color:transparent} #top .widget_nav_menu ul ul li:before{content:\"\\2219\";position:absolute;top:5px} #top .sidebar_left .widget_nav_menu ul ul li:before{right:-10px} #top .sidebar_left.sidebar_align_left .widget_nav_menu ul ul li:before{right:auto;left:0} #top .widget_nav_menu ul ul li a{padding:6px 0px 7px 12px} .widget_nav_menu .current-menu-item>a,.widget_nav_menu .current_page_item>a{font-weight:bold} .sidebar .widget_nav_menu ul:first-child>.current-menu-item,.sidebar .widget_nav_menu ul:first-child>.current_page_item,.sidebar .widget_nav_menu ul:first-child>.current-menu-ancestor{padding-left:51px;left:-51px;top:1px;margin-top:-1px;padding-top:1px;width:100%;box-shadow:0px 0px 1px 0px rgba(0,0,0,0.2);margin-bottom:4px} .widget_nav_menu ul ul{display:block} .widget_nav_menu.widget_nav_hide_child ul ul{display:none} #top .widget_nav_menu .current-menu-item > ul,#top .widget_nav_menu .current_page_item > ul,#top .widget_nav_menu .current_page_ancestor > ul,#top .widget_nav_menu .current-menu-ancestor > ul{display:block} #top .widget_nav_menu .sub-menu > li{display:block;padding:0 0 0 13px} #top .sidebar_left .widget_nav_menu .current-menu-item > ul,#top .sidebar_left .widget_nav_menu .current_page_item > ul,#top .sidebar_left .widget_nav_menu .current_page_ancestor > ul,#top .sidebar_left .widget_nav_menu .current-menu-ancestor > ul{padding:0 13px 0 0 } #top .sidebar_left.sidebar_align_left .widget_nav_menu .current-menu-item > ul,#top .sidebar_left.sidebar_align_left .widget_nav_menu .current_page_item > ul,#top .sidebar_left.sidebar_align_left .widget_nav_menu .current_page_ancestor > ul,#top .sidebar_left.sidebar_align_left .widget_nav_menu .current-menu-ancestor > ul{padding:0 0 0 13px } #top .sidebar_left .widget_nav_menu .sub-menu{padding-right:13px} #top .sidebar_left.sidebar_align_left .widget_nav_menu .sub-menu{padding-left:13px;padding-right:0} .widget_nav_menu ul:first-child>.current-menu-item>a,.widget_nav_menu ul:first-child>.current_page_item>a{border:none;padding:6px 7px 7px 0} #top .widget_nav_menu ul ul .sub-menu,#top .widget_nav_menu ul ul .children{padding:0 0 0 10px;overflow:hidden;margin:0} .widget_nav_menu .nested_nav>li:first-child>a{border:none} #top .widget_nav_menu .nested_nav{padding-bottom:30px} #top .content .flex_column .widget_nav_menu li a{padding:0.8em 3px} #top .content .flex_column .widget_nav_menu li a:hover,#top .content .flex_column .widget_nav_menu ul:first-child>.current-menu-item,#top .content .flex_column .widget_nav_menu ul:first-child>.current_page_item{background-color:rgba(255,255,255,0.4)} #top .content .flex_column .widget_nav_menu li{background-color:transparent;margin:0;padding:0;border-bottom-style:solid;border-bottom-width:1px} #top .content .flex_column .widget_nav_menu li:first-child{border-top-style:solid;border-top-width:1px} .av-instagram-pics{display:table;width:100%;table-layout:fixed}.av-instagram-row{display:table-row}.av-instagram-item{display:table-cell;padding:3px;height:100%}.av-instagram-item a{display:block;position:relative;padding-bottom:100%;width:100%;background-size:cover}.av-instagram-item img{display:block}.av-instagram-item .image-overlay.overlay-type-image{left:0;width:100%} .av-instagram-item:first-child{padding-left:0px}.av-instagram-item:last-child{padding-right:0px}.av-instagram-row:first-child .av-instagram-item{padding-top:0px}.av-instagram-row:last-child .av-instagram-item{padding-bottom:0px} .av-instagram-follow{width:100%;text-align:center;display:block;margin-top:3px} .avia-instagram-feed .av-instagram-errors-msg.av-instagram-admin{color:#cc0033} #top .av-mailchimp-widget fieldset,#top .av-mailchimp-widget form{margin:0}#top .av-mailchimp-widget p{margin:2px 0}#top .av-mailchimp-widget-style-boxed_form{padding:15px;border-style:solid;border-width:1px}#top .av-mailchimp-widget .button{margin-top:5px;width:100%;padding:13px 10px} .widgettitle + .av-mailchimp-widget-style-boxed_form{margin-top:-10px}#top .av-form-error-container{border:1px solid #BB1313;padding:15px;color:#BB1313;line-height:1.4em;font-size:13px;margin-bottom:20px} .textwidget ul{margin-left:0px;overflow:hidden} .js_active .avia_combo_widget .tab_titles{border-bottom-width:1px;border-bottom-style:solid}.js_active #top .avia_combo_widget .active_tab{border-bottom-style:solid;border-bottom-width:2px;border-bottom-color:initial}.js_active #top .avia_combo_widget .tab_content{padding:0;background:transparent;border:none} .js_active .avia_combo_widget .top_tab .tab{border:none;background:transparent;padding:5px 10px;border-bottom-style:solid;border-bottom-width:2px;border-bottom-color:transparent} .av_facebook_widget_wrap{overflow:hidden;position:relative;padding:0px;background:#fff}.av_facebook_widget_wrap_border_yes{border-style:solid;border-width:1px}.av_facebook_widget_wrap_positioner iframe{position:absolute;height:100%;width:100%}.av_facebook_widget_wrap_positioner{}.av_facebook_widget{width:100%} .av_facebook_widget{width:107%;max-width:137%;left:-5px;top:-4px;position:relative} .avia_fb_likebox .av_facebook_widget_page_title{font-size:1.2em;font-weight:700;margin:12px 0} .widget .av_widget_img_text_confirm .av_img_text_confirm_link{display:inline-block;position:relative;width:100%} .widget .av_widget_img_text_confirm .av_img_text_confirm_link img{width:100%} .widget .av_widget_img_text_confirm .av_img_text_confirm_link:hover{text-decoration:none} .widget .av_widget_img_text_confirm .av_img_text_confirm_text{font-size:1.5em;position:absolute;padding:25px;text-align:center;top:0;height:100%;display:flex;align-items:center;opacity:0;width:100%} .widget .av_widget_img_text_confirm .av_img_text_confirm_text span{width:100%} .widget .av_widget_img_text_confirm .av_img_text_confirm_text:hover{opacity:1} .avia_fb_likebox .av_facebook_widget_main_wrap{background-attachment:scroll;background-size:cover;background-position:center center;width:100%;min-width:180px;min-height:214px;position:relative;font-family:Helvetica,Arial,sans-serif} .avia_fb_likebox .av_facebook_widget_main_wrap_shadow{position:absolute;top:0;left:0;right:0;height:90px;background:linear-gradient(to bottom,rgba(0,0,0,.7) 0%,rgba(0,0,0,0) 100%);z-index:0} .avia_fb_likebox .av_facebook_widget_logo_image{position:absolute;height:54px;width:54px;top:8px;left:8px;background:#fff;box-shadow:0 1px 6px rgba(0,0,0,.5);border:2px solid #fff;z-index:2} .avia_fb_likebox .av_facebook_widget_logo_image img{max-width:50px;max-height:50px;text-align:center;display:inline-block} .avia_fb_likebox .av_facebook_widget_page_title_container{color:#fff;margin:0px 18px 0 68px;position:relative;z-index:2;font-size:18px;font-weight:500;line-height:1.358;margin-bottom:-5px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;text-shadow:0 2px 4px rgba(0,0,0,.9);top:8px;min-height:95px} #top .avia_fb_likebox .av_facebook_widget_page_title_container a{color:#fff} .avia_fb_likebox .av_facebook_widget_page_title_container .av_facebook_widget_content{font-size:12px} .avia_fb_likebox .av_facebook_widget_page_title_container span{display:block} .avia_fb_likebox .av_facebook_widget_add_info{width:100%;min-height:83px;background:#f6f7f9;border:1px solid #e9ebee;border-top:0;font-size:12px;line-height:16px;color:#4b4f56;padding:8px} .avia_fb_likebox .av_facebook_widget_add_info_inner{background:#fff;border-color:#e9ebee #dfe0e4 #d0d1d5;border-radius:2px;box-shadow:0 1px 2px rgba(0,0,0,.12);position:relative;min-height:66px;padding:8px} .avia_fb_likebox .av_facebook_widget_imagebar{height:32px;background-repeat:repeat;background-size:auto 100%;background-image:url(\'https://solsculpting.com/wp-content/themes/enfold/images/layout/fake_facebook.jpg\')} .avia_fb_likebox .av_facebook_widget_add_info_inner_wrap{min-height:15px;padding-bottom:4px;display:block} .avia_fb_likebox .av_facebook_widget_button{background-color:#f6f7f9;border-color:#ced0d4;color:#4b4f56;line-height:22px;border:1px solid rgba(0,0,0,.12);font-size:12px;padding:0 5px;display:inline-block;margin:8px} .avia_fb_likebox .av_facebook_widget_icon{display:inline-block;margin-right:5px;background:#3a5797;height:16px;width:16px;color:#fff;text-align:center;border-radius:2px;font-size:11px;line-height:18px} .avia_fb_likebox .ajax_load{display:none} .avia_fb_likebox.ajax_loading_now .ajax_load{display:block} .avia_socialcount{overflow:hidden;text-align:left} #top .social_widget_icon{padding:0;margin:0;height:30px;width:30px;line-height:32px;text-align:center;float:left;font-size:17px;border-radius:2px} .asc_twitter .social_widget_icon{color:#fff;background-color:#46d4fe;border-color:#46d4fe;text-shadow:1px 1px 1px #17ACD8} .asc_rss .social_widget_icon{color:#fff;background-color:#ffa133;border-color:#ffa133;text-shadow:1px 1px 1px #D18021} .avia_socialcount .seperator{display:none} div #footer .avia_socialcount{padding:10px 0 0 0} .asc_multi_count{float:left;width:50%} .avia_socialcount a,.avia_socialcount a:hover{height:40px;text-decoration:none;display:block;min-width:89px} .avia_socialcount strong,.avia_socialcount span{display:block;line-height:1em;padding:0 0 0 36px} .avia_socialcount a strong{font-size:11px;font-weight:bold;letter-spacing:0;padding-top:4px} .avia_socialcount a span{font-size:10px;padding-top:3px} #top .widget.tweetbox .tweets{list-style-type:none;list-style-position:outside;border:none} #top .widget.tweetbox .tweet{padding:10px 0;line-height:18px;position:relative;overflow:hidden;font-size:11px;background:none;border-top-style:dashed;border-top-width:1px;margin:0} #top .widget.tweetbox .tweet:first-child{border:none} .widget.tweetbox .tweet-thumb{position:relative} .widget.tweetbox .tweet-thumb a{margin-right:9px;padding:3px;float:left;border-style:solid;border-width:1px;margin-top:5px;display:block;width:36px} #top .widget.tweetbox .tweet-thumb img{display:block;float:left;border:none;padding:0;margin:0} .widget.tweetbox .tweet-text{position:relative;overflow:hidden} .widget.tweetbox .tweet-time{clear:both;font-size:11px} .widget.tweetbox .tweet-text.avatar_no{font-size:12px;line-height:1.7em;font-weight:400} .widget.tweetbox .tweet-text.avatar_no .tweet-time{font-style:italic;font-weight:normal} .avia_partner_widget{overflow:hidden;clear:both} .avia_partner_widget a,.avia_partner_widget a:hover{float:left;display:block;text-decoration:none;width:49.5%;outline:none;border:none;padding-bottom:49.5%;position:relative;margin-right:1%} .avia_partner_widget a.avia_partner2,.avia_partner_widget a.avia_partner2:hover{margin-right:0} #top .avia_partner_widget{max-width:304px} #top .avia_partner_widget img{position:absolute;left:0;top:0} .avia_partner1{margin-right:1px} .avia_parnter_empty{line-height:1em;height:97%;width:97%;display:block;font-size:10px;text-align:center;position:absolute;border-style:solid;border-width:1px} .avia_parnter_empty span{width:100%;position:absolute;top:50%;margin-top:-5px;text-align:center;left:0} .widget .avia-google-map-container{height:230px;width:100%} .widget .avia-google-map-container{background:no-repeat center;background-size:cover} .widget .content .avia-google-map-container{height:230px} #top .widget .infoWindow input[type=\"text\"]{margin:0 0px 3px 0} .widget .avia-google-map-container img,.widget .avia-google-map-container a img{max-width:none} .widget .avia-google-map-container div,.widget .avia-google-map-container img,.widget .avia-google-map-container a{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box} .widget .avia-google-map-container .av_text_confirm_link{padding:25px;text-align:center;opacity:0;position:absolute;width:150px;left:50%;top:50%;margin-left:-100px;margin-top:-50px;background:rgba(0,0,0,0.7);border-radius:3px;color:#fff;font-size:1em;line-height:1.3em;-webkit-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .widget .avia-google-map-container .av_text_confirm_link:hover{color:#fff;background:rgba(0,0,0,0.9)} .widget .avia-google-map-container.av_gmaps_show_delayed.av-no-fallback-img .av_text_confirm_link,.widget .avia-google-map-container.av_gmaps_show_page_only.av-no-fallback-img .av_text_confirm_link{height:auto;opacity:1} .widget .avia-google-map-container .av_text_confirm_link span{width:100%} .widget .avia-google-map-container:hover .av_text_confirm_link{opacity:1;text-decoration:none} #top .news-content{padding:7px 0 3px 0;line-height:1.7em;position:relative;overflow:hidden;font-size:0.85em;display:block;clear:both;margin:0} #top .news-wrap{border:none;list-style-type:none;list-style-position:outside} #top .news-wrap li{border:none;background:none;text-indent:0} .news-link,.news-link:hover,#top .widget ul li .news-link:hover{display:block;position:relative;text-decoration:none;overflow:hidden;z-index:2} .news-thumb{margin-right:9px;padding:3px;float:left;margin-top:4px;border-style:solid;border-width:1px;height:36px;width:36px;display:block} .news-thumb img,.news-thumb img{width:28px;height:28px} .image_size_portfolio_small .news-link{float:left;margin-right:10px} .image_size_portfolio_small .news-thumb,.image_size_portfolio_small .tweet-thumb img,.image_size_portfolio_small .news-thumb img{width:150px;min-height:100px} .image_size_portfolio_small .news-excerpt{overflow:hidden;font-size:13px;line-height:1.65em} .image_size_portfolio_small .news-headline{font-size:14px} #top .news-thumb img{display:block;float:left;border:none;padding:0;margin:0} .news-headline{overflow:hidden;font-weight:bold;margin-top:2px;display:block} .news-time{font-weight:normal;clear:both;font-size:0.92em;display:block} .news-excerpt{} .tagcloud br{display:none}.tagcloud a{font-size:11px !important;padding:2px 8px;margin:0 1px 1px 0;display:block;float:left;border-style:solid;border-width:1px;text-decoration:none} .tagcloud a:hover{text-shadow:none;text-decoration:underline} .widget_tag_cloud h3{border:none} .widget_rss li{line-height:1.5em;font-size:11px}.widget_rss li div{font-family:\"Georgia\",\"Times New Roman\",Helvetica,Arial,sans-serif;font-style:italic} .rsswidget{display:block;font-weight:bold} .rss-date,.widget_rss cite{font-size:11px} .widget_rss li{padding:7px 0} .widget_rss .widgettitle img{display:none} .recentcomments,.widget_recent_entries li{padding:7px 0;display:block;font-size:0.85em;line-height:1.5em} .recentcomments a,.widget_recent_entries li a{font-style:italic;font-family:\"Georgia\",\"Times New Roman\",Helvetica,Arial,sans-serif} .recentcomments,.widget_recent_entries li{border-top-width:3px;border-top-style:solid} .recentcomments:first-child,.widget_recent_entries li:first-child{border-top:none} .sidebar_left .widget_nav_menu ul:first-child>.current-menu-item,.sidebar_left .widget_nav_menu ul:first-child>.current_page_item,.sidebar_left .widget_nav_menu ul:first-child>.current-menu-ancestor{padding-right:52px;padding-left:0;left:auto;top:1px} .sidebar_left.sidebar{text-align:right} .sidebar_left .news-thumb{float:right;margin:4px 0 0 9px} #top .widget_twitter{font-size:12px;line-height:1.65em}#top .widget_twitter .twitter-avatar{float:left;margin-right:13px;border-style:solid;border-width:1px;padding:3px;display:block}#top .widget_twitter .twitter-avatar a,#top .widget_twitter .twitter-avatar img{display:block}#top .widget_twitter ul{overflow:hidden;margin:0;padding:0}#top .widget_twitter li{padding:0 0 8px 0;margin:0 0 8px 0;border-bottom-style:solid;border-bottom-width:2px}#top .widget_twitter li:last-child{border-bottom:none}#top .widget_twitter .entry-content-wrapper{padding:0;margin:0;float:none;clear:both;position:relative;border:none;width:100%}#top .widget_twitter .entry-meta{display:block;font-size:11px;font-style:italic;opacity:0.8;margin-top:5px}#top .widget_twitter .time-meta,#top .widget_twitter .from-meta{}#top .widget_twitter .intent-meta{display:block;font-size:11px;margin-top:8px}#top .widget_twitter .intent-meta a{text-decoration:none;margin-right:4px}#top .widget_twitter .intent-meta a:hover{text-decoration:underline} .sidebar_left.sidebar_align_left.sidebar{text-align:left}.sidebar_left.sidebar_align_left .news-thumb{float:left;margin:4px 9px 0 0}.sidebar_left.sidebar_align_left .widget_nav_menu ul:first-child>.current-menu-item,.sidebar_left.sidebar_align_left .widget_nav_menu ul:first-child>.current_page_item,.sidebar_left.sidebar_align_left .widget_nav_menu ul:first-child>.current-menu-ancestor{padding-left:52px;padding-right:0;left:0;right:auto;top:1px} .avia-toc-container{position:relative} .avia-toc-container a{display:block;position:relative;line-height:1.4em} .avia-toc-container a:hover{text-decoration:none} .avia-toc-style-simple a{overflow-x:hidden;margin-bottom:1em;min-height:25px} .avia-toc-style-simple a span{background-color:#fff;position:relative;padding-right:5px;z-index:2} .avia-toc-style-simple a:after{float:left;width:0;color:rgba(0,0,0,0.25);font-size:9px;font-weight:normal;white-space:nowrap;content:\". . . . . . . . . . . . . . . . . . . . \" \". . . . . . . . . . . . . . . . . . . . \" \". . . . . . . . . . . . . . . . . . . . \" \". . . . . . . . . . . . . . . . . . . . \"} .avia-toc-style-simple .avia-toc-level-0:after{line-height:3}.avia-toc-style-simple .avia-toc-level-1:after{line-height:3}.avia-toc-style-simple .avia-toc-level-2:after{line-height:2.9}.avia-toc-style-simple .avia-toc-level-3:after{line-height:2.7}.avia-toc-style-simple .avia-toc-level-4:after{line-height:2.5}.avia-toc-style-simple .avia-toc-level-5:after{line-height:2.4} .avia-toc-style-simple .avia-toc-level-0{font-weight:bold;font-size:1em}.avia-toc-style-simple .avia-toc-level-2{font-weight:normal;font-size:0.9375em}.avia-toc-style-simple .avia-toc-level-3{font-weight:normal;font-size:0.875em}.avia-toc-style-simple .avia-toc-level-4{font-weight:normal;font-size:0.8125em}.avia-toc-style-simple .avia-toc-level-5{font-weight:normal;font-size:0.8125em;font-style:italic} .avia-toc-style-simple.avia-toc-indent .avia-toc-level-1{margin-left:0.625em}.avia-toc-style-simple.avia-toc-indent .avia-toc-level-2{margin-left:1em}.avia-toc-style-simple.avia-toc-indent .avia-toc-level-3{margin-left:1.428em}.avia-toc-style-simple.avia-toc-indent .avia-toc-level-4{margin-left:2.307em}.avia-toc-style-simple.avia-toc-indent .avia-toc-level-5{margin-left:2.692em} .avia-toc-style-elegant{padding-left:30px} .avia-toc-style-elegant a{text-transform:uppercase;padding-bottom:1.5em} .avia-toc-style-elegant .avia-toc-level-0{font-weight:bold;font-size:0.875em}.avia-toc-style-elegant .avia-toc-level-1{font-weight:normal;font-size:0.875em}.avia-toc-style-elegant .avia-toc-level-2{font-weight:normal;font-size:0.8125em}.avia-toc-style-elegant .avia-toc-level-3{font-weight:bold;font-size:0.8125em}.avia-toc-style-elegant .avia-toc-level-4{font-weight:normal;font-size:0.75em}.avia-toc-style-elegant .avia-toc-level-5{font-weight:normal;font-size:0.75em;font-style:italic} .avia-toc-style-elegant a:before{content:\'\';position:absolute;height:calc(100% + 0.3em);left:-20px;top:0.15em;border-left-width:2px;border-left-style:solid;border-left-color:rgba(0,0,0,0.08)} .avia-toc-style-elegant a.avia-toc-level-0:last-child:after,.avia-toc-style-elegant a:first-child:after,.avia-toc-style-elegant a.avia-toc-level-0:after,.avia-toc-style-elegant a:first-child span:after,.avia-toc-style-elegant a.avia-toc-level-0 span:after{content:\'\';position:absolute;width:9px;height:9px;border-width:3px;border-style:solid;border-radius:9px;left:-26px;top:0.15em;z-index:2} .avia-toc-style-elegant a:first-child span:after,.avia-toc-style-elegant a.avia-toc-level-0 span:after{border-color:transparent;z-index:1} .avia-toc-style-elegant a:first-child:hover span:after,.avia-toc-style-elegant a.avia-toc-level-0:hover span:after{animation:sonarEffect 2s ease-out infinite} .avia-toc-style-elegant a:last-child:before{display:none} .avia-toc-style-elegant a:last-child:after{content:\'\';position:absolute;width:8px;height:8px;left:-23px;top:0.4em;border-radius:8px} .avia-toc-style-elegant.avia-toc-indent .avia-toc-level-1{padding-left:0.625em}.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-2{padding-left:1em}.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-3{padding-left:1.428em}.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-4{padding-left:2.307em}.avia-toc-style-elegant.avia-toc-indent .avia-toc-level-5{padding-left:2.692em}\";}s:16:\"avia-dynamic-css\";a:6:{s:4:\"name\";s:12:\"avia-dynamic\";s:3:\"url\";s:67:\"https://solsculpting.com/wp-content/uploads/dynamic_avia/enfold.css\";s:4:\"path\";s:42:\"wp-content/uploads/dynamic_avia/enfold.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:159546:\"::-moz-selection{background-color:#000000;color:#ffffff}::selection{background-color:#000000;color:#ffffff}html.html_boxed{background:#ffffff center center repeat scroll}body,body .avia-tooltip{font-size:16px}.socket_color,.socket_color div,.socket_color header,.socket_color main,.socket_color aside,.socket_color footer,.socket_color article,.socket_color nav,.socket_color section,.socket_color span,.socket_color applet,.socket_color object,.socket_color iframe,.socket_color h1,.socket_color h2,.socket_color h3,.socket_color h4,.socket_color h5,.socket_color h6,.socket_color p,.socket_color blockquote,.socket_color pre,.socket_color a,.socket_color abbr,.socket_color acronym,.socket_color address,.socket_color big,.socket_color cite,.socket_color code,.socket_color del,.socket_color dfn,.socket_color em,.socket_color img,.socket_color ins,.socket_color kbd,.socket_color q,.socket_color s,.socket_color samp,.socket_color small,.socket_color strike,.socket_color strong,.socket_color sub,.socket_color sup,.socket_color tt,.socket_color var,.socket_color b,.socket_color u,.socket_color i,.socket_color center,.socket_color dl,.socket_color dt,.socket_color dd,.socket_color ol,.socket_color ul,.socket_color li,.socket_color fieldset,.socket_color form,.socket_color label,.socket_color legend,.socket_color table,.socket_color caption,.socket_color tbody,.socket_color tfoot,.socket_color thead,.socket_color tr,.socket_color th,.socket_color td,.socket_color article,.socket_color aside,.socket_color canvas,.socket_color details,.socket_color embed,.socket_color figure,.socket_color fieldset,.socket_color figcaption,.socket_color footer,.socket_color header,.socket_color hgroup,.socket_color menu,.socket_color nav,.socket_color output,.socket_color ruby,.socket_color section,.socket_color summary,.socket_color time,.socket_color mark,.socket_color audio,.socket_color video,#top .socket_color .pullquote_boxed,.responsive #top .socket_color .avia-testimonial,.responsive #top.avia-blank #main .socket_color.container_wrap:first-child,#top .socket_color.fullsize .template-blog .post_delimiter,.socket_color .related_posts.av-related-style-full a{border-color:#282b2e}.socket_color .rounded-container,#top .socket_color .pagination a:hover,.socket_color .small-preview,.socket_color .fallback-post-type-icon{background:#777777;color:#282b2e}.socket_color .av-default-color,#top .socket_color .av-force-default-color,.socket_color .av-catalogue-item,.socket_color .wp-playlist-item .wp-playlist-caption,.socket_color .wp-playlist{color:#e8e8e8}.socket_color ,.socket_color .site-background,.socket_color .first-quote,.socket_color .related_image_wrap,.socket_color .gravatar img .socket_color .hr_content,.socket_color .news-thumb,.socket_color .post-format-icon,.socket_color .ajax_controlls a,.socket_color .tweet-text.avatar_no,.socket_color .toggler,.socket_color .toggler.activeTitle:hover,.socket_color #js_sort_items,.socket_color.inner-entry,.socket_color .grid-entry-title,.socket_color .related-format-icon,.grid-entry .socket_color .avia-arrow,.socket_color .avia-gallery-big,.socket_color .avia-gallery-big,.socket_color .avia-gallery img,.socket_color .grid-content,.socket_color .av-share-box ul,#top .socket_color .av-related-style-full .related-format-icon,.socket_color .related_posts.av-related-style-full a:hover,.socket_color.avia-fullwidth-portfolio .pagination .current,.socket_color.avia-fullwidth-portfolio .pagination a,.socket_color .av-hotspot-fallback-tooltip-inner,.socket_color .av-hotspot-fallback-tooltip-count{background-color:#282b2e;color:#e8e8e8}.socket_color .heading-color,.socket_color a.iconbox_icon:hover,.socket_color h1,.socket_color h2,.socket_color h3,.socket_color h4,.socket_color h5,.socket_color h6,.socket_color .sidebar .current_page_item>a,.socket_color .sidebar .current-menu-item>a,.socket_color .pagination .current,.socket_color .pagination a:hover,.socket_color strong.avia-testimonial-name,.socket_color .heading,.socket_color .toggle_content strong,.socket_color .toggle_content strong a,.socket_color .tab_content strong,.socket_color .tab_content strong a ,.socket_color .asc_count,.socket_color .avia-testimonial-content strong,.socket_color div .news-headline,#top .socket_color .av-related-style-full .av-related-title,.socket_color .av-default-style .av-countdown-cell-inner .av-countdown-time,.socket_color .wp-playlist-item-meta.wp-playlist-item-title,#top .socket_color .av-no-image-slider h2 a,.socket_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{color:#ffffff}.socket_color .meta-color,.socket_color .sidebar,.socket_color .sidebar a,.socket_color .minor-meta,.socket_color .minor-meta a,.socket_color .text-sep,.socket_color blockquote,.socket_color .post_nav a,.socket_color .comment-text,.socket_color .side-container-inner,.socket_color .news-time,.socket_color .pagination a,.socket_color .pagination span,.socket_color .tweet-text.avatar_no .tweet-time,#top .socket_color .extra-mini-title,.socket_color .team-member-job-title,.socket_color .team-social a,.socket_color #js_sort_items a,.grid-entry-excerpt,.socket_color .avia-testimonial-subtitle,.socket_color .commentmetadata a,.socket_color .social_bookmarks a,.socket_color .meta-heading>*,.socket_color .slide-meta,.socket_color .slide-meta a,.socket_color .taglist,.socket_color .taglist a,.socket_color .phone-info,.socket_color .phone-info a,.socket_color .av-sort-by-term a,.socket_color .av-magazine-time,.socket_color .av-magazine .av-magazine-entry-icon,.socket_color .av-catalogue-content,.socket_color .wp-playlist-item-length,.html_modern-blog #top div .socket_color .blog-categories a,.html_modern-blog #top div .socket_color .blog-categories a:hover{color:#777777}.socket_color .special-heading-inner-border{border-color:#e8e8e8}.socket_color .meta-heading .special-heading-inner-border{border-color:#777777}.socket_color a,.socket_color .widget_first,.socket_color strong,.socket_color b,.socket_color b a,.socket_color strong a,.socket_color #js_sort_items a:hover,.socket_color #js_sort_items a.active_sort,.socket_color .av-sort-by-term a.active_sort,.socket_color .special_amp,.socket_color .taglist a.activeFilter,.socket_color #commentform .required,#top .socket_color .av-no-color.av-icon-style-border a.av-icon-char,.html_elegant-blog #top .socket_color .blog-categories a,.html_elegant-blog #top .socket_color .blog-categories a:hover{color:#ffffff}.socket_color a:hover,.socket_color h1 a:hover,.socket_color h2 a:hover,.socket_color h3 a:hover,.socket_color h4 a:hover,.socket_color h5 a:hover,.socket_color h6 a:hover,.socket_color .template-search a.news-content:hover,.socket_color .wp-playlist-item .wp-playlist-caption:hover{color:#ebebeb}.socket_color .primary-background,.socket_color .primary-background a,div .socket_color .button,.socket_color #submit,.socket_color input[type=\'submit\'],.socket_color .small-preview:hover,.socket_color .avia-menu-fx,.socket_color .avia-menu-fx .avia-arrow,.socket_color.iconbox_top .iconbox_icon,.socket_color .iconbox_top a.iconbox_icon:hover,.socket_color .avia-data-table th.avia-highlight-col,.socket_color .avia-color-theme-color,.socket_color .avia-color-theme-color:hover,.socket_color .image-overlay .image-overlay-inside:before,.socket_color .comment-count,.socket_color .av_dropcap2,.socket_color .av-colored-style .av-countdown-cell-inner,.responsive #top .socket_color .av-open-submenu.av-subnav-menu > li > a:hover,#top .socket_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color:#ffffff;color:#282b2e;border-color:#dddddd}#top #wrap_all .socket_color .av-menu-button-colored > a .avia-menu-text{background-color:#ffffff;color:#282b2e;border-color:#ffffff}#top #wrap_all .socket_color .av-menu-button-colored > a .avia-menu-text:after{background-color:#dddddd}#top .socket_color .mobile_menu_toggle{color:#ffffff;background:#282b2e}#top .socket_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color:#ffffff}#top .socket_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color:#282b2e}.socket_color .button:hover,.socket_color .ajax_controlls a:hover,.socket_color #submit:hover,.socket_color .big_button:hover,.socket_color .contentSlideControlls a:hover,.socket_color #submit:hover ,.socket_color input[type=\'submit\']:hover{background-color:#ebebeb;color:#282b2e;border-color:#c9c9c9}.socket_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after,.socket_color .avia-toc-style-elegant a:first-child:after,.socket_color .avia-toc-style-elegant a.avia-toc-level-0:after{background-color:#282b2e;border-color:#ebebeb}.socket_color .avia-toc-style-elegant a:first-child span:after,.socket_color .avia-toc-style-elegant a.avia-toc-level-0 span:after{background-color:#282b2e}.socket_color .avia-toc-style-elegant a:first-child:hover span:after,.socket_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after{border-color:#ebebeb}.socket_color .avia-toc-style-elegant a:before{border-color:#282b2e}.socket_color .avia-toc-style-elegant a:first-child:after,.socket_color .avia-toc-style-elegant a.avia-toc-level-0:after{border-color:#ebebeb;background-color:#282b2e}.socket_color .avia-toc-style-elegant a:last-child:after{background-color:#282b2e}.socket_color .timeline-bullet{background-color:#282b2e;border-color:#282b2e}.socket_color table,.socket_color .widget_nav_menu ul:first-child>.current-menu-item,.socket_color .widget_nav_menu ul:first-child>.current_page_item,.socket_color .widget_nav_menu ul:first-child>.current-menu-ancestor,.socket_color .pagination .current,.socket_color .pagination a,.socket_color.iconbox_top .iconbox_content,.socket_color .av_promobox,.socket_color .toggle_content,.socket_color .toggler:hover,#top .socket_color .av-minimal-toggle .toggler,.socket_color .related_posts_default_image,.socket_color .search-result-counter,.socket_color .container_wrap_meta,.socket_color .avia-content-slider .slide-image,.socket_color .avia-slider-testimonials .avia-testimonial-content,.socket_color .avia-testimonial-arrow-wrap .avia-arrow,.socket_color .news-thumb,.socket_color .portfolio-preview-content,.socket_color .portfolio-preview-content .avia-arrow,.socket_color .av-magazine .av-magazine-entry-icon,.socket_color .related_posts.av-related-style-full a,.socket_color .aviaccordion-slide,.socket_color.avia-fullwidth-portfolio .pagination,.socket_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image,.socket_color .av-catalogue-list li:hover,.socket_color .wp-playlist,.socket_color .avia-slideshow-fixed-height > li,.socket_color .avia-form-success,.socket_color .avia-form-error,.socket_color .av-boxed-grid-style .avia-testimonial{background:#52565c}#top .socket_color .post_timeline li:hover .timeline-bullet{background-color:#ebebeb}.socket_color blockquote,.socket_color .avia-bullet,.socket_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#ffffff}.html_header_top .socket_color .main_menu ul:first-child >li > ul,.html_header_top #top .socket_color .avia_mega_div > .sub-menu{border-top-color:#ffffff}.socket_color .breadcrumb,.socket_color .breadcrumb a,#top .socket_color.title_container .main-title,#top .socket_color.title_container .main-title a{color:#e8e8e8}.socket_color .av-icon-display,#top .socket_color .av-related-style-full a:hover .related-format-icon,.socket_color .av-default-style .av-countdown-cell-inner{background-color:#52565c;color:#777777}.socket_color .av-masonry-entry:hover .av-icon-display{background-color:#ffffff;color:#282b2e;border-color:#dddddd}#top .socket_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#ffffff}.socket_color ::-webkit-input-placeholder{color:#777777}.socket_color ::-moz-placeholder{color:#777777;opacity:1}.socket_color :-ms-input-placeholder{color:#777777}.socket_color .header_bg,.socket_color .main_menu ul ul,.socket_color .main_menu .menu ul li a,.socket_color .pointer_arrow_wrap .pointer_arrow,.socket_color .avia_mega_div,.socket_color .av-subnav-menu > li ul,.socket_color .av-subnav-menu a{background-color:#282b2e;color:#777777}.socket_color .main_menu .menu ul li a:hover,.socket_color .av-subnav-menu ul a:hover{background-color:#52565c}.socket_color .sub_menu>ul>li>a,.socket_color .sub_menu>div>ul>li>a,.socket_color .main_menu ul:first-child > li > a,#top .socket_color .main_menu .menu ul .current_page_item > a,#top .socket_color .main_menu .menu ul .current-menu-item > a ,#top .socket_color .sub_menu li ul a{color:#777777}#top .socket_color .main_menu .menu ul li>a:hover{color:#e8e8e8}.socket_color .av-subnav-menu a:hover,.socket_color .main_menu ul:first-child > li a:hover,.socket_color .main_menu ul:first-child > li.current-menu-item > a,.socket_color .main_menu ul:first-child > li.current_page_item > a,.socket_color .main_menu ul:first-child > li.active-parent-item > a{color:#e8e8e8}#top .socket_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#ffffff}.socket_color .sub_menu>ul>li>a:hover,.socket_color .sub_menu>div>ul>li>a:hover{color:#e8e8e8}#top .socket_color .sub_menu ul li a:hover,.socket_color .sub_menu ul:first-child > li.current-menu-item > a,.socket_color .sub_menu ul:first-child > li.current_page_item > a,.socket_color .sub_menu ul:first-child > li.active-parent-item > a{color:#e8e8e8}.socket_color .sub_menu li ul a,.socket_color #payment,.socket_color .sub_menu ul li,.socket_color .sub_menu ul,#top .socket_color .sub_menu li li a:hover{background-color:#282b2e}.socket_color#header .avia_mega_div > .sub-menu.avia_mega_hr,.html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#282b2e}@media only screen and (max-width:767px){#top #wrap_all .av_header_transparency{background-color:#282b2e;color:#e8e8e8;border-color:#282b2e}}@media only screen and (max-width:989px){.html_mobile_menu_tablet #top #wrap_all .av_header_transparency{background-color:#282b2e;color:#e8e8e8;border-color:#282b2e}}.socket_color .avia-tt,.socket_color .avia-tt .avia-arrow,.socket_color .avia-tt .avia-arrow{background-color:#282b2e;color:#777777}.socket_color .av_ajax_search_image{background-color:#ffffff;color:#282b2e}.socket_color .ajax_search_excerpt{color:#777777}.socket_color .av_ajax_search_title{color:#ffffff}.socket_color .ajax_load{background-color:#ffffff}.socket_color .av_searchsubmit_wrapper{background-color:#ffffff}#top .socket_color .avia-color-theme-color{color:#282b2e;border-color:#dddddd}.socket_color .avia-color-theme-color-subtle{background-color:#52565c;color:#e8e8e8}.socket_color .avia-color-theme-color-subtle:hover{background-color:#282b2e;color:#ffffff}#top .socket_color .avia-color-theme-color-highlight{color:#282b2e;border-color:#ebebeb;background-color:#ebebeb}.socket_color .avia-icon-list .iconlist_icon{background-color:#171a1d}.socket_color .avia-icon-list .iconlist-timeline{border-color:#282b2e}.socket_color .iconlist_content{color:#777777}.socket_color .avia-timeline .milestone_icon{background-color:#171a1d}.socket_color .avia-timeline .milestone_inner{background-color:#171a1d}.socket_color .avia-timeline{border-color:#171a1d}.socket_color .av-milestone-icon-wrap:after{border-color:#171a1d}.socket_color .avia-timeline .av-milestone-date{color:#04070a}.socket_color .avia-timeline .av-milestone-date span{background-color:#171a1d}.socket_color .avia-timeline-horizontal .av-milestone-content-wrap footer{background-color:#171a1d}.socket_color .av-timeline-nav a span{background-color:#171a1d}#top .socket_color .input-text,#top .socket_color input[type=\'text\'],#top .socket_color input[type=\'input\'],#top .socket_color input[type=\'password\'],#top .socket_color input[type=\'email\'],#top .socket_color input[type=\'number\'],#top .socket_color input[type=\'url\'],#top .socket_color input[type=\'tel\'],#top .socket_color input[type=\'search\'],#top .socket_color textarea,#top .socket_color select{border-color:#282b2e;background-color:#52565c;color:#777777}#top .socket_color .invers-color .input-text,#top .socket_color .invers-color input[type=\'text\'],#top .socket_color .invers-color input[type=\'input\'],#top .socket_color .invers-color input[type=\'password\'],#top .socket_color .invers-color input[type=\'email\'],#top .socket_color .invers-color input[type=\'number\'],#top .socket_color .invers-color input[type=\'url\'],#top .socket_color .invers-color input[type=\'tel\'],#top .socket_color .invers-color input[type=\'search\'],#top .socket_color .invers-color textarea,#top .socket_color .invers-color select{background-color:#282b2e}.socket_color .required{color:#ffffff}.socket_color .av-masonry{background-color:#41454b}.socket_color .av-masonry-pagination,.socket_color .av-masonry-pagination:hover,.socket_color .av-masonry-outerimage-container{background-color:#282b2e}.socket_color .container .av-inner-masonry-content,#top .socket_color .container .av-masonry-load-more,#top .socket_color .container .av-masonry-sort,.socket_color .container .av-masonry-entry .avia-arrow{background-color:#52565c} .socket_color .hr-short .hr-inner-style,.socket_color .hr-short .hr-inner{background-color:#282b2e}div .socket_color .tabcontainer .active_tab_content,div .socket_color .tabcontainer .active_tab{background-color:#52565c;color:#e8e8e8}.responsive.js_active #top .socket_color .avia_combo_widget .top_tab .tab{border-top-color:#282b2e}.socket_color .template-archives .tabcontainer a,#top .socket_color .tabcontainer .tab:hover,#top .socket_color .tabcontainer .tab.active_tab{color:#e8e8e8} .socket_color .template-archives .tabcontainer a:hover{color:#ebebeb}.socket_color .sidebar_tab_icon{background-color:#282b2e}#top .socket_color .sidebar_active_tab .sidebar_tab_icon{background-color:#ffffff}.socket_color .sidebar_tab:hover .sidebar_tab_icon{background-color:#ebebeb}.socket_color .sidebar_tab,.socket_color .tabcontainer .tab{color:#777777}.socket_color div .sidebar_active_tab ,div .socket_color .tabcontainer.noborder_tabs .active_tab_content,div .socket_color .tabcontainer.noborder_tabs .active_tab{color:#e8e8e8;background-color:#282b2e}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color:#52565c}#top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a.active,#top .socket_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color:#777777}@media only screen and (max-width:767px){.responsive #top .socket_color .tabcontainer .active_tab{background-color:#ebebeb;color:#282b2e} .responsive #top .socket_color .tabcontainer{border-color:#282b2e}.responsive #top .socket_color .active_tab_content{background-color:#52565c}}.socket_color tr:nth-child(even),.socket_color .avia-data-table .avia-heading-row .avia-desc-col,.socket_color .avia-data-table .avia-highlight-col,.socket_color .pricing-table>li:nth-child(even),body .socket_color .pricing-table.avia-desc-col li,#top .socket_color .avia-data-table.avia_pricing_minimal th{background-color:#282b2e;color:#e8e8e8}.socket_color table caption,.socket_color tr:nth-child(even),.socket_color .pricing-table>li:nth-child(even),#top .socket_color .avia-data-table.avia_pricing_minimal td{color:#777777}.socket_color tr:nth-child(odd),.socket_color .pricing-table>li:nth-child(odd),.socket_color .pricing-extra{background:#52565c}.socket_color .pricing-table li.avia-pricing-row,.socket_color .pricing-table li.avia-heading-row,.socket_color .pricing-table li.avia-pricing-row .pricing-extra{background-color:#ffffff;color:#282b2e;border-color:#ffffff}.socket_color .pricing-table li.avia-heading-row,.socket_color .pricing-table li.avia-heading-row .pricing-extra{background-color:#ffffff;color:#282b2e;border-color:#ffffff}.socket_color .pricing-table.avia-desc-col .avia-heading-row,.socket_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#282b2e}.socket_color .theme-color-bar .bar{background:#ffffff}.socket_color .mejs-controls .mejs-time-rail .mejs-time-current,.socket_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.socket_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.socket_color .button.av-sending-button,.socket_color .av-striped-bar .theme-color-bar .bar{background:#ffffff}body .socket_color .mejs-controls .mejs-time-rail .mejs-time-float{background:#ffffff;color:#fff}body .socket_color .mejs-controls .mejs-time-rail .mejs-time-float-corner{border:solid 4px #ffffff;border-color:#ffffff transparent transparent transparent}.socket_color .progress{background-color:#52565c}.socket_color .av_searchform_element_results .av_ajax_search_entry,.socket_color .av_searchform_element_results .av_ajax_search_title,.socket_color.av_searchform_element_results .av_ajax_search_entry,.socket_color.av_searchform_element_results .av_ajax_search_title{color:#ffffff}.socket_color .av_searchform_element_results .ajax_search_excerpt,.socket_color.av_searchform_element_results .ajax_search_excerpt{color:#777777}.socket_color .av_searchform_element_results .av_ajax_search_image,.socket_color.av_searchform_element_results .av_ajax_search_image{color:#777777} .socket_color .button.av-sending-button{background:#ebebeb;background-image:-webkit-linear-gradient(-45deg,#ebebeb 25%,#fcfcfc 25%,#fcfcfc 50%,#ebebeb 50%,#ebebeb 75%,#fcfcfc 75%,#fcfcfc);background-image:-moz-linear-gradient(-45deg,#ebebeb 25%,#fcfcfc 25%,#fcfcfc 50%,#ebebeb 50%,#ebebeb 75%,#fcfcfc 75%,#fcfcfc);background-image:linear-gradient(-45deg,#ebebeb 25%,#fcfcfc 25%,#fcfcfc 50%,#ebebeb 50%,#ebebeb 75%,#fcfcfc 75%,#fcfcfc);border-color:#ebebeb}.socket_color span.bbp-admin-links a{color:#ffffff}.socket_color span.bbp-admin-links a:hover{color:#ebebeb}#top .socket_color .bbp-reply-content,#top .socket_color .bbp-topic-content,#top .socket_color .bbp-body .super-sticky .page-numbers,#top .socket_color .bbp-body .sticky .page-numbers,#top .socket_color .bbp-pagination-links a:hover,#top .socket_color .bbp-pagination-links span.current{background:#282b2e}#top .socket_color .bbp-topics .bbp-header,#top .socket_color .bbp-topics .bbp-header,#top .socket_color .bbp-forums .bbp-header,#top .socket_color .bbp-topics-front ul.super-sticky,#top .socket_color .bbp-topics ul.super-sticky,#top .socket_color .bbp-topics ul.sticky,#top .socket_color .bbp-forum-content ul.sticky,#top .socket_color .bbp-body .page-numbers{background-color:#52565c}#top .socket_color .bbp-meta,#top .socket_color .bbp-author-role,#top .socket_color .bbp-author-ip,#top .socket_color .bbp-pagination-count,#top .socket_color .bbp-topics .bbp-body .bbp-topic-title:before{color:#777777}#top .socket_color .bbp-admin-links{color:#282b2e}.socket_color #bbpress-forums li.bbp-body ul.forum,.socket_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .socket_color .bbp-replies .bbp-reply-author:before,.avia_transform .forum-search .socket_color .bbp-reply-author:before,.avia_transform .forum-search .socket_color .bbp-topic-author:before{background-color:#282b2e;border-color:#282b2e}#top .socket_color .bbp-author-name{color:#ffffff}.socket_color .widget_display_stats dt,.socket_color .widget_display_stats dd{background-color:#52565c}html,#scroll-top-link,#av-cookie-consent-badge{background-color:#282b2e}#scroll-top-link,#av-cookie-consent-badge{color:#e8e8e8;border:1px solid #282b2e}.html_stretched #wrap_all{background-color:#282b2e}.footer_color,.footer_color div,.footer_color header,.footer_color main,.footer_color aside,.footer_color footer,.footer_color article,.footer_color nav,.footer_color section,.footer_color span,.footer_color applet,.footer_color object,.footer_color iframe,.footer_color h1,.footer_color h2,.footer_color h3,.footer_color h4,.footer_color h5,.footer_color h6,.footer_color p,.footer_color blockquote,.footer_color pre,.footer_color a,.footer_color abbr,.footer_color acronym,.footer_color address,.footer_color big,.footer_color cite,.footer_color code,.footer_color del,.footer_color dfn,.footer_color em,.footer_color img,.footer_color ins,.footer_color kbd,.footer_color q,.footer_color s,.footer_color samp,.footer_color small,.footer_color strike,.footer_color strong,.footer_color sub,.footer_color sup,.footer_color tt,.footer_color var,.footer_color b,.footer_color u,.footer_color i,.footer_color center,.footer_color dl,.footer_color dt,.footer_color dd,.footer_color ol,.footer_color ul,.footer_color li,.footer_color fieldset,.footer_color form,.footer_color label,.footer_color legend,.footer_color table,.footer_color caption,.footer_color tbody,.footer_color tfoot,.footer_color thead,.footer_color tr,.footer_color th,.footer_color td,.footer_color article,.footer_color aside,.footer_color canvas,.footer_color details,.footer_color embed,.footer_color figure,.footer_color fieldset,.footer_color figcaption,.footer_color footer,.footer_color header,.footer_color hgroup,.footer_color menu,.footer_color nav,.footer_color output,.footer_color ruby,.footer_color section,.footer_color summary,.footer_color time,.footer_color mark,.footer_color audio,.footer_color video,#top .footer_color .pullquote_boxed,.responsive #top .footer_color .avia-testimonial,.responsive #top.avia-blank #main .footer_color.container_wrap:first-child,#top .footer_color.fullsize .template-blog .post_delimiter,.footer_color .related_posts.av-related-style-full a{border-color:#35383c}.footer_color .rounded-container,#top .footer_color .pagination a:hover,.footer_color .small-preview,.footer_color .fallback-post-type-icon{background:#777777;color:#35383c}.footer_color .av-default-color,#top .footer_color .av-force-default-color,.footer_color .av-catalogue-item,.footer_color .wp-playlist-item .wp-playlist-caption,.footer_color .wp-playlist{color:#e8e8e8}.footer_color ,.footer_color .site-background,.footer_color .first-quote,.footer_color .related_image_wrap,.footer_color .gravatar img .footer_color .hr_content,.footer_color .news-thumb,.footer_color .post-format-icon,.footer_color .ajax_controlls a,.footer_color .tweet-text.avatar_no,.footer_color .toggler,.footer_color .toggler.activeTitle:hover,.footer_color #js_sort_items,.footer_color.inner-entry,.footer_color .grid-entry-title,.footer_color .related-format-icon,.grid-entry .footer_color .avia-arrow,.footer_color .avia-gallery-big,.footer_color .avia-gallery-big,.footer_color .avia-gallery img,.footer_color .grid-content,.footer_color .av-share-box ul,#top .footer_color .av-related-style-full .related-format-icon,.footer_color .related_posts.av-related-style-full a:hover,.footer_color.avia-fullwidth-portfolio .pagination .current,.footer_color.avia-fullwidth-portfolio .pagination a,.footer_color .av-hotspot-fallback-tooltip-inner,.footer_color .av-hotspot-fallback-tooltip-count{background-color:#35383c;color:#e8e8e8}.footer_color .heading-color,.footer_color a.iconbox_icon:hover,.footer_color h1,.footer_color h2,.footer_color h3,.footer_color h4,.footer_color h5,.footer_color h6,.footer_color .sidebar .current_page_item>a,.footer_color .sidebar .current-menu-item>a,.footer_color .pagination .current,.footer_color .pagination a:hover,.footer_color strong.avia-testimonial-name,.footer_color .heading,.footer_color .toggle_content strong,.footer_color .toggle_content strong a,.footer_color .tab_content strong,.footer_color .tab_content strong a ,.footer_color .asc_count,.footer_color .avia-testimonial-content strong,.footer_color div .news-headline,#top .footer_color .av-related-style-full .av-related-title,.footer_color .av-default-style .av-countdown-cell-inner .av-countdown-time,.footer_color .wp-playlist-item-meta.wp-playlist-item-title,#top .footer_color .av-no-image-slider h2 a,.footer_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{color:#ffffff}.footer_color .meta-color,.footer_color .sidebar,.footer_color .sidebar a,.footer_color .minor-meta,.footer_color .minor-meta a,.footer_color .text-sep,.footer_color blockquote,.footer_color .post_nav a,.footer_color .comment-text,.footer_color .side-container-inner,.footer_color .news-time,.footer_color .pagination a,.footer_color .pagination span,.footer_color .tweet-text.avatar_no .tweet-time,#top .footer_color .extra-mini-title,.footer_color .team-member-job-title,.footer_color .team-social a,.footer_color #js_sort_items a,.grid-entry-excerpt,.footer_color .avia-testimonial-subtitle,.footer_color .commentmetadata a,.footer_color .social_bookmarks a,.footer_color .meta-heading>*,.footer_color .slide-meta,.footer_color .slide-meta a,.footer_color .taglist,.footer_color .taglist a,.footer_color .phone-info,.footer_color .phone-info a,.footer_color .av-sort-by-term a,.footer_color .av-magazine-time,.footer_color .av-magazine .av-magazine-entry-icon,.footer_color .av-catalogue-content,.footer_color .wp-playlist-item-length,.html_modern-blog #top div .footer_color .blog-categories a,.html_modern-blog #top div .footer_color .blog-categories a:hover{color:#777777}.footer_color .special-heading-inner-border{border-color:#e8e8e8}.footer_color .meta-heading .special-heading-inner-border{border-color:#777777}.footer_color a,.footer_color .widget_first,.footer_color strong,.footer_color b,.footer_color b a,.footer_color strong a,.footer_color #js_sort_items a:hover,.footer_color #js_sort_items a.active_sort,.footer_color .av-sort-by-term a.active_sort,.footer_color .special_amp,.footer_color .taglist a.activeFilter,.footer_color #commentform .required,#top .footer_color .av-no-color.av-icon-style-border a.av-icon-char,.html_elegant-blog #top .footer_color .blog-categories a,.html_elegant-blog #top .footer_color .blog-categories a:hover{color:#ffffff}.footer_color a:hover,.footer_color h1 a:hover,.footer_color h2 a:hover,.footer_color h3 a:hover,.footer_color h4 a:hover,.footer_color h5 a:hover,.footer_color h6 a:hover,.footer_color .template-search a.news-content:hover,.footer_color .wp-playlist-item .wp-playlist-caption:hover{color:#ebebeb}.footer_color .primary-background,.footer_color .primary-background a,div .footer_color .button,.footer_color #submit,.footer_color input[type=\'submit\'],.footer_color .small-preview:hover,.footer_color .avia-menu-fx,.footer_color .avia-menu-fx .avia-arrow,.footer_color.iconbox_top .iconbox_icon,.footer_color .iconbox_top a.iconbox_icon:hover,.footer_color .avia-data-table th.avia-highlight-col,.footer_color .avia-color-theme-color,.footer_color .avia-color-theme-color:hover,.footer_color .image-overlay .image-overlay-inside:before,.footer_color .comment-count,.footer_color .av_dropcap2,.footer_color .av-colored-style .av-countdown-cell-inner,.responsive #top .footer_color .av-open-submenu.av-subnav-menu > li > a:hover,#top .footer_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color:#ffffff;color:#35383c;border-color:#dddddd}#top #wrap_all .footer_color .av-menu-button-colored > a .avia-menu-text{background-color:#ffffff;color:#35383c;border-color:#ffffff}#top #wrap_all .footer_color .av-menu-button-colored > a .avia-menu-text:after{background-color:#dddddd}#top .footer_color .mobile_menu_toggle{color:#ffffff;background:#35383c}#top .footer_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color:#ffffff}#top .footer_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color:#35383c}.footer_color .button:hover,.footer_color .ajax_controlls a:hover,.footer_color #submit:hover,.footer_color .big_button:hover,.footer_color .contentSlideControlls a:hover,.footer_color #submit:hover ,.footer_color input[type=\'submit\']:hover{background-color:#ebebeb;color:#35383c;border-color:#c9c9c9}.footer_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after,.footer_color .avia-toc-style-elegant a:first-child:after,.footer_color .avia-toc-style-elegant a.avia-toc-level-0:after{background-color:#35383c;border-color:#ebebeb}.footer_color .avia-toc-style-elegant a:first-child span:after,.footer_color .avia-toc-style-elegant a.avia-toc-level-0 span:after{background-color:#35383c}.footer_color .avia-toc-style-elegant a:first-child:hover span:after,.footer_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after{border-color:#ebebeb}.footer_color .avia-toc-style-elegant a:before{border-color:#35383c}.footer_color .avia-toc-style-elegant a:first-child:after,.footer_color .avia-toc-style-elegant a.avia-toc-level-0:after{border-color:#ebebeb;background-color:#35383c}.footer_color .avia-toc-style-elegant a:last-child:after{background-color:#35383c}.footer_color .timeline-bullet{background-color:#35383c;border-color:#35383c}.footer_color table,.footer_color .widget_nav_menu ul:first-child>.current-menu-item,.footer_color .widget_nav_menu ul:first-child>.current_page_item,.footer_color .widget_nav_menu ul:first-child>.current-menu-ancestor,.footer_color .pagination .current,.footer_color .pagination a,.footer_color.iconbox_top .iconbox_content,.footer_color .av_promobox,.footer_color .toggle_content,.footer_color .toggler:hover,#top .footer_color .av-minimal-toggle .toggler,.footer_color .related_posts_default_image,.footer_color .search-result-counter,.footer_color .container_wrap_meta,.footer_color .avia-content-slider .slide-image,.footer_color .avia-slider-testimonials .avia-testimonial-content,.footer_color .avia-testimonial-arrow-wrap .avia-arrow,.footer_color .news-thumb,.footer_color .portfolio-preview-content,.footer_color .portfolio-preview-content .avia-arrow,.footer_color .av-magazine .av-magazine-entry-icon,.footer_color .related_posts.av-related-style-full a,.footer_color .aviaccordion-slide,.footer_color.avia-fullwidth-portfolio .pagination,.footer_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image,.footer_color .av-catalogue-list li:hover,.footer_color .wp-playlist,.footer_color .avia-slideshow-fixed-height > li,.footer_color .avia-form-success,.footer_color .avia-form-error,.footer_color .av-boxed-grid-style .avia-testimonial{background:#52565c}#top .footer_color .post_timeline li:hover .timeline-bullet{background-color:#ebebeb}.footer_color blockquote,.footer_color .avia-bullet,.footer_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#ffffff}.html_header_top .footer_color .main_menu ul:first-child >li > ul,.html_header_top #top .footer_color .avia_mega_div > .sub-menu{border-top-color:#ffffff}.footer_color .breadcrumb,.footer_color .breadcrumb a,#top .footer_color.title_container .main-title,#top .footer_color.title_container .main-title a{color:#e8e8e8}.footer_color .av-icon-display,#top .footer_color .av-related-style-full a:hover .related-format-icon,.footer_color .av-default-style .av-countdown-cell-inner{background-color:#52565c;color:#777777}.footer_color .av-masonry-entry:hover .av-icon-display{background-color:#ffffff;color:#35383c;border-color:#dddddd}#top .footer_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#ffffff}.footer_color ::-webkit-input-placeholder{color:#777777}.footer_color ::-moz-placeholder{color:#777777;opacity:1}.footer_color :-ms-input-placeholder{color:#777777}.footer_color .header_bg,.footer_color .main_menu ul ul,.footer_color .main_menu .menu ul li a,.footer_color .pointer_arrow_wrap .pointer_arrow,.footer_color .avia_mega_div,.footer_color .av-subnav-menu > li ul,.footer_color .av-subnav-menu a{background-color:#35383c;color:#777777}.footer_color .main_menu .menu ul li a:hover,.footer_color .av-subnav-menu ul a:hover{background-color:#52565c}.footer_color .sub_menu>ul>li>a,.footer_color .sub_menu>div>ul>li>a,.footer_color .main_menu ul:first-child > li > a,#top .footer_color .main_menu .menu ul .current_page_item > a,#top .footer_color .main_menu .menu ul .current-menu-item > a ,#top .footer_color .sub_menu li ul a{color:#777777}#top .footer_color .main_menu .menu ul li>a:hover{color:#e8e8e8}.footer_color .av-subnav-menu a:hover,.footer_color .main_menu ul:first-child > li a:hover,.footer_color .main_menu ul:first-child > li.current-menu-item > a,.footer_color .main_menu ul:first-child > li.current_page_item > a,.footer_color .main_menu ul:first-child > li.active-parent-item > a{color:#e8e8e8}#top .footer_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#ffffff}.footer_color .sub_menu>ul>li>a:hover,.footer_color .sub_menu>div>ul>li>a:hover{color:#e8e8e8}#top .footer_color .sub_menu ul li a:hover,.footer_color .sub_menu ul:first-child > li.current-menu-item > a,.footer_color .sub_menu ul:first-child > li.current_page_item > a,.footer_color .sub_menu ul:first-child > li.active-parent-item > a{color:#e8e8e8}.footer_color .sub_menu li ul a,.footer_color #payment,.footer_color .sub_menu ul li,.footer_color .sub_menu ul,#top .footer_color .sub_menu li li a:hover{background-color:#35383c}.footer_color#header .avia_mega_div > .sub-menu.avia_mega_hr,.html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#35383c}@media only screen and (max-width:767px){#top #wrap_all .av_header_transparency{background-color:#35383c;color:#e8e8e8;border-color:#35383c}}@media only screen and (max-width:989px){.html_mobile_menu_tablet #top #wrap_all .av_header_transparency{background-color:#35383c;color:#e8e8e8;border-color:#35383c}}.footer_color .avia-tt,.footer_color .avia-tt .avia-arrow,.footer_color .avia-tt .avia-arrow{background-color:#35383c;color:#777777}.footer_color .av_ajax_search_image{background-color:#ffffff;color:#35383c}.footer_color .ajax_search_excerpt{color:#777777}.footer_color .av_ajax_search_title{color:#ffffff}.footer_color .ajax_load{background-color:#ffffff}.footer_color .av_searchsubmit_wrapper{background-color:#ffffff}#top .footer_color .avia-color-theme-color{color:#35383c;border-color:#dddddd}.footer_color .avia-color-theme-color-subtle{background-color:#52565c;color:#e8e8e8}.footer_color .avia-color-theme-color-subtle:hover{background-color:#35383c;color:#ffffff}#top .footer_color .avia-color-theme-color-highlight{color:#35383c;border-color:#ebebeb;background-color:#ebebeb}.footer_color .avia-icon-list .iconlist_icon{background-color:#24272b}.footer_color .avia-icon-list .iconlist-timeline{border-color:#35383c}.footer_color .iconlist_content{color:#777777}.footer_color .avia-timeline .milestone_icon{background-color:#24272b}.footer_color .avia-timeline .milestone_inner{background-color:#24272b}.footer_color .avia-timeline{border-color:#24272b}.footer_color .av-milestone-icon-wrap:after{border-color:#24272b}.footer_color .avia-timeline .av-milestone-date{color:#010408}.footer_color .avia-timeline .av-milestone-date span{background-color:#24272b}.footer_color .avia-timeline-horizontal .av-milestone-content-wrap footer{background-color:#24272b}.footer_color .av-timeline-nav a span{background-color:#24272b}#top .footer_color .input-text,#top .footer_color input[type=\'text\'],#top .footer_color input[type=\'input\'],#top .footer_color input[type=\'password\'],#top .footer_color input[type=\'email\'],#top .footer_color input[type=\'number\'],#top .footer_color input[type=\'url\'],#top .footer_color input[type=\'tel\'],#top .footer_color input[type=\'search\'],#top .footer_color textarea,#top .footer_color select{border-color:#35383c;background-color:#52565c;color:#777777}#top .footer_color .invers-color .input-text,#top .footer_color .invers-color input[type=\'text\'],#top .footer_color .invers-color input[type=\'input\'],#top .footer_color .invers-color input[type=\'password\'],#top .footer_color .invers-color input[type=\'email\'],#top .footer_color .invers-color input[type=\'number\'],#top .footer_color .invers-color input[type=\'url\'],#top .footer_color .invers-color input[type=\'tel\'],#top .footer_color .invers-color input[type=\'search\'],#top .footer_color .invers-color textarea,#top .footer_color .invers-color select{background-color:#35383c}.footer_color .required{color:#ffffff}.footer_color .av-masonry{background-color:#41454b}.footer_color .av-masonry-pagination,.footer_color .av-masonry-pagination:hover,.footer_color .av-masonry-outerimage-container{background-color:#35383c}.footer_color .container .av-inner-masonry-content,#top .footer_color .container .av-masonry-load-more,#top .footer_color .container .av-masonry-sort,.footer_color .container .av-masonry-entry .avia-arrow{background-color:#52565c} .footer_color .hr-short .hr-inner-style,.footer_color .hr-short .hr-inner{background-color:#35383c}div .footer_color .tabcontainer .active_tab_content,div .footer_color .tabcontainer .active_tab{background-color:#52565c;color:#e8e8e8}.responsive.js_active #top .footer_color .avia_combo_widget .top_tab .tab{border-top-color:#35383c}.footer_color .template-archives .tabcontainer a,#top .footer_color .tabcontainer .tab:hover,#top .footer_color .tabcontainer .tab.active_tab{color:#e8e8e8} .footer_color .template-archives .tabcontainer a:hover{color:#ebebeb}.footer_color .sidebar_tab_icon{background-color:#35383c}#top .footer_color .sidebar_active_tab .sidebar_tab_icon{background-color:#ffffff}.footer_color .sidebar_tab:hover .sidebar_tab_icon{background-color:#ebebeb}.footer_color .sidebar_tab,.footer_color .tabcontainer .tab{color:#777777}.footer_color div .sidebar_active_tab ,div .footer_color .tabcontainer.noborder_tabs .active_tab_content,div .footer_color .tabcontainer.noborder_tabs .active_tab{color:#e8e8e8;background-color:#35383c}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color:#52565c}#top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a.active,#top .footer_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color:#777777}@media only screen and (max-width:767px){.responsive #top .footer_color .tabcontainer .active_tab{background-color:#ebebeb;color:#35383c} .responsive #top .footer_color .tabcontainer{border-color:#35383c}.responsive #top .footer_color .active_tab_content{background-color:#52565c}}.footer_color tr:nth-child(even),.footer_color .avia-data-table .avia-heading-row .avia-desc-col,.footer_color .avia-data-table .avia-highlight-col,.footer_color .pricing-table>li:nth-child(even),body .footer_color .pricing-table.avia-desc-col li,#top .footer_color .avia-data-table.avia_pricing_minimal th{background-color:#35383c;color:#e8e8e8}.footer_color table caption,.footer_color tr:nth-child(even),.footer_color .pricing-table>li:nth-child(even),#top .footer_color .avia-data-table.avia_pricing_minimal td{color:#777777}.footer_color tr:nth-child(odd),.footer_color .pricing-table>li:nth-child(odd),.footer_color .pricing-extra{background:#52565c}.footer_color .pricing-table li.avia-pricing-row,.footer_color .pricing-table li.avia-heading-row,.footer_color .pricing-table li.avia-pricing-row .pricing-extra{background-color:#ffffff;color:#35383c;border-color:#ffffff}.footer_color .pricing-table li.avia-heading-row,.footer_color .pricing-table li.avia-heading-row .pricing-extra{background-color:#ffffff;color:#35383c;border-color:#ffffff}.footer_color .pricing-table.avia-desc-col .avia-heading-row,.footer_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#35383c}.footer_color .theme-color-bar .bar{background:#ffffff}.footer_color .mejs-controls .mejs-time-rail .mejs-time-current,.footer_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.footer_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.footer_color .button.av-sending-button,.footer_color .av-striped-bar .theme-color-bar .bar{background:#ffffff}body .footer_color .mejs-controls .mejs-time-rail .mejs-time-float{background:#ffffff;color:#fff}body .footer_color .mejs-controls .mejs-time-rail .mejs-time-float-corner{border:solid 4px #ffffff;border-color:#ffffff transparent transparent transparent}.footer_color .progress{background-color:#52565c}.footer_color .av_searchform_element_results .av_ajax_search_entry,.footer_color .av_searchform_element_results .av_ajax_search_title,.footer_color.av_searchform_element_results .av_ajax_search_entry,.footer_color.av_searchform_element_results .av_ajax_search_title{color:#ffffff}.footer_color .av_searchform_element_results .ajax_search_excerpt,.footer_color.av_searchform_element_results .ajax_search_excerpt{color:#777777}.footer_color .av_searchform_element_results .av_ajax_search_image,.footer_color.av_searchform_element_results .av_ajax_search_image{color:#777777} .footer_color .button.av-sending-button{background:#ebebeb;background-image:-webkit-linear-gradient(-45deg,#ebebeb 25%,#fcfcfc 25%,#fcfcfc 50%,#ebebeb 50%,#ebebeb 75%,#fcfcfc 75%,#fcfcfc);background-image:-moz-linear-gradient(-45deg,#ebebeb 25%,#fcfcfc 25%,#fcfcfc 50%,#ebebeb 50%,#ebebeb 75%,#fcfcfc 75%,#fcfcfc);background-image:linear-gradient(-45deg,#ebebeb 25%,#fcfcfc 25%,#fcfcfc 50%,#ebebeb 50%,#ebebeb 75%,#fcfcfc 75%,#fcfcfc);border-color:#ebebeb}.footer_color span.bbp-admin-links a{color:#ffffff}.footer_color span.bbp-admin-links a:hover{color:#ebebeb}#top .footer_color .bbp-reply-content,#top .footer_color .bbp-topic-content,#top .footer_color .bbp-body .super-sticky .page-numbers,#top .footer_color .bbp-body .sticky .page-numbers,#top .footer_color .bbp-pagination-links a:hover,#top .footer_color .bbp-pagination-links span.current{background:#35383c}#top .footer_color .bbp-topics .bbp-header,#top .footer_color .bbp-topics .bbp-header,#top .footer_color .bbp-forums .bbp-header,#top .footer_color .bbp-topics-front ul.super-sticky,#top .footer_color .bbp-topics ul.super-sticky,#top .footer_color .bbp-topics ul.sticky,#top .footer_color .bbp-forum-content ul.sticky,#top .footer_color .bbp-body .page-numbers{background-color:#52565c}#top .footer_color .bbp-meta,#top .footer_color .bbp-author-role,#top .footer_color .bbp-author-ip,#top .footer_color .bbp-pagination-count,#top .footer_color .bbp-topics .bbp-body .bbp-topic-title:before{color:#777777}#top .footer_color .bbp-admin-links{color:#35383c}.footer_color #bbpress-forums li.bbp-body ul.forum,.footer_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .footer_color .bbp-replies .bbp-reply-author:before,.avia_transform .forum-search .footer_color .bbp-reply-author:before,.avia_transform .forum-search .footer_color .bbp-topic-author:before{background-color:#35383c;border-color:#35383c}#top .footer_color .bbp-author-name{color:#ffffff}.footer_color .widget_display_stats dt,.footer_color .widget_display_stats dd{background-color:#52565c}.alternate_color,.alternate_color div,.alternate_color header,.alternate_color main,.alternate_color aside,.alternate_color footer,.alternate_color article,.alternate_color nav,.alternate_color section,.alternate_color span,.alternate_color applet,.alternate_color object,.alternate_color iframe,.alternate_color h1,.alternate_color h2,.alternate_color h3,.alternate_color h4,.alternate_color h5,.alternate_color h6,.alternate_color p,.alternate_color blockquote,.alternate_color pre,.alternate_color a,.alternate_color abbr,.alternate_color acronym,.alternate_color address,.alternate_color big,.alternate_color cite,.alternate_color code,.alternate_color del,.alternate_color dfn,.alternate_color em,.alternate_color img,.alternate_color ins,.alternate_color kbd,.alternate_color q,.alternate_color s,.alternate_color samp,.alternate_color small,.alternate_color strike,.alternate_color strong,.alternate_color sub,.alternate_color sup,.alternate_color tt,.alternate_color var,.alternate_color b,.alternate_color u,.alternate_color i,.alternate_color center,.alternate_color dl,.alternate_color dt,.alternate_color dd,.alternate_color ol,.alternate_color ul,.alternate_color li,.alternate_color fieldset,.alternate_color form,.alternate_color label,.alternate_color legend,.alternate_color table,.alternate_color caption,.alternate_color tbody,.alternate_color tfoot,.alternate_color thead,.alternate_color tr,.alternate_color th,.alternate_color td,.alternate_color article,.alternate_color aside,.alternate_color canvas,.alternate_color details,.alternate_color embed,.alternate_color figure,.alternate_color fieldset,.alternate_color figcaption,.alternate_color footer,.alternate_color header,.alternate_color hgroup,.alternate_color menu,.alternate_color nav,.alternate_color output,.alternate_color ruby,.alternate_color section,.alternate_color summary,.alternate_color time,.alternate_color mark,.alternate_color audio,.alternate_color video,#top .alternate_color .pullquote_boxed,.responsive #top .alternate_color .avia-testimonial,.responsive #top.avia-blank #main .alternate_color.container_wrap:first-child,#top .alternate_color.fullsize .template-blog .post_delimiter,.alternate_color .related_posts.av-related-style-full a{border-color:#ebebeb}.alternate_color .rounded-container,#top .alternate_color .pagination a:hover,.alternate_color .small-preview,.alternate_color .fallback-post-type-icon{background:#919191;color:#f8f8f8}.alternate_color .av-default-color,#top .alternate_color .av-force-default-color,.alternate_color .av-catalogue-item,.alternate_color .wp-playlist-item .wp-playlist-caption,.alternate_color .wp-playlist{color:#000000}.alternate_color ,.alternate_color .site-background,.alternate_color .first-quote,.alternate_color .related_image_wrap,.alternate_color .gravatar img .alternate_color .hr_content,.alternate_color .news-thumb,.alternate_color .post-format-icon,.alternate_color .ajax_controlls a,.alternate_color .tweet-text.avatar_no,.alternate_color .toggler,.alternate_color .toggler.activeTitle:hover,.alternate_color #js_sort_items,.alternate_color.inner-entry,.alternate_color .grid-entry-title,.alternate_color .related-format-icon,.grid-entry .alternate_color .avia-arrow,.alternate_color .avia-gallery-big,.alternate_color .avia-gallery-big,.alternate_color .avia-gallery img,.alternate_color .grid-content,.alternate_color .av-share-box ul,#top .alternate_color .av-related-style-full .related-format-icon,.alternate_color .related_posts.av-related-style-full a:hover,.alternate_color.avia-fullwidth-portfolio .pagination .current,.alternate_color.avia-fullwidth-portfolio .pagination a,.alternate_color .av-hotspot-fallback-tooltip-inner,.alternate_color .av-hotspot-fallback-tooltip-count{background-color:#f8f8f8;color:#000000}.alternate_color .heading-color,.alternate_color a.iconbox_icon:hover,.alternate_color h1,.alternate_color h2,.alternate_color h3,.alternate_color h4,.alternate_color h5,.alternate_color h6,.alternate_color .sidebar .current_page_item>a,.alternate_color .sidebar .current-menu-item>a,.alternate_color .pagination .current,.alternate_color .pagination a:hover,.alternate_color strong.avia-testimonial-name,.alternate_color .heading,.alternate_color .toggle_content strong,.alternate_color .toggle_content strong a,.alternate_color .tab_content strong,.alternate_color .tab_content strong a ,.alternate_color .asc_count,.alternate_color .avia-testimonial-content strong,.alternate_color div .news-headline,#top .alternate_color .av-related-style-full .av-related-title,.alternate_color .av-default-style .av-countdown-cell-inner .av-countdown-time,.alternate_color .wp-playlist-item-meta.wp-playlist-item-title,#top .alternate_color .av-no-image-slider h2 a,.alternate_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{color:#222222}.alternate_color .meta-color,.alternate_color .sidebar,.alternate_color .sidebar a,.alternate_color .minor-meta,.alternate_color .minor-meta a,.alternate_color .text-sep,.alternate_color blockquote,.alternate_color .post_nav a,.alternate_color .comment-text,.alternate_color .side-container-inner,.alternate_color .news-time,.alternate_color .pagination a,.alternate_color .pagination span,.alternate_color .tweet-text.avatar_no .tweet-time,#top .alternate_color .extra-mini-title,.alternate_color .team-member-job-title,.alternate_color .team-social a,.alternate_color #js_sort_items a,.grid-entry-excerpt,.alternate_color .avia-testimonial-subtitle,.alternate_color .commentmetadata a,.alternate_color .social_bookmarks a,.alternate_color .meta-heading>*,.alternate_color .slide-meta,.alternate_color .slide-meta a,.alternate_color .taglist,.alternate_color .taglist a,.alternate_color .phone-info,.alternate_color .phone-info a,.alternate_color .av-sort-by-term a,.alternate_color .av-magazine-time,.alternate_color .av-magazine .av-magazine-entry-icon,.alternate_color .av-catalogue-content,.alternate_color .wp-playlist-item-length,.html_modern-blog #top div .alternate_color .blog-categories a,.html_modern-blog #top div .alternate_color .blog-categories a:hover{color:#919191}.alternate_color .special-heading-inner-border{border-color:#000000}.alternate_color .meta-heading .special-heading-inner-border{border-color:#919191}.alternate_color a,.alternate_color .widget_first,.alternate_color strong,.alternate_color b,.alternate_color b a,.alternate_color strong a,.alternate_color #js_sort_items a:hover,.alternate_color #js_sort_items a.active_sort,.alternate_color .av-sort-by-term a.active_sort,.alternate_color .special_amp,.alternate_color .taglist a.activeFilter,.alternate_color #commentform .required,#top .alternate_color .av-no-color.av-icon-style-border a.av-icon-char,.html_elegant-blog #top .alternate_color .blog-categories a,.html_elegant-blog #top .alternate_color .blog-categories a:hover{color:#000000}.alternate_color a:hover,.alternate_color h1 a:hover,.alternate_color h2 a:hover,.alternate_color h3 a:hover,.alternate_color h4 a:hover,.alternate_color h5 a:hover,.alternate_color h6 a:hover,.alternate_color .template-search a.news-content:hover,.alternate_color .wp-playlist-item .wp-playlist-caption:hover{color:#e20531}.alternate_color .primary-background,.alternate_color .primary-background a,div .alternate_color .button,.alternate_color #submit,.alternate_color input[type=\'submit\'],.alternate_color .small-preview:hover,.alternate_color .avia-menu-fx,.alternate_color .avia-menu-fx .avia-arrow,.alternate_color.iconbox_top .iconbox_icon,.alternate_color .iconbox_top a.iconbox_icon:hover,.alternate_color .avia-data-table th.avia-highlight-col,.alternate_color .avia-color-theme-color,.alternate_color .avia-color-theme-color:hover,.alternate_color .image-overlay .image-overlay-inside:before,.alternate_color .comment-count,.alternate_color .av_dropcap2,.alternate_color .av-colored-style .av-countdown-cell-inner,.responsive #top .alternate_color .av-open-submenu.av-subnav-menu > li > a:hover,#top .alternate_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color:#000000;color:#ffffff;border-color:#000000}#top #wrap_all .alternate_color .av-menu-button-colored > a .avia-menu-text{background-color:#000000;color:#ffffff;border-color:#000000}#top #wrap_all .alternate_color .av-menu-button-colored > a .avia-menu-text:after{background-color:#000000}#top .alternate_color .mobile_menu_toggle{color:#000000;background:#f8f8f8}#top .alternate_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color:#000000}#top .alternate_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color:#f8f8f8}.alternate_color .button:hover,.alternate_color .ajax_controlls a:hover,.alternate_color #submit:hover,.alternate_color .big_button:hover,.alternate_color .contentSlideControlls a:hover,.alternate_color #submit:hover ,.alternate_color input[type=\'submit\']:hover{background-color:#e20531;color:#f8f8f8;border-color:#c00310}.alternate_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after,.alternate_color .avia-toc-style-elegant a:first-child:after,.alternate_color .avia-toc-style-elegant a.avia-toc-level-0:after{background-color:#f8f8f8;border-color:#e20531}.alternate_color .avia-toc-style-elegant a:first-child span:after,.alternate_color .avia-toc-style-elegant a.avia-toc-level-0 span:after{background-color:#f8f8f8}.alternate_color .avia-toc-style-elegant a:first-child:hover span:after,.alternate_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after{border-color:#e20531}.alternate_color .avia-toc-style-elegant a:before{border-color:#ebebeb}.alternate_color .avia-toc-style-elegant a:first-child:after,.alternate_color .avia-toc-style-elegant a.avia-toc-level-0:after{border-color:#e20531;background-color:#f8f8f8}.alternate_color .avia-toc-style-elegant a:last-child:after{background-color:#ebebeb}.alternate_color .timeline-bullet{background-color:#ebebeb;border-color:#f8f8f8}.alternate_color table,.alternate_color .widget_nav_menu ul:first-child>.current-menu-item,.alternate_color .widget_nav_menu ul:first-child>.current_page_item,.alternate_color .widget_nav_menu ul:first-child>.current-menu-ancestor,.alternate_color .pagination .current,.alternate_color .pagination a,.alternate_color.iconbox_top .iconbox_content,.alternate_color .av_promobox,.alternate_color .toggle_content,.alternate_color .toggler:hover,#top .alternate_color .av-minimal-toggle .toggler,.alternate_color .related_posts_default_image,.alternate_color .search-result-counter,.alternate_color .container_wrap_meta,.alternate_color .avia-content-slider .slide-image,.alternate_color .avia-slider-testimonials .avia-testimonial-content,.alternate_color .avia-testimonial-arrow-wrap .avia-arrow,.alternate_color .news-thumb,.alternate_color .portfolio-preview-content,.alternate_color .portfolio-preview-content .avia-arrow,.alternate_color .av-magazine .av-magazine-entry-icon,.alternate_color .related_posts.av-related-style-full a,.alternate_color .aviaccordion-slide,.alternate_color.avia-fullwidth-portfolio .pagination,.alternate_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image,.alternate_color .av-catalogue-list li:hover,.alternate_color .wp-playlist,.alternate_color .avia-slideshow-fixed-height > li,.alternate_color .avia-form-success,.alternate_color .avia-form-error,.alternate_color .av-boxed-grid-style .avia-testimonial{background:#ffffff}#top .alternate_color .post_timeline li:hover .timeline-bullet{background-color:#e20531}.alternate_color blockquote,.alternate_color .avia-bullet,.alternate_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#000000}.html_header_top .alternate_color .main_menu ul:first-child >li > ul,.html_header_top #top .alternate_color .avia_mega_div > .sub-menu{border-top-color:#000000}.alternate_color .breadcrumb,.alternate_color .breadcrumb a,#top .alternate_color.title_container .main-title,#top .alternate_color.title_container .main-title a{color:#000000}.alternate_color .av-icon-display,#top .alternate_color .av-related-style-full a:hover .related-format-icon,.alternate_color .av-default-style .av-countdown-cell-inner{background-color:#ffffff;color:#919191}.alternate_color .av-masonry-entry:hover .av-icon-display{background-color:#000000;color:#ffffff;border-color:#000000}#top .alternate_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#000000}.alternate_color ::-webkit-input-placeholder{color:#919191}.alternate_color ::-moz-placeholder{color:#919191;opacity:1}.alternate_color :-ms-input-placeholder{color:#919191}.alternate_color .header_bg,.alternate_color .main_menu ul ul,.alternate_color .main_menu .menu ul li a,.alternate_color .pointer_arrow_wrap .pointer_arrow,.alternate_color .avia_mega_div,.alternate_color .av-subnav-menu > li ul,.alternate_color .av-subnav-menu a{background-color:#f8f8f8;color:#919191}.alternate_color .main_menu .menu ul li a:hover,.alternate_color .av-subnav-menu ul a:hover{background-color:#ffffff}.alternate_color .sub_menu>ul>li>a,.alternate_color .sub_menu>div>ul>li>a,.alternate_color .main_menu ul:first-child > li > a,#top .alternate_color .main_menu .menu ul .current_page_item > a,#top .alternate_color .main_menu .menu ul .current-menu-item > a ,#top .alternate_color .sub_menu li ul a{color:#919191}#top .alternate_color .main_menu .menu ul li>a:hover{color:#000000}.alternate_color .av-subnav-menu a:hover,.alternate_color .main_menu ul:first-child > li a:hover,.alternate_color .main_menu ul:first-child > li.current-menu-item > a,.alternate_color .main_menu ul:first-child > li.current_page_item > a,.alternate_color .main_menu ul:first-child > li.active-parent-item > a{color:#000000}#top .alternate_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#000000}.alternate_color .sub_menu>ul>li>a:hover,.alternate_color .sub_menu>div>ul>li>a:hover{color:#000000}#top .alternate_color .sub_menu ul li a:hover,.alternate_color .sub_menu ul:first-child > li.current-menu-item > a,.alternate_color .sub_menu ul:first-child > li.current_page_item > a,.alternate_color .sub_menu ul:first-child > li.active-parent-item > a{color:#000000}.alternate_color .sub_menu li ul a,.alternate_color #payment,.alternate_color .sub_menu ul li,.alternate_color .sub_menu ul,#top .alternate_color .sub_menu li li a:hover{background-color:#f8f8f8}.alternate_color#header .avia_mega_div > .sub-menu.avia_mega_hr,.html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#ebebeb}@media only screen and (max-width:767px){#top #wrap_all .av_header_transparency{background-color:#f8f8f8;color:#000000;border-color:#ebebeb}}@media only screen and (max-width:989px){.html_mobile_menu_tablet #top #wrap_all .av_header_transparency{background-color:#f8f8f8;color:#000000;border-color:#ebebeb}}.alternate_color .avia-tt,.alternate_color .avia-tt .avia-arrow,.alternate_color .avia-tt .avia-arrow{background-color:#f8f8f8;color:#919191}.alternate_color .av_ajax_search_image{background-color:#000000;color:#f8f8f8}.alternate_color .ajax_search_excerpt{color:#919191}.alternate_color .av_ajax_search_title{color:#222222}.alternate_color .ajax_load{background-color:#000000}.alternate_color .av_searchsubmit_wrapper{background-color:#000000}#top .alternate_color .avia-color-theme-color{color:#ffffff;border-color:#000000}.alternate_color .avia-color-theme-color-subtle{background-color:#ffffff;color:#000000}.alternate_color .avia-color-theme-color-subtle:hover{background-color:#f8f8f8;color:#222222}#top .alternate_color .avia-color-theme-color-highlight{color:#ffffff;border-color:#e20531;background-color:#e20531}.alternate_color .avia-icon-list .iconlist_icon{background-color:#dadada}.alternate_color .avia-icon-list .iconlist-timeline{border-color:#ebebeb}.alternate_color .iconlist_content{color:#919191}.alternate_color .avia-timeline .milestone_icon{background-color:#dadada}.alternate_color .avia-timeline .milestone_inner{background-color:#dadada}.alternate_color .avia-timeline{border-color:#dadada}.alternate_color .av-milestone-icon-wrap:after{border-color:#dadada}.alternate_color .avia-timeline .av-milestone-date{color:#a7a7a7}.alternate_color .avia-timeline .av-milestone-date span{background-color:#dadada}.alternate_color .avia-timeline-horizontal .av-milestone-content-wrap footer{background-color:#dadada}.alternate_color .av-timeline-nav a span{background-color:#dadada}#top .alternate_color .input-text,#top .alternate_color input[type=\'text\'],#top .alternate_color input[type=\'input\'],#top .alternate_color input[type=\'password\'],#top .alternate_color input[type=\'email\'],#top .alternate_color input[type=\'number\'],#top .alternate_color input[type=\'url\'],#top .alternate_color input[type=\'tel\'],#top .alternate_color input[type=\'search\'],#top .alternate_color textarea,#top .alternate_color select{border-color:#ebebeb;background-color:#ffffff;color:#919191}#top .alternate_color .invers-color .input-text,#top .alternate_color .invers-color input[type=\'text\'],#top .alternate_color .invers-color input[type=\'input\'],#top .alternate_color .invers-color input[type=\'password\'],#top .alternate_color .invers-color input[type=\'email\'],#top .alternate_color .invers-color input[type=\'number\'],#top .alternate_color .invers-color input[type=\'url\'],#top .alternate_color .invers-color input[type=\'tel\'],#top .alternate_color .invers-color input[type=\'search\'],#top .alternate_color .invers-color textarea,#top .alternate_color .invers-color select{background-color:#f8f8f8}.alternate_color .required{color:#000000}.alternate_color .av-masonry{background-color:#eeeeee}.alternate_color .av-masonry-pagination,.alternate_color .av-masonry-pagination:hover,.alternate_color .av-masonry-outerimage-container{background-color:#f8f8f8}.alternate_color .container .av-inner-masonry-content,#top .alternate_color .container .av-masonry-load-more,#top .alternate_color .container .av-masonry-sort,.alternate_color .container .av-masonry-entry .avia-arrow{background-color:#ffffff} .alternate_color .hr-short .hr-inner-style,.alternate_color .hr-short .hr-inner{background-color:#f8f8f8}div .alternate_color .tabcontainer .active_tab_content,div .alternate_color .tabcontainer .active_tab{background-color:#ffffff;color:#000000}.responsive.js_active #top .alternate_color .avia_combo_widget .top_tab .tab{border-top-color:#ebebeb}.alternate_color .template-archives .tabcontainer a,#top .alternate_color .tabcontainer .tab:hover,#top .alternate_color .tabcontainer .tab.active_tab{color:#000000} .alternate_color .template-archives .tabcontainer a:hover{color:#e20531}.alternate_color .sidebar_tab_icon{background-color:#ebebeb}#top .alternate_color .sidebar_active_tab .sidebar_tab_icon{background-color:#000000}.alternate_color .sidebar_tab:hover .sidebar_tab_icon{background-color:#e20531}.alternate_color .sidebar_tab,.alternate_color .tabcontainer .tab{color:#919191}.alternate_color div .sidebar_active_tab ,div .alternate_color .tabcontainer.noborder_tabs .active_tab_content,div .alternate_color .tabcontainer.noborder_tabs .active_tab{color:#000000;background-color:#f8f8f8}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color:#ffffff}#top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a.active,#top .alternate_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color:#919191}@media only screen and (max-width:767px){.responsive #top .alternate_color .tabcontainer .active_tab{background-color:#e20531;color:#ffffff} .responsive #top .alternate_color .tabcontainer{border-color:#ebebeb}.responsive #top .alternate_color .active_tab_content{background-color:#ffffff}}.alternate_color tr:nth-child(even),.alternate_color .avia-data-table .avia-heading-row .avia-desc-col,.alternate_color .avia-data-table .avia-highlight-col,.alternate_color .pricing-table>li:nth-child(even),body .alternate_color .pricing-table.avia-desc-col li,#top .alternate_color .avia-data-table.avia_pricing_minimal th{background-color:#f8f8f8;color:#000000}.alternate_color table caption,.alternate_color tr:nth-child(even),.alternate_color .pricing-table>li:nth-child(even),#top .alternate_color .avia-data-table.avia_pricing_minimal td{color:#919191}.alternate_color tr:nth-child(odd),.alternate_color .pricing-table>li:nth-child(odd),.alternate_color .pricing-extra{background:#ffffff}.alternate_color .pricing-table li.avia-pricing-row,.alternate_color .pricing-table li.avia-heading-row,.alternate_color .pricing-table li.avia-pricing-row .pricing-extra{background-color:#000000;color:#ffffff;border-color:#222222}.alternate_color .pricing-table li.avia-heading-row,.alternate_color .pricing-table li.avia-heading-row .pricing-extra{background-color:#111111;color:#ffffff;border-color:#222222}.alternate_color .pricing-table.avia-desc-col .avia-heading-row,.alternate_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#ebebeb}.alternate_color .theme-color-bar .bar{background:#000000}.alternate_color .mejs-controls .mejs-time-rail .mejs-time-current,.alternate_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.alternate_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.alternate_color .button.av-sending-button,.alternate_color .av-striped-bar .theme-color-bar .bar{background:#000000}body .alternate_color .mejs-controls .mejs-time-rail .mejs-time-float{background:#000000;color:#fff}body .alternate_color .mejs-controls .mejs-time-rail .mejs-time-float-corner{border:solid 4px #000000;border-color:#000000 transparent transparent transparent}.alternate_color .progress{background-color:#ffffff}.alternate_color .av_searchform_element_results .av_ajax_search_entry,.alternate_color .av_searchform_element_results .av_ajax_search_title,.alternate_color.av_searchform_element_results .av_ajax_search_entry,.alternate_color.av_searchform_element_results .av_ajax_search_title{color:#000000}.alternate_color .av_searchform_element_results .ajax_search_excerpt,.alternate_color.av_searchform_element_results .ajax_search_excerpt{color:#919191}.alternate_color .av_searchform_element_results .av_ajax_search_image,.alternate_color.av_searchform_element_results .av_ajax_search_image{color:#919191} .alternate_color .button.av-sending-button{background:#e20531;background-image:-webkit-linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);background-image:-moz-linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);background-image:linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);border-color:#e20531}.alternate_color span.bbp-admin-links a{color:#000000}.alternate_color span.bbp-admin-links a:hover{color:#e20531}#top .alternate_color .bbp-reply-content,#top .alternate_color .bbp-topic-content,#top .alternate_color .bbp-body .super-sticky .page-numbers,#top .alternate_color .bbp-body .sticky .page-numbers,#top .alternate_color .bbp-pagination-links a:hover,#top .alternate_color .bbp-pagination-links span.current{background:#f8f8f8}#top .alternate_color .bbp-topics .bbp-header,#top .alternate_color .bbp-topics .bbp-header,#top .alternate_color .bbp-forums .bbp-header,#top .alternate_color .bbp-topics-front ul.super-sticky,#top .alternate_color .bbp-topics ul.super-sticky,#top .alternate_color .bbp-topics ul.sticky,#top .alternate_color .bbp-forum-content ul.sticky,#top .alternate_color .bbp-body .page-numbers{background-color:#ffffff}#top .alternate_color .bbp-meta,#top .alternate_color .bbp-author-role,#top .alternate_color .bbp-author-ip,#top .alternate_color .bbp-pagination-count,#top .alternate_color .bbp-topics .bbp-body .bbp-topic-title:before{color:#919191}#top .alternate_color .bbp-admin-links{color:#ebebeb}.alternate_color #bbpress-forums li.bbp-body ul.forum,.alternate_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .alternate_color .bbp-replies .bbp-reply-author:before,.avia_transform .forum-search .alternate_color .bbp-reply-author:before,.avia_transform .forum-search .alternate_color .bbp-topic-author:before{background-color:#f8f8f8;border-color:#ebebeb}#top .alternate_color .bbp-author-name{color:#222222}.alternate_color .widget_display_stats dt,.alternate_color .widget_display_stats dd{background-color:#ffffff}.alternate_color dropcap2,.alternate_color dropcap3,.alternate_color avia_button,.alternate_color avia_button:hover,.alternate_color .on-primary-color,.alternate_color .on-primary-color:hover{color:#ffffff}.main_color,.main_color div,.main_color header,.main_color main,.main_color aside,.main_color footer,.main_color article,.main_color nav,.main_color section,.main_color span,.main_color applet,.main_color object,.main_color iframe,.main_color h1,.main_color h2,.main_color h3,.main_color h4,.main_color h5,.main_color h6,.main_color p,.main_color blockquote,.main_color pre,.main_color a,.main_color abbr,.main_color acronym,.main_color address,.main_color big,.main_color cite,.main_color code,.main_color del,.main_color dfn,.main_color em,.main_color img,.main_color ins,.main_color kbd,.main_color q,.main_color s,.main_color samp,.main_color small,.main_color strike,.main_color strong,.main_color sub,.main_color sup,.main_color tt,.main_color var,.main_color b,.main_color u,.main_color i,.main_color center,.main_color dl,.main_color dt,.main_color dd,.main_color ol,.main_color ul,.main_color li,.main_color fieldset,.main_color form,.main_color label,.main_color legend,.main_color table,.main_color caption,.main_color tbody,.main_color tfoot,.main_color thead,.main_color tr,.main_color th,.main_color td,.main_color article,.main_color aside,.main_color canvas,.main_color details,.main_color embed,.main_color figure,.main_color fieldset,.main_color figcaption,.main_color footer,.main_color header,.main_color hgroup,.main_color menu,.main_color nav,.main_color output,.main_color ruby,.main_color section,.main_color summary,.main_color time,.main_color mark,.main_color audio,.main_color video,#top .main_color .pullquote_boxed,.responsive #top .main_color .avia-testimonial,.responsive #top.avia-blank #main .main_color.container_wrap:first-child,#top .main_color.fullsize .template-blog .post_delimiter,.main_color .related_posts.av-related-style-full a{border-color:#ebebeb}.main_color .rounded-container,#top .main_color .pagination a:hover,.main_color .small-preview,.main_color .fallback-post-type-icon{background:#919191;color:#ffffff}.main_color .av-default-color,#top .main_color .av-force-default-color,.main_color .av-catalogue-item,.main_color .wp-playlist-item .wp-playlist-caption,.main_color .wp-playlist{color:#000000}.main_color ,.main_color .site-background,.main_color .first-quote,.main_color .related_image_wrap,.main_color .gravatar img .main_color .hr_content,.main_color .news-thumb,.main_color .post-format-icon,.main_color .ajax_controlls a,.main_color .tweet-text.avatar_no,.main_color .toggler,.main_color .toggler.activeTitle:hover,.main_color #js_sort_items,.main_color.inner-entry,.main_color .grid-entry-title,.main_color .related-format-icon,.grid-entry .main_color .avia-arrow,.main_color .avia-gallery-big,.main_color .avia-gallery-big,.main_color .avia-gallery img,.main_color .grid-content,.main_color .av-share-box ul,#top .main_color .av-related-style-full .related-format-icon,.main_color .related_posts.av-related-style-full a:hover,.main_color.avia-fullwidth-portfolio .pagination .current,.main_color.avia-fullwidth-portfolio .pagination a,.main_color .av-hotspot-fallback-tooltip-inner,.main_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color:#000000}.main_color .heading-color,.main_color a.iconbox_icon:hover,.main_color h1,.main_color h2,.main_color h3,.main_color h4,.main_color h5,.main_color h6,.main_color .sidebar .current_page_item>a,.main_color .sidebar .current-menu-item>a,.main_color .pagination .current,.main_color .pagination a:hover,.main_color strong.avia-testimonial-name,.main_color .heading,.main_color .toggle_content strong,.main_color .toggle_content strong a,.main_color .tab_content strong,.main_color .tab_content strong a ,.main_color .asc_count,.main_color .avia-testimonial-content strong,.main_color div .news-headline,#top .main_color .av-related-style-full .av-related-title,.main_color .av-default-style .av-countdown-cell-inner .av-countdown-time,.main_color .wp-playlist-item-meta.wp-playlist-item-title,#top .main_color .av-no-image-slider h2 a,.main_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{color:#222222}.main_color .meta-color,.main_color .sidebar,.main_color .sidebar a,.main_color .minor-meta,.main_color .minor-meta a,.main_color .text-sep,.main_color blockquote,.main_color .post_nav a,.main_color .comment-text,.main_color .side-container-inner,.main_color .news-time,.main_color .pagination a,.main_color .pagination span,.main_color .tweet-text.avatar_no .tweet-time,#top .main_color .extra-mini-title,.main_color .team-member-job-title,.main_color .team-social a,.main_color #js_sort_items a,.grid-entry-excerpt,.main_color .avia-testimonial-subtitle,.main_color .commentmetadata a,.main_color .social_bookmarks a,.main_color .meta-heading>*,.main_color .slide-meta,.main_color .slide-meta a,.main_color .taglist,.main_color .taglist a,.main_color .phone-info,.main_color .phone-info a,.main_color .av-sort-by-term a,.main_color .av-magazine-time,.main_color .av-magazine .av-magazine-entry-icon,.main_color .av-catalogue-content,.main_color .wp-playlist-item-length,.html_modern-blog #top div .main_color .blog-categories a,.html_modern-blog #top div .main_color .blog-categories a:hover{color:#919191}.main_color .special-heading-inner-border{border-color:#000000}.main_color .meta-heading .special-heading-inner-border{border-color:#919191}.main_color a,.main_color .widget_first,.main_color strong,.main_color b,.main_color b a,.main_color strong a,.main_color #js_sort_items a:hover,.main_color #js_sort_items a.active_sort,.main_color .av-sort-by-term a.active_sort,.main_color .special_amp,.main_color .taglist a.activeFilter,.main_color #commentform .required,#top .main_color .av-no-color.av-icon-style-border a.av-icon-char,.html_elegant-blog #top .main_color .blog-categories a,.html_elegant-blog #top .main_color .blog-categories a:hover{color:#000000}.main_color a:hover,.main_color h1 a:hover,.main_color h2 a:hover,.main_color h3 a:hover,.main_color h4 a:hover,.main_color h5 a:hover,.main_color h6 a:hover,.main_color .template-search a.news-content:hover,.main_color .wp-playlist-item .wp-playlist-caption:hover{color:#e20531}.main_color .primary-background,.main_color .primary-background a,div .main_color .button,.main_color #submit,.main_color input[type=\'submit\'],.main_color .small-preview:hover,.main_color .avia-menu-fx,.main_color .avia-menu-fx .avia-arrow,.main_color.iconbox_top .iconbox_icon,.main_color .iconbox_top a.iconbox_icon:hover,.main_color .avia-data-table th.avia-highlight-col,.main_color .avia-color-theme-color,.main_color .avia-color-theme-color:hover,.main_color .image-overlay .image-overlay-inside:before,.main_color .comment-count,.main_color .av_dropcap2,.main_color .av-colored-style .av-countdown-cell-inner,.responsive #top .main_color .av-open-submenu.av-subnav-menu > li > a:hover,#top .main_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color:#000000;color:#ffffff;border-color:#000000}#top #wrap_all .main_color .av-menu-button-colored > a .avia-menu-text{background-color:#000000;color:#ffffff;border-color:#000000}#top #wrap_all .main_color .av-menu-button-colored > a .avia-menu-text:after{background-color:#000000}#top .main_color .mobile_menu_toggle{color:#000000;background:#ffffff}#top .main_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color:#000000}#top .main_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color:#ffffff}.main_color .button:hover,.main_color .ajax_controlls a:hover,.main_color #submit:hover,.main_color .big_button:hover,.main_color .contentSlideControlls a:hover,.main_color #submit:hover ,.main_color input[type=\'submit\']:hover{background-color:#e20531;color:#ffffff;border-color:#c00310}.main_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after,.main_color .avia-toc-style-elegant a:first-child:after,.main_color .avia-toc-style-elegant a.avia-toc-level-0:after{background-color:#ffffff;border-color:#e20531}.main_color .avia-toc-style-elegant a:first-child span:after,.main_color .avia-toc-style-elegant a.avia-toc-level-0 span:after{background-color:#ffffff}.main_color .avia-toc-style-elegant a:first-child:hover span:after,.main_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after{border-color:#e20531}.main_color .avia-toc-style-elegant a:before{border-color:#ebebeb}.main_color .avia-toc-style-elegant a:first-child:after,.main_color .avia-toc-style-elegant a.avia-toc-level-0:after{border-color:#e20531;background-color:#ffffff}.main_color .avia-toc-style-elegant a:last-child:after{background-color:#ebebeb}.main_color .timeline-bullet{background-color:#ebebeb;border-color:#ffffff}.main_color table,.main_color .widget_nav_menu ul:first-child>.current-menu-item,.main_color .widget_nav_menu ul:first-child>.current_page_item,.main_color .widget_nav_menu ul:first-child>.current-menu-ancestor,.main_color .pagination .current,.main_color .pagination a,.main_color.iconbox_top .iconbox_content,.main_color .av_promobox,.main_color .toggle_content,.main_color .toggler:hover,#top .main_color .av-minimal-toggle .toggler,.main_color .related_posts_default_image,.main_color .search-result-counter,.main_color .container_wrap_meta,.main_color .avia-content-slider .slide-image,.main_color .avia-slider-testimonials .avia-testimonial-content,.main_color .avia-testimonial-arrow-wrap .avia-arrow,.main_color .news-thumb,.main_color .portfolio-preview-content,.main_color .portfolio-preview-content .avia-arrow,.main_color .av-magazine .av-magazine-entry-icon,.main_color .related_posts.av-related-style-full a,.main_color .aviaccordion-slide,.main_color.avia-fullwidth-portfolio .pagination,.main_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image,.main_color .av-catalogue-list li:hover,.main_color .wp-playlist,.main_color .avia-slideshow-fixed-height > li,.main_color .avia-form-success,.main_color .avia-form-error,.main_color .av-boxed-grid-style .avia-testimonial{background:#f8f8f8}#top .main_color .post_timeline li:hover .timeline-bullet{background-color:#e20531}.main_color blockquote,.main_color .avia-bullet,.main_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#000000}.html_header_top .main_color .main_menu ul:first-child >li > ul,.html_header_top #top .main_color .avia_mega_div > .sub-menu{border-top-color:#000000}.main_color .breadcrumb,.main_color .breadcrumb a,#top .main_color.title_container .main-title,#top .main_color.title_container .main-title a{color:#000000}.main_color .av-icon-display,#top .main_color .av-related-style-full a:hover .related-format-icon,.main_color .av-default-style .av-countdown-cell-inner{background-color:#f8f8f8;color:#919191}.main_color .av-masonry-entry:hover .av-icon-display{background-color:#000000;color:#ffffff;border-color:#000000}#top .main_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#000000}.main_color ::-webkit-input-placeholder{color:#919191}.main_color ::-moz-placeholder{color:#919191;opacity:1}.main_color :-ms-input-placeholder{color:#919191}.main_color .header_bg,.main_color .main_menu ul ul,.main_color .main_menu .menu ul li a,.main_color .pointer_arrow_wrap .pointer_arrow,.main_color .avia_mega_div,.main_color .av-subnav-menu > li ul,.main_color .av-subnav-menu a{background-color:#ffffff;color:#919191}.main_color .main_menu .menu ul li a:hover,.main_color .av-subnav-menu ul a:hover{background-color:#f8f8f8}.main_color .sub_menu>ul>li>a,.main_color .sub_menu>div>ul>li>a,.main_color .main_menu ul:first-child > li > a,#top .main_color .main_menu .menu ul .current_page_item > a,#top .main_color .main_menu .menu ul .current-menu-item > a ,#top .main_color .sub_menu li ul a{color:#919191}#top .main_color .main_menu .menu ul li>a:hover{color:#000000}.main_color .av-subnav-menu a:hover,.main_color .main_menu ul:first-child > li a:hover,.main_color .main_menu ul:first-child > li.current-menu-item > a,.main_color .main_menu ul:first-child > li.current_page_item > a,.main_color .main_menu ul:first-child > li.active-parent-item > a{color:#000000}#top .main_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#000000}.main_color .sub_menu>ul>li>a:hover,.main_color .sub_menu>div>ul>li>a:hover{color:#000000}#top .main_color .sub_menu ul li a:hover,.main_color .sub_menu ul:first-child > li.current-menu-item > a,.main_color .sub_menu ul:first-child > li.current_page_item > a,.main_color .sub_menu ul:first-child > li.active-parent-item > a{color:#000000}.main_color .sub_menu li ul a,.main_color #payment,.main_color .sub_menu ul li,.main_color .sub_menu ul,#top .main_color .sub_menu li li a:hover{background-color:#ffffff}.main_color#header .avia_mega_div > .sub-menu.avia_mega_hr,.html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#ebebeb}@media only screen and (max-width:767px){#top #wrap_all .av_header_transparency{background-color:#ffffff;color:#000000;border-color:#ebebeb}}@media only screen and (max-width:989px){.html_mobile_menu_tablet #top #wrap_all .av_header_transparency{background-color:#ffffff;color:#000000;border-color:#ebebeb}}.main_color .avia-tt,.main_color .avia-tt .avia-arrow,.main_color .avia-tt .avia-arrow{background-color:#ffffff;color:#919191}.main_color .av_ajax_search_image{background-color:#000000;color:#ffffff}.main_color .ajax_search_excerpt{color:#919191}.main_color .av_ajax_search_title{color:#222222}.main_color .ajax_load{background-color:#000000}.main_color .av_searchsubmit_wrapper{background-color:#000000}#top .main_color .avia-color-theme-color{color:#ffffff;border-color:#000000}.main_color .avia-color-theme-color-subtle{background-color:#f8f8f8;color:#000000}.main_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color:#222222}#top .main_color .avia-color-theme-color-highlight{color:#ffffff;border-color:#e20531;background-color:#e20531}.main_color .avia-icon-list .iconlist_icon{background-color:#dadada}.main_color .avia-icon-list .iconlist-timeline{border-color:#ebebeb}.main_color .iconlist_content{color:#919191}.main_color .avia-timeline .milestone_icon{background-color:#dadada}.main_color .avia-timeline .milestone_inner{background-color:#dadada}.main_color .avia-timeline{border-color:#dadada}.main_color .av-milestone-icon-wrap:after{border-color:#dadada}.main_color .avia-timeline .av-milestone-date{color:#a7a7a7}.main_color .avia-timeline .av-milestone-date span{background-color:#dadada}.main_color .avia-timeline-horizontal .av-milestone-content-wrap footer{background-color:#dadada}.main_color .av-timeline-nav a span{background-color:#dadada}#top .main_color .input-text,#top .main_color input[type=\'text\'],#top .main_color input[type=\'input\'],#top .main_color input[type=\'password\'],#top .main_color input[type=\'email\'],#top .main_color input[type=\'number\'],#top .main_color input[type=\'url\'],#top .main_color input[type=\'tel\'],#top .main_color input[type=\'search\'],#top .main_color textarea,#top .main_color select{border-color:#ebebeb;background-color:#f8f8f8;color:#919191}#top .main_color .invers-color .input-text,#top .main_color .invers-color input[type=\'text\'],#top .main_color .invers-color input[type=\'input\'],#top .main_color .invers-color input[type=\'password\'],#top .main_color .invers-color input[type=\'email\'],#top .main_color .invers-color input[type=\'number\'],#top .main_color .invers-color input[type=\'url\'],#top .main_color .invers-color input[type=\'tel\'],#top .main_color .invers-color input[type=\'search\'],#top .main_color .invers-color textarea,#top .main_color .invers-color select{background-color:#ffffff}.main_color .required{color:#000000}.main_color .av-masonry{background-color:#e7e7e7}.main_color .av-masonry-pagination,.main_color .av-masonry-pagination:hover,.main_color .av-masonry-outerimage-container{background-color:#ffffff}.main_color .container .av-inner-masonry-content,#top .main_color .container .av-masonry-load-more,#top .main_color .container .av-masonry-sort,.main_color .container .av-masonry-entry .avia-arrow{background-color:#f8f8f8} .main_color .hr-short .hr-inner-style,.main_color .hr-short .hr-inner{background-color:#ffffff}div .main_color .tabcontainer .active_tab_content,div .main_color .tabcontainer .active_tab{background-color:#f8f8f8;color:#000000}.responsive.js_active #top .main_color .avia_combo_widget .top_tab .tab{border-top-color:#ebebeb}.main_color .template-archives .tabcontainer a,#top .main_color .tabcontainer .tab:hover,#top .main_color .tabcontainer .tab.active_tab{color:#000000} .main_color .template-archives .tabcontainer a:hover{color:#e20531}.main_color .sidebar_tab_icon{background-color:#ebebeb}#top .main_color .sidebar_active_tab .sidebar_tab_icon{background-color:#000000}.main_color .sidebar_tab:hover .sidebar_tab_icon{background-color:#e20531}.main_color .sidebar_tab,.main_color .tabcontainer .tab{color:#919191}.main_color div .sidebar_active_tab ,div .main_color .tabcontainer.noborder_tabs .active_tab_content,div .main_color .tabcontainer.noborder_tabs .active_tab{color:#000000;background-color:#ffffff}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color:#f8f8f8}#top .main_color .avia-smallarrow-slider .avia-slideshow-dots a.active,#top .main_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color:#919191}@media only screen and (max-width:767px){.responsive #top .main_color .tabcontainer .active_tab{background-color:#e20531;color:#ffffff} .responsive #top .main_color .tabcontainer{border-color:#ebebeb}.responsive #top .main_color .active_tab_content{background-color:#f8f8f8}}.main_color tr:nth-child(even),.main_color .avia-data-table .avia-heading-row .avia-desc-col,.main_color .avia-data-table .avia-highlight-col,.main_color .pricing-table>li:nth-child(even),body .main_color .pricing-table.avia-desc-col li,#top .main_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color:#000000}.main_color table caption,.main_color tr:nth-child(even),.main_color .pricing-table>li:nth-child(even),#top .main_color .avia-data-table.avia_pricing_minimal td{color:#919191}.main_color tr:nth-child(odd),.main_color .pricing-table>li:nth-child(odd),.main_color .pricing-extra{background:#f8f8f8}.main_color .pricing-table li.avia-pricing-row,.main_color .pricing-table li.avia-heading-row,.main_color .pricing-table li.avia-pricing-row .pricing-extra{background-color:#000000;color:#ffffff;border-color:#222222}.main_color .pricing-table li.avia-heading-row,.main_color .pricing-table li.avia-heading-row .pricing-extra{background-color:#111111;color:#ffffff;border-color:#222222}.main_color .pricing-table.avia-desc-col .avia-heading-row,.main_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#ebebeb}.main_color .theme-color-bar .bar{background:#000000}.main_color .mejs-controls .mejs-time-rail .mejs-time-current,.main_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.main_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.main_color .button.av-sending-button,.main_color .av-striped-bar .theme-color-bar .bar{background:#000000}body .main_color .mejs-controls .mejs-time-rail .mejs-time-float{background:#000000;color:#fff}body .main_color .mejs-controls .mejs-time-rail .mejs-time-float-corner{border:solid 4px #000000;border-color:#000000 transparent transparent transparent}.main_color .progress{background-color:#f8f8f8}.main_color .av_searchform_element_results .av_ajax_search_entry,.main_color .av_searchform_element_results .av_ajax_search_title,.main_color.av_searchform_element_results .av_ajax_search_entry,.main_color.av_searchform_element_results .av_ajax_search_title{color:#000000}.main_color .av_searchform_element_results .ajax_search_excerpt,.main_color.av_searchform_element_results .ajax_search_excerpt{color:#919191}.main_color .av_searchform_element_results .av_ajax_search_image,.main_color.av_searchform_element_results .av_ajax_search_image{color:#919191} .main_color .button.av-sending-button{background:#e20531;background-image:-webkit-linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);background-image:-moz-linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);background-image:linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);border-color:#e20531}.main_color span.bbp-admin-links a{color:#000000}.main_color span.bbp-admin-links a:hover{color:#e20531}#top .main_color .bbp-reply-content,#top .main_color .bbp-topic-content,#top .main_color .bbp-body .super-sticky .page-numbers,#top .main_color .bbp-body .sticky .page-numbers,#top .main_color .bbp-pagination-links a:hover,#top .main_color .bbp-pagination-links span.current{background:#ffffff}#top .main_color .bbp-topics .bbp-header,#top .main_color .bbp-topics .bbp-header,#top .main_color .bbp-forums .bbp-header,#top .main_color .bbp-topics-front ul.super-sticky,#top .main_color .bbp-topics ul.super-sticky,#top .main_color .bbp-topics ul.sticky,#top .main_color .bbp-forum-content ul.sticky,#top .main_color .bbp-body .page-numbers{background-color:#f8f8f8}#top .main_color .bbp-meta,#top .main_color .bbp-author-role,#top .main_color .bbp-author-ip,#top .main_color .bbp-pagination-count,#top .main_color .bbp-topics .bbp-body .bbp-topic-title:before{color:#919191}#top .main_color .bbp-admin-links{color:#ebebeb}.main_color #bbpress-forums li.bbp-body ul.forum,.main_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .main_color .bbp-replies .bbp-reply-author:before,.avia_transform .forum-search .main_color .bbp-reply-author:before,.avia_transform .forum-search .main_color .bbp-topic-author:before{background-color:#ffffff;border-color:#ebebeb}#top .main_color .bbp-author-name{color:#222222}.main_color .widget_display_stats dt,.main_color .widget_display_stats dd{background-color:#f8f8f8}.main_color dropcap2,.main_color dropcap3,.main_color avia_button,.main_color avia_button:hover,.main_color .on-primary-color,.main_color .on-primary-color:hover{color:#ffffff}#main{border-color:#ebebeb}#scroll-top-link:hover,#av-cookie-consent-badge:hover{background-color:#f8f8f8;color:#000000;border:1px solid #ebebeb}#top .avia-datepicker-div .ui-datepicker-month,#top .avia-datepicker-div .ui-datepicker-year{color:#222222}#top .avia-datepicker-div{background:#ffffff;border:1px solid #ebebeb}#top .avia-datepicker-div a{color:#919191;background-color:#f8f8f8}#top .avia-datepicker-div a.ui-state-active,#top .avia-datepicker-div a.ui-state-highlight{color:#000000}#top .avia-datepicker-div a.ui-state-hover{color:#f8f8f8;background-color:#919191}#top .avia-datepicker-div .ui-datepicker-buttonpane button{background-color:#000000;color:#ffffff;border-color:#000000}#top .av-siteloader{border-color:#ebebeb;border-left-color:#000000}#top div.avia-popup .mfp-preloader{border-left-color:#000000}.av-preloader-reactive #top .av-siteloader{border-color:#ebebeb}#top .av-siteloader-wrap{background-color:#ffffff}.av-preloader-reactive #top .av-siteloader:before{background-color:#ebebeb}.av-tab-section-tab-title-container{background-color:#f8f8f8}#top .av-section-tab-title{color:#919191}#top a.av-active-tab-title{color:#000000}#top .av-tab-arrow-container span{background-color:#ffffff}.header_color,.header_color div,.header_color header,.header_color main,.header_color aside,.header_color footer,.header_color article,.header_color nav,.header_color section,.header_color span,.header_color applet,.header_color object,.header_color iframe,.header_color h1,.header_color h2,.header_color h3,.header_color h4,.header_color h5,.header_color h6,.header_color p,.header_color blockquote,.header_color pre,.header_color a,.header_color abbr,.header_color acronym,.header_color address,.header_color big,.header_color cite,.header_color code,.header_color del,.header_color dfn,.header_color em,.header_color img,.header_color ins,.header_color kbd,.header_color q,.header_color s,.header_color samp,.header_color small,.header_color strike,.header_color strong,.header_color sub,.header_color sup,.header_color tt,.header_color var,.header_color b,.header_color u,.header_color i,.header_color center,.header_color dl,.header_color dt,.header_color dd,.header_color ol,.header_color ul,.header_color li,.header_color fieldset,.header_color form,.header_color label,.header_color legend,.header_color table,.header_color caption,.header_color tbody,.header_color tfoot,.header_color thead,.header_color tr,.header_color th,.header_color td,.header_color article,.header_color aside,.header_color canvas,.header_color details,.header_color embed,.header_color figure,.header_color fieldset,.header_color figcaption,.header_color footer,.header_color header,.header_color hgroup,.header_color menu,.header_color nav,.header_color output,.header_color ruby,.header_color section,.header_color summary,.header_color time,.header_color mark,.header_color audio,.header_color video,#top .header_color .pullquote_boxed,.responsive #top .header_color .avia-testimonial,.responsive #top.avia-blank #main .header_color.container_wrap:first-child,#top .header_color.fullsize .template-blog .post_delimiter,.header_color .related_posts.av-related-style-full a{border-color:#ebebeb}.header_color .rounded-container,#top .header_color .pagination a:hover,.header_color .small-preview,.header_color .fallback-post-type-icon{background:#919191;color:#ffffff}.header_color .av-default-color,#top .header_color .av-force-default-color,.header_color .av-catalogue-item,.header_color .wp-playlist-item .wp-playlist-caption,.header_color .wp-playlist{color:#000000}.header_color ,.header_color .site-background,.header_color .first-quote,.header_color .related_image_wrap,.header_color .gravatar img .header_color .hr_content,.header_color .news-thumb,.header_color .post-format-icon,.header_color .ajax_controlls a,.header_color .tweet-text.avatar_no,.header_color .toggler,.header_color .toggler.activeTitle:hover,.header_color #js_sort_items,.header_color.inner-entry,.header_color .grid-entry-title,.header_color .related-format-icon,.grid-entry .header_color .avia-arrow,.header_color .avia-gallery-big,.header_color .avia-gallery-big,.header_color .avia-gallery img,.header_color .grid-content,.header_color .av-share-box ul,#top .header_color .av-related-style-full .related-format-icon,.header_color .related_posts.av-related-style-full a:hover,.header_color.avia-fullwidth-portfolio .pagination .current,.header_color.avia-fullwidth-portfolio .pagination a,.header_color .av-hotspot-fallback-tooltip-inner,.header_color .av-hotspot-fallback-tooltip-count{background-color:#ffffff;color:#000000}.header_color .heading-color,.header_color a.iconbox_icon:hover,.header_color h1,.header_color h2,.header_color h3,.header_color h4,.header_color h5,.header_color h6,.header_color .sidebar .current_page_item>a,.header_color .sidebar .current-menu-item>a,.header_color .pagination .current,.header_color .pagination a:hover,.header_color strong.avia-testimonial-name,.header_color .heading,.header_color .toggle_content strong,.header_color .toggle_content strong a,.header_color .tab_content strong,.header_color .tab_content strong a ,.header_color .asc_count,.header_color .avia-testimonial-content strong,.header_color div .news-headline,#top .header_color .av-related-style-full .av-related-title,.header_color .av-default-style .av-countdown-cell-inner .av-countdown-time,.header_color .wp-playlist-item-meta.wp-playlist-item-title,#top .header_color .av-no-image-slider h2 a,.header_color .av-small-bar .avia-progress-bar .progressbar-title-wrap{color:#000000}.header_color .meta-color,.header_color .sidebar,.header_color .sidebar a,.header_color .minor-meta,.header_color .minor-meta a,.header_color .text-sep,.header_color blockquote,.header_color .post_nav a,.header_color .comment-text,.header_color .side-container-inner,.header_color .news-time,.header_color .pagination a,.header_color .pagination span,.header_color .tweet-text.avatar_no .tweet-time,#top .header_color .extra-mini-title,.header_color .team-member-job-title,.header_color .team-social a,.header_color #js_sort_items a,.grid-entry-excerpt,.header_color .avia-testimonial-subtitle,.header_color .commentmetadata a,.header_color .social_bookmarks a,.header_color .meta-heading>*,.header_color .slide-meta,.header_color .slide-meta a,.header_color .taglist,.header_color .taglist a,.header_color .phone-info,.header_color .phone-info a,.header_color .av-sort-by-term a,.header_color .av-magazine-time,.header_color .av-magazine .av-magazine-entry-icon,.header_color .av-catalogue-content,.header_color .wp-playlist-item-length,.html_modern-blog #top div .header_color .blog-categories a,.html_modern-blog #top div .header_color .blog-categories a:hover{color:#919191}.header_color .special-heading-inner-border{border-color:#000000}.header_color .meta-heading .special-heading-inner-border{border-color:#919191}.header_color a,.header_color .widget_first,.header_color strong,.header_color b,.header_color b a,.header_color strong a,.header_color #js_sort_items a:hover,.header_color #js_sort_items a.active_sort,.header_color .av-sort-by-term a.active_sort,.header_color .special_amp,.header_color .taglist a.activeFilter,.header_color #commentform .required,#top .header_color .av-no-color.av-icon-style-border a.av-icon-char,.html_elegant-blog #top .header_color .blog-categories a,.html_elegant-blog #top .header_color .blog-categories a:hover{color:#bf003c}.header_color a:hover,.header_color h1 a:hover,.header_color h2 a:hover,.header_color h3 a:hover,.header_color h4 a:hover,.header_color h5 a:hover,.header_color h6 a:hover,.header_color .template-search a.news-content:hover,.header_color .wp-playlist-item .wp-playlist-caption:hover{color:#e20531}.header_color .primary-background,.header_color .primary-background a,div .header_color .button,.header_color #submit,.header_color input[type=\'submit\'],.header_color .small-preview:hover,.header_color .avia-menu-fx,.header_color .avia-menu-fx .avia-arrow,.header_color.iconbox_top .iconbox_icon,.header_color .iconbox_top a.iconbox_icon:hover,.header_color .avia-data-table th.avia-highlight-col,.header_color .avia-color-theme-color,.header_color .avia-color-theme-color:hover,.header_color .image-overlay .image-overlay-inside:before,.header_color .comment-count,.header_color .av_dropcap2,.header_color .av-colored-style .av-countdown-cell-inner,.responsive #top .header_color .av-open-submenu.av-subnav-menu > li > a:hover,#top .header_color .av-open-submenu.av-subnav-menu li > ul a:hover{background-color:#bf003c;color:#ffffff;border-color:#9d001a}#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text{background-color:#bf003c;color:#ffffff;border-color:#bf003c}#top #wrap_all .header_color .av-menu-button-colored > a .avia-menu-text:after{background-color:#9d001a}#top .header_color .mobile_menu_toggle{color:#bf003c;background:#ffffff}#top .header_color .av-menu-mobile-active .av-subnav-menu > li > a:before{color:#bf003c}#top .header_color .av-open-submenu.av-subnav-menu > li > a:hover:before{color:#ffffff}.header_color .button:hover,.header_color .ajax_controlls a:hover,.header_color #submit:hover,.header_color .big_button:hover,.header_color .contentSlideControlls a:hover,.header_color #submit:hover ,.header_color input[type=\'submit\']:hover{background-color:#e20531;color:#ffffff;border-color:#c00310}.header_color .avia-toc-style-elegant a.avia-toc-level-0:last-child:after,.header_color .avia-toc-style-elegant a:first-child:after,.header_color .avia-toc-style-elegant a.avia-toc-level-0:after{background-color:#ffffff;border-color:#e20531}.header_color .avia-toc-style-elegant a:first-child span:after,.header_color .avia-toc-style-elegant a.avia-toc-level-0 span:after{background-color:#ffffff}.header_color .avia-toc-style-elegant a:first-child:hover span:after,.header_color .avia-toc-style-elegant a.avia-toc-level-0:hover span:after{border-color:#e20531}.header_color .avia-toc-style-elegant a:before{border-color:#ebebeb}.header_color .avia-toc-style-elegant a:first-child:after,.header_color .avia-toc-style-elegant a.avia-toc-level-0:after{border-color:#e20531;background-color:#ffffff}.header_color .avia-toc-style-elegant a:last-child:after{background-color:#ebebeb}.header_color .timeline-bullet{background-color:#ebebeb;border-color:#ffffff}.header_color table,.header_color .widget_nav_menu ul:first-child>.current-menu-item,.header_color .widget_nav_menu ul:first-child>.current_page_item,.header_color .widget_nav_menu ul:first-child>.current-menu-ancestor,.header_color .pagination .current,.header_color .pagination a,.header_color.iconbox_top .iconbox_content,.header_color .av_promobox,.header_color .toggle_content,.header_color .toggler:hover,#top .header_color .av-minimal-toggle .toggler,.header_color .related_posts_default_image,.header_color .search-result-counter,.header_color .container_wrap_meta,.header_color .avia-content-slider .slide-image,.header_color .avia-slider-testimonials .avia-testimonial-content,.header_color .avia-testimonial-arrow-wrap .avia-arrow,.header_color .news-thumb,.header_color .portfolio-preview-content,.header_color .portfolio-preview-content .avia-arrow,.header_color .av-magazine .av-magazine-entry-icon,.header_color .related_posts.av-related-style-full a,.header_color .aviaccordion-slide,.header_color.avia-fullwidth-portfolio .pagination,.header_color .isotope-item.special_av_fullwidth .av_table_col.portfolio-grid-image,.header_color .av-catalogue-list li:hover,.header_color .wp-playlist,.header_color .avia-slideshow-fixed-height > li,.header_color .avia-form-success,.header_color .avia-form-error,.header_color .av-boxed-grid-style .avia-testimonial{background:#f8f8f8}#top .header_color .post_timeline li:hover .timeline-bullet{background-color:#e20531}.header_color blockquote,.header_color .avia-bullet,.header_color .av-no-color.av-icon-style-border a.av-icon-char{border-color:#bf003c}.html_header_top .header_color .main_menu ul:first-child >li > ul,.html_header_top #top .header_color .avia_mega_div > .sub-menu{border-top-color:#bf003c}.header_color .breadcrumb,.header_color .breadcrumb a,#top .header_color.title_container .main-title,#top .header_color.title_container .main-title a{color:#000000}.header_color .av-icon-display,#top .header_color .av-related-style-full a:hover .related-format-icon,.header_color .av-default-style .av-countdown-cell-inner{background-color:#f8f8f8;color:#919191}.header_color .av-masonry-entry:hover .av-icon-display{background-color:#bf003c;color:#ffffff;border-color:#9d001a}#top .header_color .av-masonry-entry.format-quote:hover .av-icon-display{color:#bf003c}.header_color ::-webkit-input-placeholder{color:#919191}.header_color ::-moz-placeholder{color:#919191;opacity:1}.header_color :-ms-input-placeholder{color:#919191}.header_color .header_bg,.header_color .main_menu ul ul,.header_color .main_menu .menu ul li a,.header_color .pointer_arrow_wrap .pointer_arrow,.header_color .avia_mega_div,.header_color .av-subnav-menu > li ul,.header_color .av-subnav-menu a{background-color:#ffffff;color:#919191}.header_color .main_menu .menu ul li a:hover,.header_color .av-subnav-menu ul a:hover{background-color:#f8f8f8}.header_color .sub_menu>ul>li>a,.header_color .sub_menu>div>ul>li>a,.header_color .main_menu ul:first-child > li > a,#top .header_color .main_menu .menu ul .current_page_item > a,#top .header_color .main_menu .menu ul .current-menu-item > a ,#top .header_color .sub_menu li ul a{color:#919191}#top .header_color .main_menu .menu ul li>a:hover{color:#000000}.header_color .av-subnav-menu a:hover,.header_color .main_menu ul:first-child > li a:hover,.header_color .main_menu ul:first-child > li.current-menu-item > a,.header_color .main_menu ul:first-child > li.current_page_item > a,.header_color .main_menu ul:first-child > li.active-parent-item > a{color:#000000}#top .header_color .main_menu .menu .avia_mega_div ul .current-menu-item > a{color:#bf003c}.header_color .sub_menu>ul>li>a:hover,.header_color .sub_menu>div>ul>li>a:hover{color:#000000}#top .header_color .sub_menu ul li a:hover,.header_color .sub_menu ul:first-child > li.current-menu-item > a,.header_color .sub_menu ul:first-child > li.current_page_item > a,.header_color .sub_menu ul:first-child > li.active-parent-item > a{color:#000000}.header_color .sub_menu li ul a,.header_color #payment,.header_color .sub_menu ul li,.header_color .sub_menu ul,#top .header_color .sub_menu li li a:hover{background-color:#ffffff}.header_color#header .avia_mega_div > .sub-menu.avia_mega_hr,.html_bottom_nav_header.html_logo_center #top #menu-item-search>a{border-color:#ebebeb}@media only screen and (max-width:767px){#top #wrap_all .av_header_transparency{background-color:#ffffff;color:#000000;border-color:#ebebeb}}@media only screen and (max-width:989px){.html_mobile_menu_tablet #top #wrap_all .av_header_transparency{background-color:#ffffff;color:#000000;border-color:#ebebeb}}.header_color .avia-tt,.header_color .avia-tt .avia-arrow,.header_color .avia-tt .avia-arrow{background-color:#ffffff;color:#919191}.header_color .av_ajax_search_image{background-color:#bf003c;color:#ffffff}.header_color .ajax_search_excerpt{color:#919191}.header_color .av_ajax_search_title{color:#000000}.header_color .ajax_load{background-color:#bf003c}.header_color .av_searchsubmit_wrapper{background-color:#bf003c}#top .header_color .avia-color-theme-color{color:#ffffff;border-color:#9d001a}.header_color .avia-color-theme-color-subtle{background-color:#f8f8f8;color:#000000}.header_color .avia-color-theme-color-subtle:hover{background-color:#ffffff;color:#000000}#top .header_color .avia-color-theme-color-highlight{color:#ffffff;border-color:#e20531;background-color:#e20531}.header_color .avia-icon-list .iconlist_icon{background-color:#dadada}.header_color .avia-icon-list .iconlist-timeline{border-color:#ebebeb}.header_color .iconlist_content{color:#919191}.header_color .avia-timeline .milestone_icon{background-color:#dadada}.header_color .avia-timeline .milestone_inner{background-color:#dadada}.header_color .avia-timeline{border-color:#dadada}.header_color .av-milestone-icon-wrap:after{border-color:#dadada}.header_color .avia-timeline .av-milestone-date{color:#a7a7a7}.header_color .avia-timeline .av-milestone-date span{background-color:#dadada}.header_color .avia-timeline-horizontal .av-milestone-content-wrap footer{background-color:#dadada}.header_color .av-timeline-nav a span{background-color:#dadada}#top .header_color .input-text,#top .header_color input[type=\'text\'],#top .header_color input[type=\'input\'],#top .header_color input[type=\'password\'],#top .header_color input[type=\'email\'],#top .header_color input[type=\'number\'],#top .header_color input[type=\'url\'],#top .header_color input[type=\'tel\'],#top .header_color input[type=\'search\'],#top .header_color textarea,#top .header_color select{border-color:#ebebeb;background-color:#f8f8f8;color:#919191}#top .header_color .invers-color .input-text,#top .header_color .invers-color input[type=\'text\'],#top .header_color .invers-color input[type=\'input\'],#top .header_color .invers-color input[type=\'password\'],#top .header_color .invers-color input[type=\'email\'],#top .header_color .invers-color input[type=\'number\'],#top .header_color .invers-color input[type=\'url\'],#top .header_color .invers-color input[type=\'tel\'],#top .header_color .invers-color input[type=\'search\'],#top .header_color .invers-color textarea,#top .header_color .invers-color select{background-color:#ffffff}.header_color .required{color:#bf003c}.header_color .av-masonry{background-color:#e7e7e7}.header_color .av-masonry-pagination,.header_color .av-masonry-pagination:hover,.header_color .av-masonry-outerimage-container{background-color:#ffffff}.header_color .container .av-inner-masonry-content,#top .header_color .container .av-masonry-load-more,#top .header_color .container .av-masonry-sort,.header_color .container .av-masonry-entry .avia-arrow{background-color:#f8f8f8} .header_color .hr-short .hr-inner-style,.header_color .hr-short .hr-inner{background-color:#ffffff}div .header_color .tabcontainer .active_tab_content,div .header_color .tabcontainer .active_tab{background-color:#f8f8f8;color:#000000}.responsive.js_active #top .header_color .avia_combo_widget .top_tab .tab{border-top-color:#ebebeb}.header_color .template-archives .tabcontainer a,#top .header_color .tabcontainer .tab:hover,#top .header_color .tabcontainer .tab.active_tab{color:#000000} .header_color .template-archives .tabcontainer a:hover{color:#e20531}.header_color .sidebar_tab_icon{background-color:#ebebeb}#top .header_color .sidebar_active_tab .sidebar_tab_icon{background-color:#bf003c}.header_color .sidebar_tab:hover .sidebar_tab_icon{background-color:#e20531}.header_color .sidebar_tab,.header_color .tabcontainer .tab{color:#919191}.header_color div .sidebar_active_tab ,div .header_color .tabcontainer.noborder_tabs .active_tab_content,div .header_color .tabcontainer.noborder_tabs .active_tab{color:#000000;background-color:#ffffff}#top .avia-smallarrow-slider .avia-slideshow-dots a{background-color:#f8f8f8}#top .header_color .avia-smallarrow-slider .avia-slideshow-dots a.active,#top .header_color .avia-smallarrow-slider .avia-slideshow-dots a:hover{background-color:#919191}@media only screen and (max-width:767px){.responsive #top .header_color .tabcontainer .active_tab{background-color:#e20531;color:#ffffff} .responsive #top .header_color .tabcontainer{border-color:#ebebeb}.responsive #top .header_color .active_tab_content{background-color:#f8f8f8}}.header_color tr:nth-child(even),.header_color .avia-data-table .avia-heading-row .avia-desc-col,.header_color .avia-data-table .avia-highlight-col,.header_color .pricing-table>li:nth-child(even),body .header_color .pricing-table.avia-desc-col li,#top .header_color .avia-data-table.avia_pricing_minimal th{background-color:#ffffff;color:#000000}.header_color table caption,.header_color tr:nth-child(even),.header_color .pricing-table>li:nth-child(even),#top .header_color .avia-data-table.avia_pricing_minimal td{color:#919191}.header_color tr:nth-child(odd),.header_color .pricing-table>li:nth-child(odd),.header_color .pricing-extra{background:#f8f8f8}.header_color .pricing-table li.avia-pricing-row,.header_color .pricing-table li.avia-heading-row,.header_color .pricing-table li.avia-pricing-row .pricing-extra{background-color:#bf003c;color:#ffffff;border-color:#df225e}.header_color .pricing-table li.avia-heading-row,.header_color .pricing-table li.avia-heading-row .pricing-extra{background-color:#cf114d;color:#ffffff;border-color:#df225e}.header_color .pricing-table.avia-desc-col .avia-heading-row,.header_color .pricing-table.avia-desc-col .avia-pricing-row{border-color:#ebebeb}.header_color .theme-color-bar .bar{background:#bf003c}.header_color .mejs-controls .mejs-time-rail .mejs-time-current,.header_color .mejs-controls .mejs-volume-button .mejs-volume-slider .mejs-volume-current,.header_color .mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current,.header_color .button.av-sending-button,.header_color .av-striped-bar .theme-color-bar .bar{background:#bf003c}body .header_color .mejs-controls .mejs-time-rail .mejs-time-float{background:#bf003c;color:#fff}body .header_color .mejs-controls .mejs-time-rail .mejs-time-float-corner{border:solid 4px #bf003c;border-color:#bf003c transparent transparent transparent}.header_color .progress{background-color:#f8f8f8}.header_color .av_searchform_element_results .av_ajax_search_entry,.header_color .av_searchform_element_results .av_ajax_search_title,.header_color.av_searchform_element_results .av_ajax_search_entry,.header_color.av_searchform_element_results .av_ajax_search_title{color:#bf003c}.header_color .av_searchform_element_results .ajax_search_excerpt,.header_color.av_searchform_element_results .ajax_search_excerpt{color:#919191}.header_color .av_searchform_element_results .av_ajax_search_image,.header_color.av_searchform_element_results .av_ajax_search_image{color:#919191} .header_color .button.av-sending-button{background:#e20531;background-image:-webkit-linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);background-image:-moz-linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);background-image:linear-gradient(-45deg,#e20531 25%,#f31642 25%,#f31642 50%,#e20531 50%,#e20531 75%,#f31642 75%,#f31642);border-color:#e20531}.header_color span.bbp-admin-links a{color:#bf003c}.header_color span.bbp-admin-links a:hover{color:#e20531}#top .header_color .bbp-reply-content,#top .header_color .bbp-topic-content,#top .header_color .bbp-body .super-sticky .page-numbers,#top .header_color .bbp-body .sticky .page-numbers,#top .header_color .bbp-pagination-links a:hover,#top .header_color .bbp-pagination-links span.current{background:#ffffff}#top .header_color .bbp-topics .bbp-header,#top .header_color .bbp-topics .bbp-header,#top .header_color .bbp-forums .bbp-header,#top .header_color .bbp-topics-front ul.super-sticky,#top .header_color .bbp-topics ul.super-sticky,#top .header_color .bbp-topics ul.sticky,#top .header_color .bbp-forum-content ul.sticky,#top .header_color .bbp-body .page-numbers{background-color:#f8f8f8}#top .header_color .bbp-meta,#top .header_color .bbp-author-role,#top .header_color .bbp-author-ip,#top .header_color .bbp-pagination-count,#top .header_color .bbp-topics .bbp-body .bbp-topic-title:before{color:#919191}#top .header_color .bbp-admin-links{color:#ebebeb}.header_color #bbpress-forums li.bbp-body ul.forum,.header_color #bbpress-forums li.bbp-body ul.topic,.avia_transform .header_color .bbp-replies .bbp-reply-author:before,.avia_transform .forum-search .header_color .bbp-reply-author:before,.avia_transform .forum-search .header_color .bbp-topic-author:before{background-color:#ffffff;border-color:#ebebeb}#top .header_color .bbp-author-name{color:#000000}.header_color .widget_display_stats dt,.header_color .widget_display_stats dd{background-color:#f8f8f8}.header_color dropcap2,.header_color dropcap3,.header_color avia_button,.header_color avia_button:hover,.header_color .on-primary-color,.header_color .on-primary-color:hover{color:#ffffff}#main,.avia-msie-8 .av_header_sticky_disabled#header{background-color:#ffffff}.html_header_sidebar #header .av-main-nav > li > a .avia-menu-text{color:#000000}.html_header_sidebar #header .av-main-nav > li > a .avia-menu-subtext{color:#919191}.html_header_sidebar #header .av-main-nav > li:hover > a .avia-menu-text,.html_header_sidebar #header .av-main-nav > li.current-menu-ancestor > a .avia-menu-text,.html_header_sidebar #header .av-main-nav li.current-menu-item > a .avia-menu-text{color:#bf003c}#top #wrap_all .av_seperator_big_border#header .av-menu-button-colored > a{background-color:#bf003c}#top #wrap_all .av_seperator_big_border#header .av-menu-button-bordered > a{background-color:#f8f8f8}html.html_header_sidebar #wrap_all{background-color:#ffffff}.header_color .av-hamburger-inner,.header_color .av-hamburger-inner::before,.header_color .av-hamburger-inner::after{background-color:#919191}.html_av-overlay-side #top .av-burger-overlay-scroll{background:#ffffff}.html_av-overlay-side #top #wrap_all div .av-burger-overlay-scroll #av-burger-menu-ul a:hover{background-color:#f8f8f8}.html_av-overlay-side-classic #top #wrap_all .av-burger-overlay #av-burger-menu-ul li a{border-color:#ebebeb}.html_av-overlay-side #top #wrap_all .av-burger-overlay-scroll #av-burger-menu-ul a{color:#000000}.html_av-overlay-side.av-burger-overlay-active #top #wrap_all #header .menu-item-search-dropdown a{color:#000000}.html_av-overlay-side-classic #top .av-burger-overlay li li .avia-bullet,.html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner,.html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::before,.html_av-overlay-side.av-burger-overlay-active #top .av-hamburger-inner::after{background-color:#000000}#top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a,#top #wrap_all .av_header_transparency .sub_menu > ul > li > a,#top .av_header_transparency #header_main_alternate,.av_header_transparency #header_main .social_bookmarks li a{color:inherit;border-color:transparent;background:transparent}#top #wrap_all .header_color.av_header_transparency,#top #wrap_all .header_color.av_header_transparency .phone-info.with_nav span,#top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text,#top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-subtext{color:#ffffff}#top .header_color.av_header_transparency .avia-menu-fx,.av_header_transparency div .av-hamburger-inner,.av_header_transparency div .av-hamburger-inner::before,.av_header_transparency div .av-hamburger-inner::after{background:#ffffff} @media only screen and (max-width:767px){#top #wrap_all .header_color.av_header_transparency,#top #wrap_all .header_color.av_header_transparency .phone-info.with_nav span,#top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text,#top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-subtex{color:#919191}.header_color div .av-hamburger-inner,.header_color div .av-hamburger-inner::before,.header_color div .av-hamburger-inner::after{background-color:#919191}#top .av_header_with_border.av_header_transparency .avia-menu.av_menu_icon_beside{border-color:#ebebeb}} @media only screen and (max-width:989px){.html_mobile_menu_tablet #top #wrap_all .header_color.av_header_transparency,.html_mobile_menu_tablet #top #wrap_all .header_color.av_header_transparency .phone-info.with_nav span,.html_mobile_menu_tablet #top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-text,.html_mobile_menu_tablet #top #header.header_color.av_header_transparency .av-main-nav > li > a .avia-menu-subtex{color:#919191}.html_mobile_menu_tablet .header_color div .av-hamburger-inner,.html_mobile_menu_tablet .header_color div .av-hamburger-inner::before,.html_mobile_menu_tablet .header_color div .av-hamburger-inner::after{background-color:#919191}.html_mobile_menu_tablet #top .av_header_with_border.av_header_transparency .avia-menu.av_menu_icon_beside{border-color:#ebebeb}}.html_av-overlay-side .av-burger-overlay-scroll{width:500px;-webkit-transform:translateX(500px);transform:translateX(500px)}.socket_color .cart_dropdown .dropdown_widget li a,#top .socket_color .avia_cart_buttons .button,#top .socket_color .dropdown_widget .buttons .button,.socket_color .cart_dropdown_first .cart_dropdown_link,#top .socket_color p.order-info mark{color:#e8e8e8}.socket_color .woocommerce-tabs .tabs a,.socket_color .product_meta,.socket_color .quantity input.qty,.socket_color .cart_dropdown .dropdown_widget,.socket_color .avia_select_fake_val,.socket_color address,.socket_color .product>a .socket_color .product_excerpt,.socket_color .term_description,#top .socket_color .price .from,#top #wrap_all .socket_color del,.socket_color .dynamic-title .dynamic-heading,.socket_color .dynamic-title a,.socket_color .entry-summary .woocommerce-product-rating .woocommerce-review-link,.socket_color .chosen-container-single .chosen-single span,#top .socket_color .select2-container .select2-choice,.socket_color .woocommerce-MyAccount-navigation-link.is-active a{color:#777777}.socket_color div.product .woocommerce-tabs ul.tabs li.active a,.socket_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content,.socket_color .cart_dropdown_link,.socket_color .inner_product_header,.socket_color .avia-arrow,#top .socket_color .variations select,#top .socket_color .variations input,#top .socket_color #reviews input[type=\'text\'],#top .socket_color #reviews input[type=\'email\'],.socket_color #reviews .comment-text,.socket_color #reviews #comment,.socket_color .single-product-main-image .images a,#top .socket_color .shop_table.cart .input-text,#top .socket_color form.login .input-text,#top .socket_color form.register .input-text,.socket_color .chosen-container-single .chosen-search,.socket_color .products .product-category h3:before,#top .socket_color .quantity input.qty{background-color:#282b2e}.socket_color .woocommerce-tabs .tabs .active,.socket_color div.product .woocommerce-tabs .panel,.socket_color .activeslideThumb,.socket_color #payment li,.socket_color .widget_price_filter .ui-slider-horizontal .ui-slider-range,.socket_color .avia_cart,.socket_color form.login,.socket_color form.register,.socket_color .col-1,.socket_color .col-2,.socket_color .variations_form,.socket_color .dynamic-title,.socket_color .single-product-main-image .thumbnails a ,.socket_color .quantity input.qty,.socket_color .avia_cart_buttons,#top .socket_color .dropdown_widget .buttons,div .dropdown_widget .cart_list li:hover,.socket_color .woocommerce-info,#top .socket_color .chosen-container-single .chosen-single,#top .socket_color .chosen-search input[type=\'text\'],.socket_color .chosen-results,.socket_color .chosen-container .chosen-drop,#top .socket_color .select2-container .select2-choice,.socket_color .widget_layered_nav_filters .chosen a:hover,.socket_color .widget_layered_nav .chosen a:hover,.socket_color .woocommerce-MyAccount-navigation-link.is-active,.socket_color .woocommerce-MyAccount-navigation-link:hover{background-color:#52565c}.socket_color .thumbnail_container img,#top .socket_color #main .order_details,#top .socket_color .chosen-search input[type=\'text\'],#top .socket_color .chosen-container-single .chosen-single,#top .socket_color .chosen-container-active .chosen-single,#top .socket_color .chosen-container .chosen-drop,.socket_color .chosen-container .chosen-results,.socket_color .products .product-category h3:before,#top .socket_color .select2-container .select2-choice{border-color:#282b2e}.socket_color .summary div{border-color:#52565c}.socket_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle,#top .socket_color a.remove,#top .socket_color .onsale{background-color:#ffffff}#top .socket_color .active-result.highlighted{background-color:#ffffff;color:#282b2e}.socket_color #shop_header a:hover{color:#fff}#top .socket_color .price,.socket_color .stock,#top #wrap_all .socket_color ins,.socket_color .products .product-category h3 .count,.socket_color .widget_layered_nav_filters .chosen a:before,.socket_color .widget_layered_nav .chosen a:before{color:#ffffff}.socket_color .dynamic-title a:hover{color:#ebebeb}.socket_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background:#282b2e}#top .socket_color .chzn-container-single .chzn-single{border-color:#282b2e;background-color:#52565c;color:#777777}.socket_color #payment{background-color:#52565c}#top .socket_color .quantity input.plus,#top .socket_color .quantity input.minus{border-color:#282b2e;background-color:#41454b;color:#777777}.socket_color .wc-bookings-booking-form .block-picker li a,#top .socket_color .wc-bookings-date-picker .ui-datepicker td{border-color:#282b2e}#top .socket_color .wc-bookings-booking-form .block-picker li a:hover,#top .socket_color .wc-bookings-booking-form .block-picker li a:focus,#top .socket_color .wc-bookings-booking-form .block-picker li a.selected{background-color:#ffffff !important;color:#282b2e !important}#top .socket_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date,#top .socket_color .wc-bookings-date-picker .ui-datepicker-header{border-color:#ffffff;background-color:#ffffff;color:#282b2e}.socket_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color:#ffffff !important;color:#282b2e !important;border-color:#282b2e}#top .socket_color .wc-bookings-date-picker .ui-datepicker th,#top .socket_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#e8e8e8}#top .socket_color .wc_bookings_field_start_date,#top .socket_color .wc-bookings-date-picker span.label{color:#777777}#top .socket_color .wc-bookings-booking-form .wc-bookings-booking-cost,#top .socket_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color:#52565c}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color:#282b2e !important}#top .socket_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default,#top .socket_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .socket_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background:#bbbbbb !important;color:#282b2e}.socket_color .sort-param > li > span,.socket_color .sort-param > li > a,.socket_color .sort-param ul{background-color:#52565c}.socket_color .sort-param > li:hover > span,.socket_color .sort-param > li:hover > a,.socket_color .sort-param > li:hover ul,.socket_color .product-sorting strong{color:#ffffff}.socket_color .sort-param a{color:#777777}#top .socket_color .sort-param a:hover{color:#ebebeb}.socket_color .avia-bullet{border-color:#777777}#top .socket_color a:hover .avia-bullet{border-color:#ebebeb}.socket_color .sort-param .current-param a{color:#ffffff}.socket_color .sort-param .current-param .avia-bullet{border-color:#ffffff}.footer_color .cart_dropdown .dropdown_widget li a,#top .footer_color .avia_cart_buttons .button,#top .footer_color .dropdown_widget .buttons .button,.footer_color .cart_dropdown_first .cart_dropdown_link,#top .footer_color p.order-info mark{color:#e8e8e8}.footer_color .woocommerce-tabs .tabs a,.footer_color .product_meta,.footer_color .quantity input.qty,.footer_color .cart_dropdown .dropdown_widget,.footer_color .avia_select_fake_val,.footer_color address,.footer_color .product>a .footer_color .product_excerpt,.footer_color .term_description,#top .footer_color .price .from,#top #wrap_all .footer_color del,.footer_color .dynamic-title .dynamic-heading,.footer_color .dynamic-title a,.footer_color .entry-summary .woocommerce-product-rating .woocommerce-review-link,.footer_color .chosen-container-single .chosen-single span,#top .footer_color .select2-container .select2-choice,.footer_color .woocommerce-MyAccount-navigation-link.is-active a{color:#777777}.footer_color div.product .woocommerce-tabs ul.tabs li.active a,.footer_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content,.footer_color .cart_dropdown_link,.footer_color .inner_product_header,.footer_color .avia-arrow,#top .footer_color .variations select,#top .footer_color .variations input,#top .footer_color #reviews input[type=\'text\'],#top .footer_color #reviews input[type=\'email\'],.footer_color #reviews .comment-text,.footer_color #reviews #comment,.footer_color .single-product-main-image .images a,#top .footer_color .shop_table.cart .input-text,#top .footer_color form.login .input-text,#top .footer_color form.register .input-text,.footer_color .chosen-container-single .chosen-search,.footer_color .products .product-category h3:before,#top .footer_color .quantity input.qty{background-color:#35383c}.footer_color .woocommerce-tabs .tabs .active,.footer_color div.product .woocommerce-tabs .panel,.footer_color .activeslideThumb,.footer_color #payment li,.footer_color .widget_price_filter .ui-slider-horizontal .ui-slider-range,.footer_color .avia_cart,.footer_color form.login,.footer_color form.register,.footer_color .col-1,.footer_color .col-2,.footer_color .variations_form,.footer_color .dynamic-title,.footer_color .single-product-main-image .thumbnails a ,.footer_color .quantity input.qty,.footer_color .avia_cart_buttons,#top .footer_color .dropdown_widget .buttons,div .dropdown_widget .cart_list li:hover,.footer_color .woocommerce-info,#top .footer_color .chosen-container-single .chosen-single,#top .footer_color .chosen-search input[type=\'text\'],.footer_color .chosen-results,.footer_color .chosen-container .chosen-drop,#top .footer_color .select2-container .select2-choice,.footer_color .widget_layered_nav_filters .chosen a:hover,.footer_color .widget_layered_nav .chosen a:hover,.footer_color .woocommerce-MyAccount-navigation-link.is-active,.footer_color .woocommerce-MyAccount-navigation-link:hover{background-color:#52565c}.footer_color .thumbnail_container img,#top .footer_color #main .order_details,#top .footer_color .chosen-search input[type=\'text\'],#top .footer_color .chosen-container-single .chosen-single,#top .footer_color .chosen-container-active .chosen-single,#top .footer_color .chosen-container .chosen-drop,.footer_color .chosen-container .chosen-results,.footer_color .products .product-category h3:before,#top .footer_color .select2-container .select2-choice{border-color:#35383c}.footer_color .summary div{border-color:#52565c}.footer_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle,#top .footer_color a.remove,#top .footer_color .onsale{background-color:#ffffff}#top .footer_color .active-result.highlighted{background-color:#ffffff;color:#35383c}.footer_color #shop_header a:hover{color:#fff}#top .footer_color .price,.footer_color .stock,#top #wrap_all .footer_color ins,.footer_color .products .product-category h3 .count,.footer_color .widget_layered_nav_filters .chosen a:before,.footer_color .widget_layered_nav .chosen a:before{color:#ffffff}.footer_color .dynamic-title a:hover{color:#ebebeb}.footer_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background:#35383c}#top .footer_color .chzn-container-single .chzn-single{border-color:#35383c;background-color:#52565c;color:#777777}.footer_color #payment{background-color:#52565c}#top .footer_color .quantity input.plus,#top .footer_color .quantity input.minus{border-color:#35383c;background-color:#41454b;color:#777777}.footer_color .wc-bookings-booking-form .block-picker li a,#top .footer_color .wc-bookings-date-picker .ui-datepicker td{border-color:#35383c}#top .footer_color .wc-bookings-booking-form .block-picker li a:hover,#top .footer_color .wc-bookings-booking-form .block-picker li a:focus,#top .footer_color .wc-bookings-booking-form .block-picker li a.selected{background-color:#ffffff !important;color:#35383c !important}#top .footer_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date,#top .footer_color .wc-bookings-date-picker .ui-datepicker-header{border-color:#ffffff;background-color:#ffffff;color:#35383c}.footer_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color:#ffffff !important;color:#35383c !important;border-color:#35383c}#top .footer_color .wc-bookings-date-picker .ui-datepicker th,#top .footer_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#e8e8e8}#top .footer_color .wc_bookings_field_start_date,#top .footer_color .wc-bookings-date-picker span.label{color:#777777}#top .footer_color .wc-bookings-booking-form .wc-bookings-booking-cost,#top .footer_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color:#52565c}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color:#35383c !important}#top .footer_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default,#top .footer_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .footer_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background:#bbbbbb !important;color:#35383c}.footer_color .sort-param > li > span,.footer_color .sort-param > li > a,.footer_color .sort-param ul{background-color:#52565c}.footer_color .sort-param > li:hover > span,.footer_color .sort-param > li:hover > a,.footer_color .sort-param > li:hover ul,.footer_color .product-sorting strong{color:#ffffff}.footer_color .sort-param a{color:#777777}#top .footer_color .sort-param a:hover{color:#ebebeb}.footer_color .avia-bullet{border-color:#777777}#top .footer_color a:hover .avia-bullet{border-color:#ebebeb}.footer_color .sort-param .current-param a{color:#ffffff}.footer_color .sort-param .current-param .avia-bullet{border-color:#ffffff}.alternate_color .cart_dropdown .dropdown_widget li a,#top .alternate_color .avia_cart_buttons .button,#top .alternate_color .dropdown_widget .buttons .button,.alternate_color .cart_dropdown_first .cart_dropdown_link,#top .alternate_color p.order-info mark{color:#000000}.alternate_color .woocommerce-tabs .tabs a,.alternate_color .product_meta,.alternate_color .quantity input.qty,.alternate_color .cart_dropdown .dropdown_widget,.alternate_color .avia_select_fake_val,.alternate_color address,.alternate_color .product>a .alternate_color .product_excerpt,.alternate_color .term_description,#top .alternate_color .price .from,#top #wrap_all .alternate_color del,.alternate_color .dynamic-title .dynamic-heading,.alternate_color .dynamic-title a,.alternate_color .entry-summary .woocommerce-product-rating .woocommerce-review-link,.alternate_color .chosen-container-single .chosen-single span,#top .alternate_color .select2-container .select2-choice,.alternate_color .woocommerce-MyAccount-navigation-link.is-active a{color:#919191}.alternate_color div.product .woocommerce-tabs ul.tabs li.active a,.alternate_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content,.alternate_color .cart_dropdown_link,.alternate_color .inner_product_header,.alternate_color .avia-arrow,#top .alternate_color .variations select,#top .alternate_color .variations input,#top .alternate_color #reviews input[type=\'text\'],#top .alternate_color #reviews input[type=\'email\'],.alternate_color #reviews .comment-text,.alternate_color #reviews #comment,.alternate_color .single-product-main-image .images a,#top .alternate_color .shop_table.cart .input-text,#top .alternate_color form.login .input-text,#top .alternate_color form.register .input-text,.alternate_color .chosen-container-single .chosen-search,.alternate_color .products .product-category h3:before,#top .alternate_color .quantity input.qty{background-color:#f8f8f8}.alternate_color .woocommerce-tabs .tabs .active,.alternate_color div.product .woocommerce-tabs .panel,.alternate_color .activeslideThumb,.alternate_color #payment li,.alternate_color .widget_price_filter .ui-slider-horizontal .ui-slider-range,.alternate_color .avia_cart,.alternate_color form.login,.alternate_color form.register,.alternate_color .col-1,.alternate_color .col-2,.alternate_color .variations_form,.alternate_color .dynamic-title,.alternate_color .single-product-main-image .thumbnails a ,.alternate_color .quantity input.qty,.alternate_color .avia_cart_buttons,#top .alternate_color .dropdown_widget .buttons,div .dropdown_widget .cart_list li:hover,.alternate_color .woocommerce-info,#top .alternate_color .chosen-container-single .chosen-single,#top .alternate_color .chosen-search input[type=\'text\'],.alternate_color .chosen-results,.alternate_color .chosen-container .chosen-drop,#top .alternate_color .select2-container .select2-choice,.alternate_color .widget_layered_nav_filters .chosen a:hover,.alternate_color .widget_layered_nav .chosen a:hover,.alternate_color .woocommerce-MyAccount-navigation-link.is-active,.alternate_color .woocommerce-MyAccount-navigation-link:hover{background-color:#ffffff}.alternate_color .thumbnail_container img,#top .alternate_color #main .order_details,#top .alternate_color .chosen-search input[type=\'text\'],#top .alternate_color .chosen-container-single .chosen-single,#top .alternate_color .chosen-container-active .chosen-single,#top .alternate_color .chosen-container .chosen-drop,.alternate_color .chosen-container .chosen-results,.alternate_color .products .product-category h3:before,#top .alternate_color .select2-container .select2-choice{border-color:#ebebeb}.alternate_color .summary div{border-color:#ffffff}.alternate_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle,#top .alternate_color a.remove,#top .alternate_color .onsale{background-color:#000000}#top .alternate_color .active-result.highlighted{background-color:#000000;color:#ffffff}.alternate_color #shop_header a:hover{color:#fff}#top .alternate_color .price,.alternate_color .stock,#top #wrap_all .alternate_color ins,.alternate_color .products .product-category h3 .count,.alternate_color .widget_layered_nav_filters .chosen a:before,.alternate_color .widget_layered_nav .chosen a:before{color:#000000}.alternate_color .dynamic-title a:hover{color:#e20531}.alternate_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background:#ebebeb}#top .alternate_color .chzn-container-single .chzn-single{border-color:#ebebeb;background-color:#ffffff;color:#919191}.alternate_color #payment{background-color:#ffffff}#top .alternate_color .quantity input.plus,#top .alternate_color .quantity input.minus{border-color:#ebebeb;background-color:#eeeeee;color:#919191}.alternate_color .wc-bookings-booking-form .block-picker li a,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td{border-color:#ebebeb}#top .alternate_color .wc-bookings-booking-form .block-picker li a:hover,#top .alternate_color .wc-bookings-booking-form .block-picker li a:focus,#top .alternate_color .wc-bookings-booking-form .block-picker li a.selected{background-color:#000000 !important;color:#ffffff !important}#top .alternate_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date,#top .alternate_color .wc-bookings-date-picker .ui-datepicker-header{border-color:#000000;background-color:#000000;color:#ffffff}.alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color:#000000 !important;color:#ffffff !important;border-color:#ebebeb}#top .alternate_color .wc-bookings-date-picker .ui-datepicker th,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#000000}#top .alternate_color .wc_bookings_field_start_date,#top .alternate_color .wc-bookings-date-picker span.label{color:#919191}#top .alternate_color .wc-bookings-booking-form .wc-bookings-booking-cost,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color:#ffffff}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color:#f8f8f8 !important}#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .alternate_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background:#000000 !important;color:#ffffff}.alternate_color .sort-param > li > span,.alternate_color .sort-param > li > a,.alternate_color .sort-param ul{background-color:#ffffff}.alternate_color .sort-param > li:hover > span,.alternate_color .sort-param > li:hover > a,.alternate_color .sort-param > li:hover ul,.alternate_color .product-sorting strong{color:#222222}.alternate_color .sort-param a{color:#919191}#top .alternate_color .sort-param a:hover{color:#e20531}.alternate_color .avia-bullet{border-color:#919191}#top .alternate_color a:hover .avia-bullet{border-color:#e20531}.alternate_color .sort-param .current-param a{color:#000000}.alternate_color .sort-param .current-param .avia-bullet{border-color:#000000}.main_color .cart_dropdown .dropdown_widget li a,#top .main_color .avia_cart_buttons .button,#top .main_color .dropdown_widget .buttons .button,.main_color .cart_dropdown_first .cart_dropdown_link,#top .main_color p.order-info mark{color:#000000}.main_color .woocommerce-tabs .tabs a,.main_color .product_meta,.main_color .quantity input.qty,.main_color .cart_dropdown .dropdown_widget,.main_color .avia_select_fake_val,.main_color address,.main_color .product>a .main_color .product_excerpt,.main_color .term_description,#top .main_color .price .from,#top #wrap_all .main_color del,.main_color .dynamic-title .dynamic-heading,.main_color .dynamic-title a,.main_color .entry-summary .woocommerce-product-rating .woocommerce-review-link,.main_color .chosen-container-single .chosen-single span,#top .main_color .select2-container .select2-choice,.main_color .woocommerce-MyAccount-navigation-link.is-active a{color:#919191}.main_color div.product .woocommerce-tabs ul.tabs li.active a,.main_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content,.main_color .cart_dropdown_link,.main_color .inner_product_header,.main_color .avia-arrow,#top .main_color .variations select,#top .main_color .variations input,#top .main_color #reviews input[type=\'text\'],#top .main_color #reviews input[type=\'email\'],.main_color #reviews .comment-text,.main_color #reviews #comment,.main_color .single-product-main-image .images a,#top .main_color .shop_table.cart .input-text,#top .main_color form.login .input-text,#top .main_color form.register .input-text,.main_color .chosen-container-single .chosen-search,.main_color .products .product-category h3:before,#top .main_color .quantity input.qty{background-color:#ffffff}.main_color .woocommerce-tabs .tabs .active,.main_color div.product .woocommerce-tabs .panel,.main_color .activeslideThumb,.main_color #payment li,.main_color .widget_price_filter .ui-slider-horizontal .ui-slider-range,.main_color .avia_cart,.main_color form.login,.main_color form.register,.main_color .col-1,.main_color .col-2,.main_color .variations_form,.main_color .dynamic-title,.main_color .single-product-main-image .thumbnails a ,.main_color .quantity input.qty,.main_color .avia_cart_buttons,#top .main_color .dropdown_widget .buttons,div .dropdown_widget .cart_list li:hover,.main_color .woocommerce-info,#top .main_color .chosen-container-single .chosen-single,#top .main_color .chosen-search input[type=\'text\'],.main_color .chosen-results,.main_color .chosen-container .chosen-drop,#top .main_color .select2-container .select2-choice,.main_color .widget_layered_nav_filters .chosen a:hover,.main_color .widget_layered_nav .chosen a:hover,.main_color .woocommerce-MyAccount-navigation-link.is-active,.main_color .woocommerce-MyAccount-navigation-link:hover{background-color:#f8f8f8}.main_color .thumbnail_container img,#top .main_color #main .order_details,#top .main_color .chosen-search input[type=\'text\'],#top .main_color .chosen-container-single .chosen-single,#top .main_color .chosen-container-active .chosen-single,#top .main_color .chosen-container .chosen-drop,.main_color .chosen-container .chosen-results,.main_color .products .product-category h3:before,#top .main_color .select2-container .select2-choice{border-color:#ebebeb}.main_color .summary div{border-color:#f8f8f8}.main_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle,#top .main_color a.remove,#top .main_color .onsale{background-color:#000000}#top .main_color .active-result.highlighted{background-color:#000000;color:#ffffff}.main_color #shop_header a:hover{color:#fff}#top .main_color .price,.main_color .stock,#top #wrap_all .main_color ins,.main_color .products .product-category h3 .count,.main_color .widget_layered_nav_filters .chosen a:before,.main_color .widget_layered_nav .chosen a:before{color:#000000}.main_color .dynamic-title a:hover{color:#e20531}.main_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background:#ebebeb}#top .main_color .chzn-container-single .chzn-single{border-color:#ebebeb;background-color:#f8f8f8;color:#919191}.main_color #payment{background-color:#f8f8f8}#top .main_color .quantity input.plus,#top .main_color .quantity input.minus{border-color:#ebebeb;background-color:#e7e7e7;color:#919191}.main_color .wc-bookings-booking-form .block-picker li a,#top .main_color .wc-bookings-date-picker .ui-datepicker td{border-color:#ebebeb}#top .main_color .wc-bookings-booking-form .block-picker li a:hover,#top .main_color .wc-bookings-booking-form .block-picker li a:focus,#top .main_color .wc-bookings-booking-form .block-picker li a.selected{background-color:#000000 !important;color:#ffffff !important}#top .main_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date,#top .main_color .wc-bookings-date-picker .ui-datepicker-header{border-color:#000000;background-color:#000000;color:#ffffff}.main_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color:#000000 !important;color:#ffffff !important;border-color:#ebebeb}#top .main_color .wc-bookings-date-picker .ui-datepicker th,#top .main_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#000000}#top .main_color .wc_bookings_field_start_date,#top .main_color .wc-bookings-date-picker span.label{color:#919191}#top .main_color .wc-bookings-booking-form .wc-bookings-booking-cost,#top .main_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color:#f8f8f8}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color:#ffffff !important}#top .main_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default,#top .main_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .main_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background:#000000 !important;color:#ffffff}.main_color .sort-param > li > span,.main_color .sort-param > li > a,.main_color .sort-param ul{background-color:#f8f8f8}.main_color .sort-param > li:hover > span,.main_color .sort-param > li:hover > a,.main_color .sort-param > li:hover ul,.main_color .product-sorting strong{color:#222222}.main_color .sort-param a{color:#919191}#top .main_color .sort-param a:hover{color:#e20531}.main_color .avia-bullet{border-color:#919191}#top .main_color a:hover .avia-bullet{border-color:#e20531}.main_color .sort-param .current-param a{color:#000000}.main_color .sort-param .current-param .avia-bullet{border-color:#000000}.added_to_cart_notification,.added_to_cart_notification .avia-arrow{background-color:#ffffff;color:#919191;border-color:#ebebeb}.added_to_cart_notification strong{color:#222222}#top .select2-drop{background-color:#ffffff}#top .select2-results{color:#919191}#top .select2-search{background-color:#f8f8f8}#top .select2-search,#top .select2-drop-active{border-color:#ebebeb}#top .select2-search input[type=\'text\']{background-color:#ffffff;color:#919191;border-color:#ebebeb}.select2-results .select2-highlighted{color:#ffffff;background-color:#000000}.header_color .cart_dropdown .dropdown_widget li a,#top .header_color .avia_cart_buttons .button,#top .header_color .dropdown_widget .buttons .button,.header_color .cart_dropdown_first .cart_dropdown_link,#top .header_color p.order-info mark{color:#000000}.header_color .woocommerce-tabs .tabs a,.header_color .product_meta,.header_color .quantity input.qty,.header_color .cart_dropdown .dropdown_widget,.header_color .avia_select_fake_val,.header_color address,.header_color .product>a .header_color .product_excerpt,.header_color .term_description,#top .header_color .price .from,#top #wrap_all .header_color del,.header_color .dynamic-title .dynamic-heading,.header_color .dynamic-title a,.header_color .entry-summary .woocommerce-product-rating .woocommerce-review-link,.header_color .chosen-container-single .chosen-single span,#top .header_color .select2-container .select2-choice,.header_color .woocommerce-MyAccount-navigation-link.is-active a{color:#919191}.header_color div.product .woocommerce-tabs ul.tabs li.active a,.header_color .cart_dropdown .dropdown_widget .widget_shopping_cart_content,.header_color .cart_dropdown_link,.header_color .inner_product_header,.header_color .avia-arrow,#top .header_color .variations select,#top .header_color .variations input,#top .header_color #reviews input[type=\'text\'],#top .header_color #reviews input[type=\'email\'],.header_color #reviews .comment-text,.header_color #reviews #comment,.header_color .single-product-main-image .images a,#top .header_color .shop_table.cart .input-text,#top .header_color form.login .input-text,#top .header_color form.register .input-text,.header_color .chosen-container-single .chosen-search,.header_color .products .product-category h3:before,#top .header_color .quantity input.qty{background-color:#ffffff}.header_color .woocommerce-tabs .tabs .active,.header_color div.product .woocommerce-tabs .panel,.header_color .activeslideThumb,.header_color #payment li,.header_color .widget_price_filter .ui-slider-horizontal .ui-slider-range,.header_color .avia_cart,.header_color form.login,.header_color form.register,.header_color .col-1,.header_color .col-2,.header_color .variations_form,.header_color .dynamic-title,.header_color .single-product-main-image .thumbnails a ,.header_color .quantity input.qty,.header_color .avia_cart_buttons,#top .header_color .dropdown_widget .buttons,div .dropdown_widget .cart_list li:hover,.header_color .woocommerce-info,#top .header_color .chosen-container-single .chosen-single,#top .header_color .chosen-search input[type=\'text\'],.header_color .chosen-results,.header_color .chosen-container .chosen-drop,#top .header_color .select2-container .select2-choice,.header_color .widget_layered_nav_filters .chosen a:hover,.header_color .widget_layered_nav .chosen a:hover,.header_color .woocommerce-MyAccount-navigation-link.is-active,.header_color .woocommerce-MyAccount-navigation-link:hover{background-color:#f8f8f8}.header_color .thumbnail_container img,#top .header_color #main .order_details,#top .header_color .chosen-search input[type=\'text\'],#top .header_color .chosen-container-single .chosen-single,#top .header_color .chosen-container-active .chosen-single,#top .header_color .chosen-container .chosen-drop,.header_color .chosen-container .chosen-results,.header_color .products .product-category h3:before,#top .header_color .select2-container .select2-choice{border-color:#ebebeb}.header_color .summary div{border-color:#f8f8f8}.header_color .widget_price_filter .price_slider_wrapper .price_slider .ui-slider-handle,#top .header_color a.remove,#top .header_color .onsale{background-color:#bf003c}#top .header_color .active-result.highlighted{background-color:#bf003c;color:#ffffff}.header_color #shop_header a:hover{color:#fff}#top .header_color .price,.header_color .stock,#top #wrap_all .header_color ins,.header_color .products .product-category h3 .count,.header_color .widget_layered_nav_filters .chosen a:before,.header_color .widget_layered_nav .chosen a:before{color:#bf003c}.header_color .dynamic-title a:hover{color:#e20531}.header_color .widget_price_filter .price_slider_wrapper .ui-widget-content{background:#ebebeb}#top .header_color .chzn-container-single .chzn-single{border-color:#ebebeb;background-color:#f8f8f8;color:#919191}.header_color #payment{background-color:#f8f8f8}#top .header_color .quantity input.plus,#top .header_color .quantity input.minus{border-color:#ebebeb;background-color:#e7e7e7;color:#919191}.header_color .wc-bookings-booking-form .block-picker li a,#top .header_color .wc-bookings-date-picker .ui-datepicker td{border-color:#ebebeb}#top .header_color .wc-bookings-booking-form .block-picker li a:hover,#top .header_color .wc-bookings-booking-form .block-picker li a:focus,#top .header_color .wc-bookings-booking-form .block-picker li a.selected{background-color:#bf003c !important;color:#ffffff !important}#top .header_color .wc-bookings-date-picker legend .wc-bookings-date-picker-choose-date,#top .header_color .wc-bookings-date-picker .ui-datepicker-header{border-color:#bf003c;background-color:#bf003c;color:#ffffff}.header_color .wc-bookings-date-picker .ui-datepicker td.bookable a{background-color:#bf003c !important;color:#ffffff !important;border-color:#ebebeb}#top .header_color .wc-bookings-date-picker .ui-datepicker th,#top .header_color .wc-bookings-date-picker .ui-datepicker td .ui-state-default{color:#000000}#top .header_color .wc_bookings_field_start_date,#top .header_color .wc-bookings-date-picker span.label{color:#919191}#top .header_color .wc-bookings-booking-form .wc-bookings-booking-cost,#top .header_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-other-month{background-color:#f8f8f8}#top .wc-bookings-booking-form .blockUI.blockOverlay{background-color:#ffffff !important}#top .header_color .wc-bookings-date-picker .ui-datepicker td.bookable-range .ui-state-default,#top .header_color .wc-bookings-date-picker .ui-datepicker td.ui-datepicker-current-day a,#top .header_color .wc-bookings-date-picker .ui-datepicker td.bookable-range{background:#7b0008 !important;color:#ffffff}.header_color .sort-param > li > span,.header_color .sort-param > li > a,.header_color .sort-param ul{background-color:#f8f8f8}.header_color .sort-param > li:hover > span,.header_color .sort-param > li:hover > a,.header_color .sort-param > li:hover ul,.header_color .product-sorting strong{color:#000000}.header_color .sort-param a{color:#919191}#top .header_color .sort-param a:hover{color:#e20531}.header_color .avia-bullet{border-color:#919191}#top .header_color a:hover .avia-bullet{border-color:#e20531}.header_color .sort-param .current-param a{color:#bf003c}.header_color .sort-param .current-param .avia-bullet{border-color:#bf003c}#top .av-cart-counter{background-color:#bf003c;color:#ffffff}.bbp-topics .bbp-body .bbp-topic-title:before{content:\'\\E83b\';font-family:\'entypo-fontello\'}.bbp-topics .bbp-body .topic-voices-multi .bbp-topic-title:before{content:\'\\E83c\';font-family:\'entypo-fontello\'}.bbp-topics .bbp-body .super-sticky .bbp-topic-title:before{content:\'\\E808\';font-family:\'entypo-fontello\'}.bbp-topics .bbp-body .sticky .bbp-topic-title:before{content:\'\\E809\';font-family:\'entypo-fontello\'}.bbp-topics .bbp-body .status-closed .bbp-topic-title:before{content:\'\\E824\';font-family:\'entypo-fontello\'}.bbp-topics .bbp-body .super-sticky.status-closed .bbp-topic-title:before{content:\'\\E809\\E824\';font-family:\'entypo-fontello\'}.bbp-topics .bbp-body .sticky.status-closed .bbp-topic-title:before{content:\'\\E808\\E824\';font-family:\'entypo-fontello\'}#top .avia-layerslider .ls-nav-prev:before{content:\'\\E87c\';font-family:\'entypo-fontello\'}#top .avia-layerslider .ls-nav-next:before{content:\'\\E87d\';font-family:\'entypo-fontello\'}#top .avia-layerslider .ls-nav-start:before,#top .avia_playpause_icon:before{content:\'\\E897\';font-family:\'entypo-fontello\'}#top .avia-layerslider .ls-nav-stop:before,#top .avia_playpause_icon.av-pause:before{content:\'\\E899\';font-family:\'entypo-fontello\'}.image-overlay .image-overlay-inside:before{content:\'\\E869\';font-family:\'entypo-fontello\'}.image-overlay.overlay-type-extern .image-overlay-inside:before{content:\'\\E832\';font-family:\'entypo-fontello\'}.image-overlay.overlay-type-video .image-overlay-inside:before{content:\'\\E897\';font-family:\'entypo-fontello\'}div.avia-popup button.mfp-arrow:before{content:\'\\E87d\';font-family:\'entypo-fontello\'}div.avia-popup button.mfp-arrow-left:before{content:\'\\E87c\';font-family:\'entypo-fontello\'}.html_header_transparency #top .avia-builder-el-0 .container,.html_header_transparency #top .avia-builder-el-0 .slideshow_caption{padding-top:88px}h1,h2,h3,h4,h5,h6,#top .title_container .main-title,tr.pricing-row td,#top .portfolio-title,.callout .content-area,.avia-big-box .avia-innerbox,.av-special-font,.av-current-sort-title,.html_elegant-blog #top .minor-meta,#av-burger-menu-ul li{font-family:\'raleway\',\'HelveticaNeue\',\'Helvetica Neue\',\'Helvetica-Neue\',Helvetica,Arial,sans-serif}body.raleway{font-family:\'raleway\',\'HelveticaNeue\',\'Helvetica Neue\',\'Helvetica-Neue\',Helvetica,Arial,sans-serif} #top .iconbox.av-no-box .iconbox_icon{font-size:70px} #top .avia-font-flaticon,body .avia-font-flaticon,html body [data-av_iconfont=\'flaticon\']:before{font-size:60px} .iconbox .iconbox_content .iconbox_content_title{letter-spacing:.5px} #socket{font-size:10px;line-height:13px} @media only screen and (min-width:1025px){#footer .av_one_third.first{width:50%} #footer .el_after_av_one_third{width:18%}} div .slideshow_caption h2{font-weight:900} #top .av-burger-menu-main{display:none !important}.container{width:95%} .container .av-content-small.units{width:73%} .responsive .boxed#top ,.responsive.html_boxed.html_header_sticky #header,.responsive.html_boxed.html_header_transparency #header{width:1410px;max-width:90%} .responsive .container{max-width:1410px} #top #wrap_all .all_colors h2{font-weight:400} #top #wrap_all .all_colors h1{font-size:45px;font-weight:900} #top .all_colors strong{color:#e20531} #top #wrap_all .all_colors h1,#top #wrap_all .all_colors h2,#top #wrap_all .all_colors h3,#top #wrap_all .all_colors h4,#top #wrap_all .all_colors h5,#top #wrap_all .all_colors h6{text-transform:none} #top #wrap_all .avia-slideshow-button,#top .avia-button,.html_elegant-blog .more-link,.avia-slideshow-arrows a:before{border-radius:0px;border-width:2px} #top #wrap_all .avia-button.avia-color-light,#top #wrap_all .avia-button.avia-color-dark{border-width:2px} #top #wrap_all .all_colors h3{font-size:20px;font-weight:900;text-transform:uppercase} #top .all_colors .image-overlay-inside{display:none} #top #header .av-main-nav > li > a{font-size:14px;text-transform:uppercase}\";}s:15:\"avia-custom-css\";a:6:{s:4:\"name\";s:11:\"avia-custom\";s:3:\"url\";s:64:\"https://solsculpting.com/wp-content/themes/enfold/css/custom.css\";s:4:\"path\";s:39:\"wp-content/themes/enfold/css/custom.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:85:\"@media only screen and (min-width:768px){} @media only screen and (max-width:767px){}\";}s:15:\"layerslider-css\";a:6:{s:4:\"name\";s:11:\"layerslider\";s:3:\"url\";s:119:\"https://solsculpting.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/css/layerslider.css\";s:4:\"path\";s:94:\"wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/css/layerslider.css\";s:5:\"print\";b:1;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:18112:\".ls-container{visibility:hidden;position:relative;max-width:100%} .ls-inner{position:relative;width:100%;height:100%;background-position:center center;z-index:30} .ls-wp-fullwidth-container{width:100%;position:relative} .ls-wp-fullwidth-helper{position:absolute} .ls-layers,.ls-slide-backgrounds,.ls-slide-effects,.ls-background-videos,.ls-bg-video-overlay{width:100%;height:100%;position:absolute;left:0;top:0;overflow:hidden;-o-transform:translateZ(0);-ms-transform:translateZ(0);-moz-transform:translateZ(0);-webkit-transform:translateZ(0);transform:translateZ(0)} .ls-wrapper{padding:0 !important;visibility:visible !important;border:0 !important;z-index:1} .ls-background-videos{z-index:1} .ls-bg-video-overlay{z-index:21;background-repeat:repeat;background-position:center center} .ls-slide-backgrounds{z-index:2} .ls-slide-effects{z-index:4} .ls-layers{z-index:35} .ls-parallax,.ls-in-out,.ls-z{position:absolute !important} .ls-parallax,.ls-z{width:0 !important;height:0 !important;top:0 !important;left:0 !important;bottom:auto !important;right:auto !important;display:block !important;overflow:visible !important} .ls-in-out{display:none} .ls-loop,.ls-clip{position:absolute !important;display:block !important} .ls-parallax,.ls-in-out,.ls-loop,.ls-z{background:none !important} .ls-parallax,.ls-bg-wrap,.ls-loop{margin:0 !important} .ls-wrapper > .ls-layer,.ls-wrapper > a > .ls-layer .ls-wrapper > .ls-bg{line-height:normal;white-space:nowrap;word-wrap:normal;margin-right:0 !important;margin-bottom:0 !important} .ls-wrapper > .ls-layer,.ls-wrapper > a > .ls-layer{position:static !important;display:block !important;-o-transform:translateZ(1px);-ms-transform:translateZ(1px);-moz-transform:translateZ(1px);-webkit-transform:translateZ(1px);transform:translateZ(1px)} .ls-bg-wrap,.ls-bg-outer{width:100%;height:100%;position:absolute;left:0;top:0} .ls-bg-wrap{display:none} .ls-bg-outer{overflow:hidden !important} .ls-wrapper > a.ls-layer-link{cursor:pointer !important;display:block !important;position:absolute !important;left:0 !important;top:0 !important;width:100% !important;height:100% !important;z-index:10;-o-transform:translateZ(100px);-ms-transform:translateZ(100px);-moz-transform:translateZ(100px);-webkit-transform:translateZ(100px);transform:translateZ(100px);background:url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7) !important} .ls-gui-element{z-index:40;text-decoration:none !important} .ls-loading-container{position:absolute !important;display:none;left:50% !important;top:50% !important} .ls-loading-indicator{margin:0 auto} .ls-media-unmute{visibility:hidden;position:absolute;left:16px;top:16px;width:30px;height:30px;cursor:pointer;opacity:.65} .ls-media-unmute-active{visibility:visible} .ls-media-unmute-bg{position:absolute;left:0;top:0;right:0;bottom:0;border-radius:30px;border:0 solid white;transform:scale(0.1);background:rgba(0,0,0,.25);box-shadow:0 3px 10px rgba(0,0,0,.2)} .ls-icon-muted,.ls-icon-unmuted{position:absolute;left:0;top:0;width:100%;height:100%;background-repeat:no-repeat;background-position:center;background-size:20px;transform:scale(0.1)} .ls-media-unmute-active .ls-media-unmute-bg{border:2px solid white} .ls-media-unmute-active .ls-icon-muted,.ls-media-unmute-active .ls-icon-unmuted,.ls-media-unmute-active .ls-media-unmute-bg{transform:scale(1) !important} .ls-icon-muted{background-image:url(\'https://solsculpting.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/img/icon-muted-white.png\');opacity:1} .ls-icon-unmuted{background-image:url(\'https://solsculpting.com/wp-content/themes/enfold/config-layerslider/LayerSlider/static/layerslider/img/icon-unmuted-white.png\');opacity:0} .ls-media-unmute:hover{opacity:1} .ls-media-unmute:hover .ls-icon-muted{opacity:0} .ls-media-unmute:hover .ls-icon-unmuted{opacity:1} .ls-media-unmute-bg,.ls-icon-unmuted,.ls-media-unmute,.ls-icon-muted{transition:all .3s ease-in-out !important} .ls-bottom-slidebuttons{text-align:left} .ls-bottom-nav-wrapper,.ls-below-thumbnails{height:0;position:relative;text-align:center;margin:0 auto} .ls-below-thumbnails{display:none} .ls-bottom-nav-wrapper a,.ls-nav-prev,.ls-nav-next{outline:none} .ls-bottom-slidebuttons{position:relative} .ls-bottom-slidebuttons,.ls-nav-start,.ls-nav-stop,.ls-nav-sides{position:relative} .ls-nothumb{text-align:center !important} .ls-link,.ls-link:hover{position:absolute !important;width:100% !important;height:100% !important;left:0 !important;top:0 !important} .ls-link{display:none} .ls-link-on-top{z-index:999999 !important} .ls-link,.ls-wrapper > a > *{background-image:url(\'data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7\')} .ls-bottom-nav-wrapper,.ls-thumbnail-wrapper,.ls-nav-prev,.ls-nav-next{visibility:hidden} .ls-bar-timer{position:absolute;width:0;height:2px;background:white;border-bottom:2px solid #555;opacity:.55;top:0} .ls-circle-timer{width:16px;height:16px;position:absolute;right:10px;top:10px;opacity:.65;display:none} .ls-container .ls-circle-timer,.ls-container .ls-circle-timer *{box-sizing:border-box !important} .ls-ct-half{border:4px solid white} .ls-ct-left,.ls-ct-right{width:50%;height:100%;overflow:hidden} .ls-ct-left,.ls-ct-right{position:absolute} .ls-ct-left{left:0} .ls-ct-right{left:50%} .ls-ct-rotate{width:200%;height:100%;position:absolute;top:0} .ls-ct-left .ls-ct-rotate,.ls-ct-right .ls-ct-hider,.ls-ct-right .ls-ct-half{left:0} .ls-ct-right .ls-ct-rotate,.ls-ct-left .ls-ct-hider,.ls-ct-left .ls-ct-half{right:0} .ls-ct-hider,.ls-ct-half{position:absolute;top:0} .ls-ct-hider{width:50%;height:100%;overflow:hidden} .ls-ct-half{width:200%;height:100%} .ls-ct-center{width:100%;height:100%;left:0;top:0;position:absolute;border:4px solid black;opacity:0.2} .ls-ct-half,.ls-ct-center{border-radius:100px;-moz-border-radius:100px;-webkit-border-radius:100px} .ls-slidebar-container{margin:10px auto} .ls-slidebar-container,.ls-slidebar{position:relative} .ls-progressbar,.ls-slidebar-slider-container{position:absolute;left:0;top:0} .ls-progressbar{width:0;height:100%;z-index:1} .ls-slidebar-slider-container{z-index:2} .ls-slidebar-slider{position:static !important;cursor:pointer} .ls-slidebar{height:10px;background-color:#ddd} .ls-slidebar,.ls-progressbar{border-radius:10px} .ls-progressbar{background-color:#bbb} .ls-slidebar-slider-container{top:50%} .ls-slidebar-slider{width:20px;height:20px;border-radius:20px;background-color:#999} .ls-slidebar-light .ls-slidebar{height:8px;background-color:white;border:1px solid #ddd;border-top:1px solid #ccc} .ls-slidebar-light .ls-slidebar,.ls-slidebar-light .ls-progressbar{border-radius:10px} .ls-slidebar-light .ls-progressbar{background-color:#eee} .ls-slidebar-light .ls-slidebar-slider-container{top:50%} .ls-slidebar-light .ls-slidebar-slider{width:18px;height:18px;border-radius:20px;background-color:#eee;border:1px solid #bbb;border-top:1px solid #ccc;border-bottom:1px solid #999} .ls-tn{display:none !important} .ls-thumbnail-hover{display:none;position:absolute;left:0} .ls-thumbnail-hover-inner{width:100%;height:100%;position:absolute;left:0;top:0;display:none} .ls-thumbnail-hover-bg{position:absolute;width:100%;height:100%;left:0;top:0} .ls-thumbnail-hover-img{position:absolute;overflow:hidden} .ls-thumbnail-hover img{max-width:none !important;position:absolute;display:inline-block;visibility:visible !important;left:50%;top:0} .ls-thumbnail-hover span{left:50%;top:100%;width:0;height:0;display:block;position:absolute;border-left-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important} .ls-thumbnail-wrapper{position:relative;width:100%;margin:0 auto} .ls-thumbnail{position:relative;margin:0 auto} .ls-thumbnail-inner,.ls-thumbnail-slide-container{width:100%} .ls-thumbnail-slide-container{overflow:hidden !important;position:relative} .ls-thumbnail-slide{text-align:center;white-space:nowrap;float:left;position:relative} .ls-thumbnail-slide a{overflow:hidden;display:inline-block;width:0;height:0;position:relative} .ls-thumbnail-slide img{max-width:none !important;max-height:100% !important;height:100%;visibility:visible !important} .ls-touchscroll{overflow-x:auto !important} .ls-shadow{display:none;position:absolute;z-index:10 !important;top:100%;width:100%;left:0;overflow:hidden !important;visibility:hidden} .ls-shadow img{width:100% !important;height:auto !important;position:absolute !important;left:0 !important;bottom:0 !important} .ls-media-layer{overflow:hidden} .ls-vpcontainer,.ls-videopreview{width :100%;height :100%;position :absolute;left :0;top :0;cursor :pointer} .ls-videopreview{background-size:cover;background-position:center center} .ls-videopreview{z-index:1} .ls-playvideo{position:absolute;left:50%;top:50%;cursor:pointer;z-index:2} .ls-autoplay .ls-playvideo{display:none !important} .ls-forcehide{display:none !important} .ls-yourlogo{position:absolute;z-index:50} .ls-slide-transition-wrapper{width:100%;height:100%;position:absolute;left:0;top:0;z-index:3} .ls-slide-transition-wrapper,.ls-slide-transition-wrapper *{text-align:left !important} .ls-slide-transition-tile{position:relative;float:left} .ls-slide-transition-tile img{visibility:visible;margin:0 !important} .ls-curtiles{overflow:hidden} .ls-curtiles,.ls-nexttiles{position:absolute;width:100%;height:100%;left:0;top:0} .ls-curtile,.ls-nexttile{overflow:hidden;width:100% !important;height:100% !important;-o-transform:translateZ(0);-ms-transform:translateZ(0);-moz-transform:translateZ(0);-webkit-transform:translateZ(0);transform:translateZ(0)} .ls-nexttile{display:none} .ls-3d-container{position:relative;overflow:visible !important;-ms-perspective:none !important;-moz-perspective:none !important;-webkit-perspective:none !important;perspective:none !important} .ls-3d-box{position:absolute} .ls-3d-box div{overflow:hidden;margin:0;padding:0;position:absolute;background-color:#888} .ls-3d-box .ls-3d-top,.ls-3d-box .ls-3d-bottom{background-color:#555} .ls-slide-transition-wrapper,.ls-slide-transition-tile{-ms-perspective:1500px;-moz-perspective:1500px;-webkit-perspective:1500px;perspective:1500px} .ls-slide-transition-tile,.ls-3d-box,.ls-curtiles,.ls-nexttiles{-ms-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-webkit-transform-style:preserve-3d;transform-style:preserve-3d} .ls-curtile,.ls-nexttile,.ls-3d-box,.ls-3d-box div{-ms-backface-visibility:hidden;-moz-backface-visibility:hidden;-webkit-backface-visibility:hidden;backface-visibility:hidden} .ls-visible{overflow:visible !important} .ls-unselectable{user-select:none;-o-user-select:none;-ms-user-select:none;-moz-user-select:none;-webkit-user-select:none} .ls-overflow-hidden{overflow:hidden} .ls-overflowx-hidden{overflow-x:hidden} .ls-overflow-visible{overflow:visible !important} .ls-overflowy-hidden{overflow-y:hidden} .ls-hidden{width:0px !important;height:0px !important;position:absolute;left:-5000px;top:-5000px;z-index:-1;overflow:hidden !important;visibility:hidden !important;display:block !important} .ls-slide{display:block !important;visibility:hidden !important;position:absolute !important;overflow:hidden;top:0 !important;left:0 !important;bottom:auto !important;right:auto !important;background:none;border:none !important;margin:0 !important;padding:0 !important} .ls-slide > .ls-layer,.ls-slide > .ls-l,.ls-slide > .ls-bg,.ls-slide > a > .ls-layer,.ls-slide > a > .ls-l,.ls-slide > a > .ls-bg{position:absolute !important;white-space:nowrap} .ls-fullscreen{margin:0 !important;padding:0 !important;width:auto !important;height:auto !important} .ls-fullscreen .ls-container{background-color:black;margin:0 auto !important} .ls-fullscreen .ls-fullscreen-wrapper{width:100% !important;height:100% !important;margin:0 !important;padding:0 !important;border:0 !important;background-color:black;overflow:hidden !important;position:relative !important} .ls-fullscreen .ls-fullscreen-wrapper .ls-container,.ls-fullscreen .ls-fullscreen-wrapper .ls-wp-container{position:absolute !important;top:50% !important;left:50% !important;transform:translate(-50%,-50%) !important} .ls-layer .split-item{font-weight:inherit !important;font-family:inherit !important;font-size:inherit;color:inherit} html .ls-nav-prev,body .ls-nav-prev,#ls-global .ls-nav-prev,html .ls-nav-next,body .ls-nav-next,#ls-global .ls-nav-next,html .ls-container img,body .ls-container img,#ls-global .ls-container img,html .ls-bottom-nav-wrapper a,body .ls-bottom-nav-wrapper a,#ls-global .ls-bottom-nav-wrapper a,html .ls-container .ls-fullscreen,body .ls-container .ls-fullscreen,#ls-global .ls-container .ls-fullscreen,html .ls-thumbnail a,body .ls-thumbnail a,#ls-global .ls-thumbnail a{transition:none;-ms-transition:none;-webkit-transition:none;line-height:normal;outline:none;padding:0;border:0} html .ls-wrapper > a,body .ls-wrapper > a,#ls-global .ls-wrapper > a,html .ls-wrapper > p,body .ls-wrapper > p,#ls-global .ls-wrapper > p,html .ls-wrapper > h1,body .ls-wrapper > h1,#ls-global .ls-wrapper > h1,html .ls-wrapper > h2,body .ls-wrapper > h2,#ls-global .ls-wrapper > h2,html .ls-wrapper > h3,body .ls-wrapper > h3,#ls-global .ls-wrapper > h3,html .ls-wrapper > h4,body .ls-wrapper > h4,#ls-global .ls-wrapper > h4,html .ls-wrapper > h5,body .ls-wrapper > h5,#ls-global .ls-wrapper > h5,html .ls-wrapper > img,body .ls-wrapper > img,#ls-global .ls-wrapper > img,html .ls-wrapper > div,body .ls-wrapper > div,#ls-global .ls-wrapper > div,html .ls-wrapper > span,body .ls-wrapper > span,#ls-global .ls-wrapper > span,html .ls-wrapper .ls-bg,body .ls-wrapper .ls-bg,#ls-global .ls-wrapper .ls-bg,html .ls-wrapper .ls-layer,body .ls-wrapper .ls-layer,#ls-global .ls-wrapper .ls-layer,html .ls-slide .ls-layer,body .ls-slide .ls-layer,#ls-global .ls-slide .ls-layer,html .ls-slide a .ls-layer,body .ls-slide a .ls-layer,#ls-global .ls-slide a .ls-layer{transition:none;-ms-transition:none;-webkit-transition:none;line-height:normal;outline:none;padding:0;margin:0;border-width:0} html .ls-container img,body .ls-container img,#ls-global .ls-container img{background:none !important;min-width:0 !important;max-width:none !important;border-radius:0;box-shadow:none;border:0;padding:0} html .ls-wp-container .ls-wrapper > a > *,body .ls-wp-container .ls-wrapper > a > *,#ls-global .ls-wp-container .ls-wrapper > a > *{margin:0} html .ls-wp-container .ls-wrapper > a,body .ls-wp-container .ls-wrapper > a,#ls-global .ls-wp-container .ls-wrapper > a{text-decoration:none} .ls-wp-fullwidth-container,.ls-wp-fullwidth-helper,.ls-gui-element *,.ls-gui-element,.ls-container,.ls-slide > *,.ls-slide,.ls-wrapper,.ls-layer{box-sizing:content-box !important} html .ls-yourlogo,body .ls-yourlogo,#ls-global .ls-yourlogo{margin:0} html .ls-tn,body .ls-tn,#ls-global .ls-tn{display:none} .ls-bottom-nav-wrapper,.ls-bottom-nav-wrapper span,.ls-bottom-nav-wrapper a{line-height:0;font-size:0} html .ls-container video,body .ls-container video,#ls-global .ls-container video{max-width:none !important;object-fit:cover !important} html .ls-container,body .ls-container,#ls-global .ls-container,html .ls-container .ls-slide-transition-wrapper,body .ls-container .ls-slide-transition-wrapper,#ls-global .ls-container .ls-slide-transition-wrapper,html .ls-container .ls-slide-transition-wrapper *,body .ls-container .ls-slide-transition-wrapper *,#ls-global .ls-container .ls-slide-transition-wrapper *,html .ls-container .ls-bottom-nav-wrapper,body .ls-container .ls-bottom-nav-wrapper,#ls-global .ls-container .ls-bottom-nav-wrapper,html .ls-container .ls-bottom-nav-wrapper *,body .ls-container .ls-bottom-nav-wrapper *,#ls-global .ls-container .ls-bottom-nav-wrapper *,html .ls-container .ls-bottom-nav-wrapper span *,body .ls-container .ls-bottom-nav-wrapper span *,#ls-global .ls-container .ls-bottom-nav-wrapper span *,html .ls-direction-fix,body .ls-direction-fix,#ls-global .ls-direction-fix{direction:ltr !important} html .ls-container,body .ls-container,#ls-global .ls-container{float:none !important} .ls-slider-notification{position:relative;margin:10px auto;padding:10px 10px 15px 88px;border-radius:5px;min-height:60px;background:#de4528;color:white !important;font-family:\'Open Sans\',arial,sans-serif !important} .ls-slider-notification a{color:white !important;text-decoration:underline !important} .ls-slider-notification-logo{position:absolute;top:16px;left:17px;width:56px;height:56px;font-size:49px;line-height:53px;border-radius:56px;background-color:white;color:#de4528;font-style:normal;font-weight:800;text-align:center} .ls-slider-notification strong{color:white !important;display:block;font-size:20px;line-height:26px;font-weight:normal !important} .ls-slider-notification span{display:block;font-size:13px;line-height:16px;text-align:justify !important} @media screen and (max-width:767px){.ls-container .ls-layers > .ls-hide-on-phone,.ls-container .ls-background-videos .ls-hide-on-phone video,.ls-container .ls-background-videos .ls-hide-on-phone audio,.ls-container .ls-background-videos .ls-hide-on-phone iframe{display:none !important}} @media screen and (min-width:768px) and (max-width:1024px){.ls-container .ls-layers > .ls-hide-on-tablet,.ls-container .ls-background-videos .ls-hide-on-tablet video,.ls-container .ls-background-videos .ls-hide-on-tablet audio,.ls-container .ls-background-videos .ls-hide-on-tablet iframe{display:none !important}} @media screen and (min-width:1025px){.ls-container .ls-layers > .ls-hide-on-desktop,.ls-container .ls-background-videos .ls-hide-on-desktop video,.ls-container .ls-background-videos .ls-hide-on-desktop audio,.ls-container .ls-background-videos .ls-hide-on-desktop iframe{display:none !important}} .ls-container .ls-background-videos .ls-vpcontainer{z-index:10} .ls-container .ls-background-videos .ls-videopreview{background-size:cover !important} .ls-container .ls-background-videos video,.ls-container .ls-background-videos audio,.ls-container .ls-background-videos iframe{position:relative;z-index:20} @media (transform-3d),(-ms-transform-3d),(-webkit-transform-3d){#ls-test3d{position:absolute;left:9px;height:3px}}\";}s:27:\"avia-module-audioplayer-css\";a:6:{s:4:\"name\";s:23:\"avia-module-audioplayer\";s:3:\"url\";s:118:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css\";s:4:\"path\";s:93:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:1053:\".av-player.av-player-container .wp-playlist{margin:0} .av-player.av-player-container .av-player-cover-container .av-player-cover img{display:block;max-width:100%;max-height:100%} .avia-playlist-hide-cover .wp-playlist-current-item{height:auto} #top .avia-playlist-custom-background-color .wp-playlist{background:transparent}#top .avia-playlist-custom-font-color *{color:inherit}#top .avia-playlist-custom-font-color .wp-playlist-item > *{opacity:0.8}#top .avia-playlist-custom-font-color .wp-playlist-item.wp-playlist-playing > *{opacity:1} #top .avia-playlist-custom-border-color .wp-playlist{border:none}#top .avia-playlist-custom-border-color{border-width:1px;border-style:solid} #top .avia-playerstyle-minimal .wp-playlist{padding:0;border-color:transparent;background:transparent} #top .avia-playerstyle-minimal .wp-playlist .wp-playlist-item{border-color:transparent} #top .avia-playerstyle-minimal.avia-playlist-custom-background-color .wp-playlist{padding:10px} #top .av-player-container.av-player-hide-playlist .wp-playlist-tracks{display:none}\";}s:25:\"avia-module-buttonrow-css\";a:6:{s:4:\"name\";s:21:\"avia-module-buttonrow\";s:3:\"url\";s:112:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css\";s:4:\"path\";s:87:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/buttonrow/buttonrow.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:415:\".avia-buttonrow-wrap > .avia-button{vertical-align:bottom} .avia-buttonrow-left{text-align:left} .avia-buttonrow-right{text-align:right} .avia-buttonrow-center{text-align:center} .avia-buttonrow-right .avia-button:first-child,.avia-buttonrow-left .avia-button:first-child{margin-left:0 !important} .avia-buttonrow-right .avia-button:last-child,.avia-buttonrow-left .avia-button:last-child{margin-right:0 !important}\";}s:24:\"avia-module-icongrid-css\";a:6:{s:4:\"name\";s:20:\"avia-module-icongrid\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:12098:\".avia-icongrid{margin:0;padding:0;list-style:none;display:block;width:100%} .avia-icongrid-borders-all{border-width:1px;border-style:solid} .avia-icongrid li{display:block;float:left;margin:0;padding:0;list-style:none;text-align:center;position:relative} .avia-icongrid-icon{font-size:42px;line-height:1;margin-bottom:0.5em;color:initial} .avia-icongrid li .avia-icongrid-wrapper{position:relative;display:block;-webkit-backface-visibility:hidden;backface-visibility:hidden} .avia-icongrid-borders-all li .avia-icongrid-wrapper:before,.avia-icongrid-borders-between li .avia-icongrid-wrapper:before{content:\"\";position:absolute;width:100%;height:100%;top:0;left:0;color:inherit;-webkit-box-shadow:1px 0 0 0,0 1px 0 0;box-shadow:1px 0 0 0,0 1px 0 0;z-index:8} .avia-icongrid-numrow-3.avia-icongrid-borders-all li:nth-child(3n+3) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-3.avia-icongrid-borders-between li:nth-child(3n+3) .avia-icongrid-wrapper:before{-webkit-box-shadow:0 1px 0 0;box-shadow:0 1px 0 0} .avia-icongrid-numrow-3.avia-icongrid-borders-all li:nth-child(3n+1):nth-last-child(-n+3) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-3.avia-icongrid-borders-all li:nth-child(3n+1):nth-last-child(-n+3) ~ li .avia-icongrid-wrapper:before,.avia-icongrid-numrow-3.avia-icongrid-borders-between li:nth-child(3n+1):nth-last-child(-n+3) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-3.avia-icongrid-borders-between li:nth-child(3n+1):nth-last-child(-n+3) ~ li .avia-icongrid-wrapper:before{-webkit-box-shadow:1px 0 0 0;box-shadow:1px 0 0 0} .avia-icongrid-numrow-3.avia-icongrid-borders-all li:nth-child(3n+1):nth-last-child(-n+3) ~ li:nth-child(3n+3) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-3.avia-icongrid-borders-between li:nth-child(3n+1):nth-last-child(-n+3) ~ li:nth-child(3n+3) .avia-icongrid-wrapper:before{-webkit-box-shadow:none;box-shadow:none} .avia-icongrid-numrow-4.avia-icongrid-borders-all li:nth-child(4n+4) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-4.avia-icongrid-borders-between li:nth-child(4n+4) .avia-icongrid-wrapper:before{-webkit-box-shadow:0 1px 0 0;box-shadow:0 1px 0 0} .avia-icongrid-numrow-4.avia-icongrid-borders-all li:nth-child(4n+1):nth-last-child(-n+4) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-4.avia-icongrid-borders-all li:nth-child(4n+1):nth-last-child(-n+4) ~ li .avia-icongrid-wrapper:before,.avia-icongrid-numrow-4.avia-icongrid-borders-between li:nth-child(4n+1):nth-last-child(-n+4) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-4.avia-icongrid-borders-between li:nth-child(4n+1):nth-last-child(-n+4) ~ li .avia-icongrid-wrapper:before{-webkit-box-shadow:1px 0 0 0;box-shadow:1px 0 0 0} .avia-icongrid-numrow-4.avia-icongrid-borders-all li:nth-child(4n+1):nth-last-child(-n+4) ~ li:nth-child(4n+4) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-4.avia-icongrid-borders-between li:nth-child(4n+1):nth-last-child(-n+4) ~ li:nth-child(4n+4) .avia-icongrid-wrapper:before{-webkit-box-shadow:none;box-shadow:none} .avia-icongrid-numrow-5.avia-icongrid-borders-all li:nth-child(5n+5) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-5.avia-icongrid-borders-between li:nth-child(5n+5) .avia-icongrid-wrapper:before{-webkit-box-shadow:0 1px 0 0;box-shadow:0 1px 0 0} .avia-icongrid-numrow-5.avia-icongrid-borders-all li:nth-child(5n+1):nth-last-child(-n+5) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-5.avia-icongrid-borders-all li:nth-child(5n+1):nth-last-child(-n+5) ~ li .avia-icongrid-wrapper:before,.avia-icongrid-numrow-5.avia-icongrid-borders-between li:nth-child(5n+1):nth-last-child(-n+5) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-5.avia-icongrid-borders-between li:nth-child(5n+1):nth-last-child(-n+5) ~ li .avia-icongrid-wrapper:before{-webkit-box-shadow:1px 0 0 0;box-shadow:1px 0 0 0} .avia-icongrid-numrow-5.avia-icongrid-borders-all li:nth-child(5n+1):nth-last-child(-n+5) ~ li:nth-child(5n+5) .avia-icongrid-wrapper:before,.avia-icongrid-numrow-5.avia-icongrid-borders-between li:nth-child(5n+1):nth-last-child(-n+5) ~ li:nth-child(5n+5) .avia-icongrid-wrapper:before{-webkit-box-shadow:none;box-shadow:none} .avia-icongrid li .avia-icongrid-content{opacity:0;visibility:hidden;padding:4em 3em} .avia-icongrid li .avia-icongrid-front{position:absolute;width:100%;height:100%;top:0;left:0} .avia-icongrid-numrow-3 li{width:33.333%} .avia-icongrid-numrow-4 li{width:25%} .avia-icongrid-numrow-5 li{width:20%} .avia-icongrid-flipbox li{-webkit-perspective:1000px;perspective:1000px;cursor:pointer} .avia-icongrid-flipbox li article{position:relative;display:block;z-index:3;min-height:200px;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px;-webkit-transition:-webkit-transform 10.6s;transition:transform 10.6s} .avia-icongrid-flipbox li .avia-icongrid-front,.avia-icongrid-flipbox li .avia-icongrid-flipback{backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-webkit-transition:0.6s;-o-transition:0.6s;transition:0.6s;-webkit-transform-style:preserve-3d;transform-style:preserve-3d;height:100%} .avia-msie-9 .avia-icongrid-flipbox li .avia-icongrid-flipback{opacity:0;visibility:hidden} .avia-icongrid-flipbox li .avia-icongrid-front{z-index:2;-webkit-transform:rotateY(0deg);transform:rotateY(0deg);margin:1px} .avia-icongrid-flipbox li .avia-icongrid-flipback{position:absolute;width:100%;left:0;top:0;margin:1px;-webkit-transform:rotateY(-180deg);transform:rotateY(-180deg)} .avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner,.avia-icongrid-flipbox li .avia-icongrid-flipback .avia-icongrid-inner{position:absolute;color:initial;width:100%;left:0;top:50%;-webkit-transform:translateY(-50%);-ms-transform:translateY(-50%);transform:translateY(-50%);padding:4em 3em;backface-visibility:hidden;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden} .avia-icongrid-flipbox li:hover .avia-icongrid-front,.avia-icongrid-flipbox li.avia-hover .avia-icongrid-front,.avia-icongrid-flipbox li.av-flip .avia-icongrid-front{-webkit-transform:rotateY(180deg);transform:rotateY(180deg)} .avia-icongrid-flipbox li:hover .avia-icongrid-flipback,.avia-icongrid-flipbox li.avia-hover .avia-icongrid-flipback,.avia-icongrid-flipbox li.av-flip .avia-icongrid-flipback{-webkit-transform:rotateY(0deg);transform:rotateY(0deg)} .avia-msie-9 .avia-icongrid-flipbox li:hover .avia-icongrid-front,.avia-msie-9 .avia-icongrid-flipbox li.avia-hover .avia-icongrid-front,.avia-msie-9 .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{opacity:0;visibility:hidden} .avia-msie-9 .avia-icongrid-flipbox li:hover .avia-icongrid-flipback,.avia-msie-9 .avia-icongrid-flipbox li.avia-hover .avia-icongrid-flipback,.avia-msie-9 .avia-icongrid-flipbox li.av-flip .avia-icongrid-flipback{opacity:1;visibility:visible} .avia-icongrid-tooltip li{cursor:pointer} .avia-icongrid-tooltip li article:before{content:\"\";display:block;padding-top:100%} .avia-icongrid-tooltip li .avia-icongrid-front{position:absolute;width:100%;height:auto;padding:2em;bottom:50%;top:auto;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%);-webkit-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out} .avia-icongrid-tooltip li .avia-icongrid-content{position:absolute;bottom:4em;width:85%;left:7.5%;padding:1em 2em !important;background-color:white;color:white;z-index:8;border-width:0.3em;border-style:solid;-webkit-transition:all 0.3s ease-in-out;-o-transition:all 0.3s ease-in-out;transition:all 0.3s ease-in-out;-webkit-box-shadow:0 0 2em rgba(0,0,0,0.1);box-shadow:0 0 2em rgba(0,0,0,0.1)} .avia-icongrid-tooltip li .avia-icongrid-content .avia-icongrid-inner{color:initial} .avia-icongrid-tooltip li .avia-icongrid-content:after{content:\"\";width:0;height:0;position:absolute;left:50%;-webkit-box-sizing:border-box;box-sizing:border-box;border-left-width:0.5em;border-right-width:0.5em;border-top-width:0.5em;border-left-style:solid;border-right-style:solid;border-top-style:solid;border-left-color:transparent;border-right-color:transparent;border-top-color:inherit;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%);bottom:-0.75em;-webkit-box-shadow:0 0 2em rgba(0,0,0,0.1);box-shadow:0 0 2em rgba(0,0,0,0.1)} .avia-icongrid-tooltip li:hover .avia-icongrid-content{visibility:visible;opacity:1;bottom:40%} .avia-icongrid-tooltip li:hover .avia-icongrid-front{bottom:0.5em;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)} .avia-flip-x .avia-icongrid-flipbox li .avia-icongrid-front{z-index:2;-webkit-transform:rotateX(0deg);-ms-transform:rotateX(0deg);transform:rotateX(0deg)} .avia-flip-x .avia-icongrid-flipbox li .avia-icongrid-flipback{-webkit-transform:rotateX(-180deg);-ms-transform:rotateX(-180deg);transform:rotateX(-180deg)} .avia-flip-x .avia-icongrid-flipbox li:hover .avia-icongrid-front,.avia-flip-x .avia-icongrid-flipbox li.avia-hover .avia-icongrid-front,.avia-flip-x .avia-icongrid-flipbox li.av-flip .avia-icongrid-front{-webkit-transform:rotateX(180deg);-ms-transform:rotateX(180deg);transform:rotateX(180deg)} .avia-flip-x .avia-icongrid-flipbox li:hover .avia-icongrid-flipback,.avia-flip-x .avia-icongrid-flipbox li.avia-hover .avia-icongrid-flipback,.avia-flip-x .avia-icongrid-flipbox li.av-flip .avia-icongrid-flipback{-webkit-transform:rotateX(0deg);-ms-transform:rotateX(0deg);transform:rotateX(0deg)} @media only screen and (max-width:989px){.avia-icongrid-numrow-3 li,.avia-icongrid-numrow-4 li,.avia-icongrid-numrow-5 li{width:50%} .avia-icongrid-borders-all li .avia-icongrid-wrapper:before,.avia-icongrid-borders-between li .avia-icongrid-wrapper:before{display:none} .avia-icongrid-borders-all li .avia-icongrid-wrapper:after,.avia-icongrid-borders-between li .avia-icongrid-wrapper:after{content:\"\";position:absolute;width:100%;height:100%;top:0;left:0;color:inherit;-webkit-box-shadow:1px 0 0 0,0 1px 0 0;box-shadow:1px 0 0 0,0 1px 0 0;z-index:8} .avia-icongrid-borders-all li:nth-child(2n+2) .avia-icongrid-wrapper:after,.avia-icongrid-borders-between li:nth-child(2n+2) .avia-icongrid-wrapper:after{-webkit-box-shadow:0 1px 0 0;box-shadow:0 1px 0 0} .avia-icongrid-borders-all li:last-child .avia-icongrid-wrapper:after,.avia-icongrid-borders-between li:last-child .avia-icongrid-wrapper:after{-webkit-box-shadow:none;box-shadow:none} .avia-icongrid-borders-all li:nth-child(2n+1):nth-last-child(-n+2) .avia-icongrid-wrapper:after,.avia-icongrid-borders-between li:nth-child(2n+1):nth-last-child(-n+2) .avia-icongrid-wrapper:after{-webkit-box-shadow:1px 0 0 0;box-shadow:1px 0 0 0} .avia-icongrid-flipbox li .avia-icongrid-front .avia-icongrid-inner,.avia-icongrid-tooltip li article{padding:1em}} @media only screen and (max-width:767px){.avia-icongrid-numrow-3 li,.avia-icongrid-numrow-4 li,.avia-icongrid-numrow-5 li{width:100%} .avia-icongrid-borders-all li .avia-icongrid-wrapper,.avia-icongrid-borders-between li .avia-icongrid-wrapper{border-right-width:0px !important;border-right-style:hidden !important;border-bottom-width:1px !important;border-bottom-style:solid !important} .avia-icongrid-borders-all li:nth-child(odd) .avia-icongrid-wrapper,.avia-icongrid-borders-between li:nth-child(odd) .avia-icongrid-wrapper{border-right-width:0px !important;border-right-style:hidden !important} .avia-icongrid-tooltip li article{padding:4em 3em} .avia-icongrid-tooltip li:hover .avia-icongrid-front,.avia-icongrid-tooltip li .avia-icongrid-front{position:relative;top:auto;bottom:auto;-webkit-transform:none;-ms-transform:none;transform:none} .avia-icongrid-tooltip li:hover .avia-icongrid-front{bottom:0.5em;-webkit-transform:translateY(50%);-ms-transform:translateY(50%);transform:translateY(50%)} .avia-icongrid-tooltip li .avia-icongrid-content:after{bottom:auto;top:-0.75em;border-top:0.3em solid rgba(0,0,0,0.07);border-left:0.3em solid rgba(0,0,0,0.07);border-bottom:0;border-right:0} .avia-icongrid-tooltip li article:before{display:none}}\";}s:18:\"avia-sc-search-css\";a:6:{s:4:\"name\";s:14:\"avia-sc-search\";s:3:\"url\";s:106:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css\";s:4:\"path\";s:81:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/search/search.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:4262:\"#top .avia_search_element form{position:relative;overflow:hidden;clear:both}#top .avia_search_element form div{position:relative;overflow:hidden} .av_searchform_wrapper{border-width:1px;border-style:solid} #top .avia_search_element .av_searchsubmit_wrapper{position:absolute;right:0;height:100%;top:0;z-index:2;transition:all 0.2s ease-in} #top .avia_search_element .av_searchsubmit_wrapper:hover{opacity:0.7} #top .avia_search_element form.ajax_loading_now .av_searchsubmit_wrapper{padding-right:60px} #top .avia_search_element form.ajax_loading_now .av_searchsubmit_wrapper.av-submit-hasicon{padding-right:0} #top .avia_search_element .av_searchsubmit_wrapper .av-search-icon{position:absolute;left:1em;top:50%;height:auto;transform:translateY(-50%);z-index:2} #top .avia_search_element .av_searchsubmit_wrapper.av-submit-hasiconlabel #searchsubmit{padding-left:2.5em} #top .avia_search_element #searchsubmit{position:relative;width:auto;height:100%;padding-left:2em;padding-right:2em;font-size:1em;z-index:1;border:0px solid rgba(255,255,255,0);transition:all 0.2s ease-in} #top .avia_search_element #searchsubmit:hover{border-color:transparent;background-color:inherit;opacity:0.8} #top .avia_search_element form.ajax_loading_now #searchsubmit{margin-right:40px} #top .avia_search_element #searchsubmit.av-submit-hasicon{position:absolute;width:100%;font-size:17px;padding-left:0;padding-right:0} #top .avia_search_element .av-submit-hasicon img{height:100%;width:auto;max-width:100px} .avia-mozilla #top .avia_search_element .av-submit-hasicon img{min-width:60px} #top .avia_search_element form.ajax_loading_now #searchsubmit{margin-right:0;padding-right:0} #top .avia_search_element #s{padding:0 1.5em;height:40px;line-height:40px;border:0;position:relative;z-index:1} #top .avia_search_element #s::-ms-clear{display:none} #top .avia_search_element #s::placeholder{color:inherit} #top .avia_search_element .av-search-icon{position:absolute;left:1.5em;top:50%;transform:translateY(-50%);z-index:2} #top .avia_search_element #s.av-input-hasicon{padding-left:3em} #top .avia_search_element .ajax_load{background-color:inherit;position:absolute;right:0;width:60px;z-index:99999} #top .avia_search_element .av-submit-hasicon .ajax_load{width:100%} #top .avia_search_element .ajax_load .ajax_load_inner{background:transparent;position:absolute;left:50%;top:50%;border-top:2px solid rgba(255,255,255,0.4);border-right:2px solid rgba(255,255,255,0.4);border-bottom:2px solid rgba(255,255,255,0.4);border-left:2px solid #fff;-webkit-animation:av-rotate 0.8s infinite linear;animation:av-rotate 0.8s infinite linear;height:24px;width:24px;border-radius:100%;margin-top:-12px;margin-left:-12px;z-index:20;opacity:1} @-webkit-keyframes av-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)} 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes av-rotate{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)} 100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}} .avia_search_element .av_searchform_element_results{margin-top:20px} .av_searchform_element_results{position:relative} body > .av_searchform_element_results{position:absolute;z-index:500;width:100%;background-color:#fff;box-shadow:0 16px 30px rgba(0,0,0,0.2);overflow:hidden;-webkit-backface-visibility:hidden} body#top > div.av_searchform_element_results .av_ajax_search_entry{display:table} body#top > div.av_searchform_element_results .av_ajax_search_entry.av_ajax_search_entry_view_all{display:block} .main_color .av_searchform_element_results .av_ajax_search_image,.main_color.av_searchform_element_results .av_ajax_search_image{background-color:rgba(0,0,0,0.1);display:table-cell} .main_color .av_searchform_element_results .av_ajax_search_entry,.main_color.av_searchform_element_results .av_ajax_search_entry{border-color:rgba(0,0,0,0.1)} #top div .av_searchform_element_results .av_ajax_search_entry{display:table;width:100%} .main_color .av_searchform_element_results .av_ajax_search_content,.main_color.av_searchform_element_results .av_ajax_search_content{display:table-cell;vertical-align:middle;width:100%} .av_searchform_element_results h4:first-child{padding-top:2em} .av_searchform_element_results .av_ajax_search_title{text-transform:none}\";}s:24:\"avia-module-timeline-css\";a:6:{s:4:\"name\";s:20:\"avia-module-timeline\";s:3:\"url\";s:110:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css\";s:4:\"path\";s:85:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.css\";s:5:\"print\";b:0;s:4:\"type\";s:3:\"css\";s:12:\"file_content\";s:23949:\".avia-timeline-container{clear:both;position:relative} ul.avia-timeline{margin:0;padding:0} .avia-timeline .av-milestone-icon-wrap{position:relative;overflow:hidden;text-decoration:none} .av-milestone-content p:last-child{margin-bottom:0} .avia-timeline .milestone_icon{display:block;height:90px;width:90px;line-height:90px;font-size:30px;text-align:center;border-radius:100%;position:relative;overflow:hidden;z-index:5;color:#fff;box-sizing:border-box} .avia-timeline .milestone_icon.milestone-icon-hasborder{padding:2px} .avia-timeline .milestone_icon.milestone-icon-hasborder .milestone_inner{line-height:86px} .avia-timeline-boxshadow .av-milestone-contentbox{padding:2em;background-color:#fff;position:relative} .avia-timeline-boxshadow .av-milestone-contentbox:after{content:\"\";position:absolute;width:1em;height:1em;left:0;top:2.5em;background-color:inherit;box-sizing:border-box;transform-origin:top left;transform:rotate(45deg) translateY(-50%) translateX(-50%);box-shadow:0 0 15px rgba(0,0,0,0.15);z-index:-1} .avia-timeline-boxshadow .av-milestone-contentbox:before{content:\"\";position:absolute;width:1em;height:1em;left:0;top:2.5em;background-color:inherit;box-sizing:border-box;transform-origin:top left;transform:rotate(45deg) translateY(-50%) translateX(-50%)} .avia-timeline-boxshadow .av-milestone-contentbox{box-shadow:0 0 15px rgba(0,0,0,0.15)} .avia-timeline .milestone_inner{height:100%;width:100%;display:block;background-position:center;background-size:cover;border-radius:100%;background-color:#fff} .avia-timeline .av-milestone-date{overflow:hidden;font-size:25px;position:relative} .avia-timeline .av-milestone-date > a,.avia-timeline .av-milestone-date > strong{display:block;position:relative} #top .av-milestone-date a:hover{text-decoration:underline} #top .avia-timeline .av-milestone-content-wrap .entry-content-header h4 a:hover{text-decoration:underline} ul.avia-timeline-vertical{display:table;width:100%} ul.avia-timeline-vertical li{display:table-row;margin:0;padding:0} .avia-timeline-vertical .av-milestone-date,.avia-timeline-vertical .av-milestone-icon-wrap,.avia-timeline-vertical .av-milestone-content-wrap{display:table-cell} .avia-timeline-vertical .av-milestone-date{padding:0 60px 0 0;text-align:right} .avia-timeline-vertical .av-milestone-date span{display:block;zoom:1;position:absolute;width:30px;height:1px;right:-60px;top:0.5em} .avia-timeline-vertical .av-milestone-date span:before{content:\"\";display:block;position:absolute;width:5px;height:5px;border-radius:100%;background-color:inherit;margin-top:-2px} .avia-timeline-vertical .av-milestone-icon-wrap{padding:30px 0 30px 0;width:90px} .avia-timeline-vertical .av-milestone-content-wrap{padding:30px 0 30px 60px} .avia-timeline-vertical li.av-milestone-valign-middle .av-milestone-date,.avia-timeline-vertical li.av-milestone-valign-middle .av-milestone-icon-wrap,.avia-timeline-vertical li.av-milestone-valign-middle .av-milestone-content-wrap{vertical-align:middle} .avia-timeline-vertical.avia-timeline-boxshadow li.av-milestone-valign-middle .av-milestone-contentbox:before,.avia-timeline-vertical.avia-timeline-boxshadow li.av-milestone-valign-middle .av-milestone-contentbox:after{top:50%} .avia-timeline-vertical li.av-milestone-valign-middle .av-milestone-indicator{top:50%} .avia-timeline-vertical li.av-milestone-valign-middle .av-milestone-content-wrap p:last-child{margin-bottom:0} .avia-timeline-vertical .av-milestone-icon-wrap:after{content:\"\";height:1000%;width:1px;position:absolute;top:0;left:50%;border-left-style:dashed;border-left-width:1px} .avia-timeline-vertical.avia-timeline-animate .av-milestone-icon-wrap:after{opacity:0} ul.avia-timeline-vertical li:first-child .av-milestone-icon-wrap:after{top:30px} ul.avia-timeline-vertical li.av-milestone-valign-middle:first-child .av-milestone-icon-wrap:after{top:50%} #av-admin-preview .avia-timeline-vertical .av-milestone-icon-wrap:after{opacity:1} ul.avia-timeline-vertical li:last-child .av-milestone-icon-wrap:after{height:60px;top:0} ul.avia-timeline-vertical li.av-milestone-valign-middle:last-child .av-milestone-icon-wrap:after{height:50%} .avia-msie ul.avia-timeline-vertical li.av-milestone-valign-middle:last-child .av-milestone-icon-wrap:after{height:inherit} .avia_transform .avia-timeline-vertical.avia-timeline-animate .milestone_icon{opacity:0.1;-webkit-transform:scale(0.5);-ms-transform:scale(0.5);transform:scale(0.5)} .avia_transform .avia-timeline-vertical .milestone_icon.milestone_bullet_arrow{border-bottom-right-radius:0;border-bottom-left-radius:100px;border-top-right-radius:100px;border-top-left-radius:100px;-webkit-transform:scale(0.5) rotate(45deg);-ms-transform:scale(0.5) rotate(45deg);transform:scale(0.5) rotate(45deg)} .avia-timeline-vertical .milestone_icon.milestone_bullet_arrow{border-bottom-right-radius:0;border-bottom-left-radius:100px;border-top-right-radius:100px;border-top-left-radius:100px;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)} .avia-timeline-vertical .milestone_icon.milestone_bullet_arrow .milestone_number{display:block;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)} .avia_transform .avia-timeline-vertical.avia-timeline-animate .av-milestone-indicator{opacity:0.1} .avia_transform .avia-timeline-vertical .avia_start_animation .milestone_icon{-webkit-animation:avia_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:avia_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1);-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1} .avia_transform .avia-timeline-vertical .avia_start_animation .milestone_icon.milestone_bullet_arrow{-webkit-transform:scale(1) rotate(45deg);-ms-transform:scale(1) rotate(45deg);transform:scale(1) rotate(45deg)} .avia_transform .avia-timeline-vertical.avia-timeline-animate .avia_start_animation .milestone_icon,.avia_transform .avia-timeline-vertical.avia-timeline-animate .avia_start_animation .av-milestone-icon-wrap:after{-webkit-animation:avia_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:avia_appear 1s 1 cubic-bezier(0.175,0.885,0.320,1);-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1);opacity:1} .avia-timeline-vertical.av-milestone-placement-left .av-milestone-content-wrap{width:90%} .avia_transform .avia-timeline-vertical.av-milestone-placement-left.avia-timeline-animate .avia_start_animation .av-milestone-indicator{-webkit-animation:caption-right 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:caption-right 1s 1 cubic-bezier(0.175,0.885,0.320,1);opacity:1} .avia-timeline-vertical.av-milestone-placement-right .av-milestone-icon-wrap,.avia-timeline-vertical.av-milestone-placement-right .av-milestone-content-wrap{text-align:right} .avia-timeline-vertical.av-milestone-placement-right .av-milestone-content-wrap{padding:30px 60px 30px 0;width:90%} .avia-timeline-vertical.av-milestone-placement-right .av-milestone-date{padding:0 0 0 60px;text-align:left} .avia-timeline-vertical.av-milestone-placement-right li > .av-milestone-date:first-child{display:none} .avia-timeline-vertical.av-milestone-placement-right .av-milestone-date span{left:-60px;right:auto} .avia-timeline-vertical.av-milestone-placement-right .av-milestone-date span:before{right:0;left:auto} .avia_transform .avia-timeline-vertical.av-milestone-placement-right.avia-timeline-animate .avia_start_animation .av-milestone-indicator{-webkit-animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1);opacity:1} .avia-timeline-vertical.av-milestone-placement-right.avia-timeline-boxshadow .av-milestone-contentbox:after,.avia-timeline-vertical.av-milestone-placement-right.avia-timeline-boxshadow .av-milestone-contentbox:before{left:auto;right:-1em} .avia-timeline-vertical.av-milestone-placement-alternate .av-milestone-icon-wrap{width:90px;text-align:center} .avia-timeline-vertical.av-milestone-placement-alternate .av-milestone-date{width:50%} .avia-timeline-vertical.av-milestone-placement-alternate .av-milestone-content-wrap{width:50%} .avia-timeline-vertical.av-milestone-placement-alternate .av-milestone-icon{display:inline-block} .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-icon-wrap,.avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-content-wrap{text-align:right} .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-content-wrap{padding:30px 60px 30px 0} .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date{padding:0 0 0 60px;text-align:left} .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even > .av-milestone-date:first-child{display:none} .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date span{left:-60px;right:auto} .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date span:before{right:0;left:auto} .avia_transform .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-animate li.av-milestone-even.avia_start_animation .av-milestone-indicator{-webkit-animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1);opacity:1} .avia_transform .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-animate li.av-milestone-odd.avia_start_animation .av-milestone-indicator{-webkit-animation:caption-right 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:caption-right 1s 1 cubic-bezier(0.175,0.885,0.320,1);opacity:1} .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-contentbox:after,.avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-contentbox:before{left:auto;right:-1em} ul.avia-timeline-horizontal{width:100%;overflow:hidden;padding-bottom:2px} #av-admin-preview ul.avia-timeline-horizontal{display:block} ul.avia-timeline-horizontal li{display:inline-block;margin:0 0 0 -4px;padding:0;vertical-align:top} ul.avia-timeline-horizontal li:first-child{margin-left:0} .avia-slideshow-carousel ul{padding:15px 0 15px 0} #av-admin-preview ul.avia-timeline-horizontal li{display:none} #av-admin-preview ul.avia-timeline-horizontal li:first-child{display:block;width:100%} .avia-timeline-horizontal .av-milestone-icon-wrap{display:block} .avia-timeline-horizontal .milestone_icon.milestone_bullet_arrow{border-bottom-right-radius:0;border-bottom-left-radius:100px;border-top-right-radius:100px;border-top-left-radius:100px;-webkit-transform:rotate(-45deg);-ms-transform:rotate(-45deg);transform:rotate(-45deg)} .avia-timeline-horizontal .milestone_icon.milestone_bullet_arrow .milestone_number{display:block;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)} .avia-timeline-horizontal .av-milestone-icon-wrap:after{content:\"\";height:1px;width:100%;position:absolute;right:0;top:50%;border-top-style:dashed;border-top-width:1px} .avia-timeline-horizontal .av-milestone-date span{display:block;zoom:1;position:absolute;width:30px;height:1px;left:-65px;top:0.5em} .avia-timeline-horizontal .av-milestone-date span:before{content:\"\";display:block;position:absolute;width:5px;height:5px;right:0;border-radius:100%;background-color:inherit;margin-top:-2px} .avia-timeline-horizontal .av-milestone-date span:after{content:\"\";display:block;position:absolute;width:1px;height:500px;top:0;background-color:inherit} .avia-timeline-horizontal .av-milestone-content-wrap{position:relative} .avia-timeline-horizontal .av-milestone-content-wrap footer{display:block;position:absolute;width:1px;height:100%;top:0;left:45px} .avia-timeline-horizontal .av-milestone-content-wrap footer:after{content:\"\";display:block;position:absolute;width:5px;height:5px;left:0;bottom:0;border-radius:100%;background-color:inherit;margin-left:-2px} .avia-timeline-horizontal.avia-timeline-boxshadow .av-milestone-content-wrap footer{display:none} .avia-timeline-horizontal.avia-timeline-boxshadow .av-milestone-contentbox:after,.avia-timeline-horizontal.avia-timeline-boxshadow .av-milestone-contentbox:before{top:0;bottom:auto;margin-top:0;left:45px} .av-timeline-nav{position:absolute;right:0;top:0;padding-top:70px} #av-admin-preview .av-timeline-nav{display:none} .av-timeline-nav a{display:inline-block;position:relative;font-size:0px;overflow:hidden;width:40px;height:40px;line-height:40px;border-radius:100%;text-align:center;text-decoration:none;cursor:pointer;margin:0 0 0 2px;-webkit-transition:all 0.2s ease-in;-o-transition:all 0.2s ease-in;transition:all 0.2s ease-in;background-color:#fff} .av-timeline-nav a span{display:block;width:40px;height:40px;line-height:40px;border-radius:100%;color:#fff} .av-timeline-nav a span:hover{color:#fff} .av-timeline-nav a span:before{display:block;width:100%;height:100%;font-size:18px} .av-timeline-nav a span{opacity:0.5;transition:all 0.2s ease-in} .av-timeline-nav a:hover span{opacity:1} .avia-timeline-horizontal.av-milestone-placement-alternate .av-milestone-date{margin:0;padding:30px 0 30px 110px} .avia-timeline-horizontal.av-milestone-placement-alternate .av-milestone-content-wrap{padding:30px 0 10px 110px} .avia-timeline-horizontal.av-milestone-placement-alternate li.av-milestone-even .av-milestone-content-wrap{padding:0 0 30px 110px} .avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow .av-milestone-content-wrap{padding:30px 60px 15px 0} .avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-content-wrap{padding:0 60px 30px 0} .avia-timeline-horizontal.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date span:after{top:auto;bottom:0} .avia-timeline-horizontal.av-milestone-placement-alternate li.av-milestone-odd .av-milestone-date{padding:0 30px 30px 110px} .avia-timeline-horizontal.av-milestone-placement-alternate li.av-milestone-even .av-milestone-content-wrap footer:after{bottom:auto;top:0} .avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-contentbox:after,.avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-contentbox:before{bottom:0;top:auto;margin-top:0;transform:rotate(45deg) translateY(50%) translateX(-50%);transform-origin:bottom left} .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-date{margin:0;padding:0 30px 30px 110px} .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-date > a,.avia-timeline-horizontal.av-milestone-placement-top .av-milestone-date > strong{display:table-cell;vertical-align:bottom} .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-content-wrap{padding:30px 15px 10px 110px} .avia-timeline-horizontal.av-milestone-placement-top.avia-timeline-boxshadow .av-milestone-content-wrap{padding:30px 60px 15px 0} .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-date{margin:0;padding:30px 30px 0 110px} .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-date span:before{right:0;margin-top:-2px} .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-date span:after{top:auto;bottom:0} .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-content-wrap{padding:0 15px 30px 110px} .avia-timeline-horizontal.av-milestone-placement-bottom.avia-timeline-boxshadow .av-milestone-content-wrap{padding:0 60px 30px 0} .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-content-wrap footer:after{bottom:auto;top:0} .avia-timeline-horizontal.av-milestone-placement-bottom.avia-timeline-boxshadow .av-milestone-contentbox:after,.avia-timeline-horizontal.av-milestone-placement-bottom.avia-timeline-boxshadow .av-milestone-contentbox:before{bottom:0;top:auto;margin-top:0;transform:rotate(45deg) translateY(50%) translateX(-50%);transform-origin:bottom left} @media only screen and (max-width:989px){.av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-contentbox:after,.av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-contentbox:before{left:2em;right:auto} .av-no-preview ul.avia-timeline-vertical.avia-timeline-boxshadow .av-milestone-contentbox:before,.av-no-preview ul.avia-timeline-vertical.avia-timeline-boxshadow .av-milestone-contentbox:after{left:2em;top:0;margin-top:0} .av-no-preview .avia-timeline-container,.av-no-preview ul.avia-timeline-vertical,.av-no-preview ul.avia-timeline-vertical li,.av-no-preview .avia-timeline-vertical .av-milestone-date,.av-no-preview .avia-timeline-vertical .av-milestone-icon-wrap,.av-no-preview .avia-timeline-vertical .av-milestone-content-wrap{display:block} .av-no-preview ul.avia-timeline-vertical li{display:block;overflow:hidden;position:relative;padding:0 0 0 90px} .av-no-preview .avia-timeline-vertical .av-milestone-date{display:block;white-space:normal;padding:33px 0 30px 50px;margin:0;position:relative;text-align:left} .av-no-preview .avia-timeline-vertical .av-milestone-icon-wrap{overflow:visible;position:absolute;left:0;top:0;padding-top:0} .av-no-preview .avia-timeline-vertical .av-milestone-icon-wrap:after{top:0} .av-no-preview .avia-timeline-vertical .av-milestone-date a{white-space:normal;position:relative;display:block;overflow:visible} .av-no-preview .avia-timeline-vertical .av-milestone-date span{left:-50px;right:auto} .av-no-preview .avia-timeline-vertical .av-milestone-date span:before{right:0;left:auto} .av-no-preview .avia-timeline-vertical .av-milestone-content-wrap{padding:0 0 60px 50px} .av-no-preview .avia-timeline-vertical.avia-timeline-boxshadow .av-milestone-content-wrap{padding:0 15px 60px 50px} .av-no-preview .avia-timeline-vertical.av-milestone-placement-left .av-milestone-content-wrap{width:100%} .av-no-preview .avia_transform .avia-timeline-vertical.av-milestone-placement-left.avia-timeline-animate .avia_start_animation .av-milestone-indicator{-webkit-animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1)} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right .av-milestone-content-wrap{text-align:left;padding:0 0 60px 50px;width:100%} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right.avia-timeline-boxshadow .av-milestone-content-wrap{padding:0 15px 60px 50px} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right .av-milestone-date{padding:33px 0 30px 50px;display:none} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right li .av-milestone-date:first-child{display:block} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right .av-milestone-date span{left:-50px} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate .av-milestone-date{width:100%} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate .av-milestone-content-wrap{width:100%} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-content-wrap{padding:0 0 60px 50px;text-align:left} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-content-wrap{padding:0 15px 60px 50px} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date{padding:33px 0 30px 50px;display:none} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even > .av-milestone-date:first-child{display:block} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date span{left:-50px} .av-no-preview .avia_transform .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-animate li.av-milestone-odd.avia_start_animation .av-milestone-indicator{-webkit-animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1);animation:caption-left 1s 1 cubic-bezier(0.175,0.885,0.320,1)}} @media only screen and (max-width:767px){.av-no-preview .avia-timeline .milestone_icon{height:64px;width:64px;line-height:64px} .av-no-preview .avia-timeline .milestone_icon.milestone-icon-hasborder .milestone_inner{line-height:60px} .av-no-preview .avia-timeline-vertical .av-milestone-date{padding:21px 0 30px 0} .av-no-preview .avia-timeline-vertical .av-milestone-date span{display:none} .av-no-preview .avia-timeline-vertical .av-milestone-content-wrap{padding:0 0 60px 0} .av-no-preview .avia-timeline-vertical.avia-timeline-boxshadow .av-milestone-content-wrap{padding:0 15px 60px 0} .av-no-preview .avia-timeline-vertical .av-milestone-icon-wrap:after{left:32px} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right .av-milestone-date{padding:21px 0 30px 0} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right .av-milestone-content-wrap{padding:0 0 60px 0} .av-no-preview .avia-timeline-vertical.av-milestone-placement-right.avia-timeline-boxshadow .av-milestone-content-wrap{padding:0 15px 60px 0} .av-no-preview .avia-timeline-vertical.avia-timeline-v-center .av-milestone-date{padding-top:21px} .av-no-preview .avia-timeline-horizontal.avia-timeline-boxshadow .av-milestone-contentbox:after,.av-no-preview .avia-timeline-horizontal.avia-timeline-boxshadow .av-milestone-contentbox:before{left:30px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-date{padding:0 0 30px 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-top .av-milestone-content-wrap{padding:30px 10px 10px 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-top.avia-timeline-boxshadow .av-milestone-content-wrap{padding:30px 30px 30px 0px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-date{padding:30px 0 0 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-bottom .av-milestone-content-wrap{padding:0 0 30px 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-bottom.avia-timeline-boxshadow .av-milestone-content-wrap{padding:0 30px 30px 0} .av-no-preview .avia-timeline-horizontal .av-milestone-content-wrap footer{left:32px} .av-no-preview .av-timeline-nav{padding-top:57px} .av-no-preview .avia-timeline-horizontal .av-milestone-date span{left:-58px} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-date{padding:21px 0 30px 0} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate li.av-milestone-even .av-milestone-content-wrap{padding:0 0 60px 0} .av-no-preview .avia-timeline-vertical.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-content-wrap{padding:0 15px 60px 0} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-alternate .av-milestone-date{padding:30px 0 0 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-alternate li.av-milestone-odd .av-milestone-date{padding:0 0 30px 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-alternate .av-milestone-content-wrap{padding:0 0 30px 90px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow .av-milestone-content-wrap{padding:30px 30px 30px 0px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-odd .av-milestone-content-wrap{padding:30px 30px 30px 0px} .av-no-preview .avia-timeline-horizontal.av-milestone-placement-alternate.avia-timeline-boxshadow li.av-milestone-even .av-milestone-content-wrap{padding:0 10px 30px 10px}}\";}}','yes'),(53625,'aviaAsset_avia-merged-styles','a:2:{s:67:\"avia-merged-styles-c6f8e8229d67cf7d2a04de3b9345eb47---60a41f4906de1\";b:1;s:67:\"avia-merged-styles-cef87c2cca989c1fd4aed234d7e697f1---622a56bf9ddfa\";b:1;}','yes'); INSERT INTO `wp_options` VALUES (53626,'aviaAsset_js_filecontent','a:37:{s:14:\"avia-compat-js\";a:6:{s:4:\"name\";s:11:\"avia-compat\";s:3:\"url\";s:67:\"https://solsculpting.com/wp-content/themes/enfold/js/avia-compat.js\";s:4:\"path\";s:42:\"wp-content/themes/enfold/js/avia-compat.js\";s:5:\"print\";b:1;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1216:\"\'use strict\';var avia_is_mobile=!1;if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)&&\'ontouchstart\' in document.documentElement){avia_is_mobile=!0;document.documentElement.className+=\' avia_mobile \'}\nelse{document.documentElement.className+=\' avia_desktop \'};document.documentElement.className+=\' js_active \';(function(){var e=[\'-webkit-\',\'-moz-\',\'-ms-\',\'\'],n=\'\';for(var t in e){if(e[t]+\'transform\' in document.documentElement.style){document.documentElement.className+=\' avia_transform \';n=e[t]+\'transform\'};if(e[t]+\'perspective\' in document.documentElement.style)document.documentElement.className+=\' avia_transform3d \'};if(typeof document.getElementsByClassName==\'function\'&&typeof document.documentElement.getBoundingClientRect==\'function\'&&avia_is_mobile==!1){if(n&&window.innerHeight>0){setTimeout(function(){var e=0,o={},a=0,t=document.getElementsByClassName(\'av-parallax\'),i=window.pageYOffset||document.documentElement.scrollTop;for(e=0;e<t.length;e++){t[e].style.top=\'0px\';o=t[e].getBoundingClientRect();a=Math.ceil((window.innerHeight+i-o.top)*0.3);t[e].style[n]=\'translate(0px, \'+a+\'px)\';t[e].style.top=\'auto\';t[e].className+=\' enabled-parallax \'}},50)}}})();\";}s:22:\"avia-woocommerce-js-js\";a:6:{s:4:\"name\";s:19:\"avia-woocommerce-js\";s:3:\"url\";s:87:\"https://solsculpting.com/wp-content/themes/enfold/config-woocommerce/woocommerce-mod.js\";s:4:\"path\";s:62:\"wp-content/themes/enfold/config-woocommerce/woocommerce-mod.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:5620:\";jQuery(document).ready(function(t){cart_improvement_functions();cart_dropdown_improvement();track_ajax_add_to_cart();if(jQuery.fn.avia_sc_slider){jQuery(\'.shop_slider_yes ul\').avia_sc_slider({appendControlls:!1,group:!0,slide:\'.product\',arrowControll:!0,autorotationInterval:\'parent\'})};jQuery(\'body.single-product\').on(\'click\',\'.single-product-main-image .avia-wc-30-product-gallery-lightbox\',function(e){e.preventDefault();var i=t(this),r=i.parents(\'.single-product-main-image\'),a=r.find(\'.flex-active-slide a.lightbox-added\').eq(0);if(a.length==0){a=r.find(\'a.lightbox-added\').eq(0)};a.trigger(\'click\')});product_add_to_cart_click();function e(){jQuery(\'.quantity input[type=number]\').each(function(){var a=t(this),r=parseFloat(a.attr(\'max\')),i=parseFloat(a.attr(\'min\')),o=parseInt(a.attr(\'step\'),10),e=jQuery(jQuery(\'<div />\').append(a.clone(!0)).html().replace(\'number\',\'text\')).insertAfter(a);a.remove();setTimeout(function(){if(e.next(\'.plus\').length===0){var t=jQuery(\'<input type=\"button\" value=\"-\" class=\"minus\">\').insertBefore(e),a=jQuery(\'<input type=\"button\" value=\"+\" class=\"plus\">\').insertAfter(e);t.on(\'click\',function(){var t=parseInt(e.val(),10)-o;t=t<0?0:t;t=t<i?i:t;e.val(t).trigger(\'change\')});a.on(\'click\',function(){var t=parseInt(e.val(),10)+o;t=t>r?r:t;e.val(t).trigger(\'change\')})}},10)})};e();t(document).on(\'updated_cart_totals\',e);setTimeout(first_load_amount,10);t(\'body\').on(\'added_to_cart\',update_cart_dropdown);t(\'body\').on(\'wc_fragments_refreshed\',avia_cart_dropdown_changed);jQuery(\'.avia_mobile .sort-param\').on(\'touchstart\',function(){})});function avia_cart_dropdown_changed(){var a=jQuery(\'html\'),r=jQuery(\'body\').is(\'.woocommerce-cart\'),e=jQuery(\'.cart_dropdown .av-cart-counter\'),i=jQuery(\'.cart_dropdown\'),t=0;if(!r){return};i.find(\'.cart_list li .quantity\').each(function(){t+=parseInt(jQuery(this).text(),10)});if(t===0){e.removeClass(\'av-active-counter\').text(t);setTimeout(function(){a.removeClass(\'html_visible_cart\')},200)}\nelse if((e.length>0)&&(t>0)){setTimeout(function(){e.addClass(\'av-active-counter\').text(t);a.addClass(\'html_visible_cart\')},10)};return};function update_cart_dropdown(t){var d=jQuery(\'html\'),r=jQuery(\'.cart_dropdown\'),i=jQuery(\'.cart_dropdown .av-cart-counter\'),c=r.find(\'.empty\'),u=r.data(\'success\'),n=jQuery.extend({name:\'Product\',price:\'\',image:\'\'},avia_clicked_product),o=0;if((c.length>0)&&(\'undefined\'!==typeof t)){d.addClass(\'html_visible_cart\')};if(typeof t!==\'undefined\'){var a=jQuery(\'.html_header_sticky #header_main .cart_dropdown_first, .html_header_sidebar #header_main .cart_dropdown_first\'),s=jQuery(\'.added_to_cart_notification\').trigger(\'avia_hide\'),e=jQuery(\'<div class=\\\'added_to_cart_notification\\\'><span class=\\\'avia-arrow\\\'></span><div class=\\\'added-product-text\\\'><strong>\"\'+n.name+\'\"</strong> \'+u+\'</div> \'+n.image+\'</div>\').css(\'opacity\',0);if(!a.length)a=\'body\';e.on(\'mouseenter avia_hide\',function(){e.animate({opacity:0,top:parseInt(e.css(\'top\'),10)+15},function(){e.remove()})}).appendTo(a).animate({opacity:1},500);setTimeout(function(){e.trigger(\'avia_hide\')},2500)};setTimeout(function(){r.find(\'.cart_list li .quantity\').each(function(){o+=parseInt(jQuery(this).text(),10)});if((i.length>0)&&(o>0)){i.removeClass(\'av-active-counter\');setTimeout(function(){i.addClass(\'av-active-counter\').text(o)},10)}},300)};var avia_clicked_product={};function track_ajax_add_to_cart(){jQuery(\'body\').on(\'click\',\'.add_to_cart_button\',function(a){var e=jQuery(this).parents(\'.product\').eq(0),t={};t.name=e.find(\'.woocommerce-loop-product__title\').text();t.image=e.find(\'.thumbnail_container img\');t.price=e.find(\'.price .amount\').last().text();if(t.name===\'\')t.name=e.find(\'.inner_product_header h3\').text();if(e.length===0){e=jQuery(this);t.name=e.find(\'.av-cart-update-title\').text();t.image=e.find(\'.av-cart-update-image\');t.price=e.find(\'.av-cart-update-price\').text()};if(t.image.length){t.image=\'<img class=\\\'added-product-image\\\' src=\\\'\'+t.image.get(0).src+\'\\\' title=\\\'\\\' alt=\\\'\\\' />\'}\nelse{t.image=\'\'};avia_clicked_product=t})};function first_load_amount(){var e=0,r=15,i=500,a=function(){var t=jQuery(\'.cart_dropdown .dropdown_widget_cart:eq(0) .total .amount\');if(t.length){update_cart_dropdown()}\nelse{e++;if(e<r){setTimeout(a,i)}}};a();if(jQuery(\'.av-display-cart-on-load\').length&&jQuery(\'.woocommerce-message\').length===0){var t=jQuery(\'.cart_dropdown\');setTimeout(function(){t.trigger(\'mouseenter\')},500);setTimeout(function(){t.trigger(\'mouseleave\')},2500)}};function product_add_to_cart_click(){var e=jQuery(\'body\'),a=jQuery(\'.av-catalogue-item\'),t=!1;if(a.length)t=jQuery.avia_utilities.loading();e.on(\'click\',\'.add_to_cart_button\',function(e){var r=jQuery(this);r.parents(\'.product:eq(0)\').addClass(\'adding-to-cart-loading\').removeClass(\'added-to-cart-check\');if(r.is(\'.av-catalogue-item\')){t.show()};var a=jQuery(\'html\');if(!a.hasClass(\'html_visible_cart\')){a.addClass(\'html_visible_cart\')}});e.on(\'added_to_cart\',function(){jQuery(\'.adding-to-cart-loading\').removeClass(\'adding-to-cart-loading\').addClass(\'added-to-cart-check\');if(t!==!1){t.hide()}})};function cart_improvement_functions(){jQuery(\'.product_type_downloadable, .product_type_virtual\').addClass(\'product_type_simple\');jQuery(\'.woocommerce-tabs .tabs a\').addClass(\'no-scroll\');jQuery(\'.single-product-main-image>.images a\').attr(\'rel\',\'product_images[grouped]\')};function cart_dropdown_improvement(){var e=jQuery(\'.cart_dropdown\'),t=e.find(\'.dropdown_widget\').css({display:\'none\',opacity:0});e.hover(function(){t.css({display:\'block\'}).stop().animate({opacity:1})},function(){t.stop().animate({opacity:0},function(){t.css({display:\'none\'})})})};\";}s:15:\"avia-default-js\";a:6:{s:4:\"name\";s:12:\"avia-default\";s:3:\"url\";s:60:\"https://solsculpting.com/wp-content/themes/enfold/js/avia.js\";s:4:\"path\";s:35:\"wp-content/themes/enfold/js/avia.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:38718:\"(function(t){\'use strict\';t(document).ready(function(){var e=o(\'html\');t.avia_utilities=t.avia_utilities||{};if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)&&\'ontouchstart\' in document.documentElement){t.avia_utilities.isMobile=!0}\nelse{t.avia_utilities.isMobile=!1};c();l();i();new t.AviaTooltip({\'class\':\'avia-search-tooltip\',data:\'avia-search-tooltip\',event:\'click\',position:\'bottom\',scope:\'body\',attach:\'element\',within_screen:!0});new t.AviaTooltip({\'class\':\'avia-related-tooltip\',data:\'avia-related-tooltip\',scope:\'.related_posts, .av-share-box\',attach:\'element\',delay:0});new t.AviaAjaxSearch({scope:\'#header, .avia_search_element\'});if(t.fn.avia_iso_sort)t(\'.grid-sort-container\').avia_iso_sort();a();t.avia_utilities.avia_ajax_call()});t.avia_utilities=t.avia_utilities||{};t.avia_utilities.avia_ajax_call=function(e){if(typeof e==\'undefined\'){e=\'body\'};t(\'a.avianolink\').on(\'click\',function(t){t.preventDefault()});t(\'a.aviablank\').attr(\'target\',\'_blank\');if(t.fn.avia_activate_lightbox){t(e).avia_activate_lightbox()};if(t.fn.avia_scrollspy){if(e==\'body\'){t(\'body\').avia_scrollspy({target:\'.main_menu .menu li > a\'})}\nelse{t(\'body\').avia_scrollspy(\'refresh\')}};if(t.fn.avia_smoothscroll)t(\'a[href*=\"#\"]\',e).avia_smoothscroll(e);r(e);n(e);s(e);if(t.fn.avia_html5_activation&&t.fn.mediaelementplayer)t(\'.avia_video, .avia_audio\',e).avia_html5_activation({ratio:\'16:9\'})};t.avia_utilities.log=function(t,e,i){if(typeof console==\'undefined\'){return};if(typeof e==\'undefined\'){e=\'log\'};e=\'AVIA-\'+e.toUpperCase();console.log(\'[\'+e+\'] \'+t);if(typeof i!=\'undefined\')console.log(i)};function i(){var n=t(window),i=t(\'html\').is(\'.html_header_sidebar\')?\'#main\':\'#header\',a=t(i),s=a.parents(\'div:eq(0)\'),r=t(i+\' .container:first\'),e=\'\',o=function(){var i=\'\',o=Math.round(r.width()),n=Math.round(a.width()),l=Math.round(s.width());i+=\' #header .three.units{width:\'+(o*0.25)+\'px;}\';i+=\' #header .six.units{width:\'+(o*0.50)+\'px;}\';i+=\' #header .nine.units{width:\'+(o*0.75)+\'px;}\';i+=\' #header .twelve.units{width:\'+(o)+\'px;}\';i+=\' .av-framed-box .av-layout-tab-inner .container{width:\'+(l)+\'px;}\';i+=\' .html_header_sidebar .av-layout-tab-inner .container{width:\'+(n)+\'px;}\';i+=\' .boxed .av-layout-tab-inner .container{width:\'+(n)+\'px;}\';i+=\' .av-framed-box#top .av-submenu-container{width:\'+(l)+\'px;}\';try{e.text(i)}catch(c){e.remove();e=t(\'<style type=\\\'text/css\\\' id=\\\'av-browser-width-calc\\\'>\'+i+\'</style>\').appendTo(\'head:first\')}};if(t(\'.avia_mega_div\').length>0||t(\'.av-layout-tab-inner\').length>0||t(\'.av-submenu-container\').length>0){e=t(\'<style type=\\\'text/css\\\' id=\\\'av-browser-width-calc\\\'></style>\').appendTo(\'head:first\');n.on(\'debouncedresize\',o);o()}};function a(){var e=t(\'.sidebar_shadow#top #main .sidebar\'),i=t(\'.sidebar_shadow .content\');if(e.height()>=i.height()){e.addClass(\'av-enable-shadow\')}\nelse{i.addClass(\'av-enable-shadow\')}};function e(e,a){var i=this,s=t.proxy(i.process,i),o=t.proxy(i.refresh,i),r=t(e).is(\'body\')?t(window):t(e),n;i.$body=t(\'body\');i.$win=t(window);i.options=t.extend({},t.fn.avia_scrollspy.defaults,a);i.selector=(i.options.target||((n=t(e).attr(\'href\'))&&n.replace(/.*(?=#[^\\s]+$)/,\'\'))||\'\');i.activation_true=!1;if(i.$body.find(i.selector+\'[href*=\\\'#\\\']\').length){i.$scrollElement=r.on(\'scroll.scroll-spy.data-api\',s);i.$win.on(\'av-height-change\',o);i.$body.on(\'av_resize_finished\',o);i.activation_true=!0;i.checkFirst();setTimeout(function(){i.refresh();i.process()},100)}};e.prototype={constructor:e,checkFirst:function(){var t=window.location.href.split(\'#\')[0],e=this.$body.find(this.selector+\'[href=\\\'\'+t+\'\\\']\').attr(\'href\',t+\'#top\')},refresh:function(){if(!this.activation_true)return;var e=this,i;this.offsets=t([]);this.targets=t([]);i=this.$body.find(this.selector).map(function(){var o=t(this),n=o.data(\'target\')||o.attr(\'href\'),i=this.hash,i=i.replace(/\\//g,\'\'),a=/^#\\w/.test(i)&&t(i);return(a&&a.length&&[[a.position().top+(!t.isWindow(e.$scrollElement.get(0))&&e.$scrollElement.scrollTop()),n]])||null}).sort(function(t,e){return t[0]-e[0]}).each(function(){e.offsets.push(this[0]);e.targets.push(this[1])})},process:function(){if(!this.offsets)return;if(isNaN(this.options.offset))this.options.offset=0;var i=this.$scrollElement.scrollTop()+this.options.offset,n=this.$scrollElement[0].scrollHeight||this.$body[0].scrollHeight,s=n-this.$scrollElement.height(),e=this.offsets,a=this.targets,o=this.activeTarget,t;if(i>=s){return o!=(t=a.last()[0])&&this.activate(t)};for(t=e.length;t--;){o!=a[t]&&i>=e[t]&&(!e[t+1]||i<=e[t+1])&&this.activate(a[t])}},activate:function(e){var i,a;this.activeTarget=e;t(this.selector).parent(\'.\'+this.options.applyClass).removeClass(this.options.applyClass);a=this.selector+\'[data-target=\"\'+e+\'\"],\'+this.selector+\'[href=\"\'+e+\'\"]\';i=t(a).parent(\'li\').addClass(this.options.applyClass);if(i.parent(\'.sub-menu\').length){i=i.closest(\'li.dropdown_ul_available\').addClass(this.options.applyClass)};i.trigger(\'activate\')}};t.fn.avia_scrollspy=function(i){return this.each(function(){var o=t(this),a=o.data(\'scrollspy\'),n=typeof i==\'object\'&&i;if(!a)o.data(\'scrollspy\',(a=new e(this,n)));if(typeof i==\'string\')a[i]()})};t.fn.avia_scrollspy.Constructor=e;t.fn.avia_scrollspy.calc_offset=function(){var e=(parseInt(t(\'.html_header_sticky #main\').data(\'scroll-offset\'),10))||0,i=(t(\'.html_header_sticky:not(.html_top_nav_header) #header_main_alternate\').outerHeight())||0,a=(t(\'.html_header_sticky.html_header_unstick_top_disabled #header_meta\').outerHeight())||0,o=1,n=parseInt(t(\'html\').css(\'margin-top\'),10)||0,s=parseInt(t(\'.av-frame-top \').outerHeight(),10)||0;return e+i+a+o+n+s};t.fn.avia_scrollspy.defaults={offset:t.fn.avia_scrollspy.calc_offset(),applyClass:\'current-menu-item\'};function o(e){var i={},s=function(t){t=t.toLowerCase();var e=/(edge)\\/([\\w.]+)/.exec(t)||/(opr)[\\/]([\\w.]+)/.exec(t)||/(chrome)[ \\/]([\\w.]+)/.exec(t)||/(iemobile)[\\/]([\\w.]+)/.exec(t)||/(version)(applewebkit)[ \\/]([\\w.]+).*(safari)[ \\/]([\\w.]+)/.exec(t)||/(webkit)[ \\/]([\\w.]+).*(version)[ \\/]([\\w.]+).*(safari)[ \\/]([\\w.]+)/.exec(t)||/(webkit)[ \\/]([\\w.]+)/.exec(t)||/(opera)(?:.*version|)[ \\/]([\\w.]+)/.exec(t)||/(msie) ([\\w.]+)/.exec(t)||t.indexOf(\'trident\')>=0&&/(rv)(?::| )([\\w.]+)/.exec(t)||t.indexOf(\'compatible\')<0&&/(mozilla)(?:.*? rv:([\\w.]+)|)/.exec(t)||[];return{browser:e[5]||e[3]||e[1]||\'\',version:e[2]||e[4]||\'0\',versionNumber:e[4]||e[2]||\'0\'}};var o=s(navigator.userAgent);if(o.browser){i.browser=o.browser;i[o.browser]=!0;i.version=o.version};if(i.chrome){i.webkit=!0}\nelse if(i.webkit){i.safari=!0};if(typeof(i)!==\'undefined\'){var a=\'\',n=i.version?parseInt(i.version):\'\';if(i.msie||i.rv||i.iemobile){a+=\'avia-msie\'}\nelse if(i.webkit){a+=\'avia-webkit\'}\nelse if(i.mozilla){a+=\'avia-mozilla\'};if(i.version)a+=\' \'+a+\'-\'+n+\' \';if(i.browser)a+=\' avia-\'+i.browser+\' avia-\'+i.browser+\'-\'+n+\' \'};if(e)t(e).addClass(a);return a};t.fn.avia_html5_activation=function(e){var i={ratio:\'16:9\'};var e=t.extend(i,e),a=t.avia_utilities.isMobile;this.each(function(){var e=t(this),a=\'#\'+e.attr(\'id\'),i=e.attr(\'poster\');e.mediaelementplayer({defaultVideoWidth:480,defaultVideoHeight:270,videoWidth:-1,videoHeight:-1,audioWidth:400,audioHeight:30,startVolume:0.8,loop:!1,enableAutosize:!1,features:[\'playpause\',\'progress\',\'current\',\'duration\',\'tracks\',\'volume\'],alwaysShowControls:!1,iPadUseNativeControls:!1,iPhoneUseNativeControls:!1,AndroidUseNativeControls:!1,alwaysShowHours:!1,showTimecodeFrameCount:!1,framesPerSecond:25,enableKeyboard:!0,pauseOtherPlayers:!1,poster:i,success:function(i,a,o){t.AviaVideoAPI.players[e.attr(\'id\').replace(/_html5/,\'\')]=o;setTimeout(function(){if(i.pluginType==\'flash\'){i.addEventListener(\'canplay\',function(){e.trigger(\'av-mediajs-loaded\')},!1)}\nelse{e.trigger(\'av-mediajs-loaded\').addClass(\'av-mediajs-loaded\')};i.addEventListener(\'ended\',function(){e.trigger(\'av-mediajs-ended\')},!1);var a=document.getElementById(t(i).attr(\'id\')+\'_html5\');if(a&&a!==i){i.addEventListener(\'ended\',function(){t(a).trigger(\'av-mediajs-ended\')})}},10)},error:function(){},keyActions:[]})})};function n(e){if(t.avia_utilities.isMobile)return;if(t(\'body\').hasClass(\'av-disable-avia-hover-effect\')){return};var o=\'\',a=t.avia_utilities.supports(\'transition\');if(e==\'body\'){var i=t(\'#main a img\').parents(\'a\').not(\'.noLightbox, .noLightbox a, .avia-gallery-thumb a, .ls-wp-container a, .noHover, .noHover a, .av-logo-container .logo a\').add(\'#main .avia-hover-fx\')}\nelse{var i=t(\'a img\',e).parents(\'a\').not(\'.noLightbox, .noLightbox a, .avia-gallery-thumb a, .ls-wp-container a, .noHover, .noHover a, .av-logo-container .logo a\').add(\'.avia-hover-fx\',e)};i.each(function(e){var o=t(this),r=o.find(\'img:first\');if(r.hasClass(\'alignleft\'))o.addClass(\'alignleft\').css({float:\'left\',margin:0,padding:0});if(r.hasClass(\'alignright\'))o.addClass(\'alignright\').css({float:\'right\',margin:0,padding:0});if(r.hasClass(\'aligncenter\'))o.addClass(\'aligncenter\').css({float:\'none\',\'text-align\':\'center\',margin:0,padding:0});if(r.hasClass(\'alignnone\')){o.addClass(\'alignnone\').css({margin:0,padding:0});if(!o.css(\'display\')||o.css(\'display\')==\'inline\'){o.css({display:\'inline-block\'})}};if(!o.css(\'position\')||o.css(\'position\')==\'static\'){o.css({position:\'relative\',overflow:\'hidden\'})};var l=o.attr(\'href\'),n=\'overlay-type-video\',h=o.data(\'opacity\')||0.7,c=5,s=o.find(\'.image-overlay\');if(l){if(l.match(/(jpg|gif|jpeg|png|tif)/))n=\'overlay-type-image\';if(!l.match(/(jpg|gif|jpeg|png|\\.tif|\\.mov|\\.swf|vimeo\\.com|youtube\\.com)/))n=\'overlay-type-extern\'};if(!s.length){s=t(\'<span class=\\\'image-overlay \'+n+\'\\\'><span class=\\\'image-overlay-inside\\\'></span></span>\').appendTo(o)};o.on(\'mouseenter\',function(e){var i=o.find(\'img:first\'),r=i.get(0),l=i.outerHeight(),f=i.outerWidth(),d=i.position(),p=o.css(\'display\'),s=o.find(\'.image-overlay\');if(l>100){if(!s.length){s=t(\'<span class=\\\'image-overlay \'+n+\'\\\'><span class=\\\'image-overlay-inside\\\'></span></span>\').appendTo(o)};if(o.height()==0){o.addClass(r.className);r.className=\'\'};if(!p||p==\'inline\'){o.css({display:\'block\'})};s.css({left:(d.left-c)+parseInt(i.css(\'margin-left\'),10),top:d.top+parseInt(i.css(\'margin-top\'),10)}).css({overflow:\'hidden\',display:\'block\',\'height\':l,\'width\':(f+(2*c))});if(a===!1)s.stop().animate({opacity:h},400)}\nelse{s.css({display:\'none\'})}}).on(\'mouseleave\',i,function(){if(s.length){if(a===!1)s.stop().animate({opacity:0},400)}})})}(function(t){t.fn.avia_smoothscroll=function(e){if(!this.length)return;var o=t(window),p=t(\'#header\'),f=t(\'.html_header_top.html_header_sticky #main\').not(\'.page-template-template-blank-php #main\'),u=t(\'.html_header_top.html_header_unstick_top_disabled #header_meta\'),v=t(\'.html_header_top:not(.html_top_nav_header) #header_main_alternate\'),m=t(\'.html_header_top.html_top_nav_header\'),l=t(\'.html_header_top.html_header_shrinking\').length,c=t(\'.av-frame-top\'),i=0,h=t.avia_utilities.isMobile,a=t(\'.sticky_placeholder:first\'),d=function(){if(p.css(\'position\')==\'fixed\'){var e=parseInt(f.data(\'scroll-offset\'),10)||0,a=parseInt(u.outerHeight(),10)||0,o=parseInt(v.outerHeight(),10)||0;if(e>0&&l){e=(e/2)+a+o}\nelse{e=e+a+o};e+=parseInt(t(\'html\').css(\'margin-top\'),10);i=e}\nelse{i=parseInt(t(\'html\').css(\'margin-top\'),10)};if(c.length){i+=c.height()};if(m.length){i=t(\'.html_header_sticky #header_main_alternate\').height()+parseInt(t(\'html\').css(\'margin-top\'),10)};if(h){i=0}};if(h)l=!1;d();o.on(\'debouncedresize av-height-change\',d);var n=window.location.hash.replace(/\\//g,\'\');if(i>0&&n&&e==\'body\'&&n.charAt(1)!=\'!\'&&n.indexOf(\'=\')===-1){var s=t(n),r=0;if(s.length){o.on(\'scroll.avia_first_scroll\',function(){setTimeout(function(){if(a.length&&s.offset().top>a.offset().top){r=a.outerHeight()-3};o.off(\'scroll.avia_first_scroll\').scrollTop(s.offset().top-i-r)},10)})}};return this.each(function(){t(this).click(function(e){var n=this.hash.replace(/\\//g,\'\'),c=t(this),f=c.data();if(n!=\'\'&&n!=\'#\'&&n!=\'#prev\'&&n!=\'#next\'&&!c.is(\'.comment-reply-link, #cancel-comment-reply-link, .no-scroll\')){var s=\'\',p=\'\';if(\'#next-section\'==n){p=n;s=c.parents(\'.container_wrap:eq(0)\').nextAll(\'.container_wrap:eq(0)\');n=\'#\'+s.attr(\'id\')}\nelse{s=t(this.hash.replace(/\\//g,\'\'))};if(s.length){var h=o.scrollTop(),d=s.offset().top,r=d-i,l=window.location.hash,l=l.replace(/\\//g,\'\'),u=window.location.href.replace(l,\'\'),v=this,m=f.duration||1200,g=f.easing||\'easeInOutQuint\';if(a.length&&d>a.offset().top){r-=a.outerHeight()-3};if(u+n==v||p){if(h!=r){if(!(h==0&&r<=0)){o.trigger(\'avia_smooth_scroll_start\');t(\'html:not(:animated),body:not(:animated)\').animate({scrollTop:r},m,g,function(){if(window.history.replaceState)window.history.replaceState(\'\',\'\',n)})}};e.preventDefault()}}}})})}})(jQuery);function s(t){var e=jQuery(\'iframe[src*=\"youtube.com\"]:not(.av_youtube_frame)\',t),i=jQuery(\'iframe[src*=\"youtube.com\"]:not(.av_youtube_frame) object, iframe[src*=\"youtube.com\"]:not(.av_youtube_frame) embed\',t).attr(\'wmode\',\'opaque\');e.each(function(){var e=jQuery(this),t=e.attr(\'src\');if(t){if(t.indexOf(\'?\')!==-1){t+=\'&wmode=opaque&rel=0\'}\nelse{t+=\'?wmode=opaque&rel=0\'};e.attr(\'src\',t)}})};function r(t){if(!t)t=document;var a=jQuery(window),e=jQuery(\'.avia-iframe-wrap iframe:not(.avia-slideshow iframe):not( iframe.no_resize):not(.avia-video iframe)\',t),i=function(){e.each(function(){var e=jQuery(this),i=e.parent(),t=56.25;if(this.width&&this.height){t=(100/this.width)*this.height;i.css({\'padding-bottom\':t+\'%\'})}})};i()};function l(){var i=t(window),o=!1,e=t(\'#scroll-top-link\'),a=function(){var t=i.scrollTop();if(t<500){e.removeClass(\'avia_pop_class\')}\nelse if(!e.is(\'.avia_pop_class\')){e.addClass(\'avia_pop_class\')}};i.on(\'scroll\',function(){window.requestAnimationFrame(a)});a()};function c(){var u=t(\'#header\'),c=t(\'#main .av-logo-container\'),v=t(\'#avia-menu\'),s=t(\'.av-burger-menu-main a\'),n=t(\'html\').eq(0),i=t(\'<div class=\"av-burger-overlay\"></div>\'),m=t(\'<div class=\"av-burger-overlay-scroll\"></div>\').appendTo(i),g=t(\'<div class=\"av-burger-overlay-inner\"></div>\').appendTo(m),k=t(\'<div class=\"av-burger-overlay-bg\"></div>\').appendTo(i),r=!1,h={},y=t(\'.av-logo-container .inner-container\'),x=y.find(\'.main_menu\'),d=n.is(\'.html_av-submenu-display-click.html_av-submenu-clone, .html_av-submenu-display-hover.html_av-submenu-clone\'),w=!1,T=0;var f=t(\'#avia_alternate_menu\');if(f.length>0){v=f};var p=function(){if(t.avia_utilities.isMobile){m.outerHeight(window.innerHeight)}},l=function(e,a){if(!e)return;var p,r,n,c,h,f,u,i,o;e.each(function(){n=t(this);c=n.find(\' > .sub-menu > li\');if(c.length==0){c=n.find(\' > .children > li\')};h=n.find(\'.avia_mega_div > .sub-menu > li.menu-item\');var e=n.find(\'>a\'),p=!0;if(e.length){if(e.get(0).hash==\'#\'||\'undefined\'==typeof e.attr(\'href\')||e.attr(\'href\')==\'#\'){if(c.length>0||h.length>0){p=!1}}};r=e.clone(p).attr(\'style\',\'\');if(\'undefined\'==typeof e.attr(\'href\')){r.attr(\'href\',\'#\')};i=t(\'<li>\').append(r);var s=[];if(\'undefined\'!=typeof n.attr(\'class\')){s=n.attr(\'class\').split(/\\s+/);t.each(s,function(t,e){if((e.indexOf(\'menu-item\')!=0)&&(e.indexOf(\'page-item\')<0)&&(e.indexOf(\'page_item\')!=0)&&(e.indexOf(\'dropdown_ul\')<0)){i.addClass(e)};return!0})};if(\'undefined\'!=typeof n.attr(\'id\')&&\'\'!=n.attr(\'id\')){i.addClass(n.attr(\'id\'))}\nelse{t.each(s,function(t,e){if(e.indexOf(\'page-item-\')>=0){i.addClass(e);return!1}})};a.append(i);if(c.length){o=t(\'<ul class=\"sub-menu\">\').appendTo(i);if(d&&(r.get(0).hash!=\'#\'&&r.attr(\'href\')!=\'#\')){i.clone(!0).prependTo(o)};i.addClass(\'av-width-submenu\').find(\'>a\').append(\'<span class=\"av-submenu-indicator\">\');l(c,o)}\nelse if(h.length){o=t(\'<ul class=\"sub-menu\">\').appendTo(i);if(d&&(r.get(0).hash!=\'#\'&&r.attr(\'href\')!=\'#\')){i.clone(!0).prependTo(o)};h.each(function(e){var h=t(this),a=h.find(\'> .sub-menu\'),n=h.find(\'> .mega_menu_title\'),p=n.find(\'a\').attr(\'href\')||\'#\',r=a.length>0?a.find(\'>li\'):null,f=!1,s=i.find(\'>a\'),u=\'\';if((r===null)||(r.length==0)){if(p==\'#\'){u=\' style=\"display: none;\"\'}};if(e==0)i.addClass(\'av-width-submenu\').find(\'>a\').append(\'<span class=\"av-submenu-indicator\">\');if(n.length&&n.text()!=\'\'){f=!0;if(e>0){var c=i.parents(\'li\').eq(0);if(c.length)i=c;o=t(\'<ul class=\"sub-menu\">\').appendTo(i)};i=t(\'<li\'+u+\'>\').appendTo(o);o=t(\'<ul class=\"sub-menu\">\').appendTo(i);t(\'<a href=\"\'+p+\'\"><span class=\"avia-bullet\"></span><span class=\"avia-menu-text\">\'+n.text()+\'</span></a>\').insertBefore(o);s=i.find(\'>a\');if(d&&(a.length>0)&&(s.length&&s.get(0).hash!=\'#\'&&s.attr(\'href\')!=\'#\')){i.clone(!0).addClass(\'av-cloned-title\').prependTo(o)}};if(f&&(a.length>0))i.addClass(\'av-width-submenu\').find(\'>a\').append(\'<span class=\"av-submenu-indicator\">\');l(r,o)})}});s.trigger(\'avia_burger_list_created\');return p},o,e;t(\'body\').on(\'mousewheel DOMMouseScroll touchmove\',\'.av-burger-overlay-scroll\',function(t){var a=this.offsetHeight,e=this.scrollHeight,i=t.originalEvent.wheelDelta;if(e!=this.clientHeight){if((this.scrollTop>=(e-a)&&i<0)||(this.scrollTop<=0&&i>0)){t.preventDefault()}}\nelse{t.preventDefault()}});t(document).on(\'mousewheel DOMMouseScroll touchmove\',\'.av-burger-overlay-bg, .av-burger-overlay-active .av-burger-menu-main\',function(t){t.preventDefault()});var a={};t(document).on(\'touchstart\',\'.av-burger-overlay-scroll\',function(t){a.Y=t.originalEvent.touches[0].clientY});t(document).on(\'touchend\',\'.av-burger-overlay-scroll\',function(t){a={}});t(document).on(\'touchmove\',\'.av-burger-overlay-scroll\',function(e){if(!a.Y){a.Y=e.originalEvent.touches[0].clientY};var s=e.originalEvent.touches[0].clientY-a.Y,i=this,o=i.scrollTop,r=i.scrollHeight,l=o+i.offsetHeight,n=s>0?\'up\':\'down\';t(\'body\').get(0).scrollTop=a.body;if(o<=0){if(n==\'up\')e.preventDefault()}\nelse if(l>=r){if(n==\'down\')e.preventDefault()}});t(window).on(\'debouncedresize\',function(t){if(e&&e.length){if(!s.is(\':visible\')){e.filter(\'.is-active\').parents(\'a\').eq(0).trigger(\'click\')}};p()});t(\'.html_av-overlay-side\').on(\'click\',\'.av-burger-overlay-bg\',function(t){t.preventDefault();e.parents(\'a\').eq(0).trigger(\'click\')});t(window).on(\'avia_smooth_scroll_start\',function(){if(e&&e.length){e.filter(\'.is-active\').parents(\'a\').eq(0).trigger(\'click\')}});t(\'.html_av-submenu-display-hover\').on(\'mouseenter\',\'.av-width-submenu\',function(e){t(this).children(\'ul.sub-menu\').slideDown(\'fast\')});t(\'.html_av-submenu-display-hover\').on(\'mouseleave\',\'.av-width-submenu\',function(e){t(this).children(\'ul.sub-menu\').slideUp(\'fast\')});t(\'.html_av-submenu-display-hover\').on(\'click\',\'.av-width-submenu > a\',function(t){t.preventDefault();t.stopImmediatePropagation()});t(\'.html_av-submenu-display-hover\').on(\'touchstart\',\'.av-width-submenu > a\',function(e){var i=t(this);b(i,e)});t(\'.html_av-submenu-display-click\').on(\'click\',\'.av-width-submenu > a\',function(e){var i=t(this);b(i,e)});t(\'.html_av-submenu-display-click\').on(\'click\',\'.av-burger-overlay a\',function(i){var a=window.location.href.match(/(^[^#]*)/)[0],o=t(this).attr(\'href\').match(/(^[^#]*)/)[0];if(o==a){i.preventDefault();i.stopImmediatePropagation();e.parents(\'a\').eq(0).trigger(\'click\');return!1};return!0});function b(t,e){e.preventDefault();e.stopImmediatePropagation();var i=t.parents(\'li\').eq(0);i.toggleClass(\'av-show-submenu\');if(i.is(\'.av-show-submenu\')){i.children(\'ul.sub-menu\').slideDown(\'fast\')}\nelse{i.children(\'ul.sub-menu\').slideUp(\'fast\')}};(function(){if(x.length)return;var e=t(\'#header .main_menu\').clone(!0),o=e.find(\'ul.av-main-nav\'),a=o.attr(\'id\');if(\'string\'==typeof a&&\'\'!=a.trim()){o.attr(\'id\',a+\'-\'+T++)};e.find(\'.menu-item:not(.menu-item-avia-special)\').remove();e.insertAfter(y.find(\'.logo\').first());var i=t(\'#header .social_bookmarks\').clone(!0);if(!i.length)i=t(\'.av-logo-container .social_bookmarks\').clone(!0);if(i.length){e.find(\'.avia-menu\').addClass(\'av_menu_icon_beside\');e.append(i)};s=t(\'.av-burger-menu-main a\')}());s.click(function(a){if(r)return;e=t(this).find(\'.av-hamburger\'),r=!0;if(!w){w=!0;e.addClass(\'av-inserted-main-menu\');o=t(\'<ul>\').attr({id:\'av-burger-menu-ul\',class:\'\'});var d=v.find(\'> li:not(.menu-item-avia-special)\'),f=l(d,o);o.find(\'.noMobile\').remove();o.appendTo(g);h=g.find(\'#av-burger-menu-ul > li\');if(t.fn.avia_smoothscroll){t(\'a[href*=\"#\"]\',i).avia_smoothscroll(i)}};if(e.is(\'.is-active\')){e.removeClass(\'is-active\');n.removeClass(\'av-burger-overlay-active-delayed\');i.animate({opacity:0},function(){i.css({display:\'none\'});n.removeClass(\'av-burger-overlay-active\');r=!1})}\nelse{p();var s=c.length?c.outerHeight()+c.position().top:u.outerHeight()+u.position().top;i.appendTo(t(a.target).parents(\'.avia-menu\'));o.css({padding:(s)+\'px 0px\'});h.removeClass(\'av-active-burger-items\');e.addClass(\'is-active\');n.addClass(\'av-burger-overlay-active\');i.css({display:\'block\'}).animate({opacity:1},function(){r=!1});setTimeout(function(){n.addClass(\'av-burger-overlay-active-delayed\')},100);h.each(function(e){var i=t(this);setTimeout(function(){i.addClass(\'av-active-burger-items\')},(e+1)*125)})};a.preventDefault()})};t.AviaAjaxSearch=function(e){var i={delay:300,minChars:3,scope:\'body\'};this.options=t.extend({},i,e);this.scope=t(this.options.scope);this.timer=!1;this.lastVal=\'\';this.bind_events()};t.AviaAjaxSearch.prototype={bind_events:function(){this.scope.on(\'keyup\',\'#s:not(\".av_disable_ajax_search #s\")\',t.proxy(this.try_search,this));this.scope.on(\'click\',\'#s.av-results-parked\',t.proxy(this.reset,this))},try_search:function(e){var i=t(e.currentTarget).parents(\'form:eq(0)\'),a=i.find(\'.ajax_search_response\');clearTimeout(this.timer);if(e.currentTarget.value.length>=this.options.minChars&&this.lastVal!=t.trim(e.currentTarget.value)){this.timer=setTimeout(t.proxy(this.do_search,this,e),this.options.delay)}\nelse if(e.currentTarget.value.length==0){this.timer=setTimeout(t.proxy(this.reset,this,e),this.options.delay)};if(e.keyCode===27){this.reset(e)}},reset:function(e){var i=t(e.currentTarget).parents(\'form:eq(0)\'),a=i.find(\'.ajax_search_response\'),o=t(i.attr(\'data-ajaxcontainer\')).find(\'.ajax_search_response\'),n=t(e.currentTarget);if(t(e.currentTarget).hasClass(\'av-results-parked\')){a.show();o.show();t(\'body > .ajax_search_response\').show()}\nelse{a.remove();o.remove();n.val(\'\');t(\'body > .ajax_search_response\').remove()}},do_search:function(e){var g=this,l=t(e.currentTarget).attr(\'autocomplete\',\'off\'),c=t(e.currentTarget).parents(\'.av_searchform_wrapper:eq(0)\'),d=c.offset(),u=c.outerWidth(),v=c.outerHeight(),i=l.parents(\'form:eq(0)\'),m=i.find(\'#searchsubmit\'),n=i,a=n.find(\'.ajax_search_response\'),p=t(\'<div class=\"ajax_load\"><span class=\"ajax_load_inner\"></span></div>\'),s=i.attr(\'action\'),h=i.serialize();h+=\'&action=avia_ajax_search\';if(!a.length){a=t(\'<div class=\"ajax_search_response\" style=\"display:none;\"></div>\')};if(i.attr(\'id\')==\'searchform_element\'){a.addClass(\'av_searchform_element_results\')};if(s.indexOf(\'?\')!=-1){s=s.split(\'?\');h+=\'&\'+s[1]};if(i.attr(\'data-ajaxcontainer\')){var r=i.attr(\'data-ajaxcontainer\');if(t(r).length){t(r).find(\'.ajax_search_response\').remove();n=t(r)}};o={};if(i.hasClass(\'av_results_container_fixed\')){t(\'body\').find(\'.ajax_search_response\').remove();n=t(\'body\');var o={top:d.top+v,left:d.left,width:u};a.addClass(\'main_color\');t(window).resize(function(){a.remove();t.proxy(this.reset,this);l.val(\'\')})};if(i.attr(\'data-results_style\')){var f=JSON.parse(i.attr(\'data-results_style\'));o=Object.assign(o,f);if(\'color\' in o){a.addClass(\'av_has_custom_color\')}};a.css(o);if(n.hasClass(\'avia-section\')){a.addClass(\'container\')};a.appendTo(n);if(a.find(\'.ajax_not_found\').length&&e.currentTarget.value.indexOf(this.lastVal)!=-1)return;this.lastVal=e.currentTarget.value;t.ajax({url:avia_framework_globals.ajaxurl,type:\'POST\',data:h,beforeSend:function(){p.insertAfter(m);i.addClass(\'ajax_loading_now\')},success:function(t){if(t==0)t=\'\';a.html(t).show()},complete:function(){p.remove();i.removeClass(\'ajax_loading_now\')}});t(document).on(\'click\',function(e){if(!t(e.target).closest(i).length){if(t(a).is(\':visible\')){t(a).hide();l.addClass(\'av-results-parked\')}}})}};t.AviaTooltip=function(e){var i={delay:1500,delayOut:300,delayHide:0,\'class\':\'avia-tooltip\',scope:\'body\',data:\'avia-tooltip\',attach:\'body\',event:\'mouseenter\',position:\'top\',extraClass:\'avia-tooltip-class\',permanent:!1,within_screen:!1};this.options=t.extend({},i,e);this.body=t(\'body\');this.scope=t(this.options.scope);this.tooltip=t(\'<div class=\"\'+this.options[\'class\']+\' avia-tt\"><span class=\"avia-arrow-wrap\"><span class=\"avia-arrow\"></span></span></div>\');this.inner=t(\'<div class=\"inner_tooltip\"></div>\').prependTo(this.tooltip);this.open=!1;this.timer=!1;this.active=!1;this.bind_events()};t.AviaTooltip.openTTs=[];t.AviaTooltip.openTT_Elements=[];t.AviaTooltip.prototype={bind_events:function(){var i=\'.av-permanent-tooltip [data-\'+this.options.data+\']\',e=\'[data-\'+this.options.data+\']:not( .av-permanent-tooltip [data-\'+this.options.data+\'])\';this.scope.on(\'av_permanent_show\',i,t.proxy(this.display_tooltip,this));t(i).addClass(\'av-perma-tooltip\').trigger(\'av_permanent_show\');this.scope.on(this.options.event+\' mouseleave\',e,t.proxy(this.start_countdown,this));if(this.options.event!=\'click\'){this.scope.on(\'mouseleave\',e,t.proxy(this.hide_tooltip,this));this.scope.on(\'click\',e,t.proxy(this.hide_on_click_tooltip,this))}\nelse{this.body.on(\'mousedown\',t.proxy(this.hide_tooltip,this))}},start_countdown:function(e){clearTimeout(this.timer);var a=this.options.event==\'click\'?e.target:e.currentTarget,o=t(a);if(e.type==this.options.event){var i=this.options.event==\'click\'?0:this.open?0:this.options.delay;this.timer=setTimeout(t.proxy(this.display_tooltip,this,e),i)}\nelse if(e.type==\'mouseleave\'){if(!o.hasClass(\'av-close-on-click-tooltip\')){this.timer=setTimeout(t.proxy(this.stop_instant_open,this,e),this.options.delayOut)}};e.preventDefault()},reset_countdown:function(t){clearTimeout(this.timer);this.timer=!1},display_tooltip:function(e){var y=this,w=this.options.event==\'click\'?e.target:e.currentTarget,i=t(w),d=i.data(this.options.data),u=i.data(\'avia-created-tooltip\'),v=i.data(\'avia-tooltip-class\'),p=this.options.attach==\'element\'?i:this.body,s=this.options.attach==\'element\'?i.position():i.offset(),c=i.data(\'avia-tooltip-position\'),h=i.data(\'avia-tooltip-alignment\'),m=!1,a=!1,g=!1;d=t.trim(d);if(i.is(\'.av-perma-tooltip\')){s={top:0,left:0};p=i;m=!0};if(d==\'\')return;if(c==\'\'||typeof c==\'undefined\')c=this.options.position;if(h==\'\'||typeof h==\'undefined\')h=\'center\';if(typeof u!=\'undefined\'){a=t.AviaTooltip.openTTs[u]}\nelse{this.inner.html(d);a=this.tooltip.clone();g=!0;if(this.options.attach==\'element\'&&m!==!0){a.insertAfter(p)}\nelse{a.appendTo(p)};if(v!=\'\')a.addClass(v)};if(this.open&&this.active==a){return};if(i.hasClass(\'av-close-on-click-tooltip\')){this.hide_all_tooltips()};this.open=!0;this.active=a;if((a.is(\':animated:visible\')&&e.type==\'click\')||i.is(\'.\'+this.options[\'class\'])||i.parents(\'.\'+this.options[\'class\']).length!=0)return;var r={},l={},n=\'\',o=\'\';if(c==\'top\'|| c==\'bottom\'){switch(h){case\'left\':o=s.left;break;case\'right\':o=s.left+i.outerWidth()-a.outerWidth();break;default:o=(s.left+(i.outerWidth()/2))-(a.outerWidth()/2);break};if(y.options.within_screen){var f=i.offset().left+(i.outerWidth()/2)-(a.outerWidth()/2)+parseInt(a.css(\'margin-left\'),10);if(f<0){o=o-f}}}\nelse{switch(h){case\'top\':n=s.top;break;case\'bottom\':n=s.top+i.outerHeight()-a.outerHeight();break;default:n=(s.top+(i.outerHeight()/2))-(a.outerHeight()/2);break}};switch(c){case\'top\':n=s.top-a.outerHeight();r={top:n-10,left:o};l={top:n};break;case\'bottom\':n=s.top+i.outerHeight();r={top:n+10,left:o};l={top:n};break;case\'left\':o=s.left-a.outerWidth();r={top:n,left:o-10};l={left:o};break;case\'right\':o=s.left+i.outerWidth();r={top:n,left:o+10};l={left:o};break};r[\'display\']=\'block\';r[\'opacity\']=0;l[\'opacity\']=1;a.css(r).stop().animate(l,200);a.find(\'input, textarea\').focus();if(g){t.AviaTooltip.openTTs.push(a);t.AviaTooltip.openTT_Elements.push(i);i.data(\'avia-created-tooltip\',t.AviaTooltip.openTTs.length-1)}},hide_on_click_tooltip:function(e){if(this.options.event==\'click\'){return};var i=t(e.currentTarget);if(!i.hasClass(\'av-close-on-click-tooltip\')){return};if(!i.find(\'a\')){e.preventDefault()};var o=i.data(\'avia-created-tooltip\');if(\'undefined\'!=typeof o){var a=t.AviaTooltip.openTTs[o];if(\'undefined\'!=typeof a&&a==this.active){this.hide_all_tooltips()}}},hide_all_tooltips:function(){var i,a,o;for(var e=0;e<t.AviaTooltip.openTTs.length;++e){i=t.AviaTooltip.openTTs[e];o=t.AviaTooltip.openTT_Elements[e];a=o.data(\'avia-tooltip-position\'),this.animate_hide_tooltip(i,a)};this.open=!1;this.active=!1},hide_tooltip:function(e){var i=t(e.currentTarget),a,s,o=i.data(\'avia-tooltip-position\'),n=i.data(\'avia-tooltip-alignment\'),a=!1;if(o==\'\'||typeof o==\'undefined\')o=this.options.position;if(n==\'\'||typeof n==\'undefined\')n=\'center\';if(this.options.event==\'click\'){i=t(e.target);if(!i.is(\'.\'+this.options[\'class\'])&&i.parents(\'.\'+this.options[\'class\']).length==0){if(this.active.length){a=this.active;this.active=!1}}}\nelse{if(!i.hasClass(\'av-close-on-click-tooltip\')){a=i.data(\'avia-created-tooltip\');a=typeof a!=\'undefined\'?t.AviaTooltip.openTTs[a]:!1}};this.animate_hide_tooltip(a,o)},animate_hide_tooltip:function(t,e){if(t){var i={opacity:0};switch(e){case\'top\':i[\'top\']=parseInt(t.css(\'top\'),10)-10;break;case\'bottom\':i[\'top\']=parseInt(t.css(\'top\'),10)+10;break;case\'left\':i[\'left\']=parseInt(t.css(\'left\'),10)-10;break;case\'right\':i[\'left\']=parseInt(t.css(\'left\'),10)+10;break};t.animate(i,200,function(){t.css({display:\'none\'})})}},stop_instant_open:function(t){this.open=!1}}})(jQuery);!function(){\'use strict\';function t(a){if(!a)throw new Error(\'No options passed to Waypoint constructor\');if(!a.element)throw new Error(\'No element option passed to Waypoint constructor\');if(!a.handler)throw new Error(\'No handler option passed to Waypoint constructor\');this.key=\'waypoint-\'+i,this.options=t.Adapter.extend({},t.defaults,a),this.element=this.options.element,this.adapter=new t.Adapter(this.element),this.callback=a.handler,this.axis=this.options.horizontal?\'horizontal\':\'vertical\',this.enabled=this.options.enabled,this.triggerPoint=null,this.group=t.Group.findOrCreate({name:this.options.group,axis:this.axis}),this.context=t.Context.findOrCreateByElement(this.options.context),t.offsetAliases[this.options.offset]&&(this.options.offset=t.offsetAliases[this.options.offset]),this.group.add(this),this.context.add(this),e[this.key]=this,i+=1};var i=0,e={};t.prototype.queueTrigger=function(t){this.group.queueTrigger(this,t)},t.prototype.trigger=function(t){this.enabled&&this.callback&&this.callback.apply(this,t)},t.prototype.destroy=function(){this.context.remove(this),this.group.remove(this),delete e[this.key]},t.prototype.disable=function(){return this.enabled=!1,this},t.prototype.enable=function(){return this.context.refresh(),this.enabled=!0,this},t.prototype.next=function(){return this.group.next(this)},t.prototype.previous=function(){return this.group.previous(this)},t.invokeAll=function(t){var a=[];for(var n in e)a.push(e[n]);for(var i=0,o=a.length;o>i;i++)a[i][t]()},t.destroyAll=function(){t.invokeAll(\'destroy\')},t.disableAll=function(){t.invokeAll(\'disable\')},t.enableAll=function(){t.invokeAll(\'enable\')},t.refreshAll=function(){t.Context.refreshAll()},t.viewportHeight=function(){return window.innerHeight||document.documentElement.clientHeight},t.viewportWidth=function(){return document.documentElement.clientWidth},t.adapters=[],t.defaults={context:window,continuous:!0,enabled:!0,group:\'default\',horizontal:!1,offset:0},t.offsetAliases={\'bottom-in-view\':function(){return this.context.innerHeight()-this.adapter.outerHeight()},\'right-in-view\':function(){return this.context.innerWidth()-this.adapter.outerWidth()}},window.Waypoint=t}(),function(){\'use strict\';function n(t){window.setTimeout(t,1e3/60)};function t(t){this.element=t,this.Adapter=e.Adapter,this.adapter=new this.Adapter(t),this.key=\'waypoint-context-\'+a,this.didScroll=!1,this.didResize=!1,this.oldScroll={x:this.adapter.scrollLeft(),y:this.adapter.scrollTop()},this.waypoints={vertical:{},horizontal:{}},t.waypointContextKey=this.key,i[t.waypointContextKey]=this,a+=1,this.createThrottledScrollHandler(),this.createThrottledResizeHandler()};var a=0,i={},e=window.Waypoint,o=window.onload;t.prototype.add=function(t){var e=t.options.horizontal?\'horizontal\':\'vertical\';this.waypoints[e][t.key]=t,this.refresh()},t.prototype.checkEmpty=function(){var t=this.Adapter.isEmptyObject(this.waypoints.horizontal),e=this.Adapter.isEmptyObject(this.waypoints.vertical);t&&e&&(this.adapter.off(\'.waypoints\'),delete i[this.key])},t.prototype.createThrottledResizeHandler=function(){function i(){t.handleResize(),t.didResize=!1};var t=this;this.adapter.on(\'resize.waypoints\',function(){t.didResize||(t.didResize=!0,e.requestAnimationFrame(i))})},t.prototype.createThrottledScrollHandler=function(){function i(){t.handleScroll(),t.didScroll=!1};var t=this;this.adapter.on(\'scroll.waypoints\',function(){(!t.didScroll||e.isTouch)&&(t.didScroll=!0,e.requestAnimationFrame(i))})},t.prototype.handleResize=function(){e.Context.refreshAll()},t.prototype.handleScroll=function(){var o={},i={horizontal:{newScroll:this.adapter.scrollLeft(),oldScroll:this.oldScroll.x,forward:\'right\',backward:\'left\'},vertical:{newScroll:this.adapter.scrollTop(),oldScroll:this.oldScroll.y,forward:\'down\',backward:\'up\'}};for(var a in i){var t=i[a],d=t.newScroll>t.oldScroll,p=d?t.forward:t.backward;for(var h in this.waypoints[a]){var e=this.waypoints[a][h],n=t.oldScroll<e.triggerPoint,s=t.newScroll>=e.triggerPoint,l=n&&s,c=!n&&!s;(l||c)&&(e.queueTrigger(p),o[e.group.id]=e.group)}};for(var r in o)o[r].flushTriggers();this.oldScroll={x:i.horizontal.newScroll,y:i.vertical.newScroll}},t.prototype.innerHeight=function(){return this.element==this.element.window?e.viewportHeight():this.adapter.innerHeight()},t.prototype.remove=function(t){delete this.waypoints[t.axis][t.key],this.checkEmpty()},t.prototype.innerWidth=function(){return this.element==this.element.window?e.viewportWidth():this.adapter.innerWidth()},t.prototype.destroy=function(){var e=[];for(var i in this.waypoints)for(var o in this.waypoints[i])e.push(this.waypoints[i][o]);for(var t=0,a=e.length;a>t;t++)e[t].destroy()},t.prototype.refresh=function(){var c,o=this.element==this.element.window,v=this.adapter.offset(),a={};this.handleScroll(),c={horizontal:{contextOffset:o?0:v.left,contextScroll:o?0:this.oldScroll.x,contextDimension:this.innerWidth(),oldScroll:this.oldScroll.x,forward:\'right\',backward:\'left\',offsetProp:\'left\'},vertical:{contextOffset:o?0:v.top,contextScroll:o?0:this.oldScroll.y,contextDimension:this.innerHeight(),oldScroll:this.oldScroll.y,forward:\'down\',backward:\'up\',offsetProp:\'top\'}};for(var l in c){var e=c[l];for(var g in this.waypoints[l]){var h,n,s,d,p,t=this.waypoints[l][g],i=t.options.offset,f=t.triggerPoint,u=0,r=null==f;t.element!==t.element.window&&(u=t.adapter.offset()[e.offsetProp]),\'function\'==typeof i?i=i.apply(t):\'string\'==typeof i&&(i=parseFloat(i),t.options.offset.indexOf(\'%\')>-1&&(i=Math.ceil(e.contextDimension*i/100))),h=e.contextScroll-e.contextOffset,t.triggerPoint=u+h-i,n=f<e.oldScroll,s=t.triggerPoint>=e.oldScroll,d=n&&s,p=!n&&!s,!r&&d?(t.queueTrigger(e.backward),a[t.group.id]=t.group):!r&&p?(t.queueTrigger(e.forward),a[t.group.id]=t.group):r&&e.oldScroll>=t.triggerPoint&&(t.queueTrigger(e.forward),a[t.group.id]=t.group)}};for(var m in a)a[m].flushTriggers();return this},t.findOrCreateByElement=function(e){return t.findByElement(e)||new t(e)},t.refreshAll=function(){for(var t in i)i[t].refresh()},t.findByElement=function(t){return i[t.waypointContextKey]},window.onload=function(){o&&o(),t.refreshAll()},e.requestAnimationFrame=function(t){var e=window.requestAnimationFrame||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame||n;e.call(window,t)},e.Context=t}(),function(){\'use strict\';function i(t,e){return t.triggerPoint-e.triggerPoint};function o(t,e){return e.triggerPoint-t.triggerPoint};function t(t){this.name=t.name,this.axis=t.axis,this.id=this.name+\'-\'+this.axis,this.waypoints=[],this.clearTriggerQueues(),a[this.axis][this.name]=this};var a={vertical:{},horizontal:{}},e=window.Waypoint;t.prototype.add=function(t){this.waypoints.push(t)},t.prototype.clearTriggerQueues=function(){this.triggerQueues={up:[],down:[],left:[],right:[]}},t.prototype.flushTriggers=function(){for(var a in this.triggerQueues){var e=this.triggerQueues[a],r=\'up\'===a||\'left\'===a;e.sort(r?o:i);for(var t=0,s=e.length;s>t;t+=1){var n=e[t];(n.options.continuous||t===e.length-1)&&n.trigger([a])}};this.clearTriggerQueues()},t.prototype.next=function(t){this.waypoints.sort(i);var a=e.Adapter.inArray(t,this.waypoints),o=a===this.waypoints.length-1;return o?null:this.waypoints[a+1]},t.prototype.previous=function(t){this.waypoints.sort(i);var a=e.Adapter.inArray(t,this.waypoints);return a?this.waypoints[a-1]:null},t.prototype.queueTrigger=function(t,e){this.triggerQueues[e].push(t)},t.prototype.remove=function(t){var i=e.Adapter.inArray(t,this.waypoints);i>-1&&this.waypoints.splice(i,1)},t.prototype.first=function(){return this.waypoints[0]},t.prototype.last=function(){return this.waypoints[this.waypoints.length-1]},t.findOrCreate=function(e){return a[e.axis][e.name]||new t(e)},e.Group=t}(),function(){\'use strict\';function e(e){this.$element=t(e)};var t=window.jQuery,i=window.Waypoint;t.each([\'innerHeight\',\'innerWidth\',\'off\',\'offset\',\'on\',\'outerHeight\',\'outerWidth\',\'scrollLeft\',\'scrollTop\'],function(t,i){e.prototype[i]=function(){var t=Array.prototype.slice.call(arguments);return this.$element[i].apply(this.$element,t)}}),t.each([\'extend\',\'inArray\',\'isEmptyObject\'],function(i,a){e[a]=t[a]}),i.adapters.push({name:\'jquery\',Adapter:e}),i.Adapter=e}(),function(){\'use strict\';function t(t){return function(){var a=[],i=arguments[0];return t.isFunction(arguments[0])&&(i=t.extend({},arguments[1]),i.handler=arguments[0]),this.each(function(){var o=t.extend({},i,{element:this});\'string\'==typeof o.context&&(o.context=t(this).closest(o.context)[0]),a.push(new e(o))}),a}};var e=window.Waypoint;window.jQuery&&(window.jQuery.fn.waypoint=t(window.jQuery)),window.Zepto&&(window.Zepto.fn.waypoint=t(window.Zepto))}();(function(){var i=0,e=[\'ms\',\'moz\',\'webkit\',\'o\'];for(var t=0;t<e.length&&!window.requestAnimationFrame;++t){window.requestAnimationFrame=window[e[t]+\'RequestAnimationFrame\'];window.cancelAnimationFrame=window[e[t]+\'CancelAnimationFrame\']||window[e[t]+\'CancelRequestAnimationFrame\']};if(!window.requestAnimationFrame)window.requestAnimationFrame=function(t,e){var a=new Date().getTime(),o=Math.max(0,16-(a-i)),n=window.setTimeout(function(){t(a+o)},o);i=a+o;return n};if(!window.cancelAnimationFrame)window.cancelAnimationFrame=function(t){clearTimeout(t)}}());jQuery.expr[\':\'].regex=function(t,e,a){var i=a[3].split(\',\'),o=/^(data|css):/,n={method:i[0].match(o)?i[0].split(\':\')[0]:\'attr\',property:i.shift().replace(o,\'\')},s=\'ig\',r=new RegExp(i.join(\'\').replace(/^\\s+|\\s+$/g,\'\'),s);return r.test(jQuery(t)[n.method](n.property))};\";}s:18:\"avia-shortcodes-js\";a:6:{s:4:\"name\";s:15:\"avia-shortcodes\";s:3:\"url\";s:66:\"https://solsculpting.com/wp-content/themes/enfold/js/shortcodes.js\";s:4:\"path\";s:41:\"wp-content/themes/enfold/js/shortcodes.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:23424:\"(function(i){\"use strict\";i(document).ready(function(){i.avia_utilities=i.avia_utilities||{};if(/Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent)&&\"ontouchstart\" in document.documentElement){i.avia_utilities.isMobile=!0}\nelse{i.avia_utilities.isMobile=!1};if(i.fn.avia_mobile_fixed)i(\".avia-bg-style-fixed\").avia_mobile_fixed();if(i.fn.avia_parallax)i(\".av-parallax\").avia_parallax();if(i.fn.avia_browser_height)i(\".av-minimum-height, .avia-fullscreen-slider, .av-cell-min-height\").avia_browser_height();if(i.fn.avia_video_section)i(\".av-section-with-video-bg\").avia_video_section();new i.AviaTooltip({\"class\":\"avia-tooltip\",data:\"avia-tooltip\",delay:0,scope:\"body\"});new i.AviaTooltip({\"class\":\"avia-tooltip avia-icon-tooltip\",data:\"avia-icon-tooltip\",delay:0,scope:\"body\"});i.avia_utilities.activate_shortcode_scripts();if(i.fn.layer_slider_height_helper)i(\".avia-layerslider\").layer_slider_height_helper();if(i.fn.avia_portfolio_preview){i(\".grid-links-ajax\").avia_portfolio_preview()};if(i.fn.avia_masonry)i(\".av-masonry\").avia_masonry();if(i.fn.aviaccordion)i(\".aviaccordion\").aviaccordion();if(i.fn.avia_textrotator)i(\".av-rotator-container\").avia_textrotator();if(i.fn.avia_sc_tab_section){i(\".av-tab-section-container\").avia_sc_tab_section()};if(i.fn.avia_hor_gallery){i(\".av-horizontal-gallery\").avia_hor_gallery()};if(i.fn.avia_link_column){i(\".avia-link-column\").avia_link_column()};if(i.fn.avia_delayed_animation_in_container){i(\".av-animation-delay-container\").avia_delayed_animation_in_container()}});i.avia_utilities=i.avia_utilities||{};i.avia_utilities.activate_shortcode_scripts=function(e){if(typeof e==\"undefined\"){e=\"body\"};if(i.fn.avia_ajax_form){i(\".avia_ajax_form:not( .avia-disable-default-ajax )\",e).avia_ajax_form()};n(e);if(i.fn.aviaVideoApi){i(\".avia-slideshow iframe[src*=\\\"youtube.com\\\"], .av_youtube_frame, .av_vimeo_frame, .avia-slideshow video\").aviaVideoApi({},\"li\")};if(i.fn.avia_sc_toggle){i(\".togglecontainer\",e).avia_sc_toggle()};if(i.fn.avia_sc_tabs){i(\".top_tab\",e).avia_sc_tabs();i(\".sidebar_tab\",e).avia_sc_tabs({sidebar:!0})};if(i.fn.avia_sc_gallery){i(\".avia-gallery\",e).avia_sc_gallery()};if(i.fn.avia_sc_animated_number){i(\".avia-animated-number\",e).avia_sc_animated_number()};if(i.fn.avia_sc_animation_delayed){i(\".av_font_icon\",e).avia_sc_animation_delayed({delay:100});i(\".avia-image-container\",e).avia_sc_animation_delayed({delay:100});i(\".av-hotspot-image-container\",e).avia_sc_animation_delayed({delay:100});i(\".av-animated-generic\",e).avia_sc_animation_delayed({delay:100})};if(i.fn.avia_sc_iconlist){i(\".avia-icon-list.av-iconlist-big.avia-iconlist-animate\",e).avia_sc_iconlist()};if(i.fn.avia_sc_progressbar){i(\".avia-progress-bar-container\",e).avia_sc_progressbar()};if(i.fn.avia_sc_testimonial){i(\".avia-testimonial-wrapper\",e).avia_sc_testimonial()};if(i.fn.aviaFullscreenSlider){i(\".avia-slideshow.av_fullscreen\",e).aviaFullscreenSlider()};if(i.fn.aviaSlider){i(\".avia-slideshow:not(.av_fullscreen)\",e).aviaSlider();i(\".avia-content-slider-active\",e).aviaSlider({wrapElement:\".avia-content-slider-inner\",slideElement:\".slide-entry-wrap\",fullfade:!0});i(\".avia-slider-testimonials\",e).aviaSlider({wrapElement:\".avia-testimonial-row\",slideElement:\".avia-testimonial\",fullfade:!0})};if(i.fn.aviaMagazine){i(\".av-magazine-tabs-active\",e).aviaMagazine()};if(i.fn.aviaHotspots){i(\".av-hotspot-image-container\",e).aviaHotspots()};if(i.fn.aviaCountdown){i(\".av-countdown-timer\",e).aviaCountdown()};if(i.fn.aviaPlayer){i(\".av-player\",e).aviaPlayer()}};function n(e){if(i.fn.avia_waypoints){if(typeof e==\"undefined\"){e=\"body\"};i(\".avia_animate_when_visible\",e).avia_waypoints();i(\".avia_animate_when_almost_visible\",e).avia_waypoints({offset:\"80%\"});if(e==\"body\")e=\".avia_desktop body\";i(\".av-animated-generic\",e).avia_waypoints({offset:\"95%\"})}};i.AviaParallaxElement=function(e,a){this.$el=i(a).addClass(\"active-parallax\");this.$win=i(window);this.$body=i(\"body\");this.$parent=this.$el.parent();this.property={};this.isMobile=i.avia_utilities.isMobile;this.ratio=this.$el.data(\"avia-parallax-ratio\")||0.5;this.transform=document.documentElement.className.indexOf(\"avia_transform\")!==-1?!0:!1;this.transform3d=document.documentElement.className.indexOf(\"avia_transform3d\")!==-1?!0:!1;this.ticking=!1;if(i.avia_utilities.supported.transition===undefined){i.avia_utilities.supported.transition=i.avia_utilities.supports(\"transition\")};this._init(e)};i.AviaParallaxElement.prototype={_init:function(e){var a=this;if(a.isMobile){return};setTimeout(function(){a._fetch_properties()},30);this.$win.on(\"debouncedresize av-height-change\",i.proxy(a._fetch_properties,a));this.$body.on(\"av_resize_finished\",i.proxy(a._fetch_properties,a));setTimeout(function(){a.$win.on(\"scroll\",i.proxy(a._on_scroll,a))},100)},_fetch_properties:function(){this.property.offset=this.$parent.offset().top;this.property.wh=this.$win.height();this.property.height=this.$parent.outerHeight();this.$el.height(Math.ceil((this.property.wh*this.ratio)+this.property.height));this._parallax_scroll()},_on_scroll:function(e){var a=this;if(!a.ticking){a.ticking=!0;window.requestAnimationFrame(i.proxy(a._parallax_scroll,a))}},_parallax_scroll:function(e){var n=this.$win.scrollTop(),o=n+this.property.wh,a=\"0\",t={};if(this.property.offset<o&&n<=this.property.offset+this.property.height){a=Math.ceil((o-this.property.offset)*this.ratio);if(this.transform3d){t[i.avia_utilities.supported.transition+\"transform\"]=\"translate3d(0px,\"+a+\"px, 0px)\"}\nelse if(this.transform){t[i.avia_utilities.supported.transition+\"transform\"]=\"translate(0px,\"+a+\"px)\"}\nelse{t[\"background-position\"]=\"0px \"+a+\"px\"};this.$el.css(t)};this.ticking=!1}};i.fn.avia_parallax=function(e){return this.each(function(){var a=i.data(this,\"aviaParallax\");if(!a){a=i.data(this,\"aviaParallax\",new i.AviaParallaxElement(e,this))}})};i.fn.avia_mobile_fixed=function(e){var a=i.avia_utilities.isMobile;if(!a)return;return this.each(function(){var a=i(this).addClass(\"av-parallax-section\"),n=a.attr(\"style\"),e=a.data(\"section-bg-repeat\"),t=\"\";if(e==\"stretch\"||e==\"no-repeat\"){e=\" avia-full-stretch\"}\nelse{e=\"\"};t=\"<div class=\'av-parallax \"+e+\"\' data-avia-parallax-ratio=\'0.0\' style = \'\"+n+\"\' ></div>\";a.prepend(t);a.attr(\"style\",\"\")})};i.fn.avia_sc_animation_delayed=function(e){var a=0,n=e.delay||50,t=10,o=setTimeout(function(){t=20},500);return this.each(function(){var e=i(this);e.on(\"avia_start_animation\",function(){var e=i(this);if(a<t)a++;setTimeout(function(){e.addClass(\"avia_start_delayed_animation\");if(a>0)a--},(a*n))})})};i.fn.avia_delayed_animation_in_container=function(e){return this.each(function(){var e=i(this);e.on(\"avia_start_animation_if_current_slide_is_active\",function(){var e=i(this),a=e.find(\".avia_start_animation_when_active\");a.addClass(\"avia_start_animation\").trigger(\"avia_start_animation\")});e.on(\"avia_remove_animation\",function(){var e=i(this),a=e.find(\".avia_start_animation_when_active, .avia_start_animation\");a.removeClass(\"avia_start_animation avia_start_delayed_animation\")})})};i.fn.avia_browser_height=function(){if(!this.length)return;var e=i(window),s=i(\"html\"),r=i(\"#wpadminbar, #header.av_header_top:not(.html_header_transparency #header), #main>.title_container\"),a=i(\"<style type=\'text/css\' id=\'av-browser-height\'></style>\").appendTo(\"head:first\"),n=i(\".html_header_sidebar #top #header_main\"),c=i(\".html_header_sidebar .avia-fullscreen-slider.avia-builder-el-0.avia-builder-el-no-sibling\").addClass(\"av-solo-full\"),t=[25,50,75],o=function(){var o=\"\",s=e.height(),c=e.width(),l=s,v=(s/9)*16,u=(c/16)*9,d=0,p=[];if(n.length)d=n.height();r.each(function(){l-=this.offsetHeight-1});var f=(l/9)*16;o+=\".avia-section.av-minimum-height .container{opacity: 1; }\\n\";o+=\".av-minimum-height-100 .container, .avia-fullscreen-slider .avia-slideshow, #top.avia-blank .av-minimum-height-100 .container, .av-cell-min-height-100 > .flex_cell{height:\"+s+\"px;}\\n\";i.each(t,function(i,e){var a=Math.round(s*(e/100.0));o+=\".av-minimum-height-\"+e+\" .container, .av-cell-min-height-\"+e+\" > .flex_cell {height:\"+a+\"px;}\\n\"});o+=\".avia-builder-el-0.av-minimum-height-100 .container, .avia-builder-el-0.avia-fullscreen-slider .avia-slideshow, .avia-builder-el-0.av-cell-min-height-100 > .flex_cell{height:\"+l+\"px;}\\n\";o+=\"#top .av-solo-full .avia-slideshow {min-height:\"+d+\"px;}\\n\";if(c/s<16/9){o+=\"#top .av-element-cover iframe, #top .av-element-cover embed, #top .av-element-cover object, #top .av-element-cover video{width:\"+v+\"px; left: -\"+(v-c)/2+\"px;}\\n\"}\nelse{o+=\"#top .av-element-cover iframe, #top .av-element-cover embed, #top .av-element-cover object, #top .av-element-cover video{height:\"+u+\"px; top: -\"+(u-s)/2+\"px;}\\n\"};if(c/l<16/9){o+=\"#top .avia-builder-el-0 .av-element-cover iframe, #top .avia-builder-el-0 .av-element-cover embed, #top .avia-builder-el-0 .av-element-cover object, #top .avia-builder-el-0 .av-element-cover video{width:\"+f+\"px; left: -\"+(f-c)/2+\"px;}\\n\"}\nelse{o+=\"#top .avia-builder-el-0 .av-element-cover iframe, #top .avia-builder-el-0 .av-element-cover embed, #top .avia-builder-el-0 .av-element-cover object, #top .avia-builder-el-0 .av-element-cover video{height:\"+u+\"px; top: -\"+(u-l)/2+\"px;}\\n\"};try{a.text(o)}catch(h){a.remove();a=i(\"<style type=\'text/css\' id=\'av-browser-height\'>\"+o+\"</style>\").appendTo(\"head:first\")};setTimeout(function(){e.trigger(\"av-height-change\")},100)};this.each(function(e){var a=i(this).data(\"av_minimum_height_pc\");if(\"number\"!=typeof a){return this};a=parseInt(a);if((-1==i.inArray(a,t))&&(a!=100)){t.push(a)};return this});e.on(\"debouncedresize\",o);o()};i.fn.avia_video_section=function(){if(!this.length)return;var n=this.length,e=\"\",o=i(window),a=i(\"<style type=\'text/css\' id=\'av-section-height\'></style>\").appendTo(\"head:first\"),t=function(t,o){if(o===0){e=\"\"};var s=\"\",r=\"#\"+t.attr(\"id\"),c=t.height(),l=t.width(),v=t.data(\"sectionVideoRatio\").split(\":\"),u=v[0],f=v[1],d=(c/f)*u,h=(l/u)*f;if(l/c<u/f){s+=\"#top \"+r+\" .av-section-video-bg iframe, #top \"+r+\" .av-section-video-bg embed, #top \"+r+\" .av-section-video-bg object, #top \"+r+\" .av-section-video-bg video{width:\"+d+\"px; left: -\"+(d-l)/2+\"px;}\\n\"}\nelse{s+=\"#top \"+r+\" .av-section-video-bg iframe, #top \"+r+\" .av-section-video-bg embed, #top \"+r+\" .av-section-video-bg object, #top \"+r+\" .av-section-video-bg video{height:\"+h+\"px; top: -\"+(h-c)/2+\"px;}\\n\"};e=e+s;if(n==o+1){try{a.text(e)}catch(p){a.remove();a=i(\"<style type=\'text/css\' id=\'av-section-height\'>\"+e+\"</style>\").appendTo(\"head:first\")}}};return this.each(function(e){var a=i(this);o.on(\"debouncedresize\",function(){t(a,e)});t(a,e)})};i.fn.avia_link_column=function(){return this.each(function(){i(this).on(\"click\",function(e){if(\"undefined\"!==typeof e.target&&\"undefined\"!==typeof e.target.href){return};var t=i(this),a=t.data(\"link-column-url\"),o=t.data(\"link-column-target\"),s=window.location.hostname+window.location.pathname;if(\"undefined\"===typeof a||\"string\"!==typeof a){return};if(\"undefined\"!==typeof o||\"_blank\"==o){var n=document.createElement(\"a\");n.href=a;n.target=\"_blank\";n.rel=\"noopener noreferrer\";n.click();return!1}\nelse{if(t.hasClass(\"av-cell-link\")||t.hasClass(\"av-column-link\")){var r=t.hasClass(\"av-cell-link\")?t.prev(\"a.av-screen-reader-only\").first():t.find(\"a.av-screen-reader-only\").first();a=a.trim();if((0==a.indexOf(\"#\"))||((a.indexOf(s)>=0)&&(a.indexOf(\"#\")>0))){r.trigger(\"click\");return}};window.location.href=a};e.preventDefault();return})})};i.fn.avia_waypoints=function(e){if(!i(\"html\").is(\".avia_transform\"))return;var a={offset:\"bottom-in-view\",triggerOnce:!0},t=i.extend({},a,e),n=i.avia_utilities.isMobile;return this.each(function(){var e=i(this);setTimeout(function(){if(n){e.addClass(\"avia_start_animation\").trigger(\"avia_start_animation\")}\nelse{e.waypoint(function(e){var t=i(this.element),a=t.parents(\".av-animation-delay-container:eq(0)\");if(a.length){t.addClass(\"avia_start_animation_when_active\").trigger(\"avia_start_animation_when_active\")};if(!a.length||(a.length&&a.is(\".__av_init_open\"))){t.addClass(\"avia_start_animation\").trigger(\"avia_start_animation\")}},t)}},100)})};var t=i.event,e,a;e=t.special.debouncedresize={setup:function(){i(this).on(\"resize\",e.handler)},teardown:function(){i(this).off(\"resize\",e.handler)},handler:function(i,n){var r=this,s=arguments,o=function(){i.type=\"debouncedresize\";t.dispatch.apply(r,s)};if(a){clearTimeout(a)};n?o():a=setTimeout(o,e.threshold)},threshold:150};i.easing[\"jswing\"]=i.easing[\"swing\"];i.extend(i.easing,{def:\"easeOutQuad\",swing:function(e,a,t,n,o){return i.easing[i.easing.def](e,a,t,n,o)},easeInQuad:function(i,e,a,t,n){return t*(e/=n)*e+a},easeOutQuad:function(i,e,a,t,n){return-t*(e/=n)*(e-2)+a},easeInOutQuad:function(i,e,a,t,n){if((e/=n/2)<1)return t/2*e*e+a;return-t/2*((--e)*(e-2)-1)+a},easeInCubic:function(i,e,a,t,n){return t*(e/=n)*e*e+a},easeOutCubic:function(i,e,a,t,n){return t*((e=e/n-1)*e*e+1)+a},easeInOutCubic:function(i,e,a,t,n){if((e/=n/2)<1)return t/2*e*e*e+a;return t/2*((e-=2)*e*e+2)+a},easeInQuart:function(i,e,a,t,n){return t*(e/=n)*e*e*e+a},easeOutQuart:function(i,e,a,t,n){return-t*((e=e/n-1)*e*e*e-1)+a},easeInOutQuart:function(i,e,a,t,n){if((e/=n/2)<1)return t/2*e*e*e*e+a;return-t/2*((e-=2)*e*e*e-2)+a},easeInQuint:function(i,e,a,t,n){return t*(e/=n)*e*e*e*e+a},easeOutQuint:function(i,e,a,t,n){return t*((e=e/n-1)*e*e*e*e+1)+a},easeInOutQuint:function(i,e,a,t,n){if((e/=n/2)<1)return t/2*e*e*e*e*e+a;return t/2*((e-=2)*e*e*e*e+2)+a},easeInSine:function(i,e,t,a,n){return-a*Math.cos(e/n*(Math.PI/2))+a+t},easeOutSine:function(i,e,a,t,n){return t*Math.sin(e/n*(Math.PI/2))+a},easeInOutSine:function(i,e,a,t,n){return-t/2*(Math.cos(Math.PI*e/n)-1)+a},easeInExpo:function(i,e,a,t,n){return(e==0)?a:t*Math.pow(2,10*(e/n-1))+a},easeOutExpo:function(i,e,a,t,n){return(e==n)?a+t:t*(-Math.pow(2,-10*e/n)+1)+a},easeInOutExpo:function(i,e,a,t,n){if(e==0)return a;if(e==n)return a+t;if((e/=n/2)<1)return t/2*Math.pow(2,10*(e-1))+a;return t/2*(-Math.pow(2,-10*--e)+2)+a},easeInCirc:function(i,e,a,t,n){return-t*(Math.sqrt(1-(e/=n)*e)-1)+a},easeOutCirc:function(i,e,a,t,n){return t*Math.sqrt(1-(e=e/n-1)*e)+a},easeInOutCirc:function(i,e,a,t,n){if((e/=n/2)<1)return-t/2*(Math.sqrt(1-e*e)-1)+a;return t/2*(Math.sqrt(1-(e-=2)*e)+1)+a},easeInElastic:function(i,e,t,a,n){var s=1.70158,o=0,r=a;if(e==0)return t;if((e/=n)==1)return t+a;if(!o)o=n*.3;if(r<Math.abs(a)){r=a;var s=o/4}\nelse var s=o/(2*Math.PI)*Math.asin(a/r);return-(r*Math.pow(2,10*(e-=1))*Math.sin((e*n-s)*(2*Math.PI)/o))+t},easeOutElastic:function(i,e,t,a,n){var s=1.70158,o=0,r=a;if(e==0)return t;if((e/=n)==1)return t+a;if(!o)o=n*.3;if(r<Math.abs(a)){r=a;var s=o/4}\nelse var s=o/(2*Math.PI)*Math.asin(a/r);return r*Math.pow(2,-10*e)*Math.sin((e*n-s)*(2*Math.PI)/o)+a+t},easeInOutElastic:function(i,e,t,a,n){var s=1.70158,o=0,r=a;if(e==0)return t;if((e/=n/2)==2)return t+a;if(!o)o=n*(.3*1.5);if(r<Math.abs(a)){r=a;var s=o/4}\nelse var s=o/(2*Math.PI)*Math.asin(a/r);if(e<1)return-.5*(r*Math.pow(2,10*(e-=1))*Math.sin((e*n-s)*(2*Math.PI)/o))+t;return r*Math.pow(2,-10*(e-=1))*Math.sin((e*n-s)*(2*Math.PI)/o)*.5+a+t},easeInBack:function(i,e,a,t,n,o){if(o==undefined)o=1.70158;return t*(e/=n)*e*((o+1)*e-o)+a},easeOutBack:function(i,e,a,t,n,o){if(o==undefined)o=1.70158;return t*((e=e/n-1)*e*((o+1)*e+o)+1)+a},easeInOutBack:function(i,e,a,t,n,o){if(o==undefined)o=1.70158;if((e/=n/2)<1)return t/2*(e*e*(((o*=(1.525))+1)*e-o))+a;return t/2*((e-=2)*e*(((o*=(1.525))+1)*e+o)+2)+a},easeInBounce:function(i,e,t,a,n){return a-jQuery.easing.easeOutBounce(i,n-e,0,a,n)+t},easeOutBounce:function(i,e,a,t,n){if((e/=n)<(1/2.75)){return t*(7.5625*e*e)+a}\nelse if(e<(2/2.75)){return t*(7.5625*(e-=(1.5/2.75))*e+.75)+a}\nelse if(e<(2.5/2.75)){return t*(7.5625*(e-=(2.25/2.75))*e+.9375)+a}\nelse{return t*(7.5625*(e-=(2.625/2.75))*e+.984375)+a}},easeInOutBounce:function(i,e,n,a,t){if(e<t/2)return jQuery.easing.easeInBounce(i,e*2,0,a,t)*.5+n;return jQuery.easing.easeOutBounce(i,e*2-t,0,a,t)*.5+a*.5+n}})})(jQuery);(function(i){\"use strict\";i.avia_utilities=i.avia_utilities||{};i.avia_utilities.loading=function(e,a){var t={active:!1,show:function(){if(t.active===!1){t.active=!0;t.loading_item.css({display:\"block\",opacity:0})};t.loading_item.stop().animate({opacity:1})},hide:function(){if(typeof a===\"undefined\"){a=600};t.loading_item.stop().delay(a).animate({opacity:0},function(){t.loading_item.css({display:\"none\"});t.active=!1})},attach:function(){if(typeof e===\"undefined\"){e=\"body\"};t.loading_item=i(\"<div class=\\\"avia_loading_icon\\\"><div class=\\\"av-siteloader\\\"></div></div>\").css({display:\"none\"}).appendTo(e)}};t.attach();return t};i.avia_utilities.playpause=function(e,a){var t={active:!1,to1:\"\",to2:\"\",set:function(i){t.loading_item.removeClass(\"av-play av-pause\");t.to1=setTimeout(function(){t.loading_item.addClass(\"av-\"+i)},10);t.to2=setTimeout(function(){t.loading_item.removeClass(\"av-\"+i)},1500)},attach:function(){if(typeof e===\"undefined\"){e=\"body\"};t.loading_item=i(\"<div class=\\\"avia_playpause_icon\\\"></div>\").css({display:\"none\"}).appendTo(e)}};t.attach();return t};i.avia_utilities.preload=function(e){new i.AviaPreloader(e)};i.AviaPreloader=function(e){this.win=i(window);this.defaults={container:\"body\",maxLoops:10,trigger_single:!0,single_callback:function(){},global_callback:function(){}};this.options=i.extend({},this.defaults,e);this.preload_images=0;this.load_images()};i.AviaPreloader.prototype={load_images:function(){var e=this;if(typeof e.options.container===\"string\"){e.options.container=i(e.options.container)};e.options.container.each(function(){var a=i(this);a.images=a.find(\"img\");a.allImages=a.images;e.preload_images+=a.images.length;setTimeout(function(){e.checkImage(a)},10)})},checkImage:function(i){var e=this;i.images.each(function(){if(this.complete===!0){i.images=i.images.not(this);e.preload_images-=1}});if(i.images.length&&e.options.maxLoops>=0){e.options.maxLoops-=1;setTimeout(function(){e.checkImage(i)},500)}\nelse{e.preload_images=e.preload_images-i.images.length;e.trigger_loaded(i)}},trigger_loaded:function(i){var e=this;if(e.options.trigger_single!==!1){e.win.trigger(\"avia_images_loaded_single\",[i]);e.options.single_callback.call(i)};if(e.preload_images===0){e.win.trigger(\"avia_images_loaded\");e.options.global_callback.call()}}};i.avia_utilities.css_easings={linear:\"linear\",swing:\"ease-in-out\",bounce:\"cubic-bezier(0.0, 0.35, .5, 1.3)\",easeInQuad:\"cubic-bezier(0.550, 0.085, 0.680, 0.530)\",easeInCubic:\"cubic-bezier(0.550, 0.055, 0.675, 0.190)\",easeInQuart:\"cubic-bezier(0.895, 0.030, 0.685, 0.220)\",easeInQuint:\"cubic-bezier(0.755, 0.050, 0.855, 0.060)\",easeInSine:\"cubic-bezier(0.470, 0.000, 0.745, 0.715)\",easeInExpo:\"cubic-bezier(0.950, 0.050, 0.795, 0.035)\",easeInCirc:\"cubic-bezier(0.600, 0.040, 0.980, 0.335)\",easeInBack:\"cubic-bezier(0.600, -0.280, 0.735, 0.04)\",easeOutQuad:\"cubic-bezier(0.250, 0.460, 0.450, 0.940)\",easeOutCubic:\"cubic-bezier(0.215, 0.610, 0.355, 1.000)\",easeOutQuart:\"cubic-bezier(0.165, 0.840, 0.440, 1.000)\",easeOutQuint:\"cubic-bezier(0.230, 1.000, 0.320, 1.000)\",easeOutSine:\"cubic-bezier(0.390, 0.575, 0.565, 1.000)\",easeOutExpo:\"cubic-bezier(0.190, 1.000, 0.220, 1.000)\",easeOutCirc:\"cubic-bezier(0.075, 0.820, 0.165, 1.000)\",easeOutBack:\"cubic-bezier(0.175, 0.885, 0.320, 1.275)\",easeInOutQuad:\"cubic-bezier(0.455, 0.030, 0.515, 0.955)\",easeInOutCubic:\"cubic-bezier(0.645, 0.045, 0.355, 1.000)\",easeInOutQuart:\"cubic-bezier(0.770, 0.000, 0.175, 1.000)\",easeInOutQuint:\"cubic-bezier(0.860, 0.000, 0.070, 1.000)\",easeInOutSine:\"cubic-bezier(0.445, 0.050, 0.550, 0.950)\",easeInOutExpo:\"cubic-bezier(1.000, 0.000, 0.000, 1.000)\",easeInOutCirc:\"cubic-bezier(0.785, 0.135, 0.150, 0.860)\",easeInOutBack:\"cubic-bezier(0.680, -0.550, 0.265, 1.55)\",easeInOutBounce:\"cubic-bezier(0.580, -0.365, 0.490, 1.365)\",easeOutBounce:\"cubic-bezier(0.760, 0.085, 0.490, 1.365)\"};i.avia_utilities.supported={};i.avia_utilities.supports=(function(){var e=document.createElement(\"div\"),i=[\"Khtml\",\"Ms\",\"Moz\",\"Webkit\"];return function(a,t){if(e.style[a]!==undefined){return\"\"};if(t!==undefined){i=t};a=a.replace(/^[a-z]/,function(i){return i.toUpperCase()});var n=i.length;while(n--){if(e.style[i[n]+a]!==undefined){return\"-\"+i[n].toLowerCase()+\"-\"}};return!1}}());i.fn.avia_animate=function(e,a,t,n){if(typeof a===\"function\"){n=a;a=!1};if(typeof t===\"function\"){n=t;t=!1};if(typeof a===\"string\"){t=a;a=!1};if(n===undefined||n===!1){n=function(){}};if(t===undefined||t===!1){t=\"easeInQuad\"};if(a===undefined||a===!1){a=400};if(i.avia_utilities.supported.transition===undefined){i.avia_utilities.supported.transition=i.avia_utilities.supports(\"transition\")};if(i.avia_utilities.supported.transition!==!1){var c=i.avia_utilities.supported.transition+\"transition\",r={},l={},u=document.body.style,o=(u.WebkitTransition!==undefined)?\"webkitTransitionEnd\":(u.OTransition!==undefined)?\"oTransitionEnd\":\"transitionend\";t=i.avia_utilities.css_easings[t];r[c]=\"all \"+(a/1000)+\"s \"+t;o=o+\".avia_animate\";for(var s in e){if(e.hasOwnProperty(s)){l[s]=e[s]}};e=l;this.each(function(){var t=i(this),f=!1,s,u;for(s in e){if(e.hasOwnProperty(s)){u=t.css(s);if(e[s]!=u&&e[s]!=u.replace(/px|%/g,\"\")){f=!0;break}}};if(f){if(!(i.avia_utilities.supported.transition+\"transform\" in e)){e[i.avia_utilities.supported.transition+\"transform\"]=\"translateZ(0)\"};var l=!1;t.on(o,function(i){if(i.target!=i.currentTarget)return!1;if(l==!0)return!1;l=!0;r[c]=\"none\";t.off(o);t.css(r);setTimeout(function(){n.call(t)})});setTimeout(function(){if(!l&&!avia_is_mobile&&i(\"html\").is(\".avia-safari\")){t.trigger(o);i.avia_utilities.log(\"Safari Fallback \"+o+\" trigger\")}},a+100);setTimeout(function(){t.css(r)},10);setTimeout(function(){t.css(e)},20)}\nelse{setTimeout(function(){n.call(t)})}})}\nelse{this.animate(e,a,t,n)};return this}})(jQuery);(function(i){\"use strict\";i.fn.avia_keyboard_controls=function(e){var t={37:\".prev-slide\",39:\".next-slide\"},a={mousebind:function(i){i.hover(function(){i.mouseover=!0},function(){i.mouseover=!1})},keybind:function(e){i(document).keydown(function(i){if(e.mouseover&&typeof e.options[i.keyCode]!==\"undefined\"){var a;if(typeof e.options[i.keyCode]===\"string\"){a=e.find(e.options[i.keyCode])}\nelse{a=e.options[i.keyCode]};if(a.length){a.trigger(\"click\",[\"keypress\"]);return!1}}})}};return this.each(function(){var n=i(this);n.options=i.extend({},t,e);n.mouseover=!1;a.mousebind(n);a.keybind(n)})};i.fn.avia_swipe_trigger=function(e){var o=i(window),a=i.avia_utilities.isMobile,t={prev:\".prev-slide\",next:\".next-slide\",event:{prev:\"click\",next:\"click\"}},n={activate_touch_control:function(i){var e,a,t;i.touchPos={};i.hasMoved=!1;i.on(\"touchstart\",function(e){i.touchPos.X=e.originalEvent.touches[0].clientX;i.touchPos.Y=e.originalEvent.touches[0].clientY});i.on(\"touchend\",function(e){i.touchPos={};if(i.hasMoved){e.preventDefault()};i.hasMoved=!1});i.on(\"touchmove\",function(n){if(!i.touchPos.X){i.touchPos.X=n.originalEvent.touches[0].clientX;i.touchPos.Y=n.originalEvent.touches[0].clientY}\nelse{a=n.originalEvent.touches[0].clientX-i.touchPos.X;t=n.originalEvent.touches[0].clientY-i.touchPos.Y;if(Math.abs(a)>Math.abs(t)){n.preventDefault();if(i.touchPos!==n.originalEvent.touches[0].clientX){if(Math.abs(a)>50){e=a>0?\"prev\":\"next\";if(typeof i.options[e]===\"string\"){i.find(i.options[e]).trigger(i.options.event[e],[\"swipe\"])}\nelse{i.options[e].trigger(i.options.event[e],[\"swipe\"])};i.hasMoved=!0;i.touchPos={};return!1}}}}})}};return this.each(function(){if(a){var o=i(this);o.options=i.extend({},t,e);n.activate_touch_control(o)}})}}(jQuery));\";}s:22:\"avia-module-contact-js\";a:6:{s:4:\"name\";s:19:\"avia-module-contact\";s:3:\"url\";s:107:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.js\";s:4:\"path\";s:82:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/contact/contact.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:4363:\"(function(a){a.fn.avia_ajax_form=function(e){var t={sendPath:\'send.php\',responseContainer:\'.ajaxresponse\'};var r=a.extend(t,e);return this.each(function(){var t=a(this),i=!1,e={formElements:t.find(\'textarea, select, input[type=text], input[type=checkbox], input[type=hidden]\'),validationError:!1,button:t.find(\'input:submit\'),dataObj:{}},s=t.next(r.responseContainer+\':eq(0)\');e.button.on(\'click\',n);if(a.avia_utilities.isMobile){e.formElements.each(function(e){var r=a(this),t=r.hasClass(\'is_email\');if(t)r.attr(\'type\',\'email\')})};function n(r){e.validationError=!1;e.datastring=\'ajax=true\';e.formElements=t.find(\'textarea, select, input[type=text], input[type=checkbox], input[type=hidden], input[type=email]\');e.formElements.each(function(l){var o=a(this),r=o.parent(),s=o.val(),v=o.attr(\'name\'),i=o.attr(\'class\'),n=!0;if(o.is(\':checkbox\')){if(o.is(\':checked\')){s=!0}\nelse{s=\'\'}};e.dataObj[v]=encodeURIComponent(s);if(i&&i.match(/is_empty/)){if(s==\'\'||s==null){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(i&&i.match(/is_email/)){if(!s.match(/^[\\w|\\.|\\-]+@\\w[\\w|\\.|\\-]*\\.[a-zA-Z]{2,20}$/)){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(i&&i.match(/is_ext_email/)){if(!s.match(/^[\\w|\\.|\\-|ÄÖÜäöü]+@\\w[\\w|\\.|\\-|ÄÖÜäöü]*\\.[a-zA-Z]{2,20}$/)){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(i&&i.match(/is_phone/)){if(!s.match(/^(\\d|\\s|\\-|\\/|\\(|\\)|\\[|\\]|e|x|t|ension|\\.|\\+|\\_|\\,|\\:|\\;){3,}$/)){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(i&&i.match(/is_number/)){if(!s.match(/^-?\\s*(0|[1-9]\\d*)([\\.,]\\d+)?$/)){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(i&&i.match(/is_positiv_number/)){if(!(a.isNumeric(s))||s==\'\'||s<0){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(i&&i.match(/captcha/)&&!i.match(/recaptcha/)){var d=t.find(\'#\'+v+\'_verifier\').val(),c=d.charAt(d.length-1),f=d.charAt(c);if(s!=f){r.removeClass(\'valid error ajax_alert\').addClass(\'error\');e.validationError=!0}\nelse{r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')};n=!1};if(n&&s!=\'\'){r.removeClass(\'valid error ajax_alert\').addClass(\'valid\')}});if(e.validationError==!1){if(t.data(\'av-custom-send\')){l()}\nelse{o()}};return!1};function o(){if(i){return!1};if(e.button.hasClass(\'avia_button_inactive\')){return!1};i=!0;e.button.addClass(\'av-sending-button\');e.button.val(e.button.data(\'sending-label\'));var n=t.data(\'avia-redirect\')||!1,o=t.attr(\'action\'),l=t.is(\'.av-form-labels-style\');if(l)return;s.load(o+\' \'+r.responseContainer,e.dataObj,function(){if(n&&o!=n){t.attr(\'action\',n);location.href=n}\nelse{s.removeClass(\'hidden\').css({display:\'block\'});t.slideUp(400,function(){s.slideDown(400,function(){a(\'body\').trigger(\'av_resize_finished\')});e.formElements.val(\'\')})}})};function l(){if(i){return!1};i=!0;var v=e.button.val();e.button.addClass(\'av-sending-button\');e.button.val(e.button.data(\'sending-label\'));e.dataObj.ajax_mailchimp=!0;var n=t.data(\'avia-redirect\')||!1,l=t.attr(\'action\'),o=t.find(\'.av-form-error-container\'),d=t.data(\'avia-form-id\');a.ajax({url:l,type:\'POST\',data:e.dataObj,beforeSend:function(){if(o.length){o.slideUp(400,function(){o.remove();a(\'body\').trigger(\'av_resize_finished\')})}},success:function(o){var f=jQuery(\'<div>\').append(jQuery.parseHTML(o)),c=f.find(\'.av-form-error-container\');if(c.length){i=!1;t.prepend(c);c.css({display:\'none\'}).slideDown(400,function(){a(\'body\').trigger(\'av_resize_finished\')});e.button.removeClass(\'av-sending-button\');e.button.val(v)}\nelse{if(n&&l!=n){t.attr(\'action\',n);location.href=n}\nelse{var m=f.find(r.responseContainer+\'_\'+d);s.html(m).removeClass(\'hidden\').css({display:\'block\'});t.slideUp(400,function(){s.slideDown(400,function(){a(\'body\').trigger(\'av_resize_finished\')});e.formElements.val(\'\')})}}},error:function(){},complete:function(){}})}})}})(jQuery);\";}s:24:\"avia-module-slideshow-js\";a:6:{s:4:\"name\";s:21:\"avia-module-slideshow\";s:3:\"url\";s:111:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js\";s:4:\"path\";s:86:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:14471:\"(function(i){\'use strict\';i.AviaSlider=function(t,s){var e=this;this.$win=i(window);this.$slider=i(s);this.isMobile=i.avia_utilities.isMobile;this._prepareSlides(t);i.avia_utilities.preload({container:this.$slider,single_callback:function(){e._init(t)}})};i.AviaSlider.defaults={interval:5,autoplay:!1,stopinfiniteloop:!1,animation:\'slide\',transitionSpeed:900,easing:\'easeInOutQuart\',wrapElement:\'>ul\',slideElement:\'>li\',hoverpause:!1,bg_slider:!1,show_slide_delay:0,fullfade:!1,carousel:\'no\',carouselSlidesToShow:3,carouselSlidesToScroll:1,carouselResponsive:[],};i.AviaSlider.prototype={_init:function(t){this.options=this._setOptions(t);this.$sliderUl=this.$slider.find(this.options.wrapElement);this.$slides=this.$sliderUl.find(this.options.slideElement);this.gotoButtons=this.$slider.find(\'.avia-slideshow-dots a\');this.permaCaption=this.$slider.find(\'>.av-slideshow-caption\');this.itemsCount=this.$slides.length;this.current=0;this.currentCarousel=0;this.slideWidthCarousel=\'240\';this.loopCount=0;this.isAnimating=!1;this.browserPrefix=i.avia_utilities.supports(\'transition\');this.cssActive=this.browserPrefix!==!1?!0:!1;this.css3DActive=document.documentElement.className.indexOf(\'avia_transform3d\')!==-1?!0:!1;if(this.options.bg_slider==!0){this.imageUrls=[];this.loader=i.avia_utilities.loading(this.$slider);this._bgPreloadImages()}\nelse{this._kickOff()};if(this.options.carousel===\'yes\'){this.options.animation=\'carouselslide\'}},_setOptions:function(t){var a=i.extend(!0,{},i.AviaSlider.defaults,t),e=this.$slider.data(),s=\'\';for(s in e){if(e.hasOwnProperty(s)){if(typeof e[s]===\'string\'||typeof e[s]===\'number\'||typeof e[s]===\'boolean\'){a[s]=e[s]}}};return a},_prepareSlides:function(t){if(this.isMobile){var s=this.$slider.find(\'.av-mobile-fallback-image\');s.each(function(){var s=i(this).removeClass(\'av-video-slide\').data({\'avia_video_events\':!0,\'video-ratio\':0}),n=s.data(\'mobile-img\'),e=s.data(\'fallback-link\'),a=s.find(\'.avia-slide-wrap\');s.find(\'.av-click-overlay, .mejs-mediaelement, .mejs-container\').remove();if(!n){i(\'<p class=\"av-fallback-message\"><span>Please set a mobile device fallback image for this video in your wordpress backend</span></p>\').appendTo(a)};if(t&&t.bg_slider){s.data(\'img-url\',n);if(e!=\'\'){if(a.is(\'a\')){a.attr(\'href\',e)}\nelse{a.find(\'a\').remove();a.replaceWith(function(){var t=i(this);return i(\'<a>\').attr({\'data-rel\':t.data(\'rel\'),\'class\':t.attr(\'class\'),\'href\':e}).append(i(this).contents())});a=s.find(\'.avia-slide-wrap\')};if(i.fn.avia_activate_lightbox){s.parents(\'#main\').avia_activate_lightbox()}}}\nelse{var o=\'<img src=\"\'+n+\'\" alt=\"\" title=\"\" />\',l=!1;if(\'string\'==typeof e&&e.trim()!=\'\'){if(a.is(\'a\')){a.attr(\'href\',e)}\nelse{var r=e.match(/\\.(jpg|jpeg|gif|png)$/i)!=null?\' rel=\"lightbox\" \':\'\';o=\'<a href=\"\'+e.trim()+\'\"\'+r+\'>\'+o+\'</a>\'};l=!0};s.find(\'.avia-slide-wrap\').append(o);if(l&&i.fn.avia_activate_lightbox){s.parents(\'#main\').avia_activate_lightbox()}}})}},_bgPreloadImages:function(i){this._getImageURLS();this._preloadSingle(0,function(){this._kickOff();this._preloadNext(1)})},_getImageURLS:function(){var t=this;this.$slides.each(function(s){t.imageUrls[s]=[];t.imageUrls[s][\'url\']=i(this).data(\'img-url\');if(typeof t.imageUrls[s][\'url\']==\'string\'){t.imageUrls[s][\'status\']=!1}\nelse{t.imageUrls[s][\'status\']=!0}})},_preloadSingle:function(t,s){var e=this,a=new Image();if(typeof e.imageUrls[t][\'url\']==\'string\'){i(a).on(\'load error\',function(){e.imageUrls[t][\'status\']=!0;e.$slides.eq(t).css(\'background-image\',\'url(\'+e.imageUrls[t][\'url\']+\')\');if(typeof s==\'function\')s.apply(e,[a,t])});if(e.imageUrls[t][\'url\']!=\'\'){a.src=e.imageUrls[t][\'url\']}\nelse{i(a).trigger(\'error\')}}\nelse{if(typeof s==\'function\')s.apply(e,[a,t])}},_preloadNext:function(i){if(typeof this.imageUrls[i]!=\'undefined\'){this._preloadSingle(i,function(){this._preloadNext(i+1)})}},_bindEvents:function(){var s=this,t=i(window);this.$slider.on(\'click\',\'.next-slide\',i.proxy(this.next,this));this.$slider.on(\'click\',\'.prev-slide\',i.proxy(this.previous,this));this.$slider.on(\'click\',\'.goto-slide\',i.proxy(this.go2,this));if(this.options.hoverpause){this.$slider.on(\'mouseenter\',i.proxy(this.pause,this));this.$slider.on(\'mouseleave\',i.proxy(this.resume,this))};if(this.options.stopinfiniteloop&&this.options.autoplay){if(this.options.stopinfiniteloop==\'last\'){this.$slider.on(\'avia_slider_last_slide\',i.proxy(this._stopSlideshow,this))}\nelse if(this.options.stopinfiniteloop==\'first\'){this.$slider.on(\'avia_slider_first_slide\',i.proxy(this._stopSlideshow,this))}};if(this.options.carousel===\'yes\'){if(!this.isMobile){t.on(\'debouncedresize\',i.proxy(this._buildCarousel,this))}}\nelse{t.on(\'debouncedresize.aviaSlider\',i.proxy(this._setSize,this))};if(!this.isMobile){this.$slider.avia_keyboard_controls()}\nelse{this.$slider.avia_swipe_trigger()};s._attach_video_events()},_kickOff:function(){var t=this,s=t.$slides.eq(0),e=s.data(\'video-ratio\');t._bindEvents();this.$slider.removeClass(\'av-default-height-applied\');if(e){t._setSize(!0)}\nelse{if(this.options.keep_pading!=!0){t.$sliderUl.css(\'padding\',0);t.$win.trigger(\'av-height-change\')}};t._setCenter();if(this.options.carousel===\'no\'){s.css({visibility:\'visible\',opacity:0}).avia_animate({opacity:1},function(){var s=i(this).addClass(\'active-slide\');if(t.permaCaption.length){t.permaCaption.addClass(\'active-slide\')}})};if(t.options.autoplay){t._startSlideshow()};if(t.options.carousel===\'yes\'){t._buildCarousel()};t.$slider.trigger(\'_kickOff\')},_buildCarousel:function(){var r=this,a=this.$slider.outerWidth(),t=parseInt(a/this.options.carouselSlidesToShow),l=window.innerWidth||i(window).width();if(this.options.carouselResponsive&&this.options.carouselResponsive.length&&this.options.carouselResponsive!==null){for(var e in this.options.carouselResponsive){var n=this.options.carouselResponsive[e][\'breakpoint\'],s=this.options.carouselResponsive[e][\'settings\'][\'carouselSlidesToShow\'];if(n>=l){t=parseInt(a/s);this.options.carouselSlidesToShow=s}}};this.slideWidthCarousel=t;this.$slides.each(function(s){i(this).width(t)});var o=t*this.itemsCount;this.$sliderUl.width(o).css(\'transform\',\'translateX(0px)\');if(this.options.carouselSlidesToShow>=this.itemsCount){this.$slider.find(\'.av-timeline-nav\').hide()}},_navigate:function(i,t){if(this.isAnimating||this.itemsCount<2 ||!this.$slider.is(\':visible\')){return!1};this.isAnimating=!0;this.prev=this.current;if(t!==undefined){this.current=t;i=this.current>this.prev?\'next\':\'prev\'}\nelse if(i===\'next\'){this.current=this.current<this.itemsCount-1?this.current+1:0;if(this.current===0&&this.options.autoplay_stopper==1&&this.options.autoplay){this.isAnimating=!1;this.current=this.prev;this._stopSlideshow();return!1}}\nelse if(i===\'prev\'){this.current=this.current>0?this.current-1:this.itemsCount-1};this.gotoButtons.removeClass(\'active\').eq(this.current).addClass(\'active\');if(this.options.carousel===\'no\'){this._setSize()};if(this.options.bg_slider==!0){if(this.imageUrls[this.current][\'status\']==!0){this[\'_\'+this.options.animation].call(this,i)}\nelse{this.loader.show();this._preloadSingle(this.current,function(){this[\'_\'+this.options.animation].call(this,i);this.loader.hide()})}}\nelse{this[\'_\'+this.options.animation].call(this,i)};if(this.current==0){this.loopCount++;this.$slider.trigger(\'avia_slider_first_slide\')}\nelse if(this.current==this.itemsCount-1){this.$slider.trigger(\'avia_slider_last_slide\')}\nelse{this.$slider.trigger(\'avia_slider_navigate_slide\')}},_setSize:function(i){if(this.options.bg_slider==!0)return;var n=this,t=this.$slides.eq(this.current),r=t.find(\'img\'),a=Math.floor(this.$sliderUl.height()),o=t.data(\'video-ratio\'),s=o?this.$sliderUl.width()/o:Math.floor(t.height()),e=t.data(\'video-height\'),l=t.data(\'video-toppos\');this.$sliderUl.height(a).css(\'padding\',0);if(s!=a){if(i==!0){this.$sliderUl.css({height:s});this.$win.trigger(\'av-height-change\')}\nelse{this.$sliderUl.avia_animate({height:s},function(){n.$win.trigger(\'av-height-change\')})}};this._setCenter();if(e&&e!=\'set\'){t.find(\'iframe, embed, video, object, .av_youtube_frame\').css({height:e+\'%\',top:l+\'%\'});t.data(\'video-height\',\'set\')}},_setCenter:function(){var e=this.$slides.eq(this.current),o=e.find(\'img\'),i=parseInt(o.css(\'min-width\'),10),t=e.width(),a=e.find(\'.av-slideshow-caption\'),s=((t-i)/2);if(a.length){if(a.is(\'.caption_left\')){s=((t-i)/1.5)}\nelse if(a.is(\'.caption_right\')){s=((t-i)/2.5)}};if(t>=i){s=0};o.css({left:s})},_carouselmove:function(){var i=this.slideWidthCarousel*this.currentCarousel;this.$sliderUl.css(\'transform\',\'translateX(-\'+i+\'px)\')},_carouselslide:function(i){if(i===\'next\'){if(this.options.carouselSlidesToShow+this.currentCarousel<this.itemsCount){this.currentCarousel++;this._carouselmove()}}\nelse if(i===\'prev\'){if(this.currentCarousel>0){this.currentCarousel--;this._carouselmove()}};this.isAnimating=!1},_slide:function(i){var l=!1,h=l==!0?2:1,r=this.$slider.width(),d=i===\'next\'?-1:1,t=this.browserPrefix+\'transform\',a={},s={},e={},o=(r*d*-1),n=(r*d)/h;if(this.cssActive){t=this.browserPrefix+\'transform\';if(this.css3DActive){a[t]=\'translate3d(\'+o+\'px, 0, 0)\';s[t]=\'translate3d(\'+n+\'px, 0, 0)\';e[t]=\'translate3d(0,0,0)\'}\nelse{a[t]=\'translate(\'+o+\'px,0)\';s[t]=\'translate(\'+n+\'px,0)\';e[t]=\'translate(0,0)\'}}\nelse{a.left=o;s.left=n;e.left=0};if(l){s[\'z-index\']=\'1\';e[\'z-index\']=\'2\'};this._slide_animate(a,s,e)},_slide_up:function(i){var l=!0,h=l==!0?2:1,r=this.$slider.height(),d=i===\'next\'?-1:1,t=this.browserPrefix+\'transform\',a={},s={},e={},o=(r*d*-1),n=(r*d)/h;if(this.cssActive){t=this.browserPrefix+\'transform\';if(this.css3DActive){a[t]=\'translate3d( 0,\'+o+\'px, 0)\';s[t]=\'translate3d( 0,\'+n+\'px, 0)\';e[t]=\'translate3d(0,0,0)\'}\nelse{a[t]=\'translate( 0,\'+o+\'px)\';s[t]=\'translate( 0,\'+n+\'px)\';e[t]=\'translate(0,0)\'}}\nelse{a.top=o;s.top=n;e.top=0};if(l){s[\'z-index\']=\'1\';e[\'z-index\']=\'2\'};this._slide_animate(a,s,e)},_slide_animate:function(i,e,a){var s=this,t=this.$slides.eq(this.current),o=this.$slides.eq(this.prev);o.trigger(\'pause\');if(!t.data(\'disableAutoplay\')){if(t.hasClass(\'av-video-lazyload\')&&!t.hasClass(\'av-video-lazyload-complete\')){t.find(\'.av-click-to-play-overlay\').trigger(\'click\')}\nelse{t.trigger(\'play\')}};t.css({visibility:\'visible\',zIndex:4,opacity:1,left:0,top:0});t.css(i);o.avia_animate(e,this.options.transitionSpeed,this.options.easing);var n=function(){s.isAnimating=!1;t.addClass(\'active-slide\');o.css({visibility:\'hidden\'}).removeClass(\'active-slide\');s.$slider.trigger(\'avia-transition-done\')};if(s.options.show_slide_delay>0){setTimeout(function(){t.avia_animate(a,s.options.transitionSpeed,s.options.easing,n)},s.options.show_slide_delay)}\nelse{t.avia_animate(a,s.options.transitionSpeed,s.options.easing,n)}},_fade:function(){var t=this,i=this.$slides.eq(this.current),s=this.$slides.eq(this.prev),e={visibility:\'visible\',zIndex:3,opacity:0},a=function(){t.isAnimating=!1;i.addClass(\'active-slide\');s.css({visibility:\'hidden\',zIndex:2}).removeClass(\'active-slide\');t.$slider.trigger(\'avia-transition-done\')};s.trigger(\'pause\');if(!i.data(\'disableAutoplay\')){if(i.hasClass(\'av-video-lazyload\')&&!i.hasClass(\'av-video-lazyload-complete\')){i.find(\'.av-click-to-play-overlay\').trigger(\'click\')}\nelse{i.trigger(\'play\')}};if(t.options.fullfade==!0){s.avia_animate({opacity:0},200,\'linear\',function(){i.css(e).avia_animate({opacity:1},t.options.transitionSpeed,\'linear\',a)})}\nelse{i.css(e).avia_animate({opacity:1},t.options.transitionSpeed/2,\'linear\',function(){s.avia_animate({opacity:0},200,\'linear\',a)})}},_attach_video_events:function(){var t=this,s=i(\'html\');t.$slides.each(function(s){var n=i(this),r=n.find(\'.caption_fullwidth, .av-click-overlay\'),d=n.find(\'.mejs-mediaelement\'),l=n.hasClass(\'av-video-lazyload\')?!0:!1;if(n.data(\'avia_video_events\')!=!0){n.data(\'avia_video_events\',!0);n.on(\'av-video-events-bound\',{slide:n,wrap:d,iteration:s,self:t,lazyload:l},e);n.on(\'av-video-ended\',{slide:n,self:t},a);n.on(\'av-video-play-executed\',function(){setTimeout(function(){t.pause()},100)});r.on(\'click\',{slide:n},o);if(n.is(\'.av-video-events-bound\'))n.trigger(\'av-video-events-bound\');if(l&&s===0&&!n.data(\'disableAutoplay\')){n.find(\'.av-click-to-play-overlay\').trigger(\'click\')}}});function e(i){if(i.data.iteration===0){i.data.wrap.css(\'opacity\',0);if(!i.data.self.isMobile&&!i.data.slide.data(\'disableAutoplay\')){i.data.slide.trigger(\'play\')}; ;setTimeout(function(){i.data.wrap.avia_animate({opacity:1},400)},50)}\nelse if(s.is(\'.avia-msie\')&&!i.data.slide.is(\'.av-video-service-html5\')){if(!i.data.slide.data(\'disableAutoplay\'))i.data.slide.trigger(\'play\')};if(i.data.slide.is(\'.av-video-service-html5\')&&i.data.iteration!==0){i.data.slide.trigger(\'pause\')};if(i.data.lazyload){i.data.slide.addClass(\'av-video-lazyload-complete\');i.data.slide.trigger(\'play\')}};function a(i){if(!i.data.slide.is(\'.av-single-slide\')&&!i.data.slide.is(\'.av-loop-video\')){i.data.slide.trigger(\'reset\');t._navigate(\'next\');t.resume()};if(i.data.slide.is(\'.av-loop-video\')&&i.data.slide.is(\'.av-video-service-html5\')){if(s.is(\'.avia-safari-8\')){setTimeout(function(){i.data.slide.trigger(\'play\')},1)}}};function o(i){if(i.target.tagName!=\'A\'){i.data.slide.trigger(\'toggle\')}}},_timer:function(i,t,o){var s=this,e,a=t;s.timerId=0;this.pause=function(){window.clearTimeout(s.timerId);a-=new Date()-e};this.resume=function(){e=new Date();s.timerId=window.setTimeout(i,a)};this.destroy=function(){window.clearTimeout(s.timerId)};this.resume(!0)},_startSlideshow:function(){var i=this;this.isPlaying=!0;this.slideshow=new this._timer(function(){i._navigate(\'next\');if(i.options.autoplay){i._startSlideshow()}},(this.options.interval*1000))},_stopSlideshow:function(){if(this.options.autoplay){this.slideshow.destroy();this.isPlaying=!1;this.options.autoplay=!1}},next:function(i){i.preventDefault();this._stopSlideshow();this._navigate(\'next\')},previous:function(i){i.preventDefault();this._stopSlideshow();this._navigate(\'prev\')},go2:function(i){if(isNaN(i)){i.preventDefault();i=i.currentTarget.hash.replace(\'#\',\'\')};i-=1;if(i===this.current||i>=this.itemsCount||i<0){return!1};this._stopSlideshow();this._navigate(!1,i)},play:function(){if(!this.isPlaying){this.isPlaying=!0;this._navigate(\'next\');this.options.autoplay=!0;this._startSlideshow()}},pause:function(){if(this.isPlaying){this.slideshow.pause()}},resume:function(){if(this.isPlaying){this.slideshow.resume()}},destroy:function(i){this.slideshow.destroy(i)}};i.fn.aviaSlider=function(t){return this.each(function(){var s=i.data(this,\'aviaSlider\');if(!s){s=i.data(this,\'aviaSlider\',new i.AviaSlider(t,this))}})}})(jQuery);\";}s:24:\"avia-module-countdown-js\";a:6:{s:4:\"name\";s:21:\"avia-module-countdown\";s:3:\"url\";s:111:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.js\";s:4:\"path\";s:86:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/countdown/countdown.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1733:\"(function(e){\'use strict\';var t=[\'weeks\',\'days\',\'hours\',\'minutes\',\'seconds\'],o=1000,a=o*60,n=a*60,i=n*24,r=i*7,d=function(t){var s={},l=new Date();var c=new Date(l.getTime()+l.getTimezoneOffset()*60000),d=t.end-c;if(d<=0){clearInterval(t.countdown);return};t.time.weeks=Math.floor(d/r);t.time.days=Math.floor((d%r)/i);t.time.hours=Math.floor((d%i)/n);t.time.minutes=Math.floor((d%n)/a);t.time.seconds=Math.floor((d%a)/o);switch(t.data.maximum){case 1:t.time.seconds=Math.floor(d/o);break;case 2:t.time.minutes=Math.floor(d/a);break;case 3:t.time.hours=Math.floor(d/n);break;case 4:t.time.days=Math.floor(d/i);break};for(var u in t.time){if(typeof t.update[u]==\'object\'){if(t.firstrun||t.oldtime[u]!=t.time[u]){var m=(t.time[u]===1)?\'single\':\'multi\';t.update[u].time_container.text(t.time[u]);t.update[u].label_container.text(t.update[u][m])}}};if(t.firstrun)t.container.addClass(\'av-countdown-active\');t.oldtime=e.extend({},t.time);t.firstrun=!1};e.fn.aviaCountdown=function(a){if(!this.length)return;return this.each(function(){var a={};a.update={};a.time={};a.oldtime={};a.firstrun=!0;a.container=e(this);a.data=a.container.data();a.end=new Date(a.data.year,a.data.month,a.data.day,a.data.hour,a.data.minute);if(a.data.timezone!=\'0\'){a.end=new Date(a.end.getTime()-a.data.timezone*60000)};for(var n in t){a.update[t[n]]={time_container:a.container.find(\'.av-countdown-\'+t[n]+\' .av-countdown-time\'),label_container:a.container.find(\'.av-countdown-\'+t[n]+\' .av-countdown-time-label\')};if(a.update[t[n]].label_container.length){a.update[t[n]].single=a.update[t[n]].label_container.data(\'label\');a.update[t[n]].multi=a.update[t[n]].label_container.data(\'label-multi\')}};d(a);a.countdown=setInterval(function(){d(a)},1000)})}}(jQuery));\";}s:22:\"avia-module-gallery-js\";a:6:{s:4:\"name\";s:19:\"avia-module-gallery\";s:3:\"url\";s:107:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js\";s:4:\"path\";s:82:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery/gallery.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1261:\"(function(a){\'use strict\';a.fn.avia_sc_gallery=function(t){return this.each(function(){var i=a(this),e=i.find(\'img\'),t=i.find(\'.avia-gallery-big\');i.on(\'avia_start_animation\',function(){e.each(function(t){var i=a(this);setTimeout(function(){i.addClass(\'avia_start_animation\')},(t*110))})});if(i.hasClass(\'deactivate_avia_lazyload\'))i.trigger(\'avia_start_animation\');if(t.length){i.on(\'mouseenter\',\'.avia-gallery-thumb a\',function(){var i=this;t.attr(\'data-onclick\',i.getAttribute(\'data-onclick\'));t.height(t.height());t.attr(\'href\',i.href);var o=i.getAttribute(\'data-prev-img\'),e=t.find(\'img\'),s=e.attr(\'src\');if(o!=s){var r=new Image();r.src=o;var n=a(r);if(t.hasClass(\'avia-gallery-big-no-crop-thumb\')){n.css({\'height\':t.height(),\'width\':\'auto\'})};t.stop().animate({opacity:0},function(){n.insertAfter(e);e.remove();t.animate({opacity:1});t.attr(\'title\',a(i).attr(\'title\'))})}});t.on(\'click\',function(){var a=i.find(\'.avia-gallery-thumb a\').eq(this.getAttribute(\'data-onclick\')-1);if(a&&!a.hasClass(\'aviaopeninbrowser\')){a.trigger(\'click\')}\nelse if(a){var t=a.attr(\'href\');if(a.hasClass(\'aviablank\')&&t!=\'\'){window.open(t,\'_blank\')}\nelse if(t!=\'\'){window.open(t,\'_self\')}};return!1});a(window).on(\'debouncedresize\',function(){t.height(\'auto\')})}})}}(jQuery));\";}s:26:\"avia-module-gallery-hor-js\";a:6:{s:4:\"name\";s:23:\"avia-module-gallery-hor\";s:3:\"url\";s:129:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js\";s:4:\"path\";s:104:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/gallery_horizontal/gallery_horizontal.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1998:\"(function(i){\'use strict\';i.fn.avia_hor_gallery=function(e){var n={slide_container:\'.av-horizontal-gallery-inner\',slide_element:\'.av-horizontal-gallery-slider\',slide_content:\'.av-horizontal-gallery-wrap\',active:\'av-active-gal-item\',prev:\'.av-horizontal-gallery-prev\',next:\'.av-horizontal-gallery-next\'};var e=i.extend(n,e),t=i(window),r=i.avia_utilities.supports(\'transition\'),l=this.browserPrefix!==!1?!0:!1,a=i.avia_utilities.isMobile,s=document.documentElement.className.indexOf(\'avia_transform3d\')!==-1?!0:!1,o={};return this.each(function(){var n=i(this),s=n.find(e.slide_container),d=n.find(e.slide_element),o=n.find(e.slide_content),h=n.find(e.prev),u=n.find(e.next),v=n.find(\'img\'),l=0,r=!1,f=n.data(\'av-initial\'),g=function(e){var t=(s.width()/100)*s.data(\'av-height\');s.css({\'padding\':0}).height(t);v.css(\'display\',\'inline-block\');setTimeout(function(){v.css(\'display\',\'block\')},10);l=0;o.each(function(){l+=i(this).outerWidth(!0)});d.css(\'min-width\',l);if(r!==!1){c(r)}},c=function(i){var a=d.find(e.slide_content).eq(i),o=s.width(),c=n.data(\'av-enlarge\')>1&&r==i?n.data(\'av-enlarge\'):1,v=a.outerWidth(!0)*c,f=parseInt(a.css(\'margin-right\'),10)/2,t=o<l?(a.position().left*-1)-(v/2)+(o/2):0;t=t+f;if(t+l<o)t=(l-o-parseInt(a.css(\'margin-right\'),10))*-1;if(t>0)t=0;d.css(\'left\',t);s.find(\'.\'+e.active).removeClass(e.active);a.addClass(e.active);r=i};i.avia_utilities.preload({container:n,global_callback:function(){g(\'init\');t.on(\'debouncedresize\',g);if(f)c(f-1);setTimeout(function(){n.addClass(\'av-horizontal-gallery-animated\')},10)}});d.avia_swipe_trigger({prev:e.prev,next:e.next});o.on(\'click\',function(e){var a=i(this),t=o.index(a);if(r===t){if(n.data(\'av-enlarge\')>1&&!i(e.target).is(\'a\')){};return};c(t)});h.on(\'click\',function(i){if(r===!1)r=1;var e=r-1;if(e<0)e=0;c(e)});u.on(\'click\',function(i){if(r===!1)r=-1;var e=r+1;if(e>o.length-1)e=o.length-1;c(e)});if(!a){n.avia_keyboard_controls({37:e.prev,39:e.next})}\nelse{n.avia_swipe_trigger({next:e.next,prev:e.prev})}})}}(jQuery));\";}s:22:\"avia-module-rotator-js\";a:6:{s:4:\"name\";s:19:\"avia-module-rotator\";s:3:\"url\";s:125:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js\";s:4:\"path\";s:100:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/headline_rotator/headline_rotator.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:2660:\"(function(t){\'use strict\';t.AviaTextRotator=function(i,e){this.$win=t(window);this.$slider=t(e);this.$inner=this.$slider.find(\'.av-rotator-text\');this.$slides=this.$inner.find(\'.av-rotator-text-single\');this.$current=this.$slides.eq(0);this.open=0;this.count=this.$slides.length;if(t.avia_utilities.supported.transition===undefined){t.avia_utilities.supported.transition=t.avia_utilities.supports(\'transition\')};this.browserPrefix=t.avia_utilities.supported.transition;this.cssActive=this.browserPrefix!==!1?!0:!1;this.property=this.browserPrefix+\'transform\',this._init(i)};t.AviaTextRotator.prototype={_init:function(i){var e=this;if(this.count<=1)return;e.options=t.extend({},i,this.$slider.data());e.$inner.addClass(\'av-rotation-active\');e._autoplay();if(e.options.animation==\'typewriter\'){e.$slider.addClass(\'av-caret av-blinking-caret\')}},_autoplay:function(){var t=this;t.autoplay=setTimeout(function(){t.open=t.open===!1?0:t.open+1;if(t.open>=t.count)t.open=0;if(t.options.animation!=\'typewriter\'){t._move({},t.open);t._autoplay()}\nelse{t._typewriter()}},t.options.interval*1000)},_typewriter:function(i){var t=this;t.$current.css(\'background-color\',t.$current.css(\'color\'));t.$slider.removeClass(\'av-caret av-blinking-caret\').addClass(\'av-marked-text\');setTimeout(function(){t.$slider.addClass(\'av-caret av-blinking-caret\').removeClass(\'av-marked-text\');t.$current.data(\'av_typewriter_text\',t.$current.html());t.$current.css(\'background-color\',\'transparent\');t.$current.html(\'\')},800);setTimeout(function(){t.$slider.removeClass(\'av-blinking-caret\');t.$next=t.$slides.eq(t.open);var i=t.$next.data(\'av_typewriter_text\')||t.$next.html();i=i.replace(/&/g,\'&\');t.$current.css({display:\'none\'});t.$next.css({display:\'inline\'});t.$next.html(\'\');var e=0,n=50;function a(){if(e<i.length){t.$next[0].innerHTML+=i.charAt(e);e++;setTimeout(a,n+Math.floor(Math.random()*100))}\nelse{t.$slider.addClass(\'av-caret av-blinking-caret\');t.$current=t.$slides.eq(t.open);t._autoplay()}};a()},1500)},_move:function(i){var t=this,e=30*t.options.animation,a={opacity:0},n={display:\'inline-block\',opacity:0},r={opacity:1};this.$next=t.$slides.eq(this.open);if(this.cssActive){a[t.property]=\'translate(0px,\'+e+\'px)\';n[t.property]=\'translate(0px,\'+(e*-1)+\'px)\';r[t.property]=\'translate(0px,0px)\'}\nelse{a[\'top\']=e;n[\'top\']=(e*-1);r[\'top\']=0};t.$current.avia_animate(a,function(){t.$current.css({display:\'none\'});t.$next.css(n).avia_animate(r,function(){t.$current=t.$slides.eq(t.open)})})}};t.fn.avia_textrotator=function(i){return this.each(function(){var e=t.data(this,\'AviaTextRotator\');if(!e){t.data(this,\'AviaTextRotator\',1);new t.AviaTextRotator(i,this)}})}}(jQuery));\";}s:23:\"avia-module-iconlist-js\";a:6:{s:4:\"name\";s:20:\"avia-module-iconlist\";s:3:\"url\";s:109:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.js\";s:4:\"path\";s:84:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/iconlist/iconlist.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:274:\"(function(i){\'use strict\';i.fn.avia_sc_iconlist=function(n){return this.each(function(){var n=i(this),t=n.find(\'>li\');n.on(\'avia_start_animation\',function(){t.each(function(n){var t=i(this);setTimeout(function(){t.addClass(\'avia_start_animation\')},(n*350))})})})}}(jQuery));\";}s:22:\"avia-module-hotspot-js\";a:6:{s:4:\"name\";s:19:\"avia-module-hotspot\";s:3:\"url\";s:121:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js\";s:4:\"path\";s:96:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/image_hotspots/image_hotspots.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:384:\"(function(t){\'use strict\';t.fn.aviaHotspots=function(n){if(!this.length)return;return this.each(function(){var n={};n.container=t(this);n.hotspots=n.container.find(\'.av-image-hotspot\');n.container.on(\'avia_start_animation\',function(){setTimeout(function(){n.hotspots.each(function(n){var i=t(this);setTimeout(function(){i.addClass(\'av-display-hotspot\')},300*n)})},400)})})}}(jQuery));\";}s:23:\"avia-module-magazine-js\";a:6:{s:4:\"name\";s:20:\"avia-module-magazine\";s:3:\"url\";s:109:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.js\";s:4:\"path\";s:84:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/magazine/magazine.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:935:\"(function(a){\'use strict\';var t=!1,i={switchMag:function(n,i){var e=a(n);if(e.is(\'.active_sort\')||t)return;var s=e.data(\'filter\'),o=i.container.filter(\':visible\'),r=i.container.filter(\'.\'+s);t=!0;i.sort_buttons.removeClass(\'active_sort\');e.addClass(\'active_sort\');i.magazine.height(i.magazine.outerHeight());o.avia_animate({opacity:0},200,function(){o.css({display:\'none\'});r.css({opacity:0,display:\'block\'}).avia_animate({opacity:1},150,function(){i.magazine.avia_animate({height:(r.outerHeight()+i.sort_bar.outerHeight())},150,function(){i.magazine.height(\'auto\');t=!1})})})}};a.fn.aviaMagazine=function(t){if(!this.length)return;return this.each(function(){var t={};t.magazine=a(this),t.sort_buttons=t.magazine.find(\'.av-magazine-sort a\');t.container=t.magazine.find(\'.av-magazine-group\');t.sort_bar=t.magazine.find(\'.av-magazine-top-bar\');t.sort_buttons.on(\'click\',function(a){a.preventDefault();i.switchMag(this,t)})})}}(jQuery));\";}s:22:\"avia-module-isotope-js\";a:6:{s:4:\"name\";s:19:\"avia-module-isotope\";s:3:\"url\";s:109:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/isotope.js\";s:4:\"path\";s:84:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/isotope.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:48916:\"!function(t,e){\'function\'==typeof define&&define.amd?define(\'jquery-bridget/jquery-bridget\',[\'jquery\'],function(i){return e(t,i)}):\'object\'==typeof module&&module.exports?module.exports=e(t,require(\'jquery\')):t.jQueryBridget=e(t,t.jQuery)}(window,function(t,e){\'use strict\';function n(i,n,a){function h(t,e,n){var s,r=\'$().\'+i+\'(\"\'+e+\'\")\';return t.each(function(t,h){var u=a.data(h,i);if(!u)return void o(i+\' not initialized. Cannot call methods, i.e. \'+r);var c=u[e];if(!c||\'_\'==e.charAt(0))return void o(r+\' is not a valid method\');var d=c.apply(u,n);s=void 0===s?d:s}),void 0!==s?s:t};function u(t,e){t.each(function(t,o){var s=a.data(o,i);s?(s.option(e),s._init()):(s=new n(o,e),a.data(o,i,s))})};a=a||e||t.jQuery,a&&(n.prototype.option||(n.prototype.option=function(t){a.isPlainObject(t)&&(this.options=a.extend(!0,this.options,t))}),a.fn[i]=function(t){if(\'string\'==typeof t){var e=r.call(arguments,1);return h(this,t,e)};return u(this,t),this},s(a))};function s(t){!t||t&&t.bridget||(t.bridget=n)};var r=Array.prototype.slice,i=t.console,o=\'undefined\'==typeof i?function(){}:function(t){i.error(t)};return s(e||t.jQuery),n}),function(t,e){\'function\'==typeof define&&define.amd?define(\'ev-emitter/ev-emitter\',e):\'object\'==typeof module&&module.exports?module.exports=e():t.EvEmitter=e()}(\'undefined\'!=typeof window?window:this,function(){function e(){};var t=e.prototype;return t.on=function(t,e){if(t&&e){var i=this._events=this._events||{},o=i[t]=i[t]||[];return o.indexOf(e)==-1&&o.push(e),this}},t.once=function(t,e){if(t&&e){this.on(t,e);var i=this._onceEvents=this._onceEvents||{},o=i[t]=i[t]||{};return o[e]=!0,this}},t.off=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){var o=i.indexOf(e);return o!=-1&&i.splice(o,1),this}},t.emitEvent=function(t,e){var i=this._events&&this._events[t];if(i&&i.length){i=i.slice(0),e=e||[];for(var n=this._onceEvents&&this._onceEvents[t],s=0;s<i.length;s++){var o=i[s],r=n&&n[o];r&&(this.off(t,o),delete n[o]),o.apply(this,e)};return this}},t.allOff=function(){delete this._events,delete this._onceEvents},e}),function(t,e){\'use strict\';\'function\'==typeof define&&define.amd?define(\'get-size/get-size\',[],function(){return e()}):\'object\'==typeof module&&module.exports?module.exports=e():t.getSize=e()}(window,function(){\'use strict\';function e(t){var e=parseFloat(t),i=t.indexOf(\'%\')==-1&&!isNaN(e);return i&&e};function h(){};function u(){for(var i={width:0,height:0,innerWidth:0,innerHeight:0,outerWidth:0,outerHeight:0},e=0;e<o;e++){var n=t[e];i[n]=0};return i};function s(t){var e=getComputedStyle(t);return e||a(\'Style returned \'+e+\'. Are you running this code in a hidden iframe on Firefox? See http://bit.ly/getsizebug1\'),e};function c(){if(!n){n=!0;var t=document.createElement(\'div\');t.style.width=\'200px\',t.style.padding=\'1px 2px 3px 4px\',t.style.borderStyle=\'solid\',t.style.borderWidth=\'1px 2px 3px 4px\',t.style.boxSizing=\'border-box\';var o=document.body||document.documentElement;o.appendChild(t);var a=s(t);r.isBoxSizeOuter=i=200==e(a.width),o.removeChild(t)}};function r(n){if(c(),\'string\'==typeof n&&(n=document.querySelector(n)),n&&\'object\'==typeof n&&n.nodeType){var a=s(n);if(\'none\'==a.display)return u();var r={};r.width=n.offsetWidth,r.height=n.offsetHeight;for(var w=r.isBorderBox=\'border-box\'==a.boxSizing,h=0;h<o;h++){var v=t[h],b=a[v],x=parseFloat(b);r[v]=isNaN(x)?0:x};var l=r.paddingLeft+r.paddingRight,f=r.paddingTop+r.paddingBottom,z=r.marginLeft+r.marginRight,I=r.marginTop+r.marginBottom,p=r.borderLeftWidth+r.borderRightWidth,m=r.borderTopWidth+r.borderBottomWidth,g=w&&i,y=e(a.width);y!==!1&&(r.width=y+(g?0:l+p));var d=e(a.height);return d!==!1&&(r.height=d+(g?0:f+m)),r.innerWidth=r.width-(l+p),r.innerHeight=r.height-(f+m),r.outerWidth=r.width+z,r.outerHeight=r.height+I,r}};var i,a=\'undefined\'==typeof console?h:function(t){console.error(t)},t=[\'paddingLeft\',\'paddingRight\',\'paddingTop\',\'paddingBottom\',\'marginLeft\',\'marginRight\',\'marginTop\',\'marginBottom\',\'borderLeftWidth\',\'borderRightWidth\',\'borderTopWidth\',\'borderBottomWidth\'],o=t.length,n=!1;return r}),function(t,e){\'use strict\';\'function\'==typeof define&&define.amd?define(\'desandro-matches-selector/matches-selector\',e):\'object\'==typeof module&&module.exports?module.exports=e():t.matchesSelector=e()}(window,function(){\'use strict\';var t=function(){var e=window.Element.prototype;if(e.matches)return\'matches\';if(e.matchesSelector)return\'matchesSelector\';for(var o=[\'webkit\',\'moz\',\'ms\',\'o\'],t=0;t<o.length;t++){var n=o[t],i=n+\'MatchesSelector\';if(e[i])return i}}();return function(e,i){return e[t](i)}}),function(t,e){\'function\'==typeof define&&define.amd?define(\'fizzy-ui-utils/utils\',[\'desandro-matches-selector/matches-selector\'],function(i){return e(t,i)}):\'object\'==typeof module&&module.exports?module.exports=e(t,require(\'desandro-matches-selector\')):t.fizzyUIUtils=e(t,t.matchesSelector)}(window,function(t,e){var i={};i.extend=function(t,e){for(var i in e)t[i]=e[i];return t},i.modulo=function(t,e){return(t%e+e)%e},i.makeArray=function(t){var e=[];if(Array.isArray(t))e=t;else if(t&&\'object\'==typeof t&&\'number\'==typeof t.length)for(var i=0;i<t.length;i++)e.push(t[i]);else e.push(t);return e},i.removeFrom=function(t,e){var i=t.indexOf(e);i!=-1&&t.splice(i,1)},i.getParent=function(t,i){for(;t.parentNode&&t!=document.body;)if(t=t.parentNode,e(t,i))return t},i.getQueryElement=function(t){return\'string\'==typeof t?document.querySelector(t):t},i.handleEvent=function(t){var e=\'on\'+t.type;this[e]&&this[e](t)},i.filterFindElements=function(t,o){t=i.makeArray(t);var n=[];return t.forEach(function(t){if(t instanceof HTMLElement){if(!o)return void n.push(t);e(t,o)&&n.push(t);for(var s=t.querySelectorAll(o),i=0;i<s.length;i++)n.push(s[i])}}),n},i.debounceMethod=function(t,e,i){var n=t.prototype[e],o=e+\'Timeout\';t.prototype[e]=function(){var e=this[o];e&&clearTimeout(e);var s=arguments,t=this;this[o]=setTimeout(function(){n.apply(t,s),delete t[o]},i||100)}},i.docReady=function(t){var e=document.readyState;\'complete\'==e||\'interactive\'==e?setTimeout(t):document.addEventListener(\'DOMContentLoaded\',t)},i.toDashed=function(t){return t.replace(/(.)([A-Z])/g,function(t,e,i){return e+\'-\'+i}).toLowerCase()};var o=t.console;return i.htmlInit=function(e,n){i.docReady(function(){var r=i.toDashed(n),s=\'data-\'+r,h=document.querySelectorAll(\'[\'+s+\']\'),u=document.querySelectorAll(\'.js-\'+r),c=i.makeArray(h).concat(i.makeArray(u)),d=s+\'-options\',a=t.jQuery;c.forEach(function(t){var i,r=t.getAttribute(s)||t.getAttribute(d);try{i=r&&JSON.parse(r)}catch(u){return void(o&&o.error(\'Error parsing \'+s+\' on \'+t.className+\': \'+u))};var h=new e(t,i);a&&a.data(t,n,h)})})},i}),function(t,e){\'function\'==typeof define&&define.amd?define(\'outlayer/item\',[\'ev-emitter/ev-emitter\',\'get-size/get-size\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'ev-emitter\'),require(\'get-size\')):(t.Outlayer={},t.Outlayer.Item=e(t.EvEmitter,t.getSize))}(window,function(t,e){\'use strict\';function l(t){for(var e in t)return!1;return e=null,!0};function n(t,e){t&&(this.element=t,this.layout=e,this.position={x:0,y:0},this._create())};function f(t){return t.replace(/([A-Z])/g,function(t){return\'-\'+t.toLowerCase()})};var s=document.documentElement.style,o=\'string\'==typeof s.transition?\'transition\':\'WebkitTransition\',r=\'string\'==typeof s.transform?\'transform\':\'WebkitTransform\',a={WebkitTransition:\'webkitTransitionEnd\',transition:\'transitionend\'}[o],d={transform:r,transition:o,transitionDuration:o+\'Duration\',transitionProperty:o+\'Property\',transitionDelay:o+\'Delay\'},i=n.prototype=Object.create(t.prototype);i.constructor=n,i._create=function(){this._transn={ingProperties:{},clean:{},onEnd:{}},this.css({position:\'absolute\'})},i.handleEvent=function(t){var e=\'on\'+t.type;this[e]&&this[e](t)},i.getSize=function(){this.size=e(this.element)},i.css=function(t){var o=this.element.style;for(var e in t){var i=d[e]||e;o[i]=t[e]}},i.getPosition=function(){var s=getComputedStyle(this.element),r=this.layout._getOption(\'originLeft\'),a=this.layout._getOption(\'originTop\'),o=s[r?\'left\':\'right\'],n=s[a?\'top\':\'bottom\'],t=this.layout.size,e=o.indexOf(\'%\')!=-1?parseFloat(o)/100*t.width:parseInt(o,10),i=n.indexOf(\'%\')!=-1?parseFloat(n)/100*t.height:parseInt(n,10);e=isNaN(e)?0:e,i=isNaN(i)?0:i,e-=r?t.paddingLeft:t.paddingRight,i-=a?t.paddingTop:t.paddingBottom,this.position.x=e,this.position.y=i},i.layoutPosition=function(){var o=this.layout.size,t={},e=this.layout._getOption(\'originLeft\'),i=this.layout._getOption(\'originTop\'),h=e?\'paddingLeft\':\'paddingRight\',u=e?\'left\':\'right\',c=e?\'right\':\'left\',d=this.position.x+o[h];t[u]=this.getXValue(d),t[c]=\'\';var n=i?\'paddingTop\':\'paddingBottom\',s=i?\'top\':\'bottom\',r=i?\'bottom\':\'top\',a=this.position.y+o[n];t[s]=this.getYValue(a),t[r]=\'\',this.css(t),this.emitEvent(\'layout\',[this])},i.getXValue=function(t){var e=this.layout._getOption(\'horizontal\');return this.layout.options.percentPosition&&!e?t/this.layout.size.width*100+\'%\':t+\'px\'},i.getYValue=function(t){var e=this.layout._getOption(\'horizontal\');return this.layout.options.percentPosition&&e?t/this.layout.size.height*100+\'%\':t+\'px\'},i._transitionTo=function(t,e){this.getPosition();var s=this.position.x,r=this.position.y,a=parseInt(t,10),h=parseInt(e,10),u=a===this.position.x&&h===this.position.y;if(this.setPosition(t,e),u&&!this.isTransitioning)return void this.layoutPosition();var o=t-s,n=e-r,i={};i.transform=this.getTranslate(o,n),this.transition({to:i,onTransitionEnd:{transform:this.layoutPosition},isCleaning:!0})},i.getTranslate=function(t,e){var i=this.layout._getOption(\'originLeft\'),o=this.layout._getOption(\'originTop\');return t=i?t:-t,e=o?e:-e,\'translate3d(\'+t+\'px, \'+e+\'px, 0)\'},i.goTo=function(t,e){this.setPosition(t,e),this.layoutPosition()},i.moveTo=i._transitionTo,i.setPosition=function(t,e){this.position.x=parseInt(t,10),this.position.y=parseInt(e,10)},i._nonTransition=function(t){this.css(t.to),t.isCleaning&&this._removeStyles(t.to);for(var e in t.onTransitionEnd)t.onTransitionEnd[e].call(this)},i.transition=function(t){if(!parseFloat(this.layout.options.transitionDuration))return void this._nonTransition(t);var i=this._transn;for(var e in t.onTransitionEnd)i.onEnd[e]=t.onTransitionEnd[e];for(e in t.to)i.ingProperties[e]=!0,t.isCleaning&&(i.clean[e]=!0);if(t.from){this.css(t.from);var o=this.element.offsetHeight;o=null};this.enableTransition(t.to),this.css(t.to),this.isTransitioning=!0};var c=\'opacity,\'+f(r);i.enableTransition=function(){if(!this.isTransitioning){var t=this.layout.options.transitionDuration;t=\'number\'==typeof t?t+\'ms\':t,this.css({transitionProperty:c,transitionDuration:t,transitionDelay:this.staggerDelay||0}),this.element.addEventListener(a,this,!1)}},i.onwebkitTransitionEnd=function(t){this.ontransitionend(t)},i.onotransitionend=function(t){this.ontransitionend(t)};var u={\'-webkit-transform\':\'transform\'};i.ontransitionend=function(t){if(t.target===this.element){var e=this._transn,i=u[t.propertyName]||t.propertyName;if(delete e.ingProperties[i],l(e.ingProperties)&&this.disableTransition(),i in e.clean&&(this.element.style[t.propertyName]=\'\',delete e.clean[i]),i in e.onEnd){var o=e.onEnd[i];o.call(this),delete e.onEnd[i]};this.emitEvent(\'transitionEnd\',[this])}},i.disableTransition=function(){this.removeTransitionStyles(),this.element.removeEventListener(a,this,!1),this.isTransitioning=!1},i._removeStyles=function(t){var e={};for(var i in t)e[i]=\'\';this.css(e)};var h={transitionProperty:\'\',transitionDuration:\'\',transitionDelay:\'\'};return i.removeTransitionStyles=function(){this.css(h)},i.stagger=function(t){t=isNaN(t)?0:t,this.staggerDelay=t+\'ms\'},i.removeElem=function(){this.element.parentNode.removeChild(this.element),this.css({display:\'\'}),this.emitEvent(\'remove\',[this])},i.remove=function(){return o&&parseFloat(this.layout.options.transitionDuration)?(this.once(\'transitionEnd\',function(){this.removeElem()}),void this.hide()):void this.removeElem()},i.reveal=function(){delete this.isHidden,this.css({display:\'\'});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty(\'visibleStyle\');e[i]=this.onRevealTransitionEnd,this.transition({from:t.hiddenStyle,to:t.visibleStyle,isCleaning:!0,onTransitionEnd:e})},i.onRevealTransitionEnd=function(){this.isHidden||this.emitEvent(\'reveal\')},i.getHideRevealTransitionEndProperty=function(t){var e=this.layout.options[t];if(e.opacity)return\'opacity\';for(var i in e)return i},i.hide=function(){this.isHidden=!0,this.css({display:\'\'});var t=this.layout.options,e={},i=this.getHideRevealTransitionEndProperty(\'hiddenStyle\');e[i]=this.onHideTransitionEnd,this.transition({from:t.visibleStyle,to:t.hiddenStyle,isCleaning:!0,onTransitionEnd:e})},i.onHideTransitionEnd=function(){this.isHidden&&(this.css({display:\'none\'}),this.emitEvent(\'hide\'))},i.destroy=function(){this.css({position:\'\',left:\'\',right:\'\',top:\'\',bottom:\'\',transition:\'\',transform:\'\'})},n}),function(t,e){\'use strict\';\'function\'==typeof define&&define.amd?define(\'outlayer/outlayer\',[\'ev-emitter/ev-emitter\',\'get-size/get-size\',\'fizzy-ui-utils/utils\',\'./item\'],function(i,o,n,s){return e(t,i,o,n,s)}):\'object\'==typeof module&&module.exports?module.exports=e(t,require(\'ev-emitter\'),require(\'get-size\'),require(\'fizzy-ui-utils\'),require(\'./item\')):t.Outlayer=e(t,t.EvEmitter,t.getSize,t.fizzyUIUtils,t.Outlayer.Item)}(window,function(t,e,n,o,a){\'use strict\';function s(t,e){var i=o.getQueryElement(t);if(!i)return void(u&&u.error(\'Bad element for \'+this.constructor.namespace+\': \'+(i||t)));this.element=i,r&&(this.$element=r(this.element)),this.options=o.extend({},this.constructor.defaults),this.option(e);var n=++f;this.element.outlayerGUID=n,h[n]=this,this._create();var s=this._getOption(\'initLayout\');s&&this.layout()};function d(t){function e(){t.apply(this,arguments)};return e.prototype=Object.create(t.prototype),e.prototype.constructor=e,e};function p(t){if(\'number\'==typeof t)return t;var e=t.match(/(^\\d*\\.?\\d*)(\\w*)/),i=e&&e[1],n=e&&e[2];if(!i.length)return 0;i=parseFloat(i);var o=l[n]||1;return i*o};var u=t.console,r=t.jQuery,c=function(){},f=0,h={};s.namespace=\'outlayer\',s.Item=a,s.defaults={containerStyle:{position:\'relative\'},initLayout:!0,originLeft:!0,originTop:!0,resize:!0,resizeContainer:!0,transitionDuration:\'0.4s\',hiddenStyle:{opacity:0,transform:\'scale(0.001)\'},visibleStyle:{opacity:1,transform:\'scale(1)\'}};var i=s.prototype;o.extend(i,e.prototype),i.option=function(t){o.extend(this.options,t)},i._getOption=function(t){var e=this.constructor.compatOptions[t];return e&&void 0!==this.options[e]?this.options[e]:this.options[t]},s.compatOptions={initLayout:\'isInitLayout\',horizontal:\'isHorizontal\',layoutInstant:\'isLayoutInstant\',originLeft:\'isOriginLeft\',originTop:\'isOriginTop\',resize:\'isResizeBound\',resizeContainer:\'isResizingContainer\'},i._create=function(){this.reloadItems(),this.stamps=[],this.stamp(this.options.stamp),o.extend(this.element.style,this.options.containerStyle);var t=this._getOption(\'resize\');t&&this.bindResize()},i.reloadItems=function(){this.items=this._itemize(this.element.children)},i._itemize=function(t){for(var i=this._filterFindItemElements(t),r=this.constructor.Item,o=[],e=0;e<i.length;e++){var n=i[e],s=new r(n,this);o.push(s)};return o},i._filterFindItemElements=function(t){return o.filterFindElements(t,this.options.itemSelector)},i.getItemElements=function(){return this.items.map(function(t){return t.element})},i.layout=function(){this._resetLayout(),this._manageStamps();var t=this._getOption(\'layoutInstant\'),e=void 0!==t?t:!this._isLayoutInited;this.layoutItems(this.items,e),this._isLayoutInited=!0},i._init=i.layout,i._resetLayout=function(){this.getSize()},i.getSize=function(){this.size=n(this.element)},i._getMeasurement=function(t,e){var o,i=this.options[t];i?(\'string\'==typeof i?o=this.element.querySelector(i):i instanceof HTMLElement&&(o=i),this[t]=o?n(o)[e]:i):this[t]=0},i.layoutItems=function(t,e){t=this._getItemsForLayout(t),this._layoutItems(t,e),this._postLayout()},i._getItemsForLayout=function(t){return t.filter(function(t){return!t.isIgnored})},i._layoutItems=function(t,e){if(this._emitCompleteOnItems(\'layout\',t),t&&t.length){var i=[];t.forEach(function(t){var o=this._getItemLayoutPosition(t);o.item=t,o.isInstant=e||t.isLayoutInstant,i.push(o)},this),this._processLayoutQueue(i)}},i._getItemLayoutPosition=function(){return{x:0,y:0}},i._processLayoutQueue=function(t){this.updateStagger(),t.forEach(function(t,e){this._positionItem(t.item,t.x,t.y,t.isInstant,e)},this)},i.updateStagger=function(){var t=this.options.stagger;return null===t||void 0===t?void(this.stagger=0):(this.stagger=p(t),this.stagger)},i._positionItem=function(t,e,i,o,n){o?t.goTo(e,i):(t.stagger(n*this.stagger),t.moveTo(e,i))},i._postLayout=function(){this.resizeContainer()},i.resizeContainer=function(){var e=this._getOption(\'resizeContainer\');if(e){var t=this._getContainerSize();t&&(this._setContainerMeasure(t.width,!0),this._setContainerMeasure(t.height,!1))}},i._getContainerSize=c,i._setContainerMeasure=function(t,e){if(void 0!==t){var i=this.size;i.isBorderBox&&(t+=e?i.paddingLeft+i.paddingRight+i.borderLeftWidth+i.borderRightWidth:i.paddingBottom+i.paddingTop+i.borderTopWidth+i.borderBottomWidth),t=Math.max(t,0),this.element.style[e?\'width\':\'height\']=t+\'px\'}},i._emitCompleteOnItems=function(t,e){function n(){s.dispatchEvent(t+\'Complete\',null,[e])};function r(){i++,i==o&&n()};var s=this,o=e.length;if(!e||!o)return void n();var i=0;e.forEach(function(e){e.once(t,r)})},i.dispatchEvent=function(t,e,i){var n=e?[e].concat(i):i;if(this.emitEvent(t,n),r)if(this.$element=this.$element||r(this.element),e){var o=r.Event(e);o.type=t,this.$element.trigger(o,i)}\nelse this.$element.trigger(t,i)},i.ignore=function(t){var e=this.getItem(t);e&&(e.isIgnored=!0)},i.unignore=function(t){var e=this.getItem(t);e&&delete e.isIgnored},i.stamp=function(t){t=this._find(t),t&&(this.stamps=this.stamps.concat(t),t.forEach(this.ignore,this))},i.unstamp=function(t){t=this._find(t),t&&t.forEach(function(t){o.removeFrom(this.stamps,t),this.unignore(t)},this)},i._find=function(t){if(t)return\'string\'==typeof t&&(t=this.element.querySelectorAll(t)),t=o.makeArray(t)},i._manageStamps=function(){this.stamps&&this.stamps.length&&(this._getBoundingRect(),this.stamps.forEach(this._manageStamp,this))},i._getBoundingRect=function(){var e=this.element.getBoundingClientRect(),t=this.size;this._boundingRect={left:e.left+t.paddingLeft+t.borderLeftWidth,top:e.top+t.paddingTop+t.borderTopWidth,right:e.right-(t.paddingRight+t.borderRightWidth),bottom:e.bottom-(t.paddingBottom+t.borderBottomWidth)}},i._manageStamp=c,i._getElementOffset=function(t){var e=t.getBoundingClientRect(),i=this._boundingRect,o=n(t),s={left:e.left-i.left-o.marginLeft,top:e.top-i.top-o.marginTop,right:i.right-e.right-o.marginRight,bottom:i.bottom-e.bottom-o.marginBottom};return s},i.handleEvent=o.handleEvent,i.bindResize=function(){t.addEventListener(\'resize\',this),this.isResizeBound=!0},i.unbindResize=function(){t.removeEventListener(\'resize\',this),this.isResizeBound=!1},i.onresize=function(){this.resize()},o.debounceMethod(s,\'onresize\',100),i.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&this.layout()},i.needsResizeLayout=function(){var t=n(this.element),e=this.size&&t;return e&&t.innerWidth!==this.size.innerWidth},i.addItems=function(t){var e=this._itemize(t);return e.length&&(this.items=this.items.concat(e)),e},i.appended=function(t){var e=this.addItems(t);e.length&&(this.layoutItems(e,!0),this.reveal(e))},i.prepended=function(t){var e=this._itemize(t);if(e.length){var i=this.items.slice(0);this.items=e.concat(i),this._resetLayout(),this._manageStamps(),this.layoutItems(e,!0),this.reveal(e),this.layoutItems(i)}},i.reveal=function(t){if(this._emitCompleteOnItems(\'reveal\',t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.reveal()})}},i.hide=function(t){if(this._emitCompleteOnItems(\'hide\',t),t&&t.length){var e=this.updateStagger();t.forEach(function(t,i){t.stagger(i*e),t.hide()})}},i.revealItemElements=function(t){var e=this.getItems(t);this.reveal(e)},i.hideItemElements=function(t){var e=this.getItems(t);this.hide(e)},i.getItem=function(t){for(var e=0;e<this.items.length;e++){var i=this.items[e];if(i.element==t)return i}},i.getItems=function(t){t=o.makeArray(t);var e=[];return t.forEach(function(t){var i=this.getItem(t);i&&e.push(i)},this),e},i.remove=function(t){var e=this.getItems(t);this._emitCompleteOnItems(\'remove\',e),e&&e.length&&e.forEach(function(t){t.remove(),o.removeFrom(this.items,t)},this)},i.destroy=function(){var t=this.element.style;t.height=\'\',t.position=\'\',t.width=\'\',this.items.forEach(function(t){t.destroy()}),this.unbindResize();var e=this.element.outlayerGUID;delete h[e],delete this.element.outlayerGUID,r&&r.removeData(this.element,this.constructor.namespace)},s.data=function(t){t=o.getQueryElement(t);var e=t&&t.outlayerGUID;return e&&h[e]},s.create=function(t,e){var i=d(s);return i.defaults=o.extend({},s.defaults),o.extend(i.defaults,e),i.compatOptions=o.extend({},s.compatOptions),i.namespace=t,i.data=s.data,i.Item=d(a),o.htmlInit(i,t),r&&r.bridget&&r.bridget(t,i),i};var l={ms:1,s:1e3};return s.Item=a,s}),function(t,e){\'function\'==typeof define&&define.amd?define(\'isotope-layout/js/item\',[\'outlayer/outlayer\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'outlayer\')):(t.Isotope=t.Isotope||{},t.Isotope.Item=e(t.Outlayer))}(window,function(t){\'use strict\';function i(){t.Item.apply(this,arguments)};var e=i.prototype=Object.create(t.Item.prototype),n=e._create;e._create=function(){this.id=this.layout.itemGUID++,n.call(this),this.sortData={}},e.updateSortData=function(){if(!this.isIgnored){this.sortData.id=this.id,this.sortData[\'original-order\']=this.id,this.sortData.random=Math.random();var i=this.layout.options.getSortData,o=this.layout._sorters;for(var t in i){var e=o[t];this.sortData[t]=e(this.element,this)}}};var o=e.destroy;return e.destroy=function(){o.apply(this,arguments),this.css({display:\'\'})},i}),function(t,e){\'function\'==typeof define&&define.amd?define(\'isotope-layout/js/layout-mode\',[\'get-size/get-size\',\'outlayer/outlayer\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'get-size\'),require(\'outlayer\')):(t.Isotope=t.Isotope||{},t.Isotope.LayoutMode=e(t.getSize,t.Outlayer))}(window,function(t,e){\'use strict\';function o(t){this.isotope=t,t&&(this.options=t.options[this.namespace],this.element=t.element,this.items=t.filteredItems,this.size=t.size)};var i=o.prototype,n=[\'_resetLayout\',\'_getItemLayoutPosition\',\'_manageStamp\',\'_getContainerSize\',\'_getElementOffset\',\'needsResizeLayout\',\'_getOption\'];return n.forEach(function(t){i[t]=function(){return e.prototype[t].apply(this.isotope,arguments)}}),i.needsVerticalResizeLayout=function(){var e=t(this.isotope.element),i=this.isotope.size&&e;return i&&e.innerHeight!=this.isotope.size.innerHeight},i._getMeasurement=function(){this.isotope._getMeasurement.apply(this,arguments)},i.getColumnWidth=function(){this.getSegmentSize(\'column\',\'Width\')},i.getRowHeight=function(){this.getSegmentSize(\'row\',\'Height\')},i.getSegmentSize=function(t,e){var i=t+e,n=\'outer\'+e;if(this._getMeasurement(i,n),!this[i]){var o=this.getFirstItemSize();this[i]=o&&o[n]||this.isotope.size[\'inner\'+e]}},i.getFirstItemSize=function(){var e=this.isotope.filteredItems[0];return e&&e.element&&t(e.element)},i.layout=function(){this.isotope.layout.apply(this.isotope,arguments)},i.getSize=function(){this.isotope.getSize(),this.size=this.isotope.size},o.modes={},o.create=function(t,e){function n(){o.apply(this,arguments)};return n.prototype=Object.create(i),n.prototype.constructor=n,e&&(n.options=e),n.prototype.namespace=t,o.modes[t]=n,n},o}),function(t,e){\'function\'==typeof define&&define.amd?define(\'masonry-layout/masonry\',[\'outlayer/outlayer\',\'get-size/get-size\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'outlayer\'),require(\'get-size\')):t.Masonry=e(t.Outlayer,t.getSize)}(window,function(t,e){var o=t.create(\'masonry\');o.compatOptions.fitWidth=\'isFitWidth\';var i=o.prototype;return i._resetLayout=function(){this.getSize(),this._getMeasurement(\'columnWidth\',\'outerWidth\'),this._getMeasurement(\'gutter\',\'outerWidth\'),this.measureColumns(),this.colYs=[];for(var t=0;t<this.cols;t++)this.colYs.push(0);this.maxY=0,this.horizontalColIndex=0},i.measureColumns=function(){if(this.getContainerWidth(),!this.columnWidth){var s=this.items[0],r=s&&s.element;this.columnWidth=r&&e(r).outerWidth||this.containerWidth};var t=this.columnWidth+=this.gutter,o=this.containerWidth+this.gutter,i=o/t,n=t-o%t,a=n&&n<1?\'round\':\'floor\';i=Math[a](i),this.cols=Math.max(i,1)},i.getContainerWidth=function(){var i=this._getOption(\'fitWidth\'),o=i?this.element.parentNode:this.element,t=e(o);this.containerWidth=t&&t.innerWidth},i._getItemLayoutPosition=function(t){t.getSize();var n=t.size.outerWidth%this.columnWidth,u=n&&n<1?\'round\':\'ceil\',i=Math[u](t.size.outerWidth/this.columnWidth);i=Math.min(i,this.cols);for(var s=this.options.horizontalOrder?\'_getHorizontalColPosition\':\'_getTopColPosition\',e=this[s](i,t),r={x:this.columnWidth*e.col,y:e.y},a=e.y+t.size.outerHeight,h=i+e.col,o=e.col;o<h;o++)this.colYs[o]=a;return r},i._getTopColPosition=function(t){var e=this._getTopColGroup(t),i=Math.min.apply(Math,e);return{col:e.indexOf(i),y:i}},i._getTopColGroup=function(t){if(t<2)return this.colYs;for(var i=[],o=this.cols+1-t,e=0;e<o;e++)i[e]=this._getColGroupY(e,t);return i},i._getColGroupY=function(t,e){if(e<2)return this.colYs[t];var i=this.colYs.slice(t,t+e);return Math.max.apply(Math,i)},i._getHorizontalColPosition=function(t,e){var i=this.horizontalColIndex%this.cols,n=t>1&&i+t>this.cols;i=n?0:i;var o=e.size.outerWidth&&e.size.outerHeight;return this.horizontalColIndex=o?i+t:this.horizontalColIndex,{col:i,y:this._getColGroupY(i,t)}},i._manageStamp=function(t){var r=e(t),n=this._getElementOffset(t),d=this._getOption(\'originLeft\'),a=d?n.left:n.right,h=a+r.outerWidth,s=Math.floor(a/this.columnWidth);s=Math.max(0,s);var o=Math.floor(h/this.columnWidth);o-=h%this.columnWidth?0:1,o=Math.min(this.cols-1,o);for(var u=this._getOption(\'originTop\'),c=(u?n.top:n.bottom)+r.outerHeight,i=s;i<=o;i++)this.colYs[i]=Math.max(c,this.colYs[i])},i._getContainerSize=function(){this.maxY=Math.max.apply(Math,this.colYs);var t={height:this.maxY};return this._getOption(\'fitWidth\')&&(t.width=this._getContainerFitWidth()),t},i._getContainerFitWidth=function(){for(var t=0,e=this.cols;--e&&0===this.colYs[e];)t++;return(this.cols-t)*this.columnWidth-this.gutter},i.needsResizeLayout=function(){var t=this.containerWidth;return this.getContainerWidth(),t!=this.containerWidth},o}),function(t,e){\'function\'==typeof define&&define.amd?define(\'isotope-layout/js/layout-modes/masonry\',[\'../layout-mode\',\'masonry-layout/masonry\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'../layout-mode\'),require(\'masonry-layout\')):e(t.Isotope.LayoutMode,t.Masonry)}(window,function(t,e){\'use strict\';var n=t.create(\'masonry\'),i=n.prototype,a={_getElementOffset:!0,layout:!0,_getMeasurement:!0};for(var o in e.prototype)a[o]||(i[o]=e.prototype[o]);var r=i.measureColumns;i.measureColumns=function(){this.items=this.isotope.filteredItems,r.call(this)};var s=i._getOption;return i._getOption=function(t){return\'fitWidth\'==t?void 0!==this.options.isFitWidth?this.options.isFitWidth:this.options.fitWidth:s.apply(this.isotope,arguments)},n}),function(t,e){\'function\'==typeof define&&define.amd?define(\'isotope-layout/js/layout-modes/fit-rows\',[\'../layout-mode\'],e):\'object\'==typeof exports?module.exports=e(require(\'../layout-mode\')):e(t.Isotope.LayoutMode)}(window,function(t){\'use strict\';var i=t.create(\'fitRows\'),e=i.prototype;return e._resetLayout=function(){this.x=0,this.y=0,this.maxY=0,this._getMeasurement(\'gutter\',\'outerWidth\')},e._getItemLayoutPosition=function(t){t.getSize();var e=t.size.outerWidth+this.gutter,o=this.isotope.size.innerWidth+this.gutter;0!==this.x&&e+this.x>o&&(this.x=0,this.y=this.maxY);var i={x:this.x,y:this.y};return this.maxY=Math.max(this.maxY,this.y+t.size.outerHeight),this.x+=e,i},e._getContainerSize=function(){return{height:this.maxY}},i}),function(t,e){\'function\'==typeof define&&define.amd?define(\'isotope-layout/js/layout-modes/vertical\',[\'../layout-mode\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'../layout-mode\')):e(t.Isotope.LayoutMode)}(window,function(t){\'use strict\';var i=t.create(\'vertical\',{horizontalAlignment:0}),e=i.prototype;return e._resetLayout=function(){this.y=0},e._getItemLayoutPosition=function(t){t.getSize();var e=(this.isotope.size.innerWidth-t.size.outerWidth)*this.options.horizontalAlignment,i=this.y;return this.y+=t.size.outerHeight,{x:e,y:i}},e._getContainerSize=function(){return{height:this.y}},i}),function(t,e){\'function\'==typeof define&&define.amd?define([\'outlayer/outlayer\',\'get-size/get-size\',\'desandro-matches-selector/matches-selector\',\'fizzy-ui-utils/utils\',\'isotope-layout/js/item\',\'isotope-layout/js/layout-mode\',\'isotope-layout/js/layout-modes/masonry\',\'isotope-layout/js/layout-modes/fit-rows\',\'isotope-layout/js/layout-modes/vertical\'],function(i,o,n,s,r,a){return e(t,i,o,n,s,r,a)}):\'object\'==typeof module&&module.exports?module.exports=e(t,require(\'outlayer\'),require(\'get-size\'),require(\'desandro-matches-selector\'),require(\'fizzy-ui-utils\'),require(\'isotope-layout/js/item\'),require(\'isotope-layout/js/layout-mode\'),require(\'isotope-layout/js/layout-modes/masonry\'),require(\'isotope-layout/js/layout-modes/fit-rows\'),require(\'isotope-layout/js/layout-modes/vertical\')):t.Isotope=e(t,t.Outlayer,t.getSize,t.matchesSelector,t.fizzyUIUtils,t.Isotope.Item,t.Isotope.LayoutMode)}(window,function(t,e,o,s,n,h,a){function f(t,e){return function(i,o){for(var a=0;a<t.length;a++){var n=t[a],s=i.sortData[n],r=o.sortData[n];if(s>r||s<r){var h=void 0!==e[n]?e[n]:e,u=h?1:-1;return(s>r?1:-1)*u}};return 0}};var u=t.jQuery,l=String.prototype.trim?function(t){return t.trim()}:function(t){return t.replace(/^\\s+|\\s+$/g,\'\')},r=e.create(\'isotope\',{layoutMode:\'masonry\',isJQueryFiltering:!0,sortAscending:!0});r.Item=h,r.LayoutMode=a;var i=r.prototype;i._create=function(){this.itemGUID=0,this._sorters={},this._getSorters(),e.prototype._create.call(this),this.modes={},this.filteredItems=this.items,this.sortHistory=[\'original-order\'];for(var t in a.modes)this._initLayoutMode(t)},i.reloadItems=function(){this.itemGUID=0,e.prototype.reloadItems.call(this)},i._itemize=function(){for(var t=e.prototype._itemize.apply(this,arguments),i=0;i<t.length;i++){var o=t[i];o.id=this.itemGUID++};return this._updateItemsSortData(t),t},i._initLayoutMode=function(t){var e=a.modes[t],i=this.options[t]||{};this.options[t]=e.options?n.extend(e.options,i):i,this.modes[t]=new e(this)},i.layout=function(){return!this._isLayoutInited&&this._getOption(\'initLayout\')?void this.arrange():void this._layout()},i._layout=function(){var t=this._getIsInstant();this._resetLayout(),this._manageStamps(),this.layoutItems(this.filteredItems,t),this._isLayoutInited=!0},i.arrange=function(t){this.option(t),this._getIsInstant();var e=this._filter(this.items);this.filteredItems=e.matches,this._bindArrangeComplete(),this._isInstant?this._noTransition(this._hideReveal,[e]):this._hideReveal(e),this._sort(),this._layout()},i._init=i.arrange,i._hideReveal=function(t){this.reveal(t.needReveal),this.hide(t.needHide)},i._getIsInstant=function(){var t=this._getOption(\'layoutInstant\'),e=void 0!==t?t:!this._isLayoutInited;return this._isInstant=e,e},i._bindArrangeComplete=function(){function t(){e&&i&&o&&n.dispatchEvent(\'arrangeComplete\',null,[n.filteredItems])};var e,i,o,n=this;this.once(\'layoutComplete\',function(){e=!0,t()}),this.once(\'hideComplete\',function(){i=!0,t()}),this.once(\'revealComplete\',function(){o=!0,t()})},i._filter=function(t){var n=this.options.filter;n=n||\'*\';for(var s=[],r=[],a=[],h=this._getFilterTest(n),o=0;o<t.length;o++){var e=t[o];if(!e.isIgnored){var i=h(e);i&&s.push(e),i&&e.isHidden?r.push(e):i||e.isHidden||a.push(e)}};return{matches:s,needReveal:r,needHide:a}},i._getFilterTest=function(t){return u&&this.options.isJQueryFiltering?function(e){return u(e.element).is(t)}:\'function\'==typeof t?function(e){return t(e.element)}:function(e){return s(e.element,t)}},i.updateSortData=function(t){var e;t?(t=n.makeArray(t),e=this.getItems(t)):e=this.items,this._getSorters(),this._updateItemsSortData(e)},i._getSorters=function(){var e=this.options.getSortData;for(var t in e){var i=e[t];this._sorters[t]=d(i)}},i._updateItemsSortData=function(t){for(var i=t&&t.length,e=0;i&&e<i;e++){var o=t[e];o.updateSortData()}};var d=function(){function t(t){if(\'string\'!=typeof t)return t;var i=l(t).split(\' \'),o=i[0],n=o.match(/^\\[(.+)\\]$/),h=n&&n[1],s=e(h,o),a=r.sortDataParsers[i[1]];return t=a?function(t){return t&&a(s(t))}:function(t){return t&&s(t)}};function e(t,e){return t?function(e){return e.getAttribute(t)}:function(t){var i=t.querySelector(e);return i&&i.textContent}};return t}();r.sortDataParsers={parseInt:function(t){return parseInt(t,10)},parseFloat:function(t){return parseFloat(t)}},i._sort=function(){if(this.options.sortBy){var t=n.makeArray(this.options.sortBy);this._getIsSameSortBy(t)||(this.sortHistory=t.concat(this.sortHistory));var e=f(this.sortHistory,this.options.sortAscending);this.filteredItems.sort(e)}},i._getIsSameSortBy=function(t){for(var e=0;e<t.length;e++)if(t[e]!=this.sortHistory[e])return!1;return!0},i._mode=function(){var t=this.options.layoutMode,e=this.modes[t];if(!e)throw new Error(\'No layout mode: \'+t);return e.options=this.options[t],e},i._resetLayout=function(){e.prototype._resetLayout.call(this),this._mode()._resetLayout()},i._getItemLayoutPosition=function(t){return this._mode()._getItemLayoutPosition(t)},i._manageStamp=function(t){this._mode()._manageStamp(t)},i._getContainerSize=function(){return this._mode()._getContainerSize()},i.needsResizeLayout=function(){return this._mode().needsResizeLayout()},i.appended=function(t){var e=this.addItems(t);if(e.length){var i=this._filterRevealAdded(e);this.filteredItems=this.filteredItems.concat(i)}},i.prepended=function(t){var e=this._itemize(t);if(e.length){this._resetLayout(),this._manageStamps();var i=this._filterRevealAdded(e);this.layoutItems(this.filteredItems),this.filteredItems=i.concat(this.filteredItems),this.items=e.concat(this.items)}},i._filterRevealAdded=function(t){var e=this._filter(t);return this.hide(e.needHide),this.reveal(e.matches),this.layoutItems(e.matches,!0),e.matches},i.insert=function(t){var i=this.addItems(t);if(i.length){var e,n,o=i.length;for(e=0;e<o;e++)n=i[e],this.element.appendChild(n.element);var s=this._filter(i).matches;for(e=0;e<o;e++)i[e].isLayoutInstant=!0;for(this.arrange(),e=0;e<o;e++)delete i[e].isLayoutInstant;this.reveal(s)}};var c=i.remove;return i.remove=function(t){t=n.makeArray(t);var i=this.getItems(t);c.call(this,t);for(var o=i&&i.length,e=0;o&&e<o;e++){var s=i[e];n.removeFrom(this.filteredItems,s)}},i.shuffle=function(){for(var t=0;t<this.items.length;t++){var e=this.items[t];e.sortData.random=Math.random()};this.options.sortBy=\'random\',this._sort(),this._layout()},i._noTransition=function(t,e){var o=this.options.transitionDuration;this.options.transitionDuration=0;var i=t.apply(this,e);return this.options.transitionDuration=o,i},i.getFilteredItemElements=function(){return this.filteredItems.map(function(t){return t.element})},r});!function(t,e){\'function\'==typeof define&&define.amd?define(\'packery/js/rect\',e):\'object\'==typeof module&&module.exports?module.exports=e():(t.Packery=t.Packery||{},t.Packery.Rect=e())}(window,function(){function t(e){for(var i in t.defaults)this[i]=t.defaults[i];for(i in e)this[i]=e[i]};t.defaults={x:0,y:0,width:0,height:0};var e=t.prototype;return e.contains=function(t){var e=t.width||0,i=t.height||0;return this.x<=t.x&&this.y<=t.y&&this.x+this.width>=t.x+e&&this.y+this.height>=t.y+i},e.overlaps=function(t){var e=this.x+this.width,i=this.y+this.height,o=t.x+t.width,n=t.y+t.height;return this.x<o&&e>t.x&&this.y<n&&i>t.y},e.getMaximalFreeRects=function(e){if(!this.overlaps(e))return!1;var i,o=[],r=this.x+this.width,a=this.y+this.height,n=e.x+e.width,s=e.y+e.height;return this.y<e.y&&(i=new t({x:this.x,y:this.y,width:this.width,height:e.y-this.y}),o.push(i)),r>n&&(i=new t({x:n,y:this.y,width:r-n,height:this.height}),o.push(i)),a>s&&(i=new t({x:this.x,y:s,width:this.width,height:a-s}),o.push(i)),this.x<e.x&&(i=new t({x:this.x,y:this.y,width:e.x-this.x,height:this.height}),o.push(i)),o},e.canFit=function(t){return this.width>=t.width&&this.height>=t.height},t}),function(t,e){if(\'function\'==typeof define&&define.amd)define(\'packery/js/packer\',[\'./rect\'],e);else if(\'object\'==typeof module&&module.exports)module.exports=e(require(\'./rect\'));else{var i=t.Packery=t.Packery||{};i.Packer=e(i.Rect)}}(window,function(t){function i(t,e,i){this.width=t||0,this.height=e||0,this.sortDirection=i||\'downwardLeftToRight\',this.reset()};var e=i.prototype;e.reset=function(){this.spaces=[];var e=new t({x:0,y:0,width:this.width,height:this.height});this.spaces.push(e),this.sorter=o[this.sortDirection]||o.downwardLeftToRight},e.pack=function(t){for(var e=0;e<this.spaces.length;e++){var i=this.spaces[e];if(i.canFit(t)){this.placeInSpace(t,i);break}}},e.columnPack=function(t){for(var i=0;i<this.spaces.length;i++){var e=this.spaces[i],o=e.x<=t.x&&e.x+e.width>=t.x+t.width&&e.height>=t.height-.01;if(o){t.y=e.y,this.placed(t);break}}},e.rowPack=function(t){for(var i=0;i<this.spaces.length;i++){var e=this.spaces[i],o=e.y<=t.y&&e.y+e.height>=t.y+t.height&&e.width>=t.width-.01;if(o){t.x=e.x,this.placed(t);break}}},e.placeInSpace=function(t,e){t.x=e.x,t.y=e.y,this.placed(t)},e.placed=function(t){for(var e=[],i=0;i<this.spaces.length;i++){var o=this.spaces[i],n=o.getMaximalFreeRects(t);n?e.push.apply(e,n):e.push(o)};this.spaces=e,this.mergeSortSpaces()},e.mergeSortSpaces=function(){i.mergeRects(this.spaces),this.spaces.sort(this.sorter)},e.addSpace=function(t){this.spaces.push(t),this.mergeSortSpaces()},i.mergeRects=function(t){var e=0,i=t[e];t:for(;i;){for(var o=0,n=t[e+o];n;){if(n==i)o++;else{if(n.contains(i)){t.splice(e,1),i=t[e];continue;t};i.contains(n)?t.splice(e+o,1):o++};n=t[e+o]};e++,i=t[e]};return t};var o={downwardLeftToRight:function(t,e){return t.y-e.y||t.x-e.x},rightwardTopToBottom:function(t,e){return t.x-e.x||t.y-e.y}};return i}),function(t,e){\'function\'==typeof define&&define.amd?define(\'packery/js/item\',[\'outlayer/outlayer\',\'./rect\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'outlayer\'),require(\'./rect\')):t.Packery.Item=e(t.Outlayer,t.Packery.Rect)}(window,function(t,e){var r=document.documentElement.style,o=\'string\'==typeof r.transform?\'transform\':\'WebkitTransform\',n=function(){t.Item.apply(this,arguments)},i=n.prototype=Object.create(t.Item.prototype),a=i._create;i._create=function(){a.call(this),this.rect=new e};var s=i.moveTo;return i.moveTo=function(t,e){var i=Math.abs(this.position.x-t),o=Math.abs(this.position.y-e),n=this.layout.dragItemCount&&!this.isPlacing&&!this.isTransitioning&&1>i&&1>o;return n?void this.goTo(t,e):void s.apply(this,arguments)},i.enablePlacing=function(){this.removeTransitionStyles(),this.isTransitioning&&o&&(this.element.style[o]=\'none\'),this.isTransitioning=!1,this.getSize(),this.layout._setRectSize(this.element,this.rect),this.isPlacing=!0},i.disablePlacing=function(){this.isPlacing=!1},i.removeElem=function(){this.element.parentNode.removeChild(this.element),this.layout.packer.addSpace(this.rect),this.emitEvent(\'remove\',[this])},i.showDropPlaceholder=function(){var t=this.dropPlaceholder;t||(t=this.dropPlaceholder=document.createElement(\'div\'),t.className=\'packery-drop-placeholder\',t.style.position=\'absolute\'),t.style.width=this.size.width+\'px\',t.style.height=this.size.height+\'px\',this.positionDropPlaceholder(),this.layout.element.appendChild(t)},i.positionDropPlaceholder=function(){this.dropPlaceholder.style[o]=\'translate(\'+this.rect.x+\'px, \'+this.rect.y+\'px)\'},i.hideDropPlaceholder=function(){this.layout.element.removeChild(this.dropPlaceholder)},n}),function(t,e){\'function\'==typeof define&&define.amd?define(\'packery/js/packery\',[\'get-size/get-size\',\'outlayer/outlayer\',\'./rect\',\'./packer\',\'./item\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'get-size\'),require(\'outlayer\'),require(\'./rect\'),require(\'./packer\'),require(\'./item\')):t.Packery=e(t.getSize,t.Outlayer,t.Packery.Rect,t.Packery.Packer,t.Packery.Item)}(window,function(t,e,o,n,s){function u(t,e){return t.position.y-e.position.y||t.position.x-e.position.x};function c(t,e){return t.position.x-e.position.x||t.position.y-e.position.y};function d(t,e){var i=e.x-t.x,o=e.y-t.y;return Math.sqrt(i*i+o*o)};o.prototype.canFit=function(t){return this.width>=t.width-1&&this.height>=t.height-1};var r=e.create(\'packery\');r.Item=s;var i=r.prototype;i._create=function(){e.prototype._create.call(this),this.packer=new n,this.shiftPacker=new n,this.isEnabled=!0,this.dragItemCount=0;var t=this;this.handleDraggabilly={dragStart:function(){t.itemDragStart(this.element)},dragMove:function(){t.itemDragMove(this.element,this.position.x,this.position.y)},dragEnd:function(){t.itemDragEnd(this.element)}},this.handleUIDraggable={start:function(e,i){i&&t.itemDragStart(e.currentTarget)},drag:function(e,i){i&&t.itemDragMove(e.currentTarget,i.position.left,i.position.top)},stop:function(e,i){i&&t.itemDragEnd(e.currentTarget)}}},i._resetLayout=function(){this.getSize(),this._getMeasurements();var t,e,i;this._getOption(\'horizontal\')?(t=1/0,e=this.size.innerHeight+this.gutter,i=\'rightwardTopToBottom\'):(t=this.size.innerWidth+this.gutter,e=1/0,i=\'downwardLeftToRight\'),this.packer.width=this.shiftPacker.width=t,this.packer.height=this.shiftPacker.height=e,this.packer.sortDirection=this.shiftPacker.sortDirection=i,this.packer.reset(),this.maxY=0,this.maxX=0},i._getMeasurements=function(){this._getMeasurement(\'columnWidth\',\'width\'),this._getMeasurement(\'rowHeight\',\'height\'),this._getMeasurement(\'gutter\',\'width\')},i._getItemLayoutPosition=function(t){if(this._setRectSize(t.element,t.rect),this.isShifting||this.dragItemCount>0){var e=this._getPackMethod();this.packer[e](t.rect)}\nelse this.packer.pack(t.rect);return this._setMaxXY(t.rect),t.rect},i.shiftLayout=function(){this.isShifting=!0,this.layout(),delete this.isShifting},i._getPackMethod=function(){return this._getOption(\'horizontal\')?\'rowPack\':\'columnPack\'},i._setMaxXY=function(t){this.maxX=Math.max(t.x+t.width,this.maxX),this.maxY=Math.max(t.y+t.height,this.maxY)},i._setRectSize=function(e,i){var s=t(e),o=s.outerWidth,n=s.outerHeight;(o||n)&&(o=this._applyGridGutter(o,this.columnWidth),n=this._applyGridGutter(n,this.rowHeight)),i.width=Math.min(o,this.packer.width),i.height=Math.min(n,this.packer.height)},i._applyGridGutter=function(t,e){if(!e)return t+this.gutter;e+=this.gutter;var i=t%e,o=i&&1>i?\'round\':\'ceil\';return t=Math[o](t/e)*e},i._getContainerSize=function(){return this._getOption(\'horizontal\')?{width:this.maxX-this.gutter}:{height:this.maxY-this.gutter}},i._manageStamp=function(t){var e,n=this.getItem(t);if(n&&n.isPlacing)e=n.rect;else{var i=this._getElementOffset(t);e=new o({x:this._getOption(\'originLeft\')?i.left:i.right,y:this._getOption(\'originTop\')?i.top:i.bottom})};this._setRectSize(t,e),this.packer.placed(e),this._setMaxXY(e)},i.sortItemsByPosition=function(){var t=this._getOption(\'horizontal\')?c:u;this.items.sort(t)},i.fit=function(t,e,i){var o=this.getItem(t);o&&(this.stamp(o.element),o.enablePlacing(),this.updateShiftTargets(o),e=void 0===e?o.rect.x:e,i=void 0===i?o.rect.y:i,this.shift(o,e,i),this._bindFitEvents(o),o.moveTo(o.rect.x,o.rect.y),this.shiftLayout(),this.unstamp(o.element),this.sortItemsByPosition(),o.disablePlacing())},i._bindFitEvents=function(t){function i(){e++,2==e&&o.dispatchEvent(\'fitComplete\',null,[t])};var o=this,e=0;t.once(\'layout\',i),this.once(\'layoutComplete\',i)},i.resize=function(){this.isResizeBound&&this.needsResizeLayout()&&(this.options.shiftPercentResize?this.resizeShiftPercentLayout():this.layout())},i.needsResizeLayout=function(){var i=t(this.element),e=this._getOption(\'horizontal\')?\'innerHeight\':\'innerWidth\';return i[e]!=this.size[e]},i.resizeShiftPercentLayout=function(){var n=this._getItemsForLayout(this.items),e=this._getOption(\'horizontal\'),i=e?\'y\':\'x\',u=e?\'height\':\'width\',s=e?\'rowHeight\':\'columnWidth\',c=e?\'innerHeight\':\'innerWidth\',o=this[s];if(o=o&&o+this.gutter){this._getMeasurements();var h=this[s]+this.gutter;n.forEach(function(t){var e=Math.round(t.rect[i]/o);t.rect[i]=e*h})}\nelse{var r=t(this.element)[c]+this.gutter,a=this.packer[u];n.forEach(function(t){t.rect[i]=t.rect[i]/a*r})};this.shiftLayout()},i.itemDragStart=function(t){if(this.isEnabled){this.stamp(t);var e=this.getItem(t);e&&(e.enablePlacing(),e.showDropPlaceholder(),this.dragItemCount++,this.updateShiftTargets(e))}},i.updateShiftTargets=function(t){this.shiftPacker.reset(),this._getBoundingRect();var l=this._getOption(\'originLeft\'),f=this._getOption(\'originTop\');this.stamps.forEach(function(t){var n=this.getItem(t);if(!n||!n.isPlacing){var e=this._getElementOffset(t),i=new o({x:l?e.left:e.right,y:f?e.top:e.bottom});this._setRectSize(t,i),this.shiftPacker.placed(i)}},this);var n=this._getOption(\'horizontal\'),d=n?\'rowHeight\':\'columnWidth\',s=n?\'height\':\'width\';this.shiftTargetKeys=[],this.shiftTargets=[];var i,e=this[d];if(e=e&&e+this.gutter){var c=Math.ceil(t.rect[s]/e),a=Math.floor((this.shiftPacker[s]+this.gutter)/e);i=(a-c)*e;for(var r=0;a>r;r++)this._addShiftTarget(r*e,0,i)}\nelse i=this.shiftPacker[s]+this.gutter-t.rect[s],this._addShiftTarget(0,0,i);var h=this._getItemsForLayout(this.items),u=this._getPackMethod();h.forEach(function(t){var o=t.rect;this._setRectSize(t.element,o),this.shiftPacker[u](o),this._addShiftTarget(o.x,o.y,i);var a=n?o.x+o.width:o.x,h=n?o.y:o.y+o.height;if(this._addShiftTarget(a,h,i),e)for(var l=Math.round(o[s]/e),r=1;l>r;r++){var c=n?a:o.x+e*r,d=n?o.y+e*r:h;this._addShiftTarget(c,d,i)}},this)},i._addShiftTarget=function(t,e,i){var n=this._getOption(\'horizontal\')?e:t;if(!(0!==n&&n>i)){var o=t+\',\'+e,s=-1!=this.shiftTargetKeys.indexOf(o);s||(this.shiftTargetKeys.push(o),this.shiftTargets.push({x:t,y:e}))}},i.shift=function(t,e,i){var o,n=1/0,s={x:e,y:i};this.shiftTargets.forEach(function(t){var e=d(t,s);n>e&&(o=t,n=e)}),t.rect.x=o.x,t.rect.y=o.y};var a=120;i.itemDragMove=function(t,e,i){function r(){n.shift(o,e,i),o.positionDropPlaceholder(),n.layout()};var o=this.isEnabled&&this.getItem(t);if(o){e-=this.size.paddingLeft,i-=this.size.paddingTop;var n=this,s=new Date;this._itemDragTime&&s-this._itemDragTime<a?(clearTimeout(this.dragTimeout),this.dragTimeout=setTimeout(r,a)):(r(),this._itemDragTime=s)}},i.itemDragEnd=function(t){function o(){i++,2==i&&(e.element.classList.remove(\'is-positioning-post-drag\'),e.hideDropPlaceholder(),n.dispatchEvent(\'dragItemPositioned\',null,[e]))};var e=this.isEnabled&&this.getItem(t);if(e){clearTimeout(this.dragTimeout),e.element.classList.add(\'is-positioning-post-drag\');var i=0,n=this;e.once(\'layout\',o),this.once(\'layoutComplete\',o),e.moveTo(e.rect.x,e.rect.y),this.layout(),this.dragItemCount=Math.max(0,this.dragItemCount-1),this.sortItemsByPosition(),e.disablePlacing(),this.unstamp(e.element)}},i.bindDraggabillyEvents=function(t){this._bindDraggabillyEvents(t,\'on\')},i.unbindDraggabillyEvents=function(t){this._bindDraggabillyEvents(t,\'off\')},i._bindDraggabillyEvents=function(t,e){var i=this.handleDraggabilly;t[e](\'dragStart\',i.dragStart),t[e](\'dragMove\',i.dragMove),t[e](\'dragEnd\',i.dragEnd)},i.bindUIDraggableEvents=function(t){this._bindUIDraggableEvents(t,\'on\')},i.unbindUIDraggableEvents=function(t){this._bindUIDraggableEvents(t,\'off\')},i._bindUIDraggableEvents=function(t,e){var i=this.handleUIDraggable;t[e](\'dragstart\',i.start)[e](\'drag\',i.drag)[e](\'dragstop\',i.stop)};var h=i.destroy;return i.destroy=function(){h.apply(this,arguments),this.isEnabled=!1},r.Rect=o,r.Packer=n,r}),function(t,e){\'function\'==typeof define&&define.amd?define([\'isotope/js/layout-mode\',\'packery/js/packery\'],e):\'object\'==typeof module&&module.exports?module.exports=e(require(\'isotope-layout/js/layout-mode\'),require(\'packery\')):e(t.Isotope.LayoutMode,t.Packery)}(window,function(t,e){var n=t.create(\'packery\'),i=n.prototype,u={_getElementOffset:!0,_getMeasurement:!0};for(var o in e.prototype)u[o]||(i[o]=e.prototype[o]);var h=i._resetLayout;i._resetLayout=function(){this.packer=this.packer||new e.Packer,this.shiftPacker=this.shiftPacker||new e.Packer,h.apply(this,arguments)};var a=i._getItemLayoutPosition;i._getItemLayoutPosition=function(t){return t.rect=t.rect||new e.Rect,a.call(this,t)};var r=i.needsResizeLayout;i.needsResizeLayout=function(){return this._getOption(\'horizontal\')?this.needsVerticalResizeLayout():r.call(this)};var s=i._getOption;return i._getOption=function(t){return\'horizontal\'==t?void 0!==this.options.isHorizontal?this.options.isHorizontal:this.options.horizontal:s.apply(this.isotope,arguments)},n});\";}s:22:\"avia-module-masonry-js\";a:6:{s:4:\"name\";s:19:\"avia-module-masonry\";s:3:\"url\";s:123:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js\";s:4:\"path\";s:98:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/masonry_entries/masonry_entries.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:3875:\"(function(i){\'use strict\';i.fn.avia_masonry=function(a){if(!this.length)return this;var n=i(\'body\'),e=i(window),s=i.avia_utilities.isMobile,o=!1,t={masonry_filter:function(){var a=i(this),l=a.html(),n=a.data(\'filter\'),o=a.parents(\'.av-masonry:eq(0)\'),s=o.find(\'.av-masonry-container:eq(0)\'),f=o.find(\'.av-masonry-sort a\'),r=o.find(\'.av-current-sort-title\');f.removeClass(\'active_sort\');a.addClass(\'active_sort\');s.attr(\'id\',\'masonry_id_\'+n);if(r.length)r.html(l);t.applyMasonry(s,n,function(){s.css({overflow:\'visible\'})});setTimeout(function(){e.trigger(\'debouncedresize\')},500);return!1},applyMasonry:function(a,o,s){var t=o?{filter:\'.\'+o}:{};t[\'layoutMode\']=\'packery\';t[\'packery\']={gutter:0};t[\'percentPosition\']=!0;t[\'itemSelector\']=\'a.isotope-item, div.isotope-item\';t[\'originLeft\']=i(\'body\').hasClass(\'rtl\')?!1:!0;a.isotope(t,function(){e.trigger(\'av-height-change\')});if(typeof s===\'function\'){setTimeout(s,0)}},show_bricks:function(a,t){a.each(function(o){var n=i(this),r=i.avia_utilities.supports(\'transition\'),l=s?0:100;setTimeout(function(){if(r===!1){n.css({visibility:\'visible\',opacity:0}).animate({opacity:1},1500)}\nelse{n.addClass(\'av-masonry-item-loaded\')};if(o==a.length-1&&typeof t==\'function\'){t.call();e.trigger(\'av-height-change\')}},(l*o))})},loadMore:function(a){a.preventDefault();if(o)return!1;o=!0;var l=i(this),s=l.data(),r=l.parents(\'.av-masonry:eq(0)\'),d=r.find(\'.av-masonry-container\'),v=r.find(\'.av-masonry-entry\'),f=i.avia_utilities.loading(),c=function(){o=!1;f.hide();n.trigger(\'av_resize_finished\')};if(!s.offset){s.offset=0};s.offset+=s.items;s.action=\'avia_ajax_masonry_more\';s.loaded=[];v.each(function(){var a=i(this).data(\'av-masonry-item\');if(a)s.loaded.push(a)});i.ajax({url:avia_framework_globals.ajaxurl,type:\'POST\',data:s,beforeSend:function(){f.show()},success:function(a){if(a.indexOf(\'{av-masonry-loaded}\')!==-1){var a=a.split(\'{av-masonry-loaded}\'),o=i(a.pop()).filter(\'.isotope-item\');if(o.length>s.items){o=o.not(\':last\')}\nelse{l.addClass(\'av-masonry-no-more-items\')};var n=i(\'<div class=\"loadcontainer\"></div>\').append(o);i.avia_utilities.preload({container:n,single_callback:function(){var s=r.find(\'.av-masonry-sort a\'),a=r.find(\'.av-sort-by-term\'),n=a.data(\'av-allowed-sort\');a.hide();f.hide();d.isotope(\'insert\',o);i.avia_utilities.avia_ajax_call(r);setTimeout(function(){t.show_bricks(o,c)},150);setTimeout(function(){e.trigger(\'av-height-change\')},550);if(s){i(s).each(function(a){var t=i(this),e=t.data(\'filter\');if(o){i(o).each(function(a){var s=i(this);if(s.hasClass(e)&&n.indexOf(e)!==-1){var o=t.find(\'.avia-term-count\').text();t.find(\'.avia-term-count\').text(\' \'+(parseInt(o)+1)+\' \');if(t.hasClass(\'avia_hide_sort\')){t.removeClass(\'avia_hide_sort\').addClass(\'avia_show_sort\');r.find(\'.av-masonry-sort .\'+e+\'_sep\').removeClass(\'avia_hide_sort\').addClass(\'avia_show_sort\');r.find(\'.av-masonry-sort .av-sort-by-term\').removeClass(\'hidden\')}}})}})};a.fadeIn()}})}\nelse{c()}},error:c,complete:function(){setTimeout(function(){e.trigger(\'debouncedresize\')},500)}})}};return this.each(function(){var a=i(this),e=a.find(\'.av-masonry-container\'),o=a.find(\'.isotope-item\'),n=a.find(\'.av-masonry-sort\').css({visibility:\'visible\',opacity:0}).on(\'click\',\'a\',t.masonry_filter),r=a.find(\'.av-masonry-load-more\').css({visibility:\'visible\',opacity:0});i.avia_utilities.preload({container:e,single_callback:function(){var l=function(){n.animate({opacity:1},400);if(e.outerHeight()+e.offset().top+i(\'#footer\').outerHeight()>i(window).height()){i(\'html\').css({\'overflow-y\':\'scroll\'})};t.applyMasonry(e,!1,function(){a.addClass(\'avia_sortable_active\');e.removeClass(\'av-js-disabled \')});t.show_bricks(o,function(){r.css({opacity:1}).on(\'click\',t.loadMore)})};if(s){l()}\nelse{a.waypoint(l,{offset:\'80%\'})};i(window).on(\'debouncedresize\',function(){t.applyMasonry(e,!1,function(){a.addClass(\'avia_sortable_active\')})})}})})}}(jQuery));\";}s:19:\"avia-module-menu-js\";a:6:{s:4:\"name\";s:16:\"avia-module-menu\";s:3:\"url\";s:101:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.js\";s:4:\"path\";s:76:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/menu/menu.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:2364:\"(function(i){\'use strict\';i.avia_utilities=i.avia_utilities||{};i(document).ready(function(){i.avia_utilities=i.avia_utilities||{};if(i.avia_utilities.avia_sticky_submenu)i.avia_utilities.avia_sticky_submenu()});i.avia_utilities.avia_sticky_submenu=function(){var e=i(window),s=i(\'html:first\'),t=i(\'.html_header_top.html_header_sticky #header\'),a=parseInt(i(\'html:first\').css(\'margin-top\'),10),l=i(\'.html_header_sidebar #main, .boxed #main\'),n=i(\'.av-submenu-container\'),r=s.is(\'.html_minimal_header\')?0:1,o=i(\'.av-frame-top\').height(),h=i(\'.av-burger-menu-main\'),u=function(){a=parseInt(s.css(\'margin-top\'),10);if(!i(\'.mobile_menu_toggle:visible\').length){i(\'.av-open-submenu\').removeClass(\'av-open-submenu\')};n.filter(\'.av-sticky-submenu\').each(function(){i(this).next(\'.sticky_placeholder\').height(i(this).height())})},v=function(){var i=l.width();a=parseInt(s.css(\'margin-top\'),10);n.width(i)},b=function(n,v){var b=this.offset().top,l=n.offset().top,u=e.scrollTop(),i=a,s=!1;if(h.is(\':visible\')){this.css({top:\'auto\',position:\'absolute\'});s=!1;return};if(t.length){i+=t.outerHeight()+parseInt(t.css(\'margin-top\'),10)};if(o){i+=o};if(u+i>l){if(!s){this.css({top:i-r,position:\'fixed\'});s=!0}}\nelse{this.css({top:\'auto\',position:\'absolute\'});s=!1}},m=function(e){e.preventDefault();var t=i(this),s=t.siblings(\'.av-subnav-menu\');if(s.hasClass(\'av-open-submenu\')){s.removeClass(\'av-open-submenu\')}\nelse{s.addClass(\'av-open-submenu\')}};e.on(\'debouncedresize av-height-change\',u);u();if(l.length){e.on(\'debouncedresize av-height-change\',v);v()};n.each(function(){var s=i(this),t=s.filter(\'.av-sticky-submenu\'),n=s.next(\'.sticky_placeholder\'),a=s.find(\'.mobile_menu_toggle\');if(t.length)e.on(\'scroll debouncedresize\',function(){window.requestAnimationFrame(i.proxy(b,t,n))});if(a.length){a.on(\'click\',m)}});s.on(\'click\',\'.av-submenu-hidden .av-open-submenu li a\',function(){var s=i(this),e=s.siblings(\'ul, .avia_mega_div\');if(e.length){if(e.hasClass(\'av-visible-sublist\')){e.removeClass(\'av-visible-sublist\')}\nelse{e.addClass(\'av-visible-sublist\')};return!1}});i(\'.avia_mobile\').on(\'click\',\'.av-menu-mobile-disabled li a\',function(){var s=i(this),e=s.siblings(\'ul\');if(e.length){if(e.hasClass(\'av-visible-mobile-sublist\')){}\nelse{i(\'.av-visible-mobile-sublist\').removeClass(\'av-visible-mobile-sublist\');e.addClass(\'av-visible-mobile-sublist\');return!1}}})}}(jQuery));\";}s:28:\"avia-mofdule-notification-js\";a:6:{s:4:\"name\";s:25:\"avia-mofdule-notification\";s:3:\"url\";s:117:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js\";s:4:\"path\";s:92:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/notification/notification.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:943:\"(function(e){\'use strict\';e.fn.avia_sc_messagebox=function(s){\'use strict\';return this.each(function(){var s=e(this),a=s.find(\'.av_message_close\'),t=s.attr(\'id\'),i=function(e,i,t){if(t){var s=new Date();s.setTime(s.getTime()+(t*24*60*60*1000));var a=\'; expires=\'+s.toGMTString()}\nelse var a=\'\';document.cookie=e+\'=\'+i+a+\'; path=/\'},n=function(t){var n=t+\'=\',o=document.cookie.split(\';\');for(var a=0;a<o.length;a++){var e=o[a];while(e.charAt(0)==\' \'){e=e.substring(1,e.length)};if(e.indexOf(n)==0){var r=s.attr(\'data-contents\'),i=e.substring(n.length,e.length);if(i==r){return i}}};return null};if(!n(t)){s.removeClass(\'messagebox-hidden\')};a.on(\'click\',function(){var a=s.attr(\'data-contents\');if(s.hasClass(\'messagebox-session_cookie\')){var e=\'\'}\nelse if(s.hasClass(\'messagebox-custom_cookie\')){var e=parseInt(s.attr(\'data-cookielifetime\'))};i(t,a,e);s.addClass(\'messagebox-hidden\')})})};e(\'.avia_message_box\').avia_sc_messagebox()}(jQuery));\";}s:22:\"avia-module-numbers-js\";a:6:{s:4:\"name\";s:19:\"avia-module-numbers\";s:3:\"url\";s:107:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.js\";s:4:\"path\";s:82:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/numbers/numbers.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1348:\"(function(t){t.fn.avia_sc_animated_number=function(a){if(!this.length)return;if(this.is(\'.avia_sc_animated_number_active\'))return;this.addClass(\'avia_sc_animated_number_active\');var e=(a&&a.simple_up)?!0:!1,r=(a&&a.start_timer)?a.start_timer:300,i=function(t,a,i){var r=\'\',s=i.toString().length-t.toString().length;for(var n=s;n>0;n--){r+=\'0\'};t=(e)?t.toString():r+t.toString();if(\'\'==a){return t};return t.split(/(?=(?:...)*$)/).join(a)},n=function(t,a,r,f,u,s){var o=f+r,final=\'\';if(o>=u){final=i(a,s,a);t.text(final)}\nelse{final=i(o,s,a);t.text(final);window.requestAnimationFrame(function(){n(t,a,r,o,u,s)})}};return this.each(function(){var i=t(this),e=i.find(\'.__av-single-number\'),s=i.data(\'timer\')||3000;e.each(function(a){var i=t(this),n=i.text();if(window.addEventListener)i.text(n.replace(/./g,\'0\'))});i.addClass(\'number_prepared\').on(\'avia_start_animation\',function(){if(i.is(\'.avia_animation_done\'))return;i.addClass(\'avia_animation_done\');e.each(function(i){var a=t(this),e=a.data(\'number\'),u=e,f=parseInt(a.text(),10),d=/^0+$/.test(e),o=0,m=a.data(\'number_format\');if(\'undefined\'!=typeof a.data(\'start_from\')){f=a.data(\'start_from\')};if(d&&e!==0){u=e.replace(/0/g,\'9\')};o=Math.round(u*32/s);if(o==0||o%10==0)o+=1;setTimeout(function(){n(a,e,o,f,u,m)},r)})});if(a&&a.instant_start==!0){i.trigger(\'avia_start_animation\')}})}})(jQuery);\";}s:24:\"avia-module-portfolio-js\";a:6:{s:4:\"name\";s:21:\"avia-module-portfolio\";s:3:\"url\";s:111:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js\";s:4:\"path\";s:86:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/portfolio/portfolio.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:5301:\"(function(i){\'use strict\';i.avia_utilities=i.avia_utilities||{};i.fn.avia_iso_sort=function(e){return this.each(function(){var o=i(\'body\'),e=i(this),l=e.data(\'portfolio-id\'),t=e.closest(\'.av-portfolio-grid-sorting-container, .entry-content-wrapper, .avia-fullwidth-portfolio\'),n=t.find(\'.sort_width_container[data-portfolio-id=\"\'+l+\'\"]\').find(\'#js_sort_items\').css({visibility:\'visible\',opacity:0}),s=n.find(\'a\'),c=e.find(\'.grid-image\'),d=!1,f=i(\'.post-entry\',e),r=o.hasClass(\'rtl\')?!1:!0;function a(){e.addClass(\'isotope_activated\').isotope({layoutMode:\'fitRows\',itemSelector:\'.flex_column\',originLeft:r});e.isotope(\'on\',\'layoutComplete\',function(){e.css({overflow:\'visible\'});o.trigger(\'av_resize_finished\')});d=!0;setTimeout(function(){t.addClass(\'avia_sortable_active\')},0)};s.on(\'click\',function(){var a=i(this),o=a.data(\'filter\'),l=a.html(),n=t.find(\'.av-current-sort-title\');if(n.length)n.html(l);s.removeClass(\'active_sort\');a.addClass(\'active_sort\');e.attr(\'id\',\'grid_id_\'+o);t.find(\'.open_container .ajax_controlls .avia_close\').trigger(\'click\');e.isotope({layoutMode:\'fitRows\',itemSelector:\'.flex_column\',filter:\'.\'+o,originLeft:r});return!1});i(window).on(\'debouncedresize\',function(){a()});i.avia_utilities.preload({container:e,single_callback:function(){n.animate({opacity:1},400);a();setTimeout(function(){a()});c.css({height:\'auto\'}).each(function(e){var t=i(this);setTimeout(function(){t.animate({opacity:1},1500)},(100*e))})}})})};i.fn.avia_portfolio_preview=function(t){var o=i(window),a=i(\'body\'),s=i.avia_utilities.isMobile,n={open_in:\'.portfolio-details-inner\',easing:\'easeOutQuint\',timing:800,transition:\'slide\'},e=i.extend({},n,t);return this.each(function(){var r=i(this),g=r.data(\'portfolio-id\'),l=i(\'.portfolio_preview_container[data-portfolio-id=\"\'+g+\'\"]\'),d=l.find(e.open_in),p=r.find(\'.grid-entry\'),t={},s=!1,c=!1,v=!1,f=!1,n,u,m=i.avia_utilities.loading();n={load_item:function(e){e.preventDefault();var o=i(this),t=o.parents(\'.post-entry:eq(0)\'),a=\'ID_\'+t.data(\'ajax-id\'),l=p.index(t);if(a===s||c==!0){return!1};c=!0;r.find(\'.active_portfolio_item\').removeClass(\'active_portfolio_item\');t.addClass(\'active_portfolio_item\');m.show();n.ajax_get_contents(a,l)},scroll_top:function(){setTimeout(function(){var t=l.offset().top-175,a=o.scrollTop();if(a>t||t-a>100){i(\'html:not(:animated),body:not(:animated)\').animate({scrollTop:t},e.timing,e.easing)}},10)},attach_item:function(e){t[e]=i(t[e]).appendTo(d);f=!0},remove_video:function(){var i=l.find(\'iframe, .avia-video\').parents(\'.ajax_slide:not(.open_slide)\');if(i.length>0){i.remove();t[\'ID_\'+i.data(\'slideId\')]=undefined}},show_item:function(o,r){if(o===s){return!1};c=!0;m.hide();if(!1===s){l.addClass(\'open_container\');t[o].addClass(\'open_slide\');n.scroll_top();l.css({display:\'none\'}).slideDown(e.timing,e.easing,function(){if(f){i.avia_utilities.activate_shortcode_scripts(t[o]);i.avia_utilities.avia_ajax_call(t[o]);a.trigger(\'av_resize_finished\');f=!1};n.remove_video();a.trigger(\'av_resize_finished\')});v=r;s=o;c=!1}\nelse{n.scroll_top();var p={zIndex:3},u=e.easing;if(v>r){p.left=\'-110%\'};if(e.transition===\'fade\'){p.left=\'0%\';p.opacity=0;u=\'easeOutQuad\'};d.height(d.height());t[o].css(p).avia_animate({\'left\':\'0%\',opacity:1},e.timing,u);t[s].avia_animate({opacity:0},e.timing,u,function(){t[s].attr({\'style\':\'\'}).removeClass(\'open_slide\');t[o].addClass(\'open_slide\');d.avia_animate({height:t[o].outerHeight()+2},e.timing/2,e.easing,function(){d.attr({\'style\':\'\'});s=o;v=r;c=!1;n.remove_video();if(f){a.trigger(\'av_resize_finished\');i.avia_utilities.activate_shortcode_scripts(t[o]);i.avia_utilities.avia_ajax_call(t[o]);f=!1}})})}},ajax_get_contents:function(e,a){if(t[e]!==undefined){n.show_item(e,a);return};var o=i(\'#avia-tmpl-portfolio-preview-\'+e.replace(/ID_/,\'\'));if(o.length==0){setTimeout(function(){n.ajax_get_contents(e,a);return},500)};t[e]=o.html();t[e]=t[e].replace(\'/*<![CDATA[*/\',\'\').replace(\'*]]>\',\'\');n.attach_item(e);i.avia_utilities.preload({container:t[e],single_callback:function(){n.show_item(e,a)}})},add_controls:function(){u=l.find(\'.ajax_controlls\');l.avia_keyboard_controls({27:\'.avia_close\',37:\'.ajax_previous\',39:\'.ajax_next\'});p.each(function(){var e=i(this),t;e.addClass(\'no_combo\').on(\'click\',function(i){t=e.find(\'.slideshow_overlay\');if(t.length){i.stopPropagation();n.load_item.apply(e.find(\'a:eq(0)\'));return!1}})})},control_click:function(){var o,f=r.find(\'.active_portfolio_item\').data(\'ajax-id\'),d=r.find(\'.post-entry-\'+f);switch(this.hash){case\'#next\':o=d.nextAll(\'.post-entry:visible:eq(0)\').find(\'a:eq(0)\');if(!o.length){o=i(\'.post-entry:visible:eq(0)\',r).find(\'a:eq(0)\')};o.trigger(\'click\');break;case\'#prev\':o=d.prevAll(\'.post-entry:visible:eq(0)\').find(\'a:eq(0)\');if(!o.length){o=i(\'.post-entry:visible:last\',r).find(\'a:eq(0)\')};o.trigger(\'click\');break;case\'#close\':c=!0;l.slideUp(e.timing,e.easing,function(){r.find(\'.active_portfolio_item\').removeClass(\'active_portfolio_item\');t[s].attr({\'style\':\'\'}).removeClass(\'open_slide\');l.removeClass(\'open_container\');c=s=v=!1;n.remove_video();a.trigger(\'av_resize_finished\')});break};return!1},resize_reset:function(){if(s===!1){d.html(\'\');t=[]}}};n.add_controls();r.on(\'click\',\'a\',n.load_item);u.on(\'click\',\'a\',n.control_click);if(jQuery.support.leadingWhitespace){o.on(\'debouncedresize\',n.resize_reset)}})}}(jQuery));\";}s:27:\"avia-module-progress-bar-js\";a:6:{s:4:\"name\";s:24:\"avia-module-progress-bar\";s:3:\"url\";s:115:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.js\";s:4:\"path\";s:90:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/progressbar/progressbar.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:413:\"(function(a){\'use strict\';a.fn.avia_sc_progressbar=function(t){return this.each(function(){var t=a(this),i=t.find(\'.avia-progress-bar\');t.on(\'avia_start_animation\',function(){i.each(function(t){var i=a(this);setTimeout(function(){i.find(\'.progress\').addClass(\'avia_start_animation\');i.find(\'.progressbar-percent\').avia_sc_animated_number({instant_start:!0,simple_up:!0,start_timer:10})},(t*250))})})})}}(jQuery));\";}s:30:\"avia-module-slideshow-video-js\";a:6:{s:4:\"name\";s:27:\"avia-module-slideshow-video\";s:3:\"url\";s:117:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js\";s:4:\"path\";s:92:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow/slideshow-video.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:9643:\"(function(e){\'use strict\';e.AviaVideoAPI=function(i,t,o){this.videoElement=t;this.$video=e(t);this.$option_container=o?e(o):this.$video;this.load_btn=this.$option_container.find(\'.av-click-to-play-overlay\');this.video_wrapper=this.$video.parents(\'ul\').eq(0);this.lazy_load=this.video_wrapper.hasClass(\'av-show-video-on-click\')?!0:!1;this.isMobile=e.avia_utilities.isMobile;this.fallback=this.isMobile?this.$option_container.is(\'.av-mobile-fallback-image\'):!1;if(this.fallback)return;this._init(i)};e.AviaVideoAPI.defaults={loop:!1,mute:!1,controls:!1,events:\'play pause mute unmute loop toggle reset unload\'};e.AviaVideoAPI.apiFiles={youtube:{loaded:!1,src:\'https://www.youtube.com/iframe_api\'}};e.AviaVideoAPI.players={};e.AviaVideoAPI.prototype={_init:function(i){this.options=this._setOptions(i);this.type=this._getPlayerType();this.player=!1;this._bind_player();this.eventsBound=!1;this.playing=!1;this.$option_container.addClass(\'av-video-paused\');this.pp=e.avia_utilities.playpause(this.$option_container)},_setOptions:function(i){var n=e.extend(!0,{},e.AviaVideoAPI.defaults,i),o=this.$option_container.data(),t=\'\';for(t in o){if(o.hasOwnProperty(t)&&(typeof o[t]===\'string\'||typeof o[t]===\'number\'||typeof o[t]===\'boolean\')){n[t]=o[t]}};return n},_getPlayerType:function(){var e=this.$video.get(0).src||this.$video.data(\'src\');if(this.$video.is(\'video\'))return\'html5\';if(this.$video.is(\'.av_youtube_frame\'))return\'youtube\';if(e.indexOf(\'vimeo.com\')!=-1)return\'vimeo\';if(e.indexOf(\'youtube.com\')!=-1)return\'youtube\'},_bind_player:function(){var t=this,o=e(\'html\').hasClass(\'av-cookies-needs-opt-in\')||e(\'html\').hasClass(\'av-cookies-can-opt-out\'),i=!0,n=e(\'html\').hasClass(\'av-cookies-user-silent-accept\'),a=\'html5\'==this.type;if(o&&!n&&!a){if(!document.cookie.match(/aviaCookieConsent/)||e(\'html\').hasClass(\'av-cookies-session-refused\')){i=!1}\nelse{if(!document.cookie.match(/aviaPrivacyRefuseCookiesHideBar/)){i=!1}\nelse if(!document.cookie.match(/aviaPrivacyEssentialCookiesEnabled/)){i=!1}\nelse if(document.cookie.match(/aviaPrivacyVideoEmbedsDisabled/)){i=!1}}};if(!i){this._use_external_link();return};if(this.lazy_load&&this.load_btn.length&&this.type!=\'html5\'){this.$option_container.addClass(\'av-video-lazyload\');this.load_btn.on(\'click\',function(){t.load_btn.remove();t._setPlayer()})}\nelse{this.lazy_load=!1;this._setPlayer()}},_use_external_link:function(){this.$option_container.addClass(\'av-video-lazyload\');this.load_btn.on(\'click\',function(i){if(i.originalEvent===undefined)return;var t=e(this).parents(\'.avia-slide-wrap\').find(\'div[data-original_url]\').data(\'original_url\');if(t)window.open(t,\'_blank\')})},_setPlayer:function(){var t=this;switch(this.type){case\'html5\':this.player=this.$video.data(\'mediaelementplayer\');if(!this.player){this.$video.data(\'mediaelementplayer\',e.AviaVideoAPI.players[this.$video.attr(\'id\').replace(/_html5/,\'\')]);this.player=this.$video.data(\'mediaelementplayer\')};this._playerReady();break;case\'vimeo\':var i=document.createElement(\'iframe\');var o=e(i);i.onload=function(){t.player=Froogaloop(i);t._playerReady();t.$option_container.trigger(\'av-video-loaded\')};i.setAttribute(\'src\',this.$video.data(\'src\'));o.insertAfter(this.$video);this.$video.remove();this.$video=i;break;case\'youtube\':this._getAPI(this.type);e(\'body\').on(\'av-youtube-iframe-api-loaded\',function(){t._playerReady()});break}},_getAPI:function(i){if(e.AviaVideoAPI.apiFiles[i].loaded===!1){e.AviaVideoAPI.apiFiles[i].loaded=!0;var t=document.createElement(\'script\'),o=document.getElementsByTagName(\'script\')[0];t.src=e.AviaVideoAPI.apiFiles[i].src;o.parentNode.insertBefore(t,o)}},_playerReady:function(){var i=this;this.$option_container.on(\'av-video-loaded\',function(){i._bindEvents()});switch(this.type){case\'html5\':this.$video.on(\'av-mediajs-loaded\',function(){i.$option_container.trigger(\'av-video-loaded\')});this.$video.on(\'av-mediajs-ended\',function(){i.$option_container.trigger(\'av-video-ended\')});break;case\'vimeo\':i.player.addEvent(\'ready\',function(){i.$option_container.trigger(\'av-video-loaded\');i.player.addEvent(\'finish\',function(){i.$option_container.trigger(\'av-video-ended\')})});break;case\'youtube\':var t=i.$video.data();if(i._supports_video())t.html5=1;i.player=new YT.Player(i.$video.attr(\'id\'),{videoId:t.videoid,height:i.$video.attr(\'height\'),width:i.$video.attr(\'width\'),playerVars:t,events:{\'onReady\':function(){i.$option_container.trigger(\'av-video-loaded\')},\'onError\':function(i){e.avia_utilities.log(\'YOUTUBE ERROR:\',\'error\',i)},\'onStateChange\':function(e){if(e.data===YT.PlayerState.ENDED){var t=i.options.loop!=!1?\'loop\':\'av-video-ended\';i.$option_container.trigger(t)}}}});break};setTimeout(function(){if(i.eventsBound==!0||typeof i.eventsBound==\'undefined\'||i.type==\'youtube\'){return};e.avia_utilities.log(\'Fallback Video Trigger \"\'+i.type+\'\":\',\'log\',i);i.$option_container.trigger(\'av-video-loaded\')},2000)},_bindEvents:function(){if(this.eventsBound==!0||typeof this.eventsBound==\'undefined\'){return};var e=this,i=\'unmute\';this.eventsBound=!0;this.$option_container.on(this.options.events,function(i){e.api(i.type)});if(!e.isMobile){if(this.options.mute!=!1){i=\'mute\'};if(this.options.loop!=!1){e.api(\'loop\')};e.api(i)};setTimeout(function(){e.$option_container.trigger(\'av-video-events-bound\').addClass(\'av-video-events-bound\')},50)},_supports_video:function(){return!!document.createElement(\'video\').canPlayType},api:function(e){if(this.isMobile&&!this.was_started())return;if(this.options.events.indexOf(e)===-1)return;this.$option_container.trigger(\'av-video-\'+e+\'-executed\');if(typeof this[\'_\'+this.type+\'_\'+e]==\'function\'){this[\'_\'+this.type+\'_\'+e].call(this)};if(typeof this[\'_\'+e]==\'function\'){this[\'_\'+e].call(this)}},was_started:function(){if(!this.player)return!1;switch(this.type){case\'html5\':if(this.player.getCurrentTime()>0)return!0;break;case\'vimeo\':if(this.player.api(\'getCurrentTime\')>0)return!0;break;case\'youtube\':if(this.player.getPlayerState()!==-1)return!0;break};return!1},_play:function(){this.playing=!0;this.$option_container.addClass(\'av-video-playing\').removeClass(\'av-video-paused\')},_pause:function(){this.playing=!1;this.$option_container.removeClass(\'av-video-playing\').addClass(\'av-video-paused\')},_loop:function(){this.options.loop=!0},_toggle:function(){var e=this.playing==!0?\'pause\':\'play\';this.api(e);this.pp.set(e)},_vimeo_play:function(){this.player.api(\'play\')},_vimeo_pause:function(){this.player.api(\'pause\')},_vimeo_mute:function(){this.player.api(\'setVolume\',0)},_vimeo_unmute:function(){this.player.api(\'setVolume\',0.7)},_vimeo_loop:function(){},_vimeo_reset:function(){this.player.api(\'seekTo\',0)},_vimeo_unload:function(){this.player.api(\'unload\')},_youtube_play:function(){this.player.playVideo()},_youtube_pause:function(){this.player.pauseVideo()},_youtube_mute:function(){this.player.mute()},_youtube_unmute:function(){this.player.unMute()},_youtube_loop:function(){if(this.playing==!0)this.player.seekTo(0)},_youtube_reset:function(){this.player.stopVideo()},_youtube_unload:function(){this.player.clearVideo()},_html5_play:function(){if(this.player){this.player.options.pauseOtherPlayers=!1;this.player.play()}},_html5_pause:function(){if(this.player)this.player.pause()},_html5_mute:function(){if(this.player)this.player.setMuted(!0)},_html5_unmute:function(){if(this.player)this.player.setVolume(0.7)},_html5_loop:function(){if(this.player)this.player.options.loop=!0},_html5_reset:function(){if(this.player)this.player.setCurrentTime(0)},_html5_unload:function(){this._html5_pause();this._html5_reset()}};e.fn.aviaVideoApi=function(i,t){return this.each(function(){var o=this;if(t){o=e(this).parents(t).get(0)};var n=e.data(o,\'aviaVideoApi\');if(!n){n=e.data(o,\'aviaVideoApi\',new e.AviaVideoAPI(i,this,o))}})}})(jQuery);window.onYouTubeIframeAPIReady=function(){jQuery(\'body\').trigger(\'av-youtube-iframe-api-loaded\')};var Froogaloop=(function(){function i(e){return new i.fn.init(e)};var e={},d=!1,t=!1,p=Array.prototype.slice,o=\'*\';i.fn=i.prototype={element:null,init:function(e){if(typeof e===\'string\'){e=document.getElementById(e)};this.element=e;return this},api:function(e,i){if(!this.element||!e){return!1};var o=this,t=o.element,l=t.id!==\'\'?t.id:null,u=!r(i)?i:null,a=r(i)?i:null;if(a){s(e,a,l)};n(e,u,t);return o},addEvent:function(e,i){if(!this.element){return!1};var a=this,o=a.element,r=o.id!==\'\'?o.id:null;s(e,i,r);if(e!=\'ready\'){n(\'addEventListener\',e,o)}\nelse if(e==\'ready\'&&t){i.call(null,r)};return a},removeEvent:function(e){if(!this.element){return!1};var t=this,i=t.element,o=i.id!==\'\'?i.id:null,a=u(e,o);if(e!=\'ready\'&&a){n(\'removeEventListener\',e,i)}}};function n(e,i,t){if(!t.contentWindow.postMessage){return!1};var n=JSON.stringify({method:e,value:i});t.contentWindow.postMessage(n,o)};function a(e){var i,r;try{i=JSON.parse(e.data);r=i.event||i.method}catch(p){};if(r==\'ready\'&&!t){t=!0};if(!(/^https?:\\/\\/player.vimeo.com/).test(e.origin)){return!1};if(o===\'*\'){o=e.origin};var u=i.value,d=i.data,a=a===\'\'?null:i.player_id,s=l(r,a),n=[];if(!s){return!1};if(u!==undefined){n.push(u)};if(d){n.push(d)};if(a){n.push(a)};return n.length>0?s.apply(null,n):s.call()};function s(i,t,o){if(o){if(!e[o]){e[o]={}};e[o][i]=t}\nelse{e[i]=t}};function l(i,t){if(t&&e[t]&&e[t][i]){return e[t][i]}\nelse{return e[i]}};function u(i,t){if(t&&e[t]){if(!e[t][i]){return!1};e[t][i]=null}\nelse{if(!e[i]){return!1};e[i]=null};return!0};function r(e){return!!(e&&e.constructor&&e.call&&e.apply)};function h(e){return toString.call(e)===\'[object Array]\'};i.fn.init.prototype=i.fn;if(window.addEventListener){window.addEventListener(\'message\',a,!1)}\nelse{window.attachEvent(\'onmessage\',a)};return(window.Froogaloop=window.$f=i)})();\";}s:34:\"avia-module-slideshow-accordion-js\";a:6:{s:4:\"name\";s:31:\"avia-module-slideshow-accordion\";s:3:\"url\";s:131:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js\";s:4:\"path\";s:106:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_accordion/slideshow_accordion.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:4340:\"(function(i){\'use strict\';i.AviaccordionSlider=function(t,e){this.$slider=i(e);this.$inner=this.$slider.find(\'.aviaccordion-inner\');this.$slides=this.$inner.find(\'.aviaccordion-slide\');this.$images=this.$inner.find(\'.aviaccordion-image\');this.$last=this.$slides.filter(\':last\');this.$titles=this.$slider.find(\'.aviaccordion-preview\');this.$titlePos=this.$slider.find(\'.aviaccordion-preview-title-pos\');this.$titleWrap=this.$slider.find(\'.aviaccordion-preview-title-wrap\');this.$win=i(window);if(i.avia_utilities.supported.transition===undefined){i.avia_utilities.supported.transition=i.avia_utilities.supports(\'transition\')};this.browserPrefix=i.avia_utilities.supported.transition;this.cssActive=this.browserPrefix!==!1?!0:!1;this.transform3d=document.documentElement.className.indexOf(\'avia_transform3d\')!==-1?!0:!1;this.isMobile=i.avia_utilities.isMobile;this.property=this.browserPrefix+\'transform\',this.count=this.$slides.length;this.open=!1;this.autoplay=!1;this.increaseTitle=this.$slider.is(\'.aviaccordion-title-on-hover\');this._init(t)};i.AviaccordionSlider.prototype={_init:function(t){var e=this;e.options=i.extend({},t,this.$slider.data());i.avia_utilities.preload({container:this.$slider,single_callback:function(){e._kickOff()}})},_kickOff:function(){var i=this;i._calcMovement();i._bindEvents();i._showImages();i._autoplay()},_autoplay:function(){var i=this;if(i.options.autoplay){i.autoplay=setInterval(function(){i.open=i.open===!1?0:i.open+1;if(i.open>=i.count)i.open=0;i._move({},i.open)},i.options.interval*1000)}},_showImages:function(){var t=this,a=0,e=300,s=this.count*e;if(this.cssActive){setTimeout(function(){t.$slider.addClass(\'av-animation-active\')},10)};this.$images.each(function(t){var s=i(this),a=e*(t+1);setTimeout(function(){s.avia_animate({opacity:1},400,function(){s.css(i.avia_utilities.supported.transition+\'transform\',\'none\')})},a)});if(t.increaseTitle)s=0;this.$titlePos.each(function(t){var e=i(this),a=s+100*(t+1);setTimeout(function(){e.avia_animate({opacity:1},200,function(){e.css(i.avia_utilities.supported.transition+\'transform\',\'none\')})},a)})},_bindEvents:function(){var t=this.isMobile?\'click\':\'mouseenter\';this.$slider.on(t,\'.aviaccordion-slide\',i.proxy(this._move,this));this.$slider.on(\'mouseleave\',\'.aviaccordion-inner\',i.proxy(this._move,this));this.$win.on(\'debouncedresize\',i.proxy(this._calcMovement,this));this.$slider.on(\'av-prev av-next\',i.proxy(this._moveTo,this));if(this.isMobile){this.$slider.avia_swipe_trigger({next:this.$slider,prev:this.$slider,event:{prev:\'av-prev\',next:\'av-next\'}})}},_titleHeight:function(){var t=0;this.$titleWrap.css({\'height\':\'auto\'}).each(function(){var e=i(this).outerHeight();if(e>t)t=e}).css({\'height\':t+2})},_calcMovement:function(t,s){var e=this,r=this.$slider.width(),p=this.$last.data(\'av-left\'),c=this.$images.filter(\':last\').width()||r,a=Math.floor((100/r)*c),l=a*e.count,h=3,d=100-a,n=d>p/h?d:0,o=n/(e.count-1),v=c;if(l<110&&s!==!1){var f=this.$slider.height(),u=(f/l)*110;this.$slider.css({\'max-height\':u});e._calcMovement(t,!1);return};if(o<2)n=0;this.$slides.each(function(t){var l=i(this),s=0,r=0,c=l.data(\'av-left\');if(n!==0){s=o*t;r=a+s-o}\nelse{s=c/Math.abs(h);r=100-((s/t)*(e.count-t))};if(t==1&&e.increaseTitle){v=r+1};if(e.cssActive){s=s-c;r=r-c;c=0};l.data(\'av-calc-default\',c);l.data(\'av-calc-left\',s);l.data(\'av-calc-right\',r)});if(e.increaseTitle){e.$titles.css({width:v+\'%\'})}},_moveTo:function(i){var e=i.type==\'av-next\'?1:-1,t=this.open===!1?0:this.open+e;if(t>=0&&t<this.$slides.length)this._move(i,t)},_move:function(t,s){var e=this,n=t.currentTarget,a=typeof s!=\'undefined\'?s:this.$slides.index(n);this.open=a;if(e.autoplay&&typeof n!=\'undefined\'){clearInterval(e.autoplay);e.autoplay=!1};this.$slides.removeClass(\'aviaccordion-active-slide\').each(function(s){var n=i(this),c=n.data(),o=s<=a?c.avCalcLeft:c.avCalcRight,r={},l=t.type==\'mouseleave\'?1:0,h=a===s?e.$titleWrap.eq(s):!1;if(h)n.addClass(\'aviaccordion-active-slide\');if(l){o=c.avCalcDefault;this.open=!1};if(e.cssActive){r[e.property]=e.transform3d?\'translate3d(\'+o+\'%, 0, 0)\':\'translate(\'+o+\'%,0)\';n.css(r)}\nelse{r.left=o+\'%\';n.stop().animate(r,700,\'easeOutQuint\')}})}};i.fn.aviaccordion=function(t){return this.each(function(){var e=i.data(this,\'AviaccordionSlider\');if(!e){i.data(this,\'AviaccordionSlider\',1);new i.AviaccordionSlider(t,this)}})}})(jQuery);\";}s:35:\"avia-module-slideshow-fullscreen-js\";a:6:{s:4:\"name\";s:32:\"avia-module-slideshow-fullscreen\";s:3:\"url\";s:133:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js\";s:4:\"path\";s:108:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_fullscreen/slideshow_fullscreen.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:2673:\"(function(i){\'use strict\';i.AviaFullscreenSlider=function(t,s){this.$slider=i(s);this.$inner=this.$slider.find(\'.avia-slideshow-inner\');this.$innerLi=this.$inner.find(\'>li\');this.$caption=this.$inner.find(\'.avia-slide-wrap .caption_container\');this.$win=i(window);this.isMobile=i.avia_utilities.isMobile;this.property={};this.scrollPos=\'0\';this.transform3d=document.documentElement.className.indexOf(\'avia_transform3d\')!==-1?!0:!1;this.ticking=!1;if(i.avia_utilities.supported.transition===undefined){i.avia_utilities.supported.transition=i.avia_utilities.supports(\'transition\')};this._init(t)};i.AviaFullscreenSlider.defaults={height:100,subtract:\'#wpadminbar, #header, #main>.title_container\'};i.AviaFullscreenSlider.prototype={_init:function(t){var s=this;this.options=i.extend(!0,{},i.AviaFullscreenSlider.defaults,t);if(this.$slider.data(\'slide_height\'))this.options.height=this.$slider.data(\'slide_height\');this.options.parallax_enabled=this.$slider.data(\'image_attachment\')==\'\'?!0:!1;this.$subtract=i(this.options.subtract);this._setSize();this.$win.on(\'debouncedresize\',i.proxy(this._setSize,this));setTimeout(function(){if(!s.isMobile&&s.options.parallax_enabled){s.$win.on(\'scroll\',i.proxy(s._on_scroll,s))}},100);this.$slider.aviaSlider({bg_slider:!0})},_on_scroll:function(t){var s=this;if(!s.ticking){s.ticking=!0;window.requestAnimationFrame(i.proxy(s._parallax_scroll,s))}},_fetch_properties:function(i){this.property.offset=this.$slider.offset().top;this.property.wh=this.$win.height();this.property.height=i||this.$slider.outerHeight();this._parallax_scroll()},_setSize:function(){if(!i.fn.avia_browser_height){var s=this.$win.height(),t=Math.ceil((s/100)*this.options.height);if(this.$subtract.length&&this.options.height==100){this.$subtract.each(function(){t-=this.offsetHeight-0.5})}\nelse{t-=1};this.$slider.height(t).removeClass(\'av-default-height-applied\');this.$inner.css(\'padding\',0)};this._fetch_properties(t)},_parallax_scroll:function(t){if(this.isMobile||!this.options.parallax_enabled)return;var e=this.$win.scrollTop(),n=e+this.property.wh,s=\'0\',r={},a={};if(this.property.offset<e&&e<=this.property.offset+this.property.height){s=Math.round((e-this.property.offset)*0.3)};if(this.scrollPos!=s){this.scrollPos=s;if(this.transform3d){r[i.avia_utilities.supported.transition+\'transform\']=\'translate3d(0px,\'+s+\'px,0px)\'}\nelse{r[i.avia_utilities.supported.transition+\'transform\']=\'translate(0px,\'+s+\'px)\'};this.$inner.css(r)};this.ticking=!1}};i.fn.aviaFullscreenSlider=function(t){return this.each(function(){var s=i.data(this,\'aviaFullscreenSlider\');if(!s){i.data(this,\'aviaFullscreenSlider\',1);new i.AviaFullscreenSlider(t,this)}})}})(jQuery);\";}s:27:\"avia-module-slideshow-ls-js\";a:6:{s:4:\"name\";s:24:\"avia-module-slideshow-ls\";s:3:\"url\";s:135:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js\";s:4:\"path\";s:110:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/slideshow_layerslider/slideshow_layerslider.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:279:\"(function(t){\'use strict\';t.fn.layer_slider_height_helper=function(e){return this.each(function(){var e=t(this),i=e.find(\'>div:first\'),n=!1,h=0,r=function(){if(i.height()>0||h>5){e.height(\'auto\')}\nelse{n=setTimeout(r,500);h++}};if(!i.length)return;n=setTimeout(r,0)})}}(jQuery));\";}s:25:\"avia-module-tabsection-js\";a:6:{s:4:\"name\";s:22:\"avia-module-tabsection\";s:3:\"url\";s:115:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js\";s:4:\"path\";s:90:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tab_section/tab_section.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:3030:\"(function(t){\'use strict\';t.fn.avia_sc_tab_section=function(){var i=t(window),s=t.avia_utilities.supports(\'transition\'),e=this.browserPrefix!==!1?!0:!1,n=t.avia_utilities.isMobile,o=document.documentElement.className.indexOf(\'avia_transform3d\')!==-1?!0:!1,a={};return this.each(function(){var s=t(this),l=s.find(\'.av-section-tab-title\'),b=s.find(\'.av-tab-section-outer-container\'),v=s.find(\'.av-tab-section-tab-title-container\'),g=s.find(\'.av_tab_navigation\'),d=s.find(\'.av-tab-section-inner-container\'),m=s.find(\'.av-animation-delay-container\'),f=s.find(\'.av-layout-tab-inner\'),x=s.is(\'.av-tab-slide-transition\'),p=s.is(\'.av-tab-content-auto\'),r=s.find(\'.__av_init_open\'),c=0,w=function(c,g){c.preventDefault();var n=t(c.currentTarget),p=n.find(\'.av-tab-arrow-container span\'),v=n.data(\'av-tab-section-title\');r=s.find(\'[data-av-tab-section-content=\"\'+v+\'\"]\');var f=r.data(\'av-tab-bg-color\'),b=r.data(\'av-tab-color\'),w=s.find(\'.av-active-tab-content\').not(\'[data-av-tab-section-content=\"\'+v+\'\"]\');l.attr(\'style\',\'\').removeClass(\'av-active-tab-title\');n.removeClass(\'no-scroll\');n.addClass(\'av-active-tab-title\');r.addClass(\'av-active-tab-content\');if(f!==\'\')p.css(\'background-color\',f);if(b!==\'\')n.css(\'color\',b);var i=((parseInt(v,10)-1)*-100);if(t(\'body\').hasClass(\'rtl\')){i=((parseInt(v,10)-1)*100)};if(e){i=i/l.length;a[\'transform\']=o?\'translate3d(\'+i+\'%, 0, 0)\':\'translate(\'+i+\'%,0)\';a[\'left\']=\'0%\';d.css(a)}\nelse{d.css(\'left\',i+\'%\')};u();h();if(!g)location.hash=n.attr(\'href\');setTimeout(function(){r.trigger(\'avia_start_animation_if_current_slide_is_active\');m.not(r).trigger(\'avia_remove_animation\')},600)},k=function(){c=0;l.each(function(){c+=t(this).outerWidth()});v.css(\'min-width\',c)},h=function(){if(r.length&&p){var e=f.height();f.height(\'auto\');var t=r.find(\'.av-layout-tab-inner\').height(),a=v.height();b.css(\'max-height\',t+a+100);f.height(e);f.height(t);f.css(\'overflow\',\'hidden\');setTimeout(function(){i.trigger(\'av-height-change\')},600)}},u=function(){var n=s.find(\'.av-active-tab-title\'),a=s.width(),i=(n.position().left*-1)-(n.outerWidth()/2)+(a/2);if(!t(\'body\').hasClass(\'rtl\')){if(a>=c){i=0};if(i+c<a)i=(c-a)*-1;if(i>0)i=0;v.css(\'left\',i)}\nelse{var e=0;if(a<c){if(i+c>a){if(i>0)i=0;var e=(i+c-a)*-1;v.css(\'left\',\'auto\');v.css(\'right\',e)}};v.css(\'left\',\'auto\');v.css(\'right\',e)}},y=function(i){if(!n)return;var e=t(i.currentTarget),a=s.find(\'.av-active-tab-title\');if(e.is(\'.av_prev_tab_section\')){a.prev(\'.av-section-tab-title\').trigger(\'click\')}\nelse{a.next(\'.av-section-tab-title\').trigger(\'click\')}},C=function(){if(!i&&window.location.hash)var i=window.location.hash;var t=l.filter(\'[href=\"\'+i+\'\"]\');if(t.length){if(!t.is(\'.active_tab\'))t.trigger(\'click\')}\nelse{s.find(\'.av-active-tab-title\').trigger(\'click\',!0)}};t.avia_utilities.preload({container:r,single_callback:function(){l.on(\'click\',w);g.on(\'click\',y);i.on(\'debouncedresize\',u);i.on(\'debouncedresize av-content-el-height-changed\',h);k();h();C()}});d.avia_swipe_trigger({prev:\'.av_prev_tab_section\',next:\'.av_next_tab_section\'})})}}(jQuery));\";}s:19:\"avia-module-tabs-js\";a:6:{s:4:\"name\";s:16:\"avia-module-tabs\";s:3:\"url\";s:101:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js\";s:4:\"path\";s:76:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1830:\"(function(t){\'use strict\';t.fn.avia_sc_tabs=function(e){var n={heading:\'.tab\',content:\'.tab_content\',active:\'active_tab\',sidebar:!1};var i=t(window),e=t.extend(n,e);return this.each(function(){var n=t(this),c=t(\'<div class=\"tab_titles\"></div>\').prependTo(n),a=t(e.heading,n),r=t(e.content,n),o=!1,d=!1;o=a.clone();d=a.addClass(\'fullsize-tab\').attr(\'aria-hidden\',!0);a=o;a.prependTo(c).each(function(e){var n=t(this),i=!1;if(o)i=d.filter(\':eq(\'+e+\')\');n.addClass(\'tab_counter_\'+e).on(\'click\',function(){f(n,e,i);return!1});n.on(\'keydown\',function(t){if(t.keyCode===13){n.trigger(\'click\')}});if(o){i.on(\'click\',function(){f(i,e,n);return!1});i.on(\'keydown\',function(t){if(t.keyCode===13){i.trigger(\'click\')}})}});s();l(!1);i.on(\'debouncedresize\',s);t(\'a\').on(\'click\',function(){var e=t(this).attr(\'href\');if(typeof e!=\'undefined\'&&e){e=e.replace(/^.*?#/,\'\');l(\'#\'+e)}});function s(){if(!e.sidebar)return;r.css({\'min-height\':c.outerHeight()+1})};function f(a,f,o){if(!a.is(\'.\'+e.active)){t(\'.\'+e.active,n).removeClass(e.active);t(\'.\'+e.active+\'_content\',n).attr(\'aria-hidden\',!0).removeClass(e.active+\'_content\');a.addClass(e.active);var s=a.data(\'fake-id\');if(typeof s==\'string\')location.replace(s);if(o)o.addClass(e.active);var d=r.filter(\':eq(\'+f+\')\').addClass(e.active+\'_content\').attr(\'aria-hidden\',!1);if(typeof click_container!=\'undefined\'&&click_container.length){sidebar_shadow.height(d.outerHeight())};var c=d.offset().top,l=c-50-parseInt(t(\'html\').css(\'margin-top\'),10);if(i.scrollTop()>c){t(\'html:not(:animated),body:not(:animated)\').scrollTop(l)}};i.trigger(\'av-content-el-height-changed\',a)};function l(t){if(!t&&window.location.hash)t=window.location.hash;if(!t)return;var e=a.filter(\'[data-fake-id=\"\'+t+\'\"]\');if(e.length){if(!e.is(\'.active_tab\'))e.trigger(\'click\');window.scrollTo(0,n.offset().top-70)}}})}}(jQuery));\";}s:27:\"avia-module-testimonials-js\";a:6:{s:4:\"name\";s:24:\"avia-module-testimonials\";s:3:\"url\";s:117:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.js\";s:4:\"path\";s:92:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/testimonials/testimonials.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:291:\"(function(i){\'use strict\';i.fn.avia_sc_testimonial=function(t){return this.each(function(){var t=i(this),a=t.find(\'.avia-testimonial\');t.on(\'avia_start_animation\',function(){a.each(function(t){var a=i(this);setTimeout(function(){a.addClass(\'avia_start_animation\')},(t*150))})})})}}(jQuery));\";}s:22:\"avia-module-toggles-js\";a:6:{s:4:\"name\";s:19:\"avia-module-toggles\";s:3:\"url\";s:107:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js\";s:4:\"path\";s:82:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/toggles/toggles.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:2383:\"(function(t){\'use strict\';t.fn.avia_sc_toggle=function(e){var a={single:\'.single_toggle\',heading:\'.toggler\',content:\'.toggle_wrap\',sortContainer:\'.taglist\'};var i=t(window),e=t.extend(a,e);return this.each(function(){var a=t(this).addClass(\'enable_toggles\'),s=t(e.single,a),n=t(e.heading,a),l=t(a).attr(\'data-currentstyle\'),r=t(e.content,a),o=t(e.sortContainer+\' a\',a);n.each(function(c){var s=t(this),o=s.next(e.content,a),d=s.attr(\'style\'),f=s.data(\'hoverstyle\');if(\'undefined\'==typeof d){d=\'\'};if(\'undefined\'==typeof f){f=\'\'};function g(){var e=o.offset().top,a=e-50-parseInt(t(\'html\').css(\'margin-top\'),10);if(i.scrollTop()>e){t(\'html:not(:animated),body:not(:animated)\').animate({scrollTop:a},200)}};if(o.css(\'visibility\')!=\'hidden\'){s.addClass(\'activeTitle\').attr(\'style\',l)};s.on(\'keydown\',function(t){if(t.keyCode===13){s.trigger(\'click\')}});s.on(\'click\',function(){if(o.css(\'visibility\')!=\'hidden\'){o.slideUp(200,function(){o.removeClass(\'active_tc\').attr({style:\'\'});i.trigger(\'av-height-change\');i.trigger(\'av-content-el-height-changed\',this);location.replace(s.data(\'fake-id\')+\'-closed\')});s.removeClass(\'activeTitle\').attr(\'style\',d)}\nelse{if(a.is(\'.toggle_close_all\')){r.not(o).slideUp(200,function(){t(this).removeClass(\'active_tc\').attr({style:\'\'});g()});n.removeClass(\'activeTitle\').attr(\'style\',d)};o.addClass(\'active_tc\');setTimeout(function(){o.slideDown(200,function(){if(!a.is(\'.toggle_close_all\')){g()};i.trigger(\'av-height-change\');i.trigger(\'av-content-el-height-changed\',this)})},1);s.addClass(\'activeTitle\').attr(\'style\',l);location.replace(s.data(\'fake-id\'))}});if(f){s.hover(function(){if(!s.hasClass(\'activeTitle\')){t(this).attr(\'style\',f)}},function(){if(!s.hasClass(\'activeTitle\')){t(this).attr(\'style\',d)}})}});o.on(\'click\',function(e){e.preventDefault();var i=s.filter(\'[data-tags~=\"\'+t(this).data(\'tag\')+\'\"]\'),a=s.not(\'[data-tags~=\"\'+t(this).data(\'tag\')+\'\"]\');o.removeClass(\'activeFilter\');t(this).addClass(\'activeFilter\');n.filter(\'.activeTitle\').trigger(\'click\');i.slideDown();a.slideUp()});function c(t){if(!t&&window.location.hash)t=window.location.hash;if(!t)return;var e=n.filter(\'[data-fake-id=\"\'+t+\'\"]\');if(e.length){if(!e.is(\'.activeTitle\'))e.trigger(\'click\');window.scrollTo(0,a.offset().top-70)}};c(!1);t(\'a\').on(\'click\',function(){var e=t(this).attr(\'href\');if(typeof e!=\'undefined\'&&e){e=e.replace(/^.*?#/,\'\');c(\'#\'+e)}})})}}(jQuery));\";}s:20:\"avia-module-video-js\";a:6:{s:4:\"name\";s:17:\"avia-module-video\";s:3:\"url\";s:103:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js\";s:4:\"path\";s:78:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/video/video.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1388:\"(function(i){\'use strict\';i(\'body\').on(\'click\',\'.av-lazyload-video-embed .av-click-to-play-overlay\',function(l){var n=i(this),d=i(\'html\').hasClass(\'av-cookies-needs-opt-in\')||i(\'html\').hasClass(\'av-cookies-can-opt-out\'),o=!0,c=i(\'html\').hasClass(\'av-cookies-user-silent-accept\');if(d&&!c){if(!document.cookie.match(/aviaCookieConsent/)||i(\'html\').hasClass(\'av-cookies-session-refused\')){o=!1}\nelse{if(!document.cookie.match(/aviaPrivacyRefuseCookiesHideBar/)){o=!1}\nelse if(!document.cookie.match(/aviaPrivacyEssentialCookiesEnabled/)){o=!1}\nelse if(document.cookie.match(/aviaPrivacyVideoEmbedsDisabled/)){o=!1}}};var a=n.parents(\'.av-lazyload-video-embed\');if(a.hasClass(\'avia-video-lightbox\')&&a.hasClass(\'avia-video-standard-html\')){o=!0};if(!o){if(typeof l.originalEvent==\'undefined\'){return};var t=a.data(\'original_url\');if(t)window.open(t,\'_blank\',\'noreferrer noopener\');return};var s=a.find(\'.av-video-tmpl\').html(),e=\'\';if(a.hasClass(\'avia-video-lightbox\')){e=a.find(\'a.lightbox-link\');if(e.length==0){a.append(s);setTimeout(function(){e=a.find(\'a.lightbox-link\');if(i(\'html\').hasClass(\'av-default-lightbox\')){e.addClass(\'lightbox-added\').magnificPopup(i.avia_utilities.av_popup);e.trigger(\'click\')}\nelse{e.trigger(\'avia-open-video-in-lightbox\')}},100)}\nelse{e.trigger(\'click\')}}\nelse{a.html(s)}});i(\'.av-lazyload-immediate .av-click-to-play-overlay\').trigger(\'click\')}(jQuery));\";}s:16:\"avia-popup-js-js\";a:6:{s:4:\"name\";s:13:\"avia-popup-js\";s:3:\"url\";s:91:\"https://solsculpting.com/wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js\";s:4:\"path\";s:66:\"wp-content/themes/enfold/js/aviapopup/jquery.magnific-popup.min.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:20105:\"!function(e){\'function\'==typeof define&&define.amd?define([\'jquery\'],e):e(\'object\'==typeof exports?require(\'jquery\'):window.jQuery||window.Zepto)}(function(t){var e,P,r,h,l,j,c=\'Close\',N=\'BeforeClose\',D=\'AfterClose\',U=\'BeforeAppend\',S=\'MarkupParse\',E=\'Open\',W=\'Change\',z=\'mfp\',o=\'.\'+z,y=\'mfp-ready\',Z=\'mfp-removing\',O=\'mfp-prevent-close\',C=function(){},M=!!window.jQuery,d=t(window),i=function(t,n){e.ev.on(z+t+o,n)},p=function(e,n,i,r){var o=document.createElement(\'div\');return o.className=\'mfp-\'+e,i&&(o.innerHTML=i),r?n&&n.appendChild(o):(o=t(o),n&&o.appendTo(n)),o},n=function(n,i){e.ev.triggerHandler(z+n,i),e.st.callbacks&&(n=n.charAt(0).toLowerCase()+n.slice(1),e.st.callbacks[n]&&e.st.callbacks[n].apply(e,t.isArray(i)?i:[i]))},B=function(n){return n===j&&e.currTemplate.closeBtn||(e.currTemplate.closeBtn=t(e.st.closeMarkup.replace(\'%title%\',e.st.tClose)),j=n),e.currTemplate.closeBtn},L=function(){t.magnificPopup.instance||(e=new C,e.init(),t.magnificPopup.instance=e)},Y=function(){var e=document.createElement(\'p\').style,t=[\'ms\',\'O\',\'Moz\',\'Webkit\'];if(void 0!==e.transition)return!0;for(;t.length;)if(t.pop()+\'Transition\'in e)return!0;return!1};C.prototype={constructor:C,init:function(){var n=navigator.appVersion;e.isLowIE=e.isIE8=document.all&&!document.addEventListener,e.isAndroid=/android/gi.test(n),e.isIOS=/iphone|ipad|ipod/gi.test(n),e.supportsTransition=Y(),e.probablyMobile=e.isAndroid||e.isIOS||/(Opera Mini)|Kindle|webOS|BlackBerry|(Opera Mobi)|(Windows Phone)|IEMobile/i.test(navigator.userAgent),r=t(document),e.popupsCache={}},open:function(a){var s;if(a.isObj===!1){e.items=a.items.toArray(),e.index=0;var c,C=a.items;for(s=0;s<C.length;s++)if(c=C[s],c.parsed&&(c=c.el[0]),c===a.el[0]){e.index=s;break}}\nelse e.items=t.isArray(a.items)?a.items:[a.items],e.index=a.index||0;if(e.isOpen)return void e.updateItemHTML();e.types=[],l=\'\',a.mainEl&&a.mainEl.length?e.ev=a.mainEl.eq(0):e.ev=r,a.key?(e.popupsCache[a.key]||(e.popupsCache[a.key]={}),e.currTemplate=e.popupsCache[a.key]):e.currTemplate={},e.st=t.extend(!0,{},t.magnificPopup.defaults,a),e.fixedContentPos=\'auto\'===e.st.fixedContentPos?!e.probablyMobile:e.st.fixedContentPos,e.st.modal&&(e.st.closeOnContentClick=!1,e.st.closeOnBgClick=!1,e.st.showCloseBtn=!1,e.st.enableEscapeKey=!1),e.bgOverlay||(e.bgOverlay=p(\'bg\').on(\'click\'+o,function(){e.close()}),e.wrap=p(\'wrap\').attr(\'tabindex\',-1).on(\'click\'+o,function(t){e._checkIfClose(t.target)&&e.close()}),e.container=p(\'container\',e.wrap)),e.contentContainer=p(\'content\'),e.st.preloader&&(e.preloader=p(\'preloader\',e.container,e.st.tLoading));var h=t.magnificPopup.modules;for(s=0;s<h.length;s++){var u=h[s];u=u.charAt(0).toUpperCase()+u.slice(1),e[\'init\'+u].call(e)};n(\'BeforeOpen\'),e.st.showCloseBtn&&(e.st.closeBtnInside?(i(S,function(e,t,n,i){n.close_replaceWith=B(i.type)}),l+=\' mfp-close-btn-in\'):e.wrap.append(B())),e.st.alignTop&&(l+=\' mfp-align-top\'),e.fixedContentPos?e.wrap.css({overflow:e.st.overflowY,overflowX:\'hidden\',overflowY:e.st.overflowY}):e.wrap.css({top:d.scrollTop(),position:\'absolute\'}),(e.st.fixedBgPos===!1||\'auto\'===e.st.fixedBgPos&&!e.fixedContentPos)&&e.bgOverlay.css({height:r.height(),position:\'absolute\'}),e.st.enableEscapeKey&&r.on(\'keyup\'+o,function(t){27===t.keyCode&&e.close()}),d.on(\'resize\'+o,function(){e.updateSize()}),e.st.closeOnContentClick||(l+=\' mfp-auto-cursor\'),l&&e.wrap.addClass(l);var v=e.wH=d.height(),m={};if(e.fixedContentPos&&e._hasScrollBar(v)){var g=e._getScrollbarSize();g&&(m.marginRight=g)};e.fixedContentPos&&(e.isIE7?t(\'body, html\').css(\'overflow\',\'hidden\'):m.overflow=\'hidden\');var f=e.st.mainClass;return e.isIE7&&(f+=\' mfp-ie7\'),f&&e._addClassToMFP(f),e.updateItemHTML(),n(\'BuildControls\'),t(\'html\').css(m),e.bgOverlay.add(e.wrap).prependTo(e.st.prependTo||t(document.body)),e._lastFocusedEl=document.activeElement,setTimeout(function(){e.content?(e._addClassToMFP(y),e._setFocus()):e.bgOverlay.addClass(y),r.on(\'focusin\'+o,e._onFocusIn)},16),e.isOpen=!0,e.updateSize(v),n(E),a},close:function(){e.isOpen&&(n(N),e.isOpen=!1,e.st.removalDelay&&!e.isLowIE&&e.supportsTransition?(e._addClassToMFP(Z),setTimeout(function(){e._close()},e.st.removalDelay)):e._close())},_close:function(){n(c);var a=Z+\' \'+y+\' \';if(e.bgOverlay.detach(),e.wrap.detach(),e.container.empty(),e.st.mainClass&&(a+=e.st.mainClass+\' \'),e._removeClassFromMFP(a),e.fixedContentPos){var i={marginRight:\'\'};e.isIE7?t(\'body, html\').css(\'overflow\',\'\'):i.overflow=\'\',t(\'html\').css(i)};r.off(\'keyup\'+o+\' focusin\'+o),e.ev.off(o),e.wrap.attr(\'class\',\'mfp-wrap\').removeAttr(\'style\'),e.bgOverlay.attr(\'class\',\'mfp-bg\'),e.container.attr(\'class\',\'mfp-container\'),!e.st.showCloseBtn||e.st.closeBtnInside&&e.currTemplate[e.currItem.type]!==!0||e.currTemplate.closeBtn&&e.currTemplate.closeBtn.detach(),e.st.autoFocusLast&&e._lastFocusedEl&&t(e._lastFocusedEl).focus(),e.currItem=null,e.content=null,e.currTemplate=null,e.prevHeight=0,n(D)},updateSize:function(t){if(e.isIOS){var o=document.documentElement.clientWidth/window.innerWidth,i=window.innerHeight*o;e.wrap.css(\'height\',i),e.wH=i}\nelse e.wH=t||d.height();e.fixedContentPos||e.wrap.css(\'height\',e.wH),n(\'Resize\')},updateItemHTML:function(){var o=e.items[e.index];e.contentContainer.detach(),e.content&&e.content.detach(),o.parsed||(o=e.parseEl(e.index));var i=o.type;if(n(\'BeforeChange\',[e.currItem?e.currItem.type:\'\',i]),e.currItem=o,!e.currTemplate[i]){var r=e.st[i]?e.st[i].markup:!1;n(\'FirstMarkupParse\',r),r?e.currTemplate[i]=t(r):e.currTemplate[i]=!0};h&&h!==o.type&&e.container.removeClass(\'mfp-\'+h+\'-holder\');var a=e[\'get\'+i.charAt(0).toUpperCase()+i.slice(1)](o,e.currTemplate[i]);e.appendContent(a,i),o.preloaded=!0,n(W,o),h=o.type,e.container.prepend(e.contentContainer),n(\'AfterChange\')},appendContent:function(t,i){e.content=t,t?e.st.showCloseBtn&&e.st.closeBtnInside&&e.currTemplate[i]===!0?e.content.find(\'.mfp-close\').length||e.content.append(B()):e.content=t:e.content=\'\',n(U),e.container.addClass(\'mfp-\'+i+\'-holder\'),e.contentContainer.append(e.content)},parseEl:function(i){var s,o=e.items[i];if(o.tagName?o={el:t(o)}:(s=o.type,o={data:o,src:o.src}),o.el){for(var a=e.types,r=0;r<a.length;r++)if(o.el.hasClass(\'mfp-\'+a[r])){s=a[r];break};o.src=o.el.attr(\'data-mfp-src\'),o.src||(o.src=o.el.attr(\'href\'))};return o.type=s||e.st.type||\'inline\',o.index=i,o.parsed=!0,e.items[i]=o,n(\'ElementParse\',o),e.items[i]},addGroup:function(t,n){var o=function(i){i.mfpEl=this,e._openClick(i,t,n)};n||(n={});var i=\'click.magnificPopup\';n.mainEl=t,n.items?(n.isObj=!0,t.off(i).on(i,o)):(n.isObj=!1,n.delegate?t.off(i).on(i,n.delegate,o):(n.items=t,t.off(i).on(i,o)))},_openClick:function(n,i,o){var a=void 0!==o.midClick?o.midClick:t.magnificPopup.defaults.midClick;if(a||!(2===n.which||n.ctrlKey||n.metaKey||n.altKey||n.shiftKey)){var r=void 0!==o.disableOn?o.disableOn:t.magnificPopup.defaults.disableOn;if(r)if(t.isFunction(r)){if(!r.call(e))return!0}\nelse if(d.width()<r)return!0;n.type&&(n.preventDefault(),e.isOpen&&n.stopPropagation()),o.el=t(n.mfpEl),o.delegate&&(o.items=i.find(o.delegate)),e.open(o)}},updateStatus:function(t,i){if(e.preloader){P!==t&&e.container.removeClass(\'mfp-s-\'+P),i||\'loading\'!==t||(i=e.st.tLoading);var o={status:t,text:i};n(\'UpdateStatus\',o),t=o.status,i=o.text,e.preloader.html(i),e.preloader.find(\'a\').on(\'click\',function(e){e.stopImmediatePropagation()}),e.container.addClass(\'mfp-s-\'+t),P=t}},_checkIfClose:function(n){if(!t(n).hasClass(O)){var i=e.st.closeOnContentClick,o=e.st.closeOnBgClick;if(i&&o)return!0;if(!e.content||t(n).hasClass(\'mfp-close\')||e.preloader&&n===e.preloader[0])return!0;if(n===e.content[0]||t.contains(e.content[0],n)){if(i)return!0}\nelse if(o&&t.contains(document,n))return!0;return!1}},_addClassToMFP:function(t){e.bgOverlay.addClass(t),e.wrap.addClass(t)},_removeClassFromMFP:function(t){this.bgOverlay.removeClass(t),e.wrap.removeClass(t)},_hasScrollBar:function(t){return(e.isIE7?r.height():document.body.scrollHeight)>(t||d.height())},_setFocus:function(){(e.st.focus?e.content.find(e.st.focus).eq(0):e.wrap).focus()},_onFocusIn:function(n){return n.target===e.wrap[0]||t.contains(e.wrap[0],n.target)?void 0:(e._setFocus(),!1)},_parseMarkup:function(e,i,r){var a;r.data&&(i=t.extend(r.data,i)),n(S,[e,i,r]),t.each(i,function(n,i){if(void 0===i||i===!1)return!0;if(a=n.split(\'_\'),a.length>1){var r=e.find(o+\'-\'+a[0]);if(r.length>0){var s=a[1];\'replaceWith\'===s?r[0]!==i[0]&&r.replaceWith(i):\'img\'===s?r.is(\'img\')?r.attr(\'src\',i):r.replaceWith(t(\'<img>\').attr(\'src\',i).attr(\'class\',r.attr(\'class\'))):r.attr(a[1],i)}}\nelse e.find(o+\'-\'+n).html(i)})},_getScrollbarSize:function(){if(void 0===e.scrollbarSize){var t=document.createElement(\'div\');t.style.cssText=\'width: 99px; height: 99px; overflow: scroll; position: absolute; top: -9999px;\',document.body.appendChild(t),e.scrollbarSize=t.offsetWidth-t.clientWidth,document.body.removeChild(t)};return e.scrollbarSize}},t.magnificPopup={instance:null,proto:C.prototype,modules:[],open:function(e,n){return L(),e=e?t.extend(!0,{},e):{},e.isObj=!0,e.index=n||0,this.instance.open(e)},close:function(){return t.magnificPopup.instance&&t.magnificPopup.instance.close()},registerModule:function(e,n){n.options&&(t.magnificPopup.defaults[e]=n.options),t.extend(this.proto,n.proto),this.modules.push(e)},defaults:{disableOn:0,key:null,midClick:!1,mainClass:\'\',preloader:!0,focus:\'\',closeOnContentClick:!1,closeOnBgClick:!0,closeBtnInside:!0,showCloseBtn:!0,enableEscapeKey:!0,modal:!1,alignTop:!1,removalDelay:0,prependTo:null,fixedContentPos:\'auto\',fixedBgPos:\'auto\',overflowY:\'auto\',closeMarkup:\'<button title=\"%title%\" type=\"button\" class=\"mfp-close\">×</button>\',tClose:\'Close (Esc)\',tLoading:\'Loading...\',autoFocusLast:!0}},t.fn.magnificPopup=function(n){L();var i=t(this);if(\'string\'==typeof n)if(\'open\'===n){var o,r=M?i.data(\'magnificPopup\'):i[0].magnificPopup,a=parseInt(arguments[1],10)||0;r.items?o=r.items[a]:(o=i,r.delegate&&(o=o.find(r.delegate)),o=o.eq(a)),e._openClick({mfpEl:o},i,r)}\nelse e.isOpen&&e[n].apply(e,Array.prototype.slice.call(arguments,1));else n=t.extend(!0,{},n),M?i.data(\'magnificPopup\',n):i[0].magnificPopup=n,e.addGroup(i,n);return i};var u,g,v,T=\'inline\',F=function(){v&&(g.after(v.addClass(u)).detach(),v=null)};t.magnificPopup.registerModule(T,{options:{hiddenClass:\'hide\',markup:\'\',tNotFound:\'Content not found\'},proto:{initInline:function(){e.types.push(T),i(c+\'.\'+T,function(){F()})},getInline:function(n,i){if(F(),n.src){var a=e.st.inline,o=t(n.src);if(o.length){var r=o[0].parentNode;r&&r.tagName&&(g||(u=a.hiddenClass,g=p(u),u=\'mfp-\'+u),v=o.after(g).detach().removeClass(u)),e.updateStatus(\'ready\')}\nelse e.updateStatus(\'error\',a.tNotFound),o=t(\'<div>\');return n.inlineElement=o,o};return e.updateStatus(\'ready\'),e._parseMarkup(i,{},n),i}}});var f,m=\'ajax\',k=function(){f&&t(document.body).removeClass(f)},A=function(){k(),e.req&&e.req.abort()};t.magnificPopup.registerModule(m,{options:{settings:null,cursor:\'mfp-ajax-cur\',tError:\'<a href=\"%url%\">The content</a> could not be loaded.\'},proto:{initAjax:function(){e.types.push(m),f=e.st.ajax.cursor,i(c+\'.\'+m,A),i(\'BeforeChange.\'+m,A)},getAjax:function(i){f&&t(document.body).addClass(f),e.updateStatus(\'loading\');var o=t.extend({url:i.src,success:function(o,r,a){var s={data:o,xhr:a};n(\'ParseAjax\',s),e.appendContent(t(s.data),m),i.finished=!0,k(),e._setFocus(),setTimeout(function(){e.wrap.addClass(y)},16),e.updateStatus(\'ready\'),n(\'AjaxContentAdded\')},error:function(){k(),i.finished=i.loadError=!0,e.updateStatus(\'error\',e.st.ajax.tError.replace(\'%url%\',i.src))}},e.st.ajax.settings);return e.req=t.ajax(o),\'\'}}});var a,K=function(n){if(n.data&&void 0!==n.data.title)return n.data.title;var i=e.st.image.titleSrc;if(i){if(t.isFunction(i))return i.call(e,n);if(n.el)return n.el.attr(i)||\'\'};return\'\'};t.magnificPopup.registerModule(\'image\',{options:{markup:\'<div class=\"mfp-figure\"><div class=\"mfp-close\"></div><figure><div class=\"mfp-img\"></div><figcaption><div class=\"mfp-bottom-bar\"><div class=\"mfp-title\"></div><div class=\"mfp-counter\"></div></div></figcaption></figure></div>\',cursor:\'mfp-zoom-out-cur\',titleSrc:\'title\',verticalFit:!0,tError:\'<a href=\"%url%\">The image</a> could not be loaded.\'},proto:{initImage:function(){var n=e.st.image,r=\'.image\';e.types.push(\'image\'),i(E+r,function(){\'image\'===e.currItem.type&&n.cursor&&t(document.body).addClass(n.cursor)}),i(c+r,function(){n.cursor&&t(document.body).removeClass(n.cursor),d.off(\'resize\'+o)}),i(\'Resize\'+r,e.resizeImage),e.isLowIE&&i(\'AfterChange\',e.resizeImage)},resizeImage:function(){var t=e.currItem;if(t&&t.img&&e.st.image.verticalFit){var n=0;e.isLowIE&&(n=parseInt(t.img.css(\'padding-top\'),10)+parseInt(t.img.css(\'padding-bottom\'),10)),t.img.css(\'max-height\',e.wH-n)}},_onImageHasSize:function(t){t.img&&(t.hasSize=!0,a&&clearInterval(a),t.isCheckingImgSize=!1,n(\'ImageHasSize\',t),t.imgHidden&&(e.content&&e.content.removeClass(\'mfp-loading\'),t.imgHidden=!1))},findImageSize:function(t){var n=0,o=t.img[0],i=function(r){a&&clearInterval(a),a=setInterval(function(){return o.naturalWidth>0?void e._onImageHasSize(t):(n>200&&clearInterval(a),n++,void(3===n?i(10):40===n?i(50):100===n&&i(500)))},r)};i(1)},getImage:function(i,o){var s=0,l=function(){i&&(i.img[0].complete?(i.img.off(\'.mfploader\'),i===e.currItem&&(e._onImageHasSize(i),e.updateStatus(\'ready\')),i.hasSize=!0,i.loaded=!0,n(\'ImageLoadComplete\')):(s++,200>s?setTimeout(l,100):c()))},c=function(){i&&(i.img.off(\'.mfploader\'),i===e.currItem&&(e._onImageHasSize(i),e.updateStatus(\'error\',d.tError.replace(\'%url%\',i.src))),i.hasSize=!0,i.loaded=!0,i.loadError=!0)},d=e.st.image,u=o.find(\'.mfp-img\');if(u.length){var r=document.createElement(\'img\');r.className=\'mfp-img\',i.el&&i.el.find(\'img\').length&&(r.alt=i.el.find(\'img\').attr(\'alt\')),i.img=t(r).on(\'load.mfploader\',l).on(\'error.mfploader\',c),r.src=i.src,u.is(\'img\')&&(i.img=i.img.clone()),r=i.img[0],r.naturalWidth>0?i.hasSize=!0:r.width||(i.hasSize=!1)};return e._parseMarkup(o,{title:K(i),img_replaceWith:i.img},i),e.resizeImage(),i.hasSize?(a&&clearInterval(a),i.loadError?(o.addClass(\'mfp-loading\'),e.updateStatus(\'error\',d.tError.replace(\'%url%\',i.src))):(o.removeClass(\'mfp-loading\'),e.updateStatus(\'ready\')),o):(e.updateStatus(\'loading\'),i.loading=!0,i.hasSize||(i.imgHidden=!0,o.addClass(\'mfp-loading\'),e.findImageSize(i)),o)}}});var x,q=function(){return void 0===x&&(x=void 0!==document.createElement(\'p\').style.MozTransform),x};t.magnificPopup.registerModule(\'zoom\',{options:{enabled:!1,easing:\'ease-in-out\',duration:300,opener:function(e){return e.is(\'img\')?e:e.find(\'img\')}},proto:{initZoom:function(){var o,a=e.st.zoom,l=\'.zoom\';if(a.enabled&&e.supportsTransition){var r,t,d=a.duration,u=function(e){var i=e.clone().removeAttr(\'style\').removeAttr(\'class\').addClass(\'mfp-animated-image\'),o=\'all \'+a.duration/1e3+\'s \'+a.easing,t={position:\'fixed\',zIndex:9999,left:0,top:0,\'-webkit-backface-visibility\':\'hidden\'},n=\'transition\';return t[\'-webkit-\'+n]=t[\'-moz-\'+n]=t[\'-o-\'+n]=t[n]=o,i.css(t),i},s=function(){e.content.css(\'visibility\',\'visible\')};i(\'BuildControls\'+l,function(){if(e._allowZoom()){if(clearTimeout(r),e.content.css(\'visibility\',\'hidden\'),o=e._getItemToZoom(),!o)return void s();t=u(o),t.css(e._getOffset()),e.wrap.append(t),r=setTimeout(function(){t.css(e._getOffset(!0)),r=setTimeout(function(){s(),setTimeout(function(){t.remove(),o=t=null,n(\'ZoomAnimationEnded\')},16)},d)},16)}}),i(N+l,function(){if(e._allowZoom()){if(clearTimeout(r),e.st.removalDelay=d,!o){if(o=e._getItemToZoom(),!o)return;t=u(o)};t.css(e._getOffset(!0)),e.wrap.append(t),e.content.css(\'visibility\',\'hidden\'),setTimeout(function(){t.css(e._getOffset())},16)}}),i(c+l,function(){e._allowZoom()&&(s(),t&&t.remove(),o=null)})}},_allowZoom:function(){return\'image\'===e.currItem.type},_getItemToZoom:function(){return e.currItem.hasSize?e.currItem.img:!1},_getOffset:function(n){var i;i=n?e.currItem.img:e.st.zoom.opener(e.currItem.el||e.currItem);var r=i.offset(),a=parseInt(i.css(\'padding-top\'),10),s=parseInt(i.css(\'padding-bottom\'),10);r.top-=t(window).scrollTop()-a;var o={width:i.width(),height:(M?i.innerHeight():i[0].offsetHeight)-s-a};return q()?o[\'-moz-transform\']=o.transform=\'translate(\'+r.left+\'px,\'+r.top+\'px)\':(o.left=r.left,o.top=r.top),o}}});var s=\'iframe\',R=\'//about:blank\',I=function(t){if(e.currTemplate[s]){var n=e.currTemplate[s].find(\'iframe\');n.length&&(t||(n[0].src=R),e.isIE8&&n.css(\'display\',t?\'block\':\'none\'))}};t.magnificPopup.registerModule(s,{options:{markup:\'<div class=\"mfp-iframe-scaler\"><div class=\"mfp-close\"></div><iframe class=\"mfp-iframe\" src=\"//about:blank\" frameborder=\"0\" allowfullscreen></iframe></div>\',srcAction:\'iframe_src\',patterns:{youtube:{index:\'youtube.com\',id:\'v=\',src:\'//www.youtube.com/embed/%id%?autoplay=1\'},vimeo:{index:\'vimeo.com/\',id:\'/\',src:\'//player.vimeo.com/video/%id%?autoplay=1\'},gmaps:{index:\'//maps.google.\',src:\'%id%&output=embed\'}}},proto:{initIframe:function(){e.types.push(s),i(\'BeforeChange\',function(e,t,n){t!==n&&(t===s?I():n===s&&I(!0))}),i(c+\'.\'+s,function(){I()})},getIframe:function(n,i){var o=n.src,r=e.st.iframe;t.each(r.patterns,function(){return o.indexOf(this.index)>-1?(this.id&&(o=\'string\'==typeof this.id?o.substr(o.lastIndexOf(this.id)+this.id.length,o.length):this.id.call(this,o)),o=this.src.replace(\'%id%\',o),!1):void 0});var a={};return r.srcAction&&(a[r.srcAction]=o),e._parseMarkup(i,a,n),e.updateStatus(\'ready\'),i}}});var b=function(t){var n=e.items.length;return t>n-1?t-n:0>t?n+t:t},H=function(e,t,n){return e.replace(/%curr%/gi,t+1).replace(/%total%/gi,n)};t.magnificPopup.registerModule(\'gallery\',{options:{enabled:!1,arrowMarkup:\'<button title=\"%title%\" type=\"button\" class=\"mfp-arrow mfp-arrow-%dir%\"></button>\',preload:[0,2],navigateByImgClick:!0,arrows:!0,tPrev:\'Previous (Left arrow key)\',tNext:\'Next (Right arrow key)\',tCounter:\'%curr% of %total%\'},proto:{initGallery:function(){var o=e.st.gallery,n=\'.mfp-gallery\';return e.direction=!0,o&&o.enabled?(l+=\' mfp-gallery\',i(E+n,function(){o.navigateByImgClick&&e.wrap.on(\'click\'+n,\'.mfp-img\',function(){return e.items.length>1?(e.next(),!1):void 0}),r.on(\'keydown\'+n,function(t){37===t.keyCode?e.prev():39===t.keyCode&&e.next()})}),i(\'UpdateStatus\'+n,function(t,n){n.text&&(n.text=H(n.text,e.currItem.index,e.items.length))}),i(S+n,function(t,n,i,r){var a=e.items.length;i.counter=a>1?H(o.tCounter,r.index,a):\'\'}),i(\'BuildControls\'+n,function(){if(e.items.length>1&&o.arrows&&!e.arrowLeft){var n=o.arrowMarkup,i=e.arrowLeft=t(n.replace(/%title%/gi,o.tPrev).replace(/%dir%/gi,\'left\')).addClass(O),r=e.arrowRight=t(n.replace(/%title%/gi,o.tNext).replace(/%dir%/gi,\'right\')).addClass(O);i.click(function(){e.prev()}),r.click(function(){e.next()}),e.container.append(i.add(r))}}),i(W+n,function(){e._preloadTimeout&&clearTimeout(e._preloadTimeout),e._preloadTimeout=setTimeout(function(){e.preloadNearbyImages(),e._preloadTimeout=null},16)}),void i(c+n,function(){r.off(n),e.wrap.off(\'click\'+n),e.arrowRight=e.arrowLeft=null})):!1},next:function(){e.direction=!0,e.index=b(e.index+1),e.updateItemHTML()},prev:function(){e.direction=!1,e.index=b(e.index-1),e.updateItemHTML()},goTo:function(t){e.direction=t>=e.index,e.index=t,e.updateItemHTML()},preloadNearbyImages:function(){var t,n=e.st.gallery.preload,i=Math.min(n[0],e.items.length),o=Math.min(n[1],e.items.length);for(t=1;t<=(e.direction?o:i);t++)e._preloadItem(e.index+t);for(t=1;t<=(e.direction?i:o);t++)e._preloadItem(e.index-t)},_preloadItem:function(i){if(i=b(i),!e.items[i].preloaded){var o=e.items[i];o.parsed||(o=e.parseEl(i)),n(\'LazyLoad\',o),\'image\'===o.type&&(o.img=t(\'<img class=\"mfp-img\" />\').on(\'load.mfploader\',function(){o.hasSize=!0}).on(\'error.mfploader\',function(){o.hasSize=!0,o.loadError=!0,n(\'LazyLoadError\',o)}).attr(\'src\',o.src)),o.preloaded=!0}}}});var w=\'retina\';t.magnificPopup.registerModule(w,{options:{replaceSrc:function(e){return e.src.replace(/\\.\\w+$/,function(e){return\'@2x\'+e})},ratio:1},proto:{initRetina:function(){if(window.devicePixelRatio>1){var n=e.st.retina,t=n.ratio;t=isNaN(t)?t():t,t>1&&(i(\'ImageHasSize.\'+w,function(e,n){n.img.css({\'max-width\':n.img[0].naturalWidth/t,width:\'100%\'})}),i(\'ElementParse.\'+w,function(e,i){i.src=n.replaceSrc(i,t)}))}}}}),L()});\";}s:27:\"avia-lightbox-activation-js\";a:6:{s:4:\"name\";s:24:\"avia-lightbox-activation\";s:3:\"url\";s:77:\"https://solsculpting.com/wp-content/themes/enfold/js/avia-snippet-lightbox.js\";s:4:\"path\";s:52:\"wp-content/themes/enfold/js/avia-snippet-lightbox.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:3403:\"(function(e){\'use strict\';e.avia_utilities=e.avia_utilities||{};e.avia_utilities.av_popup={type:\'image\',mainClass:\'avia-popup mfp-zoom-in\',tLoading:\'\',tClose:\'\',removalDelay:300,closeBtnInside:!0,closeOnContentClick:!1,midClick:!0,fixedContentPos:!1,iframe:{patterns:{youtube:{index:\'youtube.com/watch\',id:function(e){var a=e.match(/[\\\\?\\\\&]v=([^\\\\?\\\\&]+)/),i,t;if(!a||!a[1])return null;i=a[1];t=e.split(\'/watch\');t=t[1];return i+t},src:\'//www.youtube.com/embed/%id%\'},vimeo:{index:\'vimeo.com/\',id:function(e){var a=e.match(/(https?:\\/\\/)?(www.)?(player.)?vimeo.com\\/([a-z]*\\/)*([0-9]{6,11})[?]?.*/),i,t;if(!a||!a[5])return null;i=a[5];t=e.split(\'?\');t=t[1];return i+\'?\'+t},src:\'//player.vimeo.com/video/%id%\'}}},image:{titleSrc:function(e){var t=e.el.attr(\'title\');if(!t)t=e.el.find(\'img\').attr(\'title\');if(!t)t=e.el.parent().next(\'.wp-caption-text\').html();if(typeof t==\'undefined\')return\'\';return t}},gallery:{tPrev:\'\',tNext:\'\',tCounter:\'%curr% / %total%\',enabled:!0,preload:[1,1]},callbacks:{beforeOpen:function(){if(this.st.el&&this.st.el.data(\'fixed-content\')){this.fixedContentPos=!0}},open:function(){e.magnificPopup.instance.next=function(){var t=this;t.wrap.removeClass(\'mfp-image-loaded\');setTimeout(function(){e.magnificPopup.proto.next.call(t)},120)};e.magnificPopup.instance.prev=function(){var t=this;t.wrap.removeClass(\'mfp-image-loaded\');setTimeout(function(){e.magnificPopup.proto.prev.call(t)},120)};if(this.st.el&&this.st.el.data(\'av-extra-class\')){this.wrap.addClass(this.currItem.el.data(\'av-extra-class\'))}},imageLoadComplete:function(){var e=this;setTimeout(function(){e.wrap.addClass(\'mfp-image-loaded\')},16)},change:function(){if(this.currItem.el){var e=this.currItem.el;this.content.find(\'.av-extra-modal-content, .av-extra-modal-markup\').remove();if(e.data(\'av-extra-content\')){var a=e.data(\'av-extra-content\');this.content.append(\'<div class=\\\'av-extra-modal-content\\\'>\'+a+\'</div>\')};if(e.data(\'av-extra-markup\')){var t=e.data(\'av-extra-markup\');this.wrap.append(\'<div class=\\\'av-extra-modal-markup\\\'>\'+t+\'</div>\')}}}}},e.fn.avia_activate_lightbox=function(a){var i={groups:[\'.avia-slideshow\',\'.avia-gallery\',\'.av-horizontal-gallery\',\'.av-instagram-pics\',\'.portfolio-preview-image\',\'.portfolio-preview-content\',\'.isotope\',\'.post-entry\',\'.sidebar\',\'#main\',\'.main_menu\',\'.woocommerce-product-gallery\'],autolinkElements:\'a.lightbox, a[rel^=\"prettyPhoto\"], a[rel^=\"lightbox\"], a[href$=jpg], a[href$=png], a[href$=gif], a[href$=jpeg], a[href*=\".jpg?\"], a[href*=\".png?\"], a[href*=\".gif?\"], a[href*=\".jpeg?\"], a[href$=\".mov\"] , a[href$=\".swf\"] , a:regex(href, .vimeo\\.com/[0-9]) , a[href*=\"youtube.com/watch\"] , a[href*=\"screenr.com\"], a[href*=\"iframe=true\"]\',videoElements:\'a[href$=\".mov\"] , a[href$=\".swf\"] , a:regex(href, .vimeo\\.com/[0-9]) , a[href*=\"youtube.com/watch\"] , a[href*=\"screenr.com\"], a[href*=\"iframe=true\"]\',exclude:\'.noLightbox, .noLightbox a, .fakeLightbox, .lightbox-added, a[href*=\"dropbox.com\"]\'},t=e.extend({},i,a),o=!e(\'html\').is(\'.av-custom-lightbox\');if(!o)return this;return this.each(function(){var i=e(this),r=e(t.videoElements,this).not(t.exclude).addClass(\'mfp-iframe\'),o=!i.is(\'body\')&&!i.is(\'.ajax_slide\');for(var a=0;a<t.groups.length;a++){i.find(t.groups[a]).each(function(){var a=e(t.autolinkElements,this);if(o)a.removeClass(\'lightbox-added\');a.not(t.exclude).addClass(\'lightbox-added\').magnificPopup(e.avia_utilities.av_popup)})}})}})(jQuery);\";}s:16:\"avia-megamenu-js\";a:6:{s:4:\"name\";s:13:\"avia-megamenu\";s:3:\"url\";s:77:\"https://solsculpting.com/wp-content/themes/enfold/js/avia-snippet-megamenu.js\";s:4:\"path\";s:52:\"wp-content/themes/enfold/js/avia-snippet-megamenu.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:2933:\"(function(i){\'use strict\';i(document).ready(function(){if(i.fn.aviaMegamenu)i(\'.main_menu .menu\').aviaMegamenu({modify_position:!0})});i.fn.aviaMegamenu=function(e){var n={modify_position:!0,delay:300};var t=i.extend(n,e),a=i(window);return this.each(function(){var f=i(\'html:first\'),g=i(\'#main .container:first\'),c=f.filter(\'.html_menu_left, .html_logo_center\').length,l=i.avia_utilities.isMobile,n=i(this),a=n.find(\'>li:not(.ignore_menu)\'),e=a.find(\'>div\').parent().css({overflow:\'hidden\'}),r=n.find(\'>.current-menu-item>a, >.current_page_item>a\'),d=a.find(\'>ul\').parent(),u=n.parent(),h=n.parents(\'.main_menu\').eq(0),p=u.width(),o={},s=[];if(!r.length){n.find(\'.current-menu-ancestor:eq(0) a:eq(0), .current_page_ancestor:eq(0) a:eq(0)\').parent().addClass(\'active-parent-item\')};if(!f.is(\'.html_header_top\')){t.modify_position=!1};a.on(\'click\',\'a\',function(i){if(this.href==window.location.href+\'#\'||this.href==window.location.href+\'/#\')i.preventDefault()});a.each(function(){var e=i(this),s=e.position(),a=e.find(\'div:first\').css({opacity:0,display:\'none\'}),o=\'\';if(!a.length){o=e.find(\'>ul\').css({display:\'none\'})};if(a.length||o.length){var n=e.addClass(\'dropdown_ul_available\').find(\'>a\');n.append(\'<span class=\"dropdown_available\"></span>\');if(typeof n.attr(\'href\')!=\'string\'||n.attr(\'href\')==\'#\'){n.css(\'cursor\',\'default\').click(function(i){i.preventDefault()})}};if(t.modify_position&&a.length){e.on(\'mouseenter\',function(){m(e,s,a,p)})}});function m(i,t,e,n){t=i.position();if(!c){if(t.left+e.width()<n){e.css({right:-e.outerWidth()+i.outerWidth()})}\nelse if(t.left+e.width()>n){e.css({right:-h.outerWidth()+(t.left+i.outerWidth())})}}\nelse{if(e.width()>t.left+i.outerWidth()){e.css({left:(t.left*-1)})}\nelse if(t.left+e.width()>n){e.css({left:(e.width()-t.left)*-1})}}};function v(i){if(o[i]==!0){var t=e.filter(\':eq(\'+i+\')\').css({overflow:\'visible\'}).find(\'div:first\'),n=e.filter(\':eq(\'+i+\')\').find(\'a:first\');s[\'check\'+i]=!0;t.stop().css(\'display\',\'block\').animate({opacity:1},300);if(t.length){n.addClass(\'open-mega-a\')}}};function y(t){if(o[t]==!1){e.filter(\':eq(\'+t+\')\').find(\'>a\').removeClass(\'open-mega-a\');var n=e.filter(\':eq(\'+t+\')\'),a=n.find(\'div:first\');a.stop().css(\'display\',\'block\').animate({opacity:0},300,function(){i(this).css(\'display\',\'none\');n.css({overflow:\'hidden\'});s[\'check\'+t]=!1})}};if(l){e.each(function(e){i(this).on(\'click\',function(){if(s[\'check\'+e]!=!0)return!1})})};e.each(function(e){i(this).hover(function(){o[e]=!0;setTimeout(function(){v(e)},t.delay)},function(){o[e]=!1;setTimeout(function(){y(e)},t.delay)})});d.find(\'li\').addBack().each(function(){var t=i(this),e=t.find(\'ul:first\'),a=!1;if(e.length){e.css({display:\'block\',opacity:0,visibility:\'hidden\'});var n=t.find(\'>a\');n.on(\'mouseenter\',function(){e.stop().css({visibility:\'visible\'}).animate({opacity:1})});t.on(\'mouseleave\',function(){e.stop().animate({opacity:0},function(){e.css({visibility:\'hidden\'})})})}})})}})(jQuery);\";}s:21:\"avia-sticky-header-js\";a:6:{s:4:\"name\";s:18:\"avia-sticky-header\";s:3:\"url\";s:82:\"https://solsculpting.com/wp-content/themes/enfold/js/avia-snippet-sticky-header.js\";s:4:\"path\";s:57:\"wp-content/themes/enfold/js/avia-snippet-sticky-header.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1640:\"(function(e){\'use strict\';e(document).ready(function(){i()});function a(e,i,a){if(e[0].classList){if(i==\'add\'){e[0].classList.add(a)}\nelse{e[0].classList.remove(a)}}\nelse{if(i==\'add\'){e.addClass(a)}\nelse{e.removeClass(a)}}};function i(){var l=e(window),i=e(\'.html_header_top.html_header_sticky #header\'),n=e(\'.av_header_unstick_top\');if(!i.length&&!n.length)return;var c=e(\'#header_main .container .logo img, #header_main .container .logo a\'),t=e(\'#header_main .container:not(#header_main_alternate>.container), #header_main .main_menu ul:first-child > li > a:not(.avia_mega_div a, #header_main_alternate a), #header_main #menu-item-shop .cart_dropdown_link\'),r=e(t).filter(\':first\').height(),f=e.avia_utilities.isMobile,m=e(\'#scroll-top-link\'),o=i.is(\'.av_header_transparency\'),s=i.is(\'.av_header_shrinking\'),h=i.find(\'#header_meta\').outerHeight(),d=function(){var e=l.scrollTop(),d=0,m=e;if(n)e-=h;if(e<0)e=0;if(s&&!f){if(e<r/2){d=r-e;if(e<=0){d=r};a(i,\'remove\',\'header-scrolled\')}\nelse{d=r/2;a(i,\'add\',\'header-scrolled\')};if(e-30<r){a(i,\'remove\',\'header-scrolled-full\')}\nelse{a(i,\'add\',\'header-scrolled-full\')};t.css({\'height\':d+\'px\',\'lineHeight\':d+\'px\'});c.css({\'maxHeight\':d+\'px\'})};if(n.length){if(e<=0){if(m<=0)m=0;n.css({\'margin-top\':\'-\'+m+\'px\'})}\nelse{n.css({\'margin-top\':\'-\'+h+\'px\'})}};if(o){if(e>50){a(i,\'remove\',\'av_header_transparency\')}\nelse{a(i,\'add\',\'av_header_transparency\')}}};if(e(\'body\').is(\'.avia_deactivate_menu_resize\'))s=!1;if(!o&&!s&&!n.length)return;l.on(\'debouncedresize\',function(){r=e(t).attr(\'style\',\'\').filter(\':first\').height();d()});l.on(\'scroll\',function(){window.requestAnimationFrame(d)});d()}})(jQuery);\";}s:17:\"avia-widget-js-js\";a:6:{s:4:\"name\";s:14:\"avia-widget-js\";s:3:\"url\";s:75:\"https://solsculpting.com/wp-content/themes/enfold/js/avia-snippet-widget.js\";s:4:\"path\";s:50:\"wp-content/themes/enfold/js/avia-snippet-widget.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1101:\"(function(t){\'use strict\';t(document).ready(function(){t(\'.avia_auto_toc\').each(function(){var c=t(this).attr(\'id\'),i=\'h1\',s=[],n=\'\',e=t(this).find(\'.avia-toc-container\');if(e.length){var r=e.attr(\'data-level\'),o=e.attr(\'data-exclude\');if(typeof r!==undefined){i=r};if(typeof o!==undefined){n=o}};s=i.split(\',\');t(\'.entry-content-wrapper\').find(i).each(function(){var i=t(this).attr(\'id\'),h=t(this).prop(\'tagName\').toLowerCase(),o=t(this).text(),l=s.indexOf(h),f=\'\';if(i==undefined){var r=a(o);t(this).attr(\'id\',r);i=r};if(!t(this).hasClass(\'av-no-toc\')&&!t(this).hasClass(n)&&!t(this).parent().hasClass(n)){var c=\'<a href=\"#\'+i+\'\" class=\"avia-toc-link avia-toc-level-\'+l+\'\"><span>\'+o+\'</span></a>\'};e.append(c)});t(\'.avia-toc-smoothscroll .avia-toc-link\').on(\'click\',function(a){a.preventDefault();var n=t(this).attr(\'href\'),e=50,i=t(\'.html_header_top.html_header_sticky #header\');if(i.length){e=i.outerHeight()+50};t(\'html,body\').animate({scrollTop:t(n).offset().top-e})})})});function a(t){return t.toLowerCase().replace(/[^a-z0-9]+/g,\'-\').replace(/^-+|-+$/g,\'-\').replace(/^-+|-+$/g,\'\')}})(jQuery);\";}s:26:\"avia-module-audioplayer-js\";a:6:{s:4:\"name\";s:23:\"avia-module-audioplayer\";s:3:\"url\";s:117:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.js\";s:4:\"path\";s:92:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/audio-player/audio-player.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:873:\"(function(i){\'use strict\';var n=!1,a=null,t=function(i){var n=i.find(\'.av-player-player-container .mejs-playpause-button\');if(n.length==0){setTimeout(function(){t(i)},200)};if(!n.hasClass(\'mejs-pause\')){n.trigger(\'click\')}};i.fn.aviaPlayer=function(a){if(!this.length)return;return this.each(function(){var a={};a.container=i(this);a.stopLoop=!1;a.container.find(\'audio\').on(\'play\',function(){if(a.stopLoop){this.pause();a.stopLoop=!1}});if(a.container.hasClass(\'avia-playlist-no-loop\')){a.container.find(\'audio\').on(\'ended\',function(){var i=a.container.find(\'.wp-playlist-tracks .wp-playlist-item:last a\');if(this.currentSrc===i.attr(\'href\')){a.stopLoop=!0}})};if(a.container.hasClass(\'avia-playlist-autoplay\')&&!n){if((a.container.css(\'display\')==\'none\')||(a.container.css(\'visibility\')==\'hidden\')){return};n=!0;setTimeout(function(){t(a.container,a)},200)}})}}(jQuery));\";}s:23:\"avia-module-icongrid-js\";a:6:{s:4:\"name\";s:20:\"avia-module-icongrid\";s:3:\"url\";s:109:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js\";s:4:\"path\";s:84:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/icongrid/icongrid.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:1115:\"(function(i){\'use strict\';i(window).on(\'load\',function(n){i(\'.avia-icongrid-flipbox\').avia_sc_icongrid()});i.fn.avia_sc_icongrid=function(n){i(\'.avia-icongrid-flipbox li\').on(\'touchend\',function(){var n=i(this),a=n.closest(\'.avia-icongrid-flipbox\');if(n.hasClass(\'avia-hover\')){a.find(\'li\').removeClass(\'avia-hover\')}\nelse{a.find(\'li\').removeClass(\'avia-hover\');n.addClass(\'avia-hover\')}});return this.each(function(){var t=i(this),a=\'#\'+i(this).attr(\'id\'),n;n={buildIconGrid:function(){this.setMinHeight(i(a+\' li article\'));this.createFlipBackground(i(a+\' li\'))},setMinHeight:function(n){if(n.length<2)return;var a=[];n.css(\'min-height\',\'0\').each(function(n){var t=i(this),o=t.outerHeight(!0);a.push(o)});var t=Math.max.apply(null,a);n.css(\'min-height\',t)},createFlipBackground:function(n){n.each(function(n,o){var a=i(this).find(\'.avia-icongrid-content\');if(a.length>0){if(i(this).find(\'.avia-icongrid-flipback\').length<=0){var t=a.clone().addClass(\'avia-icongrid-flipback\').removeClass(\'avia-icongrid-content\');a.after(t)}}})}};n.buildIconGrid();i(window).on(\'resize\',function(){n.buildIconGrid()})})}}(jQuery));\";}s:23:\"avia-module-timeline-js\";a:6:{s:4:\"name\";s:20:\"avia-module-timeline\";s:3:\"url\";s:109:\"https://solsculpting.com/wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js\";s:4:\"path\";s:84:\"wp-content/themes/enfold/config-templatebuilder/avia-shortcodes/timeline/timeline.js\";s:5:\"print\";b:0;s:4:\"type\";s:2:\"js\";s:12:\"file_content\";s:2215:\"(function(i){\'use strict\';i(window).on(\'load\',function(e){if(i.AviaSlider){i(\'.avia-timeline-container\').avia_sc_timeline()}});i.fn.avia_sc_timeline=function(e){return this.each(function(){var n=this,e=\'#\'+i(this).attr(\'id\'),a=i(e),t;t={matchHeights:function(){this.setMinHeight(i(e+\' .av-milestone-placement-top .av-milestone-date\'),!0);this.setMinHeight(i(e+\' .av-milestone-placement-bottom .av-milestone-content-wrap\'),!0);this.setMinHeight(i(e+\' .av-milestone-placement-bottom.avia-timeline-boxshadow .av-milestone-contentbox\'),!1);this.setMinHeight(i(e+\' .av-milestone-placement-top.avia-timeline-boxshadow .av-milestone-contentbox\'),!1);this.setMinHeight(i(e+\' .avia-timeline-horizontal.av-milestone-placement-alternate li >:first-child\'),!0)},setMinHeight:function(e,t){if(e.length<2)return;var n=[];e.css(\'min-height\',\'0\').each(function(e){var t=i(this),a=t.outerHeight(!0);n.push(a)});var l=Math.max.apply(null,n);e.css(\'min-height\',l);if(t){var a=e.first(),s=a.closest(\'.avia-timeline-container\'),o=a.height();s.find(\'.av-timeline-nav\').css(\'top\',o)}},createCarousel:function(t){var o=this,l=i(e+\'.avia-slideshow-carousel\'),n=3,s=1;if(a.attr(\'avia-data-slides\')){n=parseInt(a.attr(\'avia-data-slides\'))};if(n>=2){s=2};var c={carousel:\'yes\',keep_pading:!0,carouselSlidesToShow:n,carouselSlidesToScroll:3,carouselResponsive:[{breakpoint:989,settings:{carouselSlidesToShow:s,carouselSlidesToScroll:s,}},{breakpoint:767,settings:{carouselSlidesToShow:1,carouselSlidesToScroll:1,}}],};l.aviaSlider(c);l.on(\'_kickOff\',function(){o.matchHeights()});i(window).on(\'resize\',function(){o.matchHeights()})},layoutHelpers:function(t){i(e+\' .avia-timeline-vertical li\').each(function(e,n){var s=i(this).parents(\'ul\').find(\'li\').length,t=i(this).find(\'.av-milestone-icon-wrap\'),a=t.outerHeight(!0),o=parseInt(a/2);if(e===(s-1)){t.css({\'height\':o,})}\nelse{t.css({\'height\':a,})}})},fireAnimations:function(t){if(i(e+\' > ul\').hasClass(\'avia-timeline-vertical\')){var n=a.find(\'.av-milestone\');a.on(\'avia_start_animation\',function(){n.each(function(e){var t=i(this);setTimeout(function(){t.addClass(\'avia_start_animation\')},(e*350))})})}}};t.createCarousel();t.layoutHelpers();t.fireAnimations();t.matchHeights()})}})(jQuery);\";}}','yes'),(53628,'aviaAsset_avia-footer-scripts','a:8:{s:68:\"avia-footer-scripts-0ca7eba296fdb7e9236f07f97e384860---60a41f4a0240a\";b:1;s:68:\"avia-footer-scripts-41ed9ebd9e158f20a8252994172c54b2---60a4c5d06eafa\";b:1;s:68:\"avia-footer-scripts-0b40e990c17f3020bc90dfe33c304520---622a56bde33a7\";s:21:\"error-generating-file\";s:68:\"avia-footer-scripts-37423a6bb4d3760a0aa17347d8058357---622a56c01acde\";b:1;s:68:\"avia-footer-scripts-0b40e990c17f3020bc90dfe33c304520---622a7d5a86495\";s:21:\"error-generating-file\";s:68:\"avia-footer-scripts-0b40e990c17f3020bc90dfe33c304520---622a8f6685339\";s:21:\"error-generating-file\";s:68:\"avia-footer-scripts-0b40e990c17f3020bc90dfe33c304520---622b7162dce46\";s:21:\"error-generating-file\";s:68:\"avia-footer-scripts-0b40e990c17f3020bc90dfe33c304520---622b95bf20807\";s:21:\"error-generating-file\";}','yes'),(61832,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(68537,'wpe_cache_config','a:20:{s:20:\"sanitized_post_types\";a:4:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";s:14:\"e-landing-page\";s:14:\"e-landing-page\";s:17:\"elementor_library\";s:17:\"elementor_library\";}s:28:\"sanitized_builtin_post_types\";a:2:{s:4:\"post\";s:4:\"post\";s:4:\"page\";s:4:\"page\";}s:21:\"smarter_cache_enabled\";s:1:\"0\";s:21:\"last_modified_enabled\";s:1:\"0\";s:27:\"wpe_ac_global_last_modified\";s:10:\"1262304000\";s:24:\"post_cache_expires_value\";s:2:\"-1\";s:24:\"page_cache_expires_value\";s:2:\"-1\";s:34:\"e-landing-page_cache_expires_value\";s:2:\"-1\";s:37:\"elementor_library_cache_expires_value\";s:2:\"-1\";s:10:\"namespaces\";a:10:{i:0;s:10:\"oembed/1.0\";i:1;s:19:\"wpe/cache-plugin/v1\";i:2;s:21:\"wpe_sign_on_plugin/v1\";i:3;s:14:\"redirection/v1\";i:4;s:8:\"yoast/v1\";i:5;s:12:\"elementor/v1\";i:6;s:16:\"elementor-pro/v1\";i:7;s:5:\"wp/v2\";i:8;s:17:\"wp-site-health/v1\";i:9;s:18:\"wp-block-editor/v1\";}s:30:\"oembed/1.0_cache_expires_value\";s:2:\"-1\";s:39:\"wpe/cache-plugin/v1_cache_expires_value\";s:2:\"-1\";s:41:\"wpe_sign_on_plugin/v1_cache_expires_value\";s:2:\"-1\";s:34:\"redirection/v1_cache_expires_value\";s:2:\"-1\";s:28:\"yoast/v1_cache_expires_value\";s:2:\"-1\";s:32:\"elementor/v1_cache_expires_value\";s:2:\"-1\";s:36:\"elementor-pro/v1_cache_expires_value\";s:2:\"-1\";s:25:\"wp/v2_cache_expires_value\";s:2:\"-1\";s:37:\"wp-site-health/v1_cache_expires_value\";s:2:\"-1\";s:38:\"wp-block-editor/v1_cache_expires_value\";s:2:\"-1\";}','yes'),(72195,'wp_force_deactivated_plugins','a:0:{}','off'),(75191,'aviaAsset_avia-head-scripts','a:2380:{s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dfd5aa9c6cb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dfdd5dda956\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dfe143ef54d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dfe75df0df1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dfe75fe59a1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dff083bb4e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dff11faa1cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61dff79ca0ea5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e01551433d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e025beeba89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e03560876a9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e04b8b5749d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e05426b58d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e070df4bf78\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e07b199139d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e08180d62c2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e09f4b9dc2c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0d61024262\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0e49dc3c0b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0e4e3c641c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0efe1ada6c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0efe710855\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0f9068feff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e0f90b4416a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e109c39140c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e169d31a7c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e17feece127\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1935b8ecf5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194c700999\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194c804d27\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194c910195\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194ca4e934\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194cb6fb97\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194cc8bf43\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194cd93652\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194ce7e882\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194cfc2097\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d0ccbad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d1c0b8f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d2d6dd9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d3cb34b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d6a8423\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d80a804\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194d9272d2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194da5158f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194dcab50f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194de7ce43\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194dfb0935\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e0eef23\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e215efa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e311429\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e4ee035\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e6341e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e74a92c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194e976276\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194eb574ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194ed83e4b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194eea62ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194efa7c7d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f0bcf80\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f1d6041\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f2ee3b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f3ed6f7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f4dd30f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f5ebcdd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f6da49f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f806566\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194f8e97b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194fa7443c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194fb8b65c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194fc7a8eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194fe4f169\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e194ff53c94\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1c587a5ef9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1c8c183cc2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1cd2ee71b4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1dcab08fd8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1e53c087b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef0835645\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef0be5425\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef110004a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef140e0c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef16bb13b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef1a9f781\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef1fa8b6b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef21eba6d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef240f46d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ef27de264\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1f26d9d420\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1f26f0850b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e1ff7aa64a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2143e0609f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2144c09acd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e21452962c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e21455146be\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e21458c140f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2145f8d93b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e21aac20fd0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e21c05be4fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e293d67e8eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2bf4746800\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2bf4816c9b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2c1ec79278\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2ca85be5ce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2ca8ba807b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e2d1ac14549\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e31cb0ba9ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e31cbab6cb2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e31cc186a10\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e321bb55bdf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e324b2c9335\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e327295310f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e34316b1b57\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3477bb4be9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e34e312cd21\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e36e8f6a7d0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e386f578f24\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a220ed2b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a221d8951\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a223015d3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a224649e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a225b93d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2272b170\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2286b5f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a229963ec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a22ab63b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a22c189e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a22d1ad63\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a22e242f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a22f1eec7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2317ad74\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a232c1cf5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a233bf588\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23532da0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23652ea9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2374639d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23866bab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2397e78f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23a7d839\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23b82cfa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23d76a7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23ebada7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a23fe1968\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a241e24aa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a243c3a9e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2461d2ab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2472c9d8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24820ebc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2493626f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24a409a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24b3a369\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24c29652\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24d0f431\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24dee1c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24ed27d0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a24fb5604\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a250b20db\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2519947d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a2528288c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a254724f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a25560e05\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3a256b60b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3b4cd5d32c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3bfc076980\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3ca7868a93\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3eee29180b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e3f4bf13b9d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4592d59b9e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4626e40225\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e462a5ade7f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e462aa4bdce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e46722588c9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e478d34be03\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e48756c538c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4898fe5d76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a2ab1592\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a2c24617\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a2d62fdc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a2ea1754\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a2ff3553\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a3120e1d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a3266c6d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a33a3a68\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a34e721c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a35f151c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a36e47c6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a37ee9c6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a392cb31\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a3bdda36\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a3d3a467\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a3e49b6d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a3f69055\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4058e38\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4153617\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4281597\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a438e0cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a448cd51\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4596108\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4779a5a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a48b94ed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a49ed405\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4ce3704\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a4f21c1a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5174fd1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a527d5c1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a539247d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a548ad6d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a55a1b36\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a56baaa4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a57c15d8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a58b0289\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a59a2d0a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5aa315f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5b94a0e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5c7fb28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5d679e9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5e576c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a5f43609\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a604b789\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49a6134893\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e49fd84301c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4b1718000b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4b173beac1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4bf45ee271\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4c18495f07\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4c2f91a63b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4d1110fc7a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e4edff2c513\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e50425208a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e50874c9e4e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5122a9f700\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e517cef0cbd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5367505e02\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e54b35d8c89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5607b0893b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e592991e8e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e592b30f3ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e595b5cf66b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e595e68a0cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5c7a8d8479\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5c865977b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5c8682831e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5c9830a234\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5c9ab9823e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5e1f4886db\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5e2b0e0429\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5e5267583a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5f0c25848f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5f0c30aad2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5f83ee8400\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5fa41ae435\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e5fcb9a1797\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e602a64c3ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e608b38c026\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e619c798315\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e656bcd7adc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e670666debe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e6e9cd3a985\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e6e9ce7dc42\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e6fe3f46e9e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e6fe43146a2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7083301964\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e70868d9638\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e70886f2b91\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e70c31990b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e70fde03362\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e728e7c15d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e741ef60baf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e741f066281\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e748562a213\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e74859235f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7485b38b11\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7485f3d631\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e74862ebc1f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e74866be54e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e748696d321\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e74948421fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7511519669\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7702748eb0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e781219b979\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7812493cac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e79062505a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7a7ed9f690\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7a80381244\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7a8ada73ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7aa30c36d5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7b4ad62fa1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7b4b0f11d7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7d9aeb9d46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7deb749da3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e7e50a056c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e80071c4392\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e817e22f588\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e81b5f49729\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e827d5239c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e82c09835ab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e837a635444\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8396396282\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8474e1e2e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e848832d25a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e87cb27348c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e881963d17b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e897c8ed4ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ad30c0298\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ad45928ca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8b2b0b6055\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8c468dc1f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8dd566202e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8dde8b2593\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ddea1de44\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ddf0cc361\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ddf5ce483\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ddfa180b2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de00d0c54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de05b0dc6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de07195a5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de0863469\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de0998fff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de0ad5084\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de0c1c410\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de15957bf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de16cd54a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de1828a7d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de196317a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de1a9f73c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de1bc2c7f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de1d0c3ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de207a943\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de23448a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de2486ab6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8de397aec4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8e750ccfb9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ec9f0710c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8ec9fadd9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8eca0d79a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8eca1e37e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e8fd06c0d5f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e91c1596550\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e9202be8e2c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e92dc48ebcf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e93402372f7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e94273756b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e971b17f489\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e98a50b365e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e99ea935c1b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e9c08de217e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e9e49d2f2ae\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e9e49f269e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61e9f611d27e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea0aa7c7c80\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea0b7eee49a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea16a666ab9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea16b2a61c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea16d22055c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea16d45fa43\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea21bb05784\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea388d6661e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea4b4f772f4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea60ccd9b58\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea696b2a8d5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea8481e767c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea8483dbdd6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ea97923b240\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaa9fabc38d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaeba69b508\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaee6dc0f87\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf4b505543\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf67b27645\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf67c750e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf67d9a806\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf67ea83c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf680c0541\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf68234e2f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6838181e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf684d0fbb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6860893f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6874386d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6887116a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf689f2cb9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf68b27e77\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf68c3ec0a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf68d83fee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf68f0175b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf690725df\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf691b785c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf692bdd7e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf694a605f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf697bad57\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf698d9210\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf699e884e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf69b4111a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf69c61f0f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf69d817da\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf69ec6f59\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf69fdd886\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a10fcac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a232504\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a33a971\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a44a5fd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a57b1cb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a7a699c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6a938175\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6aa5fb8b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6ab74750\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6aca7c48\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6addb0b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6aee20f1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6b000c48\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6b0e67fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6b1db8c4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eaf6b2b6617\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb09e4e1187\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb0e9e81f49\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb2841b0496\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb337ae748a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb337cae2b4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb337f4e774\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb5c9e14bbc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eb9ea291456\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebb1421bbc0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebb14394fd9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebda9717a60\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebda98c0aa8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebf42367556\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfcf6f3df5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfd41a58f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfd4a667a1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfd5333844\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfd550a188\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfd61315c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfd7ed4401\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfda573f72\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ebfdae05f0c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ec00faa9b12\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ec0d0cd818c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ec3749b7bf5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ec48237a200\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ec7b4924a00\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecb691d4148\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecb693641d0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecbcfa162c9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecc01a7970a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecc36c89281\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eced90407f7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecedcabe83c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ecf7bb348cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ed338c7a69d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ed5c7bc7b4e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ed6e86ee4d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edb2e598845\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edb93c62333\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edbb235ade2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edbd92e1b01\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edc072210bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edc929a78bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edd6f98c3c9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eddd545983e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eddff5cc89c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03966797\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03a47705\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03b31196\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03bd4e61\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03c9490d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03d6abb6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03dccedb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf03f51e95\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61edf0402657e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee139010b9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee1391b7d57\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee139382ac5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee1395b7a3f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee1397a3741\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee1399189e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee139a47e8b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee139cab4c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee139eb7966\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a038f2b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a18d1e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a2dfa2a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a417a4c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a7243ac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a87258a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13a9cee2a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13aaf0872\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13abeb9bf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13ad24591\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13ae3c883\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13af50009\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13b0a52e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13b1ec9a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13b449126\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13b5b2f4d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13b70d062\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13b9208bc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13bb562e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13bdcace0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13bee0fc8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13bfe42ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c0db349\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c206960\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c2e25a9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c3d5919\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c4da6e3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c622575\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c7592af\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c88da98\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13c9a5afb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13ca9f831\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13cba37bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13ccab2b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13ce621c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee13cfa8f8d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee25cea3825\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee496055b9f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee62862b6a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee6dc47e18c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71a118ee5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71a441abb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71a642c52\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71a885228\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71aa95400\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71ac8c0b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71b0975aa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71b2903e0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71b483824\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71b7748a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee71bc156cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee8b9788a0e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ee95f1aceae\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eeb9b545572\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eec0b62658f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eee440b978f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eefcc1b4b7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef2b6c17f22\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef2b6da26f8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef30eac08da\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef3688bd938\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef40b93b7d7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef515e03682\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef8997641d2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ef9a482cb82\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3a4c3a8c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3a687e6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3a81636b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3a943684\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3aa9b410\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3abc2d9b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3acce103\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3ae01071\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3af42617\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b05c4d0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b1512fe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b27acf7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b3be07b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b4f009e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b615d5a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b708275\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b7edc85\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3b930b92\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3ba3af0c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3bc621e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3bfe3501\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c0f0568\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c2d4e4c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c3de11e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c4eb1b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c63d935\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c740e89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c83b429\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3c945102\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3ca5b17f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3cb6299c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3cc618ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3cd6b495\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3cf542fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d0a533b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d1a63a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d28d783\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d38276a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d494117\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d5aa38a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d6e2fea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d7c69b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d8b948c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efb3d9a7a32\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efbaef917b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efbcb5e3103\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efbfbfa42e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efcf0ea51c5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61efcf0fde00d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eff5b1807f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61eff5b70959f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f000645ee1c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f00065f1995\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006693809\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006788a0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f00068af677\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006a1b68c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006aaa041\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006c2948d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006cb1fd2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006d3fdeb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006e8083d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0006fa9709\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f000703fc6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f000716acdd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f00071c4c8b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f00072a7349\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0007471bfd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f00075dc7cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0008499571\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f009c3566b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f009c6a6011\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f01b6a81177\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f05d158cddf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0684be2e97\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0811478e8d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f092e451a8b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0d9119b2b2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0d9146cb41\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f0e3b60415f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f10d3f5bfe0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1196841805\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f14b7b14dc7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f17362eb6c6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f182335b07a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f187bfb432e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f198ccc11f7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1ac17b4e92\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1ac1a222c8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1b90a7bb54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1c18f50ab8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1cebe46dc8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1cebfc3203\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1f4eb2961d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1f60632adf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f1f60916230\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f20764b0748\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2076e9476d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f248313d92a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f24833145b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f25462f3731\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f257a1199e9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2771cf01b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2771e14a7d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f28ad8de306\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f29774eb943\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f297793000a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2a76070e52\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2a7997a17a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2ae8e0f1bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2ae8e6978d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2ae8fe2ae4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2ae9132257\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2ae91a17cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2babdc83a3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2ea2203660\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2eeb17010a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f2fe9c4a7f8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f301deb6a1e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3020974913\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3020af0639\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3020c55648\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3020d5c932\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3020ecc5a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f315f66ed4f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f315f753d2e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f325b00816c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3354c61c8c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3359fa2d25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3390faedd4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3391513652\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3391a3d4c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3391d333e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f339217b941\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f339244d4ed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3392955bb4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3392b60cdc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f339323301c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f339352000f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f33936cd709\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f33e321eb7f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f340f678bca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3438c4bc9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f36a76f220d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f36bb4d6d7a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f371fe71460\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f37829eb93a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f378a8e6abe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f39671b0961\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f397375a883\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3973a22e4c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3c53e0836f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cba0d4905\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cba2e3efa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cba7dc53d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbac08221\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbad9cfcc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbaf980cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbb39b288\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbb58bd04\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbb6bd82f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbba38cd9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbbd464f2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3cbbf1edaa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f3d913bd583\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f43d54bdd3f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f43deada05e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f446eceff43\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f44a9327430\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f461a112c16\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f471ba567f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f4764146375\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f478ee93a21\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f48254bfaf1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f48768e3bab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f4a4e1b3ad3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f4c4e4ac6ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f4e21f53425\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f4e223e5ae4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f4e41e90932\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5070f02c1c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f524db6265f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f52e46e51a3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5566631a87\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f56dbf2445a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f59c717da79\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5a3461fa7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5a8dcdc4ac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5bee215488\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5c86f37620\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5d16f2bdf6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f5e97cb3405\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f642e04a953\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6433c0d36e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fbdd512b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc04d1b6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc17cef7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc2f00c5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc42f966\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc534bea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc61a38e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc719c7c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fc8095cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fcbdffa3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fcd0cba7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fce25c28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fd0de161\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fd1ea191\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fd3f07a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f65fd5118d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6619a89fb4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f67d662a321\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f68953ca261\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f68defbc587\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6a339c2376\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6adff0f7f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6bf9fec880\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6db7a9e38e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6df816effc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6e3519a623\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6ed49b4639\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6ed4b2a98e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6ed4c41894\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6ed4d55e04\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f6eff6e1dd1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f70b52e08f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f70b5400fe2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f71b1c2d1ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f71d1c8a0c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f71f830c5ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f728cdc21ab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e23c3852\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e29a462a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e2cb2f4b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e2faa940\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e32c3e41\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e36c46b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e3a9de95\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e3e84860\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e4063a40\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e4274084\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f73e4699299\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f75bdc0cb9e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76bfb9c44a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76bfdd2b51\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76c00e1bb8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76c03ec5cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76c074ae35\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76c098cbb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76c51d5ac4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76c64c269a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cab50b9e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cad0f9b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cafeefc0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cb5abc54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cb9a2f25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cbae5480\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cbc42da5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cc18dad5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cc2e6c54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cc845bc8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76ccb6d35e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cd3ef38d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cd587e39\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cd97164e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cdc90149\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cdeee4f5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76ce54d055\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76ce6b6deb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76cece60c2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d3657c12\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d413cc46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d4294800\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d43ee177\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d49273f5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d4b726f5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d4f31c55\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d551bbb4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d605b014\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d636ed9d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d6841878\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d6b6b077\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d7873c9d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d7a0f864\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d9d42d92\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76d9ea0c95\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76da0063a1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76da3486a1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76da4b616c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76da9748c4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76def523ac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76df9357e3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76e021db7c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76e399a2b2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76e598d166\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f76e684a243\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f7af368257a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f7cf85d7d28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f7df6f1734c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f7e7444e66d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f7f1f5af49b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8190e1f56d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8209de63b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f821a7bac2f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f821aa25a5b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f822b24ff72\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f856d9725a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8633807874\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f86ad79c2fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f86c4f36558\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f86eba90c61\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f89a45c1942\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8b24d23f91\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8b2bdb604b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8b43a356a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f8d71375a07\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9060b5b28f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f91754c00f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f91756dad54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f91ae3d3961\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f91cd8d2aba\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f92f1d21756\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f932c5a1b85\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f964cecbd90\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f981bc2c0c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f987524175b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f99d454b63e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9a06cd79ed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9c657aeeb0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9cc91d5f0f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9d9513ad6e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4bd209f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4c030d25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4c30f5ca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4c61ba00\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4c82c409\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4ca20840\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4cee8a76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4d0df862\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4d30a1b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4d5b1093\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61f9e4da42ec0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa11dd09866\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa11df80778\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa14a76a69f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa18e2d5bef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa2de296010\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa4e82243b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa6e7764ad7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa6e8c21c26\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa72eea03f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fa9b27a7d28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61faaf6904a2e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fac61100c2d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fac670601a6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61faea4d6b766\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61faea66c78b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb0651858b3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb065286680\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb07c818139\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb1d567cfb4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb32fae7a2f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb3b65acce0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb498d50648\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb5398a85c4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb556c0d521\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fb93fc39e37\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fba6308604b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbb71de7949\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbb8ce316ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbbe5d708d2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbbe6448561\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbc2c60046a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbc7ee0b51a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0983db3d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd09dccd54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0a1c9fd3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0a6a1108\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0a9da856\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0abd0cd8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0b015ca8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0b2be172\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0b608213\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0b8aeef1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0bb15e67\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbd0bd62a84\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbefadca9fb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbf1422d94e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fbf43674428\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc27e481afc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc324a8ae1f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc38c84769f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc3b64ab6e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc3d0e4583d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc466660020\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc46cd5139d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc54935591a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc6599028ce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f1f25ba\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f337e5e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f458179\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f5a7c28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f7091f8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f815526\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88f8e8904\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc88fce2b18\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc8ab87ff09\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fc936458f89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcbd328ecd6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcc36ae471e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcceea4bd84\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fce2d20b9b4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcf035dcd97\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcf40cda597\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcf6ecb77a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcfbcf23c9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fcfbd02ce6e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd029924d5f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd1a565f755\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd32e2e7a8a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd374ed4e64\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd420c2899a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd71ebce5fb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd795c83e16\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fd9c2281798\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fda58dbc036\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fda58e784a9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdaa75a44b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdb62f845e5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdb883d8cc0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdc779474ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdd7957a5e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdea858d745\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdeffc24ec7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fdf35511c82\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe064a944a5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe12805584b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe1b0761eca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe3286443c2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe5839c2e91\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe583ad4eb8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe6437e8371\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe68910443f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe8a51b2292\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe974f5ad80\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fe9b7d6ac30\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fea5f1ebc87\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fea9f388515\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fec26a4cc81\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fec27e303d8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fec2aadd8a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61feccf71a6cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61feedcfa384f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61fefa5298587\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff05605eace\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff07663b48a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff12370fae1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff282514e67\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff284128d6f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff51f35d92e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ff8f191e2d5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffa1625e147\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffaf9903d99\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffba9ace92e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffbbf42ae6e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffbe218a441\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffc1424216b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffc3d1e4742\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffc40627e5e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffca17164f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffcb138e202\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffce13add50\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffcf53ba3c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd22eb3f70\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd235f32cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd23709081\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd23815a4c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd23a3bbe4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd2422d29d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd254a2326\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffd26139231\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffda6c5aa19\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffdd6be556f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---61ffeb7a448d6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200214c60043\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62002f6c441c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620037f58f903\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620037fa1319f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620037fd2b486\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620037ff67979\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62003801183ac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62003804601ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200380933ceb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200380b3e776\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200380d2757f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200380f7fe11\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62003814ea4d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620044b02faf6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620044b1c22f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62005a22d214a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62006575ce574\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200688108933\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62006cdd2f103\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620082606912d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620091534f531\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62009d7b2a8f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200c2469bed6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6200f14774a25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620101306c291\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620101332604d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201013452999\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620101355d311\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201013675368\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620101380b048\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201013995b6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201013b324db\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62010f450561e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620116535b8eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62011c8eaa342\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620124abea34e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620129563d766\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620131ea8513e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201349c2b316\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62013748884ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62013b1e3edb5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201413a179b3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620144229e246\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620147516f480\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620147545376d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201547833fbb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620154794b43b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201547a28b0b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201547b0cbf1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62016ba8991e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201801a973e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620180bce0d29\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620181c54dc40\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620194649f6ac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201a497e8e55\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201ae6eec2b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201ae700c5b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201c62d4e8f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201c7834479c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201c8b59c0c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201e49fb3cef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f04655233\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8a8354d3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8aa09412\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8ab3d9cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8ac5a5a3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8af26bb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8b252be1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8b56bf7a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201f8b80e01c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6201fcd6bf86b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62020e3e048b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202526b8f7fd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62027964401ba\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62027b0572ad1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62027db2780ec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202929d93a8a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62029cbdbe7eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202abad9bd63\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202abb93f80b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202abc43c082\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202b9568200c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202cb0e6648d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dacaa5a75\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dc8b77933\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dc8eb30f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dc90c09f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dc93d7fc7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dc95d2c8e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dc9bc2c2a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dca3d2dbe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dca607453\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dca7a6088\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dcaac84c6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202dcb12333b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202e4dee8272\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202eafd30b44\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6202eafdeeeca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620314c624ddb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620320dcee3e0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62033078a9f44\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620330a74d17f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62033130b9599\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62034dcfd0995\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203514bde20d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203536929916\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62038bc87541f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203947d620be\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203958d291b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203c87e48a6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203cb4f8198c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203cec80a570\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203d1dd65dcd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203e016dda9a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd1518626\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd1b46809\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd1e1694b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd208343f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd22c1ae2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd2553100\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd2717134\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd2935123\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd2b3a647\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd2c92ea5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6203fd2ec4a19\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620413bae44ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62041a3c5a5b6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62044e0841651\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620457d42777b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620458dfba98e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62045af7208c8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204629b626a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204b79848888\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204bac793b74\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204ce44d6ef2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204cf0b9543c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204e56c0607b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204e56d344c1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f2b2583e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f53118e81\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f53242941\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f533736c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f534a05f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f535d27f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f53703a06\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f5384dae0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6204f5398c3eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62050ef070491\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62056ecd4d254\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620579cae4b4b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205851d6ac5f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205957fdc600\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205a0db6da27\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205a666ba6d0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205b5b711c43\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205d9b750ff3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205e4252abdc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6205f69d62632\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620614a65ada8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620630ae57e64\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620630b6e3e89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206372f03515\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620637300efb9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f150bace\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f1f33116\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f2483bbc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f3177e35\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f3b19cd8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f5602896\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f605f31c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62065f70a5efd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62067dda053c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620682bed14b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62068f379d0c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a7189d6e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a71a8af65\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a71c9d028\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a85362a82\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a856bc013\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a85b63eab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a85d83bd2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a8625d13b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a86508788\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a86767914\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a86889c52\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206a86ab9f0b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206b8225d67c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206c329dee39\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206ea0dc9215\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206ed08e3ca9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206f7d7c6c92\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6206f9147cdfe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62070e0bd69ec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620712e591862\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716e2cbd04\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716e81b1fe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716eac90a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716ecb8e65\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716ee8ec34\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716f0d79f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620716f99e6fb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620721731822d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620724af5f491\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62073450c1908\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620760044a0e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207616212265\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62076f80b99b2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620771978dab5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207739d40e11\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620776d7ca482\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207891c893d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620792437cd68\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207957ed67f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207964a398a6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207a7ac65437\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207bdae1ee29\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207c917052e9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6207eb37cef8f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62080c0841079\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62081475ca284\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208147742195\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620819ac965a1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62083157641c0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62083158b0bb3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208316b73f18\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620831a98a282\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620831ae194eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620831c63b000\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620831d9560a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620835f7977b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620842915600f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620847773c21b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208764263408\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208802b0c271\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620882d27ea2d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620885463a4a5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208866b6bf5c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62088f39af267\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208a14ee32aa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f305a1bed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f308d3cd4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f30a53406\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f30b8dde7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f30cced96\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f30db741e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f30f89d8f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f3109048c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f3117e264\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208f31352aa6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6208fbac4d75b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620901c358ad0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620901c54372e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620901c8e52aa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620901caa39c1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620901cd62d5c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620920f937664\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209470590cf6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209474ccb6d7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620958973d2a9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620959d7ed58a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62096ca3e5e8d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62099f9cdd057\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62099f9fca18a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac11b5b9a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac146cd06\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac17bfb13\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac1c8cb3f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac2077b66\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac24160b3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac2acd65c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac2d97209\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac2f8a729\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac31ccb15\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ac38cbbb3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209b8c0178c4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209b9274bf48\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209b9288009a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209b9299b6f4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209b92ab4adf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209b92bc269a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ca06331c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc3395e9a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc4fd6374\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc50bd939\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc528108f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc54689cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc55dd5ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc58c79ea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc5b351d3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc6542196\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc6778968\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc69535e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209cc6b07035\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6209ebe8b4215\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a23cf8d3a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a384a6356f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a45576ee76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a5c171ecfe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a5c190120d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a65655558e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a67d98a46e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a67db28271\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a67dd02a53\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a67de4b1fc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a69a40f97d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620a84684aafa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aa379bde9f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aa39dc5217\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aa9116b7bc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aada341d2c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aadd61fe07\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ab6c36ef0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ab81837ced\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ac9b841336\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ad31f90df1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620adc3bd45a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ae526996e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ae6d37ae02\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aea7e1a47c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620aebb3af790\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b14356d857\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b3abf439a9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b4bbf96b80\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b5ec0ea206\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b5f8015e77\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b5f9f090c8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b7750aeef7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b7e6d4158f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b8b6369b62\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620b8b72f406c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be2a15fcbe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4f44b7cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4f821df7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4f934668\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4fa34009\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4fb53cd0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4fc43ce6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4fd25ead\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be4fee6d7f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be50024a7f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be5012ca14\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be5023223f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be50347bb3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be5045eb3d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be8163d406\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be818486e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be81acf060\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620be81c29f68\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620bf0cdb311c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620bf3d48ecb3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620bf4dd5dbf7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620bfb343d6c6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620bfcba39841\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c02ae2d298\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c02b28dfd3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c02b5698af\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c02b9ac3be\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c164e57d46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c21180a329\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c211937ac2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c211a65fb3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c2a2d1b5ce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c2a307d0cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c2a31d48f1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c2a334f763\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c2a348a456\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c493780226\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c649a0af21\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c66d9460f2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c698a7fa66\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c834d68aac\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c8a1943bf6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c8f8abb11d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c96c8f2336\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c9dde8af7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620c9df546487\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cb2b67960e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cb4f8f40cb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcd874e46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcdb62c3f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbce1238e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbce3a0eb6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbce7658b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbce9d328b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcefbb3e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcf273bc6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcf5e32f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcf9b3d12\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cbcfe217b3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cdc342b720\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620cfb1a3b56d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d1f9424e2a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d3076b48c5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d405066023\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d54ca3a797\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d5d58a53e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d60a170d25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d6e82c0695\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d82e989c31\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d82ea522a2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d84fb39872\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d88c324dfd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d8f4ab6966\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620d9ebe6e529\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620dcb43ccd46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620dcb8660082\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620dccbf92cf7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620dd74af2927\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620df153bfeb1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620dfd05ec849\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e14828ad45\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e18b4cb25b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e1bc9cd350\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e1bca92800\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e546d6c2a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e56df80f89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e6a1ce3570\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e97527ecce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9c6fc0fee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9c8575b14\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9c93defc6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9ca5c6a33\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9cc0afdcb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9cc269ca9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9cd1ebe38\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9cd83c6b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d0a62c93\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d0d19215\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d126eaed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d200d658\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d2400cf8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d2991f69\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d2d1bffd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d2f9b3cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d328d204\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d385c601\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d3a568d3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d3c72494\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d3f67180\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d4f05fd2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d82acaed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d8527dcb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d8a0e9f4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d8da298c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d90bb2d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9d93bdb5e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9da2c4dc7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9dc76c9cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e179dc7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e309e1a5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e47baac7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e67b3707\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e6d949f1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e704d638\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9e9bd0d64\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f09c52e3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f1171004\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f12b6630\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f2da6411\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f39ce414\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f65298e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f87b0973\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9f92619ca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fab81d4d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fb15152d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fb4f0ca1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fb79fdfd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fe352453\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fe60ffb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620e9fea42531\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea018f3a27\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea03e02640\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea042983ae\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea06c993d5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea070b1d84\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea073e3aab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea0771804a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea07ccfb37\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea08333853\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea089aa5ea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea099d9165\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea0c729148\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea0e423c27\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea0fb4c01e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea10239316\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea11eda997\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea122b0208\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea12703d1a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea12b50677\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea1354906f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea156e8032\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea15b23f2b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea15e170a2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea1829c65b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea18665796\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ea1943f428\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eab118d417\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2cba93cb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2cd40b7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2cea54fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2d02f977\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2d1be0b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2d328adf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2d474980\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2d5d2d61\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2d897854\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2dd78390\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2df58090\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2e0e0430\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2e2c0765\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2e42bcfc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2e683d38\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eb2e9193ec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ec6a3a6ffc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ede27ec63c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620eec379ace9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ef05149e74\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ef9aabdd78\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f22b892481\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f2533c6bc2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f2539494f1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f4314d33d2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f710f47444\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f80ca25dbe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f84a60cd9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f9c136dadc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f9c2222798\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620f9fcc26e0f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620fceaf59a29\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620fe9634d24e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620fe9a39bed6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620feacf57d4a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620fead224af5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ffbd06bad5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---620ffbd260b41\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210089d9eda8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621014936919e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621046599694f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210465a849a5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210504de2c76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621066a85d293\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621081614b4e3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62109e5921201\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210c5e184b07\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210d110b6527\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210e3263b8fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6210f35800059\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6211467aa627f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62115f0c21c56\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621172e3cd145\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621195ca0aebc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6211962c07d73\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62119a1b94d11\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62119a20e3717\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62119cba687fb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6211a5da544d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6211a8378620e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6211bab2f08fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6211ee4119a1f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62120226a74ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121ee4cd1d6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121eea17aaa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121eec8256f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121eeeefbe3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121ef182fa4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121ef4aeed3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121ef756184\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121ef9a8d51\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121efc30d45\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121efd6f83f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121efeb1059\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0003b89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0152d92\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0293bd5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f03d5cb5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0527f5e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f067396d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f07c460c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0913554\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0a66013\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0bafc48\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0cc1a88\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0e154da\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f0f5383a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f10656c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f11bea3c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f13139a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f145f70b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f15a31e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f16ebec0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f1857f62\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f1970664\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f1aba5bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f1bdb954\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f1d2af17\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f1e37cbe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f205dbc9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f22ad820\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f250cac8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f2732647\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f297f75b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f2b9cdc9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f2db63d7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f30bfda1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f3301d72\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f347c439\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f35d9bbc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f378f4ff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f38ed0d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f3a558b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f3be3c2e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f3d2faad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f3e9c5b2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62121f40184b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621221182fd3e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621221194d11e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212211a6208e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212211b61dc1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212211ca1180\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212211dac674\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212211ea2425\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212211fae1ad\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62125151f0877\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621259318d740\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62126d9017da1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62127461a7994\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621276e0e8515\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621276e677120\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621276e7872ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212950835ab5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621296f0b21d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212b88e0c817\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212b88f4d1ba\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212c38fd2804\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212f3723c1f7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6212f5954a3eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62135f313784c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213659940c2b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621387f180fd0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621397c31982f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213af985d5c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213da8c2db72\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213da911e0d7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213de4cc0e18\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213e48e0bf3e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6213f51a5f34b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62141b6365a6c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62141b6435924\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621423f8b42fc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214253dd1474\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62142557d8873\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621428caa6f23\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214326270a31\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62143b5162ebf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214550266bd1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621463f785e2b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621463f945588\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621482b2051ae\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214a928d3256\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214bd37e2c29\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214dbf8757e9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6214e31d6484d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621509129335c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6215291f21bdd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6215491de8c75\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62154f8600b5d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621570e933276\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62157326593d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621588cb039ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62159e2aefe9d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6215b84438bfb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6215bb2e0ecaa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6215dff727cf6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6215fe75410af\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621609b543586\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62162da59bda1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62162dafda66e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62162db099243\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62162dba8ec08\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62162de54f05f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62162de7c2092\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62163090f05ce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62163754ca60b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62164305a18e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621651e61311a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216607db559e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621663f33ce14\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62166b032700c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62166f1cabba8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216c19414fa5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216c1951072b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216c24fb8dbb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216c9984cf54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216c99e85fa3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216dd8ceebb2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216e700e7fe0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216e70272473\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216f03a53607\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6216f0c10867a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621710aac94ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621710ad2a627\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62172f8e47472\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62173f41c8457\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6217586f85d02\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62175c054b8d5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62175c068d3d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62175c07d463e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62175c094d06d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62176aee29d75\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621782553573f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62178fccdbca4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6217b122ac58d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6217b85e85cd4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6217b8ea32088\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6217e786e3a16\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6217eccc396ed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218124b6d889\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218205b8265f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62183d730e5d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621880f0188e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188c7bd78b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188c8a550ca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188ca138210\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188cb5b2de7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188cd06eb85\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188ce3d4aa6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188cf7b509b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188d0994942\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188d1ce59a3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188d2a9c01b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188d3998749\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188d48d3e77\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188e430d520\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188e4feca59\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62188e5c5b467\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218c10a279b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218c10c1c5f8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218e89e97cfe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218f45428e73\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6218fdb140361\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219007611618\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62190c3f3370c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219114f3e380\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621916f9864fe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621917386e58d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62191779b0efc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62191f52aa491\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621934c17cbca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219614bb09b3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219630a2b8a6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219630b5b732\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219630c55a6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219630d91fe9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219630e65c2f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219630faffd9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219631495342\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621963162ed65\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62196317c24c2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621963186dbdb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621963198ed00\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219631a65df7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219631b30e27\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219631caa0af\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219631f75b35\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219631feb3e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62196320a48b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62196323ec1ce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621963250680b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62196326199d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621963276d46a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62199b42d0e9e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62199c82dce39\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219c028a222c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219c0557215c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219c058473ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219c05b4215a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219cb179da6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219d58ef2650\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6219e6eb22c81\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a2f758a064\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a4a03ee85f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a4d8492137\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a4f3b6eb6c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a6cd045e46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a7b17936be\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621a92fb5a480\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621aa34b8d699\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ab4e829144\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ac51a5cff9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ad4606bdf1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b0ea79313e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b358a0c2d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b7144d33f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b719d7e7e8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b7223c4415\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b78ecd21c1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b981a41afe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621b9c9df148c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ba12845f0c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621bc8951e6ee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621bd1481f8b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621be112ddcb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621be36949667\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c00ce765e3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c04b561c05\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c075bebaec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c08e2bfe22\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c18dcf2435\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c1bccd222a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c26fecb0d3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c2fd082b11\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c33d2ee91f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c354ea6867\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c728c8c805\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c728e6f4a9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621c74efca686\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621cc5c292d7c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ce9f123232\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ceb5f674f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621cf39de3cd6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d09abd6976\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d2c45c8792\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d3a86b9bf1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d405dd7893\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d40e0c1f3e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d747bd50eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d8191260d0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d94094d1de\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621d944303908\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621da8b551be5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621db664e8258\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621dbe9091a8f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621dd2eec7ac1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621dd94ddb3b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ddc51b6f1b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ddc55602dd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621df1c856a7b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621df30e51e68\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621df30f93944\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621df464d2768\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e044d3e0e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e04630cbff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e047805926\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e04790529e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0499e1c51\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e04c1970a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e04cf77194\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e04d04b6bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e04ec9227f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0519766af\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e054117325\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e05679e39b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e05938d946\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e05ff39f4e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e060bb070e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e062838a27\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e063d31ca0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0648c91c2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06698c790\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e067255dc6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0679185a3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e067f29cb8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06addcda2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06b495128\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06d58835f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06f532172\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06fd3f6ea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e06fe50a91\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0710c4bf4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0735bc4a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e07620a4e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e077d77d7a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0784b38a8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0785cb441\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e07b9385c5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e07dfd3fc9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e080ded3bb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e083442b9b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e084dec083\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0875dfa3c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e08b3e0f43\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e08f6e8f21\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0912c8aec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e091a3f022\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0940e7b9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09597b16f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0994ab3ff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09bd8c678\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09c87f005\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09e46fa0a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09ea19499\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09eb3d32d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09fb0c7f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e09fc3e97f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a2959c0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a46dbfff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a5c1f5da\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a7816810\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a7fb9307\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a8680c8e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0a8ed467e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0aa354c6b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0ab74ad76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0ac0a5414\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0ac690378\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0ae8a5cc6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0b131cb83\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0b258789c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0b32a7d82\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0b3cd9057\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0b847c74d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0ba508730\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0be87b7a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0bf07e08d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0bff855ef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e0c077473d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e13eef0313\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e16c8ee259\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e175de8aba\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e1760a5443\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e176337ca0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e17649fe6f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e1eba7ef70\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43ef7593e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f06c94d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f24d403\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f323c18\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f402308\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f52c7e6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f64aac9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e43f72d6f4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e460060cb1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e4cee9c6e0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e4fba89643\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e7a0e88777\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e7b798d7ae\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e895374129\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e906fa312c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621e9bd96fcce\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ea6bfc2ab9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621eb6a3504c9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ebb03cc18d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ebb05490f4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ec4ba8104a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ec7b2adb6b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ed2caa2ef7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621eeeecc50f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621eeeed8ad8c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621ef16046356\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f006632d70\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f015fb8f64\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f0b8965bb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f0e9d5126a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f284529ff7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f2aa26e797\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f2aa4e0ddc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f371ad4dc3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f3bb94657d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f3da96c9db\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f3dab645f1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f3dac52bdb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f3dad3f669\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f3fac58452\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f462dad55f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f51479996d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f5eb7af0aa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f605713c37\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621f65337f70b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621fb2ed1eb2e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---621fe1135ddbe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220035096d6f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62201bcbcd029\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622044bfdab07\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622044c254821\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62205207a5e17\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62205c8aa2d6a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62205f008ed89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62206374eab7e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62206feb32dec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62207a5800cb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622083fe55509\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220881a40b9c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220a379bfe1a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220a37be43b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220b3ee105b4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220b5d4431d4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220c0e1b7ebf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220c0eb2ead2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220c0fb3cf0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220c105541cf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220c139719e1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220c14204185\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6220e3bd32600\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62210d7c201eb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622110ba9abe4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62211151e0bdd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62212623d9438\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62212944d5e8f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62212d632f62c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62213ae60fc53\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62213ae77d293\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62213ae8628ff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62213ae96f170\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62213aea9761c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221464fb3827\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622149be43989\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62214a283ed28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62216bbacc98b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62216c0b93c79\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221833c77a0f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62219308d5304\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221a5d34f9b2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221bf926798e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221d3ae488b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221d475a33df\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221da5d60a05\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221e57d86306\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221f6307955d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6221f634c9bd6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622207a67e96a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62220fd06a7e0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222114808e5f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622211498a287\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62221719b18f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62222b980898a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622237b10c1b8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622255c29be8c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622256495df4d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622258b803fec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62226342d13bf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622286a37e051\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62228de710cd1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62229ffb70b89\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222c52548c97\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222d1ce4a182\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222d67c684c6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222daef3c2b6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222daf08507b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222daf1bee0b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222daf305d40\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222e2ee07393\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6222e90bc4675\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223060915682\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62230a3e3ef26\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62231e8a90b2c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62232306b7474\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622323082490d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622366719b323\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62236cac46ad9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62237641a6ebd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622376465ad36\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622381157bde2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622392a922a9d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223a9a13ed78\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223a9a51ed0e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223b2c4f38c3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223c2b08a650\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223c4cf12d10\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223d5a86f8c8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223da71ac1fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223f0686744d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6223f3532748c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62243908880cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62243fafd3e4d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622444f6d56f0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622456dd8f831\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622462e334b64\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622480879d847\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622488b5360f8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622488b621b73\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622490a020960\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224b34268481\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224bfef88d9b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224c34a5f726\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd096b9b6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd22eb8e3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd246ff6d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd25caea0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd27f38e7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd28e2f60\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224dd2a91a46\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6224e57085d3b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62250c865f413\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225112267359\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622519b80eeef\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62253e3ebd5d7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622541ed8e2a6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622551d13048b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622551d7a93b0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622551e78149e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622572d55a576\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225992e09525\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62259e1dc0459\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225a48c14281\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225b3917c988\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225cce8b13f7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225d54c66986\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225d7603b64b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225de1b720d9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225f110aab60\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad40434c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad548473\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad5dffb7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad673aaf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad7246e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad7aba8a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad833e0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad8e9af1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fad9a8ea6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fada3ca51\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadac2209\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadb8269c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadc2753d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadcca603\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadd982e2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fade62859\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadf036cb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fadf95347\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6225fae063999\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622601aa2cb5b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622607881e89f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62260e6961441\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226156d07ba6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622633044cdec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62264c71db48f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62264c772ce54\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62264fd308fec\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62264fd5b8bae\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226555a12997\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62266cdac3f01\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226726143a36\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62267c6a0995e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622680a370a97\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226851fd3acc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62269bc75358a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62269ee82e33e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62269f2f9fb5c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226a3f82a43c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226afc006617\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226b30438b76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226c2466e6b9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb0871715\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb09a6c0a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb0bb20ff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb0d0292e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb0e11e8c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb0ee126f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226cb12b5941\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226d51a42193\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226deb14674e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226e8b31b204\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6226f471937c2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622700ca93033\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622703256abcc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622707bd5f0e9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62271366d632b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227249a67af2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62272a6c48bab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62273071e8b48\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622775939478a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622788ded6831\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62278b4c42f40\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622795e75cf90\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622797bb90954\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227a1c9b707e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227aaa26c2f6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227b3f4f2de8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227bdb145293\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227bee903b24\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227d18cde024\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227d6da1bd13\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227de85d1de4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227e29a679a7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6227e8222156f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62281702adc1c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228170758837\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62281f4b57914\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622820b19782e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622822898edc6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228228c61e76\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228228d61007\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228228e2963d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228228ee9223\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622825cfe0188\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62282a15d3f0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228459918288\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62284b373c973\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62284fe5d94e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62285462812c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622863df961a0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62287f587af26\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62288307462cb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622891d196860\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228a73ae7cfc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228b31d91b3b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228b831ea9f3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228bc18d2090\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228bc24e2d94\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228bc2dd41cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228bc39d64c7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228f01727697\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228fb3a36303\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6228fe1def125\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622901353d253\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622904f941121\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622909ff26ada\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62290a00c201a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622910a9d0343\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62292160bdf0d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622937b095abf\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62293af2864de\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229457e67f81\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622948a4c3427\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622948a92f8fe\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62295a96782fa\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62295de8e16d2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62296762a0fd0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622969e7dd9de\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622969ea28672\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229714ab2156\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---62297154aa782\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229716f821ed\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229718f951b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229804801be9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229ad7e93dc0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229ad801b890\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229b5e082f5e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229cc96f3f87\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229cc98bed60\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---6229e8b979141\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a1853f12e9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a2638d6825\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a267e9d322\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a26897570e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a26c34c345\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a4e8eb3651\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a519eef0ca\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a55b128e4e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a56bfda49e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a56c9a67cd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a5841832d2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a585fad3d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a68d7b126b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7358d8326\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7c1a2c3b4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7c3db5ac2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7c478963d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7c56b7e52\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7d5ca556c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7d993ab0a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a7ed79d33c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a80cb48722\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8454928e4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a84669e5de\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8894d223c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8d5cd2418\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8d879c5da\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8ee9ddb20\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8ef3ca7d3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a8f679a0da\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a94d258c45\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622a979ae7205\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aa1a4e9a24\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aa433cac85\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aa6b57ebf0\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aa6b6bcb4a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aabaab06a6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aabbc99523\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aabc5825d1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aabd404d99\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ab457b929e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622abf1fe95f9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ac90c3a9a6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ace8d10a28\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aceacb35fc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ad641c6d47\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ad67046569\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ad8f455565\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ad93d151fd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ae184bd529\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ae234c863f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ae5d81f557\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ae6a42824c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aecada6fea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622aed1ff0da3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622af2558e8b7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622afd2703e06\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b00acdf8d8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b08888fda2\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b08a919468\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b0b6a33d67\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b0f4266cd9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b175c8429e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b175e986b6\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e7a7c89b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e7be3411\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e7d8f137\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e8119626\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e83402fb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e856dd2d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e8792e2a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e8a25f9f\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b2e8b8f50b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b332dc3866\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b357c3b9a3\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b3585525fd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b35869c73c\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b358a22a25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b36796c709\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b3682044ab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b7106d31b5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b716569dc7\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b745437dc8\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b7af4609a4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b926b32dea\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b93c4e5006\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b9458a591e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b9579ca09a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b95ae2fed1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b95b834717\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b95c134483\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b99c099a1b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b99cd7e25e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622b9c403cf25\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ba10eedc1d\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ba19dcc067\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ba4d1dd565\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ba82a87aee\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bbe520745e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bc4dbb05bd\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bd2e78c4a5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bdd181aae1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622be60890eab\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622be95b234bb\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bea22d9ff5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bfbeeedced\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bfbf13aec9\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bfbf4869b1\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622bfbf7996cc\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c0048db03e\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c04629a21b\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c0559d00c4\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c0de83c539\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c221054d08\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c2426c9e26\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c3c35ddcf5\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c404b4f075\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c72bcb4578\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622c919d4fe74\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622cb13ae3dff\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622cb79bc777a\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622cbb65a4633\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622cbb724a576\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622ccc1767439\";s:21:\"error-generating-file\";s:66:\"avia-head-scripts-0b40e990c17f3020bc90dfe33c304520---622d4dd3b42d3\";s:21:\"error-generating-file\";}','yes'),(79463,'wc_facebook_for_woocommerce_lifecycle_events','[{\"name\":\"upgrade\",\"time\":1646941684,\"version\":\"2.6.12\",\"data\":{\"from_version\":\"2.4.1\"}},{\"name\":\"upgrade\",\"time\":1621368213,\"version\":\"2.4.1\",\"data\":{\"from_version\":\"2.3.1\"}},{\"name\":\"upgrade\",\"time\":1614472825,\"version\":\"2.3.1\",\"data\":{\"from_version\":\"1.11.4\"}},{\"name\":\"upgrade\",\"time\":1592437985,\"version\":\"1.11.4\",\"data\":{\"from_version\":\"1.11.3\"}},{\"name\":\"upgrade\",\"time\":1590373416,\"version\":\"1.11.3\",\"data\":{\"from_version\":\"1.11.2\"}},{\"name\":\"install\",\"time\":1589348429,\"version\":\"1.11.2\"}]','no'),(79473,'duplicate_post_show_notice','0','yes'),(79474,'duplicate_post_version','4.4','yes'),(79485,'woocommerce_downloads_redirect_fallback_allowed','no','no'),(79486,'woocommerce_attribute_lookup_enabled','yes','yes'),(79487,'woocommerce_attribute_lookup_direct_updates','no','yes'),(79488,'woocommerce_analytics_enabled','yes','yes'),(79489,'woocommerce_inbox_variant_assignment','5','yes'),(79498,'wc_blocks_surface_cart_checkout_probability','35','yes'),(79514,'woocommerce_task_list_hidden_lists','a:0:{}','yes'),(79523,'woocommerce_admin_version','3.2.1','yes'),(79527,'elementor_active_kit','3642','yes'),(79530,'elementor_version','3.27.7','yes'),(79531,'elementor_install_history','a:45:{s:5:\"3.5.6\";i:1646941824;s:5:\"3.6.3\";i:1650485565;s:5:\"3.6.4\";i:1650485567;s:5:\"3.6.5\";i:1651263641;s:5:\"3.7.8\";i:1666276464;s:6:\"3.21.8\";i:1717022847;s:6:\"3.22.0\";i:1718618482;s:6:\"3.22.1\";i:1718704676;s:6:\"3.22.2\";i:1719397127;s:6:\"3.22.3\";i:1719483663;s:6:\"3.23.0\";i:1721041813;s:6:\"3.23.1\";i:1721126791;s:6:\"3.23.2\";i:1721819362;s:6:\"3.23.3\";i:1721992679;s:6:\"3.23.4\";i:1722855292;s:6:\"3.24.0\";i:1726055518;s:6:\"3.24.2\";i:1726227210;s:6:\"3.24.3\";i:1726658484;s:6:\"3.24.4\";i:1727175335;s:6:\"3.24.5\";i:1727779818;s:6:\"3.24.6\";i:1728471974;s:6:\"3.24.7\";i:1729076209;s:6:\"3.25.0\";i:1730116810;s:6:\"3.25.1\";i:1730205890;s:6:\"3.25.3\";i:1730293331;s:6:\"3.25.4\";i:1730632943;s:6:\"3.25.6\";i:1731586227;s:6:\"3.25.8\";i:1732019665;s:6:\"3.25.9\";i:1732186371;s:7:\"3.25.10\";i:1732536536;s:7:\"3.25.11\";i:1733843015;s:6:\"3.26.0\";i:1734440076;s:6:\"3.26.1\";i:1734619127;s:6:\"3.26.2\";i:1734698397;s:6:\"3.26.3\";i:1734871816;s:6:\"3.26.4\";i:1736342393;s:6:\"3.26.5\";i:1737031433;s:6:\"3.27.0\";i:1737463663;s:6:\"3.27.1\";i:1737724760;s:6:\"3.27.2\";i:1738069451;s:6:\"3.27.3\";i:1738591750;s:6:\"3.27.4\";i:1739455394;s:6:\"3.27.5\";i:1739710549;s:6:\"3.27.6\";i:1739970981;s:6:\"3.27.7\";i:1741958943;}','yes'),(79533,'_elementor_installed_time','1646941727','yes'); INSERT INTO `wp_options` VALUES (79534,'elementor_remote_info_library','a:3:{s:10:\"types_data\";a:4:{s:5:\"block\";a:2:{s:10:\"categories\";a:28:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:11:\"Link in Bio\";i:15;s:9:\"portfolio\";i:16;s:7:\"pricing\";i:17;s:15:\"product archive\";i:18;s:5:\"Quote\";i:19;s:15:\"Service Details\";i:20;s:8:\"services\";i:21;s:11:\"single page\";i:22;s:11:\"single post\";i:23;s:14:\"single product\";i:24;s:5:\"stats\";i:25;s:9:\"subscribe\";i:26;s:4:\"team\";i:27;s:12:\"testimonials\";}s:4:\"sets\";a:5:{i:0;s:11:\"Boxing Club\";i:1;s:19:\"Business Consultant\";i:2;s:16:\"Marketing Agency\";i:3;s:9:\"Wireframe\";i:4;s:15:\"Workshop Center\";}}s:5:\"popup\";a:1:{s:10:\"categories\";a:6:{i:0;s:10:\"bottom bar\";i:1;s:7:\"classic\";i:2;s:6:\"fly-in\";i:3;s:11:\"full screen\";i:4;s:9:\"hello bar\";i:5;s:8:\"slide-in\";}}s:2:\"lp\";a:1:{s:10:\"categories\";a:15:{i:0;s:8:\"Business\";i:1;s:16:\"Coming Soon Page\";i:2;s:9:\"eCommerce\";i:3;s:9:\"Education\";i:4;s:6:\"Events\";i:5;s:18:\"Health and Fitness\";i:6;s:3:\"NFT\";i:7;s:14:\"Online Service\";i:8;s:7:\"Product\";i:9;s:11:\"Real Estate\";i:10;s:18:\"Social Involvement\";i:11;s:14:\"Thank You Page\";i:12;s:6:\"Travel\";i:13;s:18:\"Under Construction\";i:14;s:9:\"Wireframe\";}}s:2:\"lb\";a:1:{s:10:\"categories\";a:2:{i:0;s:4:\"post\";i:1;s:7:\"product\";}}}s:10:\"categories\";a:28:{i:0;s:8:\"404 page\";i:1;s:5:\"about\";i:2;s:7:\"archive\";i:3;s:8:\"Benefits\";i:4;s:14:\"call to action\";i:5;s:7:\"clients\";i:6;s:7:\"contact\";i:7;s:4:\"Data\";i:8;s:3:\"faq\";i:9;s:8:\"features\";i:10;s:6:\"footer\";i:11;s:7:\"Gallery\";i:12;s:6:\"header\";i:13;s:4:\"hero\";i:14;s:11:\"Link in Bio\";i:15;s:9:\"portfolio\";i:16;s:7:\"pricing\";i:17;s:15:\"product archive\";i:18;s:5:\"Quote\";i:19;s:15:\"Service Details\";i:20;s:8:\"services\";i:21;s:11:\"single page\";i:22;s:11:\"single post\";i:23;s:14:\"single product\";i:24;s:5:\"stats\";i:25;s:9:\"subscribe\";i:26;s:4:\"team\";i:27;s:12:\"testimonials\";}s:9:\"templates\";a:823:{i:0;a:20:{s:4:\"tmpl\";i:1280;s:2:\"id\";i:22403;s:5:\"title\";s:40:\"Hello Bar | Subscribe | Aesthetic Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/aesthetic-clinic-19.jpg\";s:12:\"tmpl_created\";i:1647354307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/hello-bar-subscribe-aesthetic-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:48:\"[\"Barbershop\",\"Business\",\"Discount\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:1;a:20:{s:4:\"tmpl\";i:1281;s:2:\"id\";i:22410;s:5:\"title\";s:32:\"Fly-In | Discount | Hair Stylist\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/hair-stylist-20.jpg\";s:12:\"tmpl_created\";i:1647354614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-discount-hair-stylist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Barbershop\",\"Discount\",\"Hair\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:2;a:20:{s:4:\"tmpl\";i:1285;s:2:\"id\";i:22440;s:5:\"title\";s:32:\"Classic | Subscribe | Shoe Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/shoes-store-21.jpg\";s:12:\"tmpl_created\";i:1647418620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-subscribe-shoe-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:37:\"[\"Ecommerce\",\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:3;a:20:{s:4:\"tmpl\";i:1286;s:2:\"id\";i:22446;s:5:\"title\";s:37:\"Full Screen | Subscribe | Denim Store\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/denim-store-22.jpg\";s:12:\"tmpl_created\";i:1647419614;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/full-screen-subscribe-denim-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:4;a:20:{s:4:\"tmpl\";i:1287;s:2:\"id\";i:22452;s:5:\"title\";s:37:\"Fly-In | Subscribe | Pizza Restaurant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/pizza-restaurant-23.jpg\";s:12:\"tmpl_created\";i:1647420733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-subscribe-pizza-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:19:\"[\"Business\",\"Food\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:5;a:20:{s:4:\"tmpl\";i:1288;s:2:\"id\";i:22458;s:5:\"title\";s:38:\"Full Screen | Subscribe | Fashion Shop\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-shop-24.jpg\";s:12:\"tmpl_created\";i:1647426379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-subscribe-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Ecommerce\",\"Fashion\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:6;a:20:{s:4:\"tmpl\";i:1289;s:2:\"id\";i:22464;s:5:\"title\";s:32:\"Fly-In | Contact | Makeup Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/makeup-studio-25.jpg\";s:12:\"tmpl_created\";i:1647427026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-makeup-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:7;a:20:{s:4:\"tmpl\";i:1290;s:2:\"id\";i:22470;s:5:\"title\";s:32:\"Fly-In | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-26.jpg\";s:12:\"tmpl_created\";i:1647428250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-contact-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:8;a:20:{s:4:\"tmpl\";i:1291;s:2:\"id\";i:22480;s:5:\"title\";s:27:\"Classic | CTA | MasterClass\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/master-class-27.jpg\";s:12:\"tmpl_created\";i:1647428474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-masterclass/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"cta\",\"Magazine\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:9;a:20:{s:4:\"tmpl\";i:1292;s:2:\"id\";i:22489;s:5:\"title\";s:29:\"Classic | CTA | Music Concert\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/music-concert-29.jpg\";s:12:\"tmpl_created\";i:1647429738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-music-concert/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"cta\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:10;a:20:{s:4:\"tmpl\";i:1293;s:2:\"id\";i:22495;s:5:\"title\";s:27:\"Classic | CTA | Music Album\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/music-album-30.jpg\";s:12:\"tmpl_created\";i:1647430056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-music-album/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Ba\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:11;a:20:{s:4:\"tmpl\";i:1294;s:2:\"id\";i:22501;s:5:\"title\";s:37:\"Fly-In | CTA | Photography Exhibition\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/photography-exhibition-31.jpg\";s:12:\"tmpl_created\";i:1647430512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-photography-exhibition/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:12;a:20:{s:4:\"tmpl\";i:1295;s:2:\"id\";i:22507;s:5:\"title\";s:34:\"Classic | CTA | Clothing Shop Sale\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/clothing-shop-sale-32.jpg\";s:12:\"tmpl_created\";i:1647430774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-cta-clothing-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Ecommerce\",\"Fashion\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:13;a:20:{s:4:\"tmpl\";i:1296;s:2:\"id\";i:22486;s:5:\"title\";s:30:\"Classic | CTA | Shop Promotion\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/shop-promotion-28.jpg\";s:12:\"tmpl_created\";i:1647430951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-shop-promotion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"cta\",\"Magazine\",\"Photography\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:14;a:20:{s:4:\"tmpl\";i:1297;s:2:\"id\";i:22516;s:5:\"title\";s:32:\"Fly-In | CTA | Glasses Shop Sale\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/glasses-shop-sale-33.jpg\";s:12:\"tmpl_created\";i:1647431136;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-cta-glasses-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:30:\"[\"Business\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:15;a:20:{s:4:\"tmpl\";i:1298;s:2:\"id\";i:22522;s:5:\"title\";s:30:\"Fly-In | Discount | Skate Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/50-skate-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647434058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-skate-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:16;a:20:{s:4:\"tmpl\";i:1299;s:2:\"id\";i:22532;s:5:\"title\";s:43:\"Classic | Subscription | Basketball Academy\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/21-basketball-academy-Subscription.jpg\";s:12:\"tmpl_created\";i:1647434608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/classic-subscription-basketball-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Education\",\"Marketing\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:17;a:20:{s:4:\"tmpl\";i:1300;s:2:\"id\";i:22543;s:5:\"title\";s:38:\"Classic | Discount | Veterinary Clinic\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/veterinery-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647435581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-discount-veterinary-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Discount\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:18;a:20:{s:4:\"tmpl\";i:1301;s:2:\"id\";i:22553;s:5:\"title\";s:39:\"Classic | Contact | Business Consulting\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/27-business-consulting-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647439935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/classic-contact-business-consulting/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Business\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:19;a:20:{s:4:\"tmpl\";i:1302;s:2:\"id\";i:22562;s:5:\"title\";s:28:\"Classic | Contact | Handyman\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/handyman-small.jpg\";s:12:\"tmpl_created\";i:1647440333;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-contact-handyman/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:20;a:20:{s:4:\"tmpl\";i:1303;s:2:\"id\";i:22573;s:5:\"title\";s:40:\"Classic | Discount | Online Fashion Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/31-online-fashion-shop-Discount.jpg\";s:12:\"tmpl_created\";i:1647462549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-online-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Discount\",\"Ecommerce\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:21;a:20:{s:4:\"tmpl\";i:1304;s:2:\"id\";i:22583;s:5:\"title\";s:36:\"Fly-In | Discount | Personal Trainer\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/personal-trainer-small.jpg\";s:12:\"tmpl_created\";i:1647503781;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-personal-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:22;a:20:{s:4:\"tmpl\";i:1305;s:2:\"id\";i:22592;s:5:\"title\";s:41:\"Classic | Contact | Illustrator Portfolio\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/illustrator-protfolio-small.jpg\";s:12:\"tmpl_created\";i:1647504218;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-contact-illustrator-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:49:\"[\"Contact\",\"Creative Portfolio\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:23;a:20:{s:4:\"tmpl\";i:1306;s:2:\"id\";i:22602;s:5:\"title\";s:46:\"Bottom Bar | Discount | Handmade Ceramics Shop\";s:9:\"thumbnail\";s:91:\"https://library.elementor.com/wp-content/uploads/2022/03/handmade-ceramic-shop-36-small.jpg\";s:12:\"tmpl_created\";i:1647507007;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-ceramics-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:48:\"[\"Business\",\"cta\",\"Ecommerce\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:24;a:20:{s:4:\"tmpl\";i:1307;s:2:\"id\";i:22612;s:5:\"title\";s:51:\"Classic | Contact | Classic Car Restoration Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/restoration-car-shop-37-small.jpg\";s:12:\"tmpl_created\";i:1647507310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/classic-contact-classic-car-restoration-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:25;a:20:{s:4:\"tmpl\";i:1308;s:2:\"id\";i:22621;s:5:\"title\";s:30:\"Classic | Booking | Life Coach\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/38-life-coach-Booking.jpg\";s:12:\"tmpl_created\";i:1647508596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-booking-life-coach/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:33:\"[\"Booking\",\"Business\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:26;a:20:{s:4:\"tmpl\";i:1309;s:2:\"id\";i:22632;s:5:\"title\";s:42:\"Classic | Subscription | Merchandise Shop\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/Merchandise-Shop-39-small.jpg\";s:12:\"tmpl_created\";i:1647509196;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-subscription-merchandise-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Ecommerce\",\"Marketing\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:27;a:20:{s:4:\"tmpl\";i:1310;s:2:\"id\";i:22643;s:5:\"title\";s:48:\"Fly-In | Contact | Non-Governmental Organization\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/NGO-41-small.jpg\";s:12:\"tmpl_created\";i:1647509528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:150:\"https://library.elementor.com/popups/fly-in-contact-non-governmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:28;a:20:{s:4:\"tmpl\";i:1311;s:2:\"id\";i:22654;s:5:\"title\";s:35:\"Hello Bar | Contact | Family Doctor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/family-doctor-44-small.jpg\";s:12:\"tmpl_created\";i:1647509732;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/hello-bar-contact-family-doctor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Contact\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:29;a:20:{s:4:\"tmpl\";i:1312;s:2:\"id\";i:22663;s:5:\"title\";s:36:\"Classic | Subscription | Sports Blog\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/45-sport-blog-Subscription.jpg\";s:12:\"tmpl_created\";i:1647509908;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-sports-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Sport\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:30;a:20:{s:4:\"tmpl\";i:1313;s:2:\"id\";i:22673;s:5:\"title\";s:30:\"Hello Bar | Booking | Event DJ\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/DJ-service-46-small.jpg\";s:12:\"tmpl_created\";i:1647510160;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/hello-bar-booking-event-dj/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:31:\"[\"Booking\",\"Events\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:31;a:20:{s:4:\"tmpl\";i:1314;s:2:\"id\";i:22684;s:5:\"title\";s:36:\"Fly-In | Discount | Cleaning Company\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/51-cleaning-company-Discount.jpg\";s:12:\"tmpl_created\";i:1647510546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-discount-cleaning-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Discount\",\"Offer\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:32;a:20:{s:4:\"tmpl\";i:1315;s:2:\"id\";i:22693;s:5:\"title\";s:28:\"Fly-In | Contact | Carpenter\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/carpenter-53-small.jpg\";s:12:\"tmpl_created\";i:1647511972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-carpenter/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:33;a:20:{s:4:\"tmpl\";i:1316;s:2:\"id\";i:22703;s:5:\"title\";s:31:\"Classic | Booking | Yoga Studio\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/55-yoga-studio-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647512209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-booking-yoga-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Booking\",\"Contact\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:34;a:20:{s:4:\"tmpl\";i:1317;s:2:\"id\";i:22714;s:5:\"title\";s:37:\"Classic | Discount | Pet Care Company\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/56-Pet-Care-Discount.jpg\";s:12:\"tmpl_created\";i:1647513031;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-pet-care-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:35;a:20:{s:4:\"tmpl\";i:1318;s:2:\"id\";i:22725;s:5:\"title\";s:38:\"Fly-In | Discount | Online Coffee Shop\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/online-coffee-shop-57-small.jpg\";s:12:\"tmpl_created\";i:1647513325;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-discount-online-coffee-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Food\",\"Offer\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:36;a:20:{s:4:\"tmpl\";i:1319;s:2:\"id\";i:22737;s:5:\"title\";s:44:\"Fly-In | CTA | Moving & Storage Company\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/moving-company-59-small.jpg\";s:12:\"tmpl_created\";i:1647520956;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/fly-in-cta-moving-storage-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:37;a:20:{s:4:\"tmpl\";i:1320;s:2:\"id\";i:22749;s:5:\"title\";s:47:\"Classic | Contact | Industrial Design Portfolio\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/60-industrial-design-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647528116;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/classic-contact-industrial-design-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:40:\"[\"Contact\",\"Interior Design\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:38;a:20:{s:4:\"tmpl\";i:1321;s:2:\"id\";i:22759;s:5:\"title\";s:25:\"Classic | Contact | Drone\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/drone-61-small.jpg\";s:12:\"tmpl_created\";i:1647528899;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/classic-contact-drone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:39;a:20:{s:4:\"tmpl\";i:1322;s:2:\"id\";i:22768;s:5:\"title\";s:46:\"Full Screen | Menu | Fashion Stylist Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/62-Fashion-Stylist-Menu.jpg\";s:12:\"tmpl_created\";i:1647529434;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/full-screen-menu-fashion-stylist-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:31:\"[\"Fashion\",\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:40;a:20:{s:4:\"tmpl\";i:1323;s:2:\"id\";i:22780;s:5:\"title\";s:31:\"Fly-In | CTA | Landscape Design\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/64-Landscape-Design-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647530337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-landscape-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:41;a:20:{s:4:\"tmpl\";i:1324;s:2:\"id\";i:22790;s:5:\"title\";s:48:\"Bottom Bar | Contact | Architecture Photography\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/architecture-photography-65-small.jpg\";s:12:\"tmpl_created\";i:1647532358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/bottom-bar-contact-architecture-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:26:\"[\"Architecture\",\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:42;a:20:{s:4:\"tmpl\";i:1325;s:2:\"id\";i:22800;s:5:\"title\";s:41:\"Fly-In | CTA | Speech-Language Therapist\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/66-Speech-Language-Therapist-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647532720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/fly-in-cta-speech-language-therapist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:25:\"[\"cta\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:43;a:20:{s:4:\"tmpl\";i:1326;s:2:\"id\";i:22812;s:5:\"title\";s:35:\"Full Screen | Verification | Winery\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/67-Winery-Verification.jpg\";s:12:\"tmpl_created\";i:1647761384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/full-screen-verification-winery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:24:\"[\"Alert\",\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:44;a:20:{s:4:\"tmpl\";i:1327;s:2:\"id\";i:22822;s:5:\"title\";s:36:\"Fly-In | Subscription | Nutritionist\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/nutritionist-69-small.jpg\";s:12:\"tmpl_created\";i:1647762620;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-subscription-nutritionist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Food\",\"Health\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:45;a:20:{s:4:\"tmpl\";i:1328;s:2:\"id\";i:22833;s:5:\"title\";s:40:\"Classic | Subscription | App & SaaS\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/app-70-small.jpg\";s:12:\"tmpl_created\";i:1647762955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscription-app-saas/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:14:\"[\"App\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:46;a:20:{s:4:\"tmpl\";i:1329;s:2:\"id\";i:22844;s:5:\"title\";s:41:\"Bottom Bar | Discount | Handmade Cupcakes\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/72-Handmade-Cupcakes-Discount.jpg\";s:12:\"tmpl_created\";i:1647763350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/bottom-bar-discount-handmade-cupcakes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:21:\"[\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:47;a:20:{s:4:\"tmpl\";i:1330;s:2:\"id\";i:22855;s:5:\"title\";s:40:\"Bottom Bar | Subscription | Fashion Blog\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fashion-blog-75-small.jpg\";s:12:\"tmpl_created\";i:1647763907;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/bottom-bar-subscription-fashion-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:30:\"[\"Blog\",\"Fashion\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:48;a:20:{s:4:\"tmpl\";i:1331;s:2:\"id\";i:22866;s:5:\"title\";s:28:\"Fly-In | CTA | Private Tutor\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-77-small.jpg\";s:12:\"tmpl_created\";i:1647764062;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-cta-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:49;a:20:{s:4:\"tmpl\";i:1332;s:2:\"id\";i:22876;s:5:\"title\";s:30:\"Classic | CTA | Tennis Academy\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/78-Tennis-Academy-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765192;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-tennis-academy/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:50;a:20:{s:4:\"tmpl\";i:1333;s:2:\"id\";i:22887;s:5:\"title\";s:31:\"Fly-In | CTA | Shared Workspace\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/shared-workspace-79-small.jpg\";s:12:\"tmpl_created\";i:1647765419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-cta-shared-workspace/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Business\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:51;a:20:{s:4:\"tmpl\";i:1334;s:2:\"id\";i:22899;s:5:\"title\";s:30:\"Bottom Bar | CTA | Art Gallery\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/80-Art-Gallery-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647765652;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/bottom-bar-cta-art-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:13:\"[\"Art\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:52;a:20:{s:4:\"tmpl\";i:1335;s:2:\"id\";i:22910;s:5:\"title\";s:44:\"Fly-In | Subscription | Hiking Tours Company\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/hiking-tours-company-81-small.jpg\";s:12:\"tmpl_created\";i:1647765835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscription-hiking-tours-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:29:\"[\"Subscribe\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:53;a:20:{s:4:\"tmpl\";i:1336;s:2:\"id\";i:22921;s:5:\"title\";s:26:\"Classic | CTA | Music Band\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/music-band-82-small.jpg\";s:12:\"tmpl_created\";i:1647769462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/classic-cta-music-band/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Marketing\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:54;a:20:{s:4:\"tmpl\";i:1337;s:2:\"id\";i:22935;s:5:\"title\";s:35:\"Classic | CTA | Computer Technician\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/comuter-technician-83-small.jpg\";s:12:\"tmpl_created\";i:1647769843;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-computer-technician/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"cta\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:55;a:20:{s:4:\"tmpl\";i:1338;s:2:\"id\";i:22945;s:5:\"title\";s:37:\"Classic | Discount | Delivery Company\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/delivery-company-88-small.jpg\";s:12:\"tmpl_created\";i:1647770834;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-discount-delivery-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Discount\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:56;a:20:{s:4:\"tmpl\";i:1339;s:2:\"id\";i:22959;s:5:\"title\";s:29:\"Classic | Discount | Eco Shop\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/echo-shop-89-small.jpg\";s:12:\"tmpl_created\";i:1647771211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-discount-eco-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:57;a:20:{s:4:\"tmpl\";i:1340;s:2:\"id\";i:22972;s:5:\"title\";s:54:\"Fly-In | Subscription | Health & Mindfulness Blog\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small.jpg\";s:12:\"tmpl_created\";i:1647771461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/fly-in-subscription-health-mindfulness-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:21:\"[\"Health\",\"Magazine\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:58;a:20:{s:4:\"tmpl\";i:1341;s:2:\"id\";i:22982;s:5:\"title\";s:31:\"Full Screen | Menu | Art Museum\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/art-museum-112-small.jpg\";s:12:\"tmpl_created\";i:1647771938;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-art-museum/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:59;a:20:{s:4:\"tmpl\";i:1342;s:2:\"id\";i:22992;s:5:\"title\";s:40:\"Classic | Discount | Urban Clothing Shop\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/health-blog-91-small-1.jpg\";s:12:\"tmpl_created\";i:1647773067;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-urban-clothing-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Discount\",\"Ecommerce\",\"Fashion\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:60;a:20:{s:4:\"tmpl\";i:1343;s:2:\"id\";i:23004;s:5:\"title\";s:60:\"Full Screen | Menu | Digital & Technology Design School\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small-1.jpg\";s:12:\"tmpl_created\";i:1647773366;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:155:\"https://library.elementor.com/popups/full-screen-menu-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:61;a:20:{s:4:\"tmpl\";i:1344;s:2:\"id\";i:23015;s:5:\"title\";s:62:\"Bottom Bar | Contact | Digital & Technology Design School\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-design-tech-school-small.jpg\";s:12:\"tmpl_created\";i:1647773492;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/bottom-bar-contact-digital-technology-design-school/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:23:\"[\"Contact\",\"Portfolio\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:62;a:20:{s:4:\"tmpl\";i:1345;s:2:\"id\";i:23025;s:5:\"title\";s:32:\"Full Screen | Menu | Flower Shop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small.jpg\";s:12:\"tmpl_created\";i:1647773820;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:63;a:20:{s:4:\"tmpl\";i:1346;s:2:\"id\";i:23037;s:5:\"title\";s:36:\"Classic | Subscription | Flower Shop\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/flower-shop-small-1.jpg\";s:12:\"tmpl_created\";i:1647773949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-flower-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Discount\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:64;a:20:{s:4:\"tmpl\";i:1347;s:2:\"id\";i:23056;s:5:\"title\";s:48:\"Classic | Discount | Health & Fitness eBook\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small-1.jpg\";s:12:\"tmpl_created\";i:1647774468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/classic-discount-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:65;a:20:{s:4:\"tmpl\";i:1348;s:2:\"id\";i:23067;s:5:\"title\";s:37:\"Fly-In | Menu | Baby Sleep Consultant\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small-1.jpg\";s:12:\"tmpl_created\";i:1647778954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/popups/baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:66;a:20:{s:4:\"tmpl\";i:1349;s:2:\"id\";i:23077;s:5:\"title\";s:46:\"Classic | Subscription | Baby Sleep Consultant\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/baby-sleep-consultant-small.jpg\";s:12:\"tmpl_created\";i:1647779074;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/classic-subscription-baby-sleep-consultant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:12:\"[\"Discount\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:67;a:20:{s:4:\"tmpl\";i:1350;s:2:\"id\";i:23090;s:5:\"title\";s:33:\"Full Screen | Menu | Luxury Hotel\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small.jpg\";s:12:\"tmpl_created\";i:1647779390;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/full-screen-menu-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:68;a:20:{s:4:\"tmpl\";i:1351;s:2:\"id\";i:23100;s:5:\"title\";s:31:\"Fly-In | Booking | Luxury Hotel\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/luxury-hotel-small-1.jpg\";s:12:\"tmpl_created\";i:1647779500;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-booking-luxury-hotel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Booking\",\"Travel\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:69;a:20:{s:4:\"tmpl\";i:1352;s:2:\"id\";i:23109;s:5:\"title\";s:38:\"Full Screen | Menu | Design Conference\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small.jpg\";s:12:\"tmpl_created\";i:1647779675;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:70;a:20:{s:4:\"tmpl\";i:1353;s:2:\"id\";i:23120;s:5:\"title\";s:41:\"Full Screen | Booking | Design Conference\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/design-conference-35-small-1.jpg\";s:12:\"tmpl_created\";i:1647779793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/popups/full-screen-booking-design-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:35:\"[\"Booking\",\"Conference\",\"Creative\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:71;a:20:{s:4:\"tmpl\";i:1354;s:2:\"id\";i:23129;s:5:\"title\";s:29:\"Slide-In | Menu | VR Headsets\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small.jpg\";s:12:\"tmpl_created\";i:1647781211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-menu-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:72;a:20:{s:4:\"tmpl\";i:1355;s:2:\"id\";i:23139;s:5:\"title\";s:31:\"Classic | Contact | VR Headsets\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/VR-headset-small-1.jpg\";s:12:\"tmpl_created\";i:1647781384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-vr-headsets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:73;a:20:{s:4:\"tmpl\";i:1356;s:2:\"id\";i:23149;s:5:\"title\";s:38:\"Slide-In | Menu | Portrait Photography\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Menu.jpg\";s:12:\"tmpl_created\";i:1647782336;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/slide-in-menu-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:74;a:20:{s:4:\"tmpl\";i:1357;s:2:\"id\";i:23159;s:5:\"title\";s:47:\"Hello Bar | Subscription | Portrait Photography\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2022/03/48-portrair-photography-Subscription.jpg\";s:12:\"tmpl_created\";i:1647782478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:149:\"https://library.elementor.com/popups/hello-bar-subscription-portrait-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Blog\",\"Photography\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:75;a:20:{s:4:\"tmpl\";i:1358;s:2:\"id\";i:23169;s:5:\"title\";s:32:\"Full Screen | Menu | English Pub\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Menu.jpg\";s:12:\"tmpl_created\";i:1647782664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/full-screen-menu-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:76;a:20:{s:4:\"tmpl\";i:1359;s:2:\"id\";i:23179;s:5:\"title\";s:32:\"Classic | Discount | English Pub\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/49-englisg-pub-Discount.jpg\";s:12:\"tmpl_created\";i:1647782796;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-english-pub/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:77;a:20:{s:4:\"tmpl\";i:1360;s:2:\"id\";i:23189;s:5:\"title\";s:27:\"Full Screen | Menu | Singer\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Menu.jpg\";s:12:\"tmpl_created\";i:1647783070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/full-screen-menu-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:29:\"[\"Fullscreen\",\"menu\",\"Music\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:78;a:20:{s:4:\"tmpl\";i:1361;s:2:\"id\";i:23200;s:5:\"title\";s:31:\"Classic | Subscription | Singer\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2022/03/58-Music-Artist-Subscription.jpg\";s:12:\"tmpl_created\";i:1647783249;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-subscription-singer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Music\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:79;a:20:{s:4:\"tmpl\";i:1362;s:2:\"id\";i:23210;s:5:\"title\";s:38:\"Full Screen | Menu | Virtual Assistant\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistnt-73-small.jpg\";s:12:\"tmpl_created\";i:1647784292;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-menu-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:80;a:20:{s:4:\"tmpl\";i:1363;s:2:\"id\";i:23223;s:5:\"title\";s:39:\"Hello Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/73-Virtual-Assistant-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647784616;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-contact-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:37:\"[\"Contact\",\"Psychologist\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:81;a:20:{s:4:\"tmpl\";i:1364;s:2:\"id\";i:23234;s:5:\"title\";s:32:\"Slide-In | Menu | Personal Chef\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Menu.jpg\";s:12:\"tmpl_created\";i:1647798194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-menu-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:8:\"[\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:82;a:20:{s:4:\"tmpl\";i:1365;s:2:\"id\";i:23244;s:5:\"title\";s:29:\"Classic | CTA | Personal Chef\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/74-Personal-Chef-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647798297;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-personal-chef/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:24:\"[\"Booking\",\"Chef\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:83;a:20:{s:4:\"tmpl\";i:1366;s:2:\"id\";i:23254;s:5:\"title\";s:31:\"Full Screen | Menu | Food Truck\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small-1.jpg\";s:12:\"tmpl_created\";i:1647798447;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/full-screen-menu-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:84;a:20:{s:4:\"tmpl\";i:1367;s:2:\"id\";i:23265;s:5:\"title\";s:30:\"Fly-In | Discount | Food Truck\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/food-truck-76-small.jpg\";s:12:\"tmpl_created\";i:1647798657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-discount-food-truck/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Discount\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:85;a:20:{s:4:\"tmpl\";i:1369;s:2:\"id\";i:23323;s:5:\"title\";s:28:\"Classic | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-6-Small.jpg\";s:12:\"tmpl_created\";i:1647855505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:86;a:20:{s:4:\"tmpl\";i:1370;s:2:\"id\";i:23329;s:5:\"title\";s:29:\"Slide-In | CTA | Black Friday\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-5-Small.jpg\";s:12:\"tmpl_created\";i:1647855865;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/slide-in-cta-black-friday/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:87;a:20:{s:4:\"tmpl\";i:1371;s:2:\"id\";i:23335;s:5:\"title\";s:31:\"Slide-In | CTA | Black Friday 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-1-Small.jpg\";s:12:\"tmpl_created\";i:1647856357;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/slide-in-cta-black-friday-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:88;a:20:{s:4:\"tmpl\";i:1372;s:2:\"id\";i:23341;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-3-Small.jpg\";s:12:\"tmpl_created\";i:1647856493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:89;a:20:{s:4:\"tmpl\";i:1373;s:2:\"id\";i:23347;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-2-Small.jpg\";s:12:\"tmpl_created\";i:1647856891;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:90;a:20:{s:4:\"tmpl\";i:1374;s:2:\"id\";i:23354;s:5:\"title\";s:30:\"Classic | CTA | Black Friday 4\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/Black-Friday-4-Small.jpg\";s:12:\"tmpl_created\";i:1647856996;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-black-friday-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Black Friday\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:91;a:20:{s:4:\"tmpl\";i:1375;s:2:\"id\";i:23394;s:5:\"title\";s:27:\"Classic | CTA | Halloween 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-3-Small.jpg\";s:12:\"tmpl_created\";i:1647857351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/classic-cta-halloween-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:31:\"[\"cta\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:92;a:20:{s:4:\"tmpl\";i:1376;s:2:\"id\";i:23401;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-2-Small.jpg\";s:12:\"tmpl_created\";i:1647857567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:93;a:20:{s:4:\"tmpl\";i:1377;s:2:\"id\";i:23407;s:5:\"title\";s:33:\"Slide-In | Discount | Halloween 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-1-Small.jpg\";s:12:\"tmpl_created\";i:1647857814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-halloween-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:36:\"[\"Discount\",\"Ecommerce\",\"Halloween\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:94;a:20:{s:4:\"tmpl\";i:1378;s:2:\"id\";i:23416;s:5:\"title\";s:31:\"Fly-In | Discount | Halloween 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-5-Small.jpg\";s:12:\"tmpl_created\";i:1647858024;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-discount-halloween-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:44:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Offer\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:95;a:20:{s:4:\"tmpl\";i:1379;s:2:\"id\";i:23422;s:5:\"title\";s:36:\"Classic | Subscription | Halloween 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Halloween-4-Small.jpg\";s:12:\"tmpl_created\";i:1647858246;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-subscription-halloween-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:48:\"[\"Discount\",\"Ecommerce\",\"Halloween\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:96;a:20:{s:4:\"tmpl\";i:1380;s:2:\"id\";i:23471;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-2-Small.jpg\";s:12:\"tmpl_created\";i:1647859193;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:97;a:20:{s:4:\"tmpl\";i:1381;s:2:\"id\";i:23477;s:5:\"title\";s:28:\"Slide-In | CTA | Christmas 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-4-Small.jpg\";s:12:\"tmpl_created\";i:1647859838;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/slide-in-cta-christmas-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Christmas\",\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:98;a:20:{s:4:\"tmpl\";i:1382;s:2:\"id\";i:23483;s:5:\"title\";s:26:\"Fly-In | CTA | Christmas 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-1-Small.jpg\";s:12:\"tmpl_created\";i:1647860157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/popups/fly-in-cta-christmas-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:99;a:20:{s:4:\"tmpl\";i:1383;s:2:\"id\";i:23489;s:5:\"title\";s:33:\"Slide-In | Discount | Christmas 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-5-Small.jpg\";s:12:\"tmpl_created\";i:1647860302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-discount-christmas-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:31:\"[\"Christmas\",\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:100;a:20:{s:4:\"tmpl\";i:1384;s:2:\"id\";i:23496;s:5:\"title\";s:32:\"Classic | Discount | Christmas 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/Christmas-3-Small.jpg\";s:12:\"tmpl_created\";i:1647860454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-discount-christmas-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Christmas\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:101;a:20:{s:4:\"tmpl\";i:1385;s:2:\"id\";i:23523;s:5:\"title\";s:30:\"Classic | CTA | Valentines Day\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-2-Small.jpg\";s:12:\"tmpl_created\";i:1647860912;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-cta-valentines-day/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:102;a:20:{s:4:\"tmpl\";i:1386;s:2:\"id\";i:23529;s:5:\"title\";s:39:\"Hello Bar | Discount | Valentines Day 2\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-1-Small.jpg\";s:12:\"tmpl_created\";i:1647861064;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-discount-valentines-day-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:30:\"[\"Discount\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:103;a:20:{s:4:\"tmpl\";i:1387;s:2:\"id\";i:23536;s:5:\"title\";s:32:\"Classic | CTA | Valentines Day 3\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/03/Valentines-Day-3-Small.jpg\";s:12:\"tmpl_created\";i:1647861536;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-cta-valentines-day-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"cta\",\"Valentine\'s Day\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:104;a:20:{s:4:\"tmpl\";i:1388;s:2:\"id\";i:23586;s:5:\"title\";s:51:\"Fly-In | Subscribe | Health & Wellness Company\";s:9:\"thumbnail\";s:103:\"https://library.elementor.com/wp-content/uploads/2022/03/35-Subscribe-Health-Wellness-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647862008;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/fly-in-subscribe-health-wellness-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:24:\"[\"Business\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:105;a:20:{s:4:\"tmpl\";i:1389;s:2:\"id\";i:23592;s:5:\"title\";s:34:\"Classic | Subscribe | Tech Company\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/36-Subscribe-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647866706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-subscribe-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Marketing\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:106;a:20:{s:4:\"tmpl\";i:1390;s:2:\"id\";i:23598;s:5:\"title\";s:36:\"Classic | Contact Us | Fight Classes\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2022/03/37-Contact-Us-Fight-Classes-Small.jpg\";s:12:\"tmpl_created\";i:1647866869;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-contact-us-fight-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:107;a:20:{s:4:\"tmpl\";i:1391;s:2:\"id\";i:23611;s:5:\"title\";s:31:\"Classic | CTA | Mochi Shop Sale\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2022/03/39-Click-Through-Mochi-Shop-Sale-Small.jpg\";s:12:\"tmpl_created\";i:1647867750;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-cta-mochi-shop-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:23:\"[\"cta\",\"Offer\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:108;a:20:{s:4:\"tmpl\";i:1392;s:2:\"id\";i:23618;s:5:\"title\";s:28:\"Classic | CTA | Fashion Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/40-Click-Through-Fashion-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647868251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-cta-fashion-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"cta\",\"Ecommerce\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:109;a:20:{s:4:\"tmpl\";i:1393;s:2:\"id\";i:23624;s:5:\"title\";s:29:\"Fly-In | Login | Tech Company\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/41-Login-Tech-Company-Small.jpg\";s:12:\"tmpl_created\";i:1647868704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/fly-in-login-tech-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:110;a:20:{s:4:\"tmpl\";i:1394;s:2:\"id\";i:23630;s:5:\"title\";s:36:\"Fly-In | Verification | Liquor Store\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/42-Verification-Liquor-Store-Small.jpg\";s:12:\"tmpl_created\";i:1647870308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/fly-in-verification-liquor-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:111;a:20:{s:4:\"tmpl\";i:1395;s:2:\"id\";i:23636;s:5:\"title\";s:39:\"Hello Bar | Subscribe | Online Magazine\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2022/03/44-Subscribe-Online-Magazine-Small.jpg\";s:12:\"tmpl_created\";i:1647870465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/hello-bar-subscribe-online-magazine/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:112;a:20:{s:4:\"tmpl\";i:1396;s:2:\"id\";i:23642;s:5:\"title\";s:27:\"Fly-In | Login | Health Spa\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/03/43-Login-Health-Spa-Small.jpg\";s:12:\"tmpl_created\";i:1647872427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/fly-in-login-health-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:20:\"[\"Login\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:113;a:20:{s:4:\"tmpl\";i:1397;s:2:\"id\";i:23648;s:5:\"title\";s:33:\"Fly-In | Verification | Wine Shop\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/03/45-Verification-Wine-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1647872627;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/fly-in-verification-wine-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:16:\"[\"Verification\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:114;a:20:{s:4:\"tmpl\";i:1421;s:2:\"id\";i:24235;s:5:\"title\";s:24:\"Ladydog Club – NFT\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/05/Ladydog_Club.jpg\";s:12:\"tmpl_created\";i:1651525072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/ladydog-club-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:115;a:20:{s:4:\"tmpl\";i:1422;s:2:\"id\";i:24166;s:5:\"title\";s:15:\"Dot – NFT\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/05/Dot-250_280.jpg\";s:12:\"tmpl_created\";i:1651525117;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/lp/dot-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:116;a:20:{s:4:\"tmpl\";i:1423;s:2:\"id\";i:24191;s:5:\"title\";s:28:\"Cosmic Neighbors – NFT\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Cosmic_Neighbors-250_280.jpg\";s:12:\"tmpl_created\";i:1651525124;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/cosmic-neighbors-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:117;a:20:{s:4:\"tmpl\";i:1424;s:2:\"id\";i:24255;s:5:\"title\";s:30:\"Happy Food Friends – NFT\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/05/Featured_Image.jpg\";s:12:\"tmpl_created\";i:1651525475;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/happy-food-friends-nft/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:3:\"NFT\";s:4:\"tags\";s:100:\"[\"Art\",\"Author\",\"Business\",\"Creative\",\"Design\",\"Gallery\",\"Landing Pages\",\"NFT\",\"Products\",\"Virtual\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:118;a:20:{s:4:\"tmpl\";i:1443;s:2:\"id\";i:24599;s:5:\"title\";s:27:\"Wireframe – Courses 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Courses-1.jpg\";s:12:\"tmpl_created\";i:1653989626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-courses-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:180:\"[\"About\",\"Academy\",\"Booking\",\"Business\",\"Course Online\",\"Features\",\"Footer\",\"Landing Pages\",\"Online Service\",\"Professional\",\"School\",\"Services\",\"Subscribe\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:119;a:20:{s:4:\"tmpl\";i:1444;s:2:\"id\";i:24614;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1-2.jpg\";s:12:\"tmpl_created\";i:1653990084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:139:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:120;a:20:{s:4:\"tmpl\";i:1445;s:2:\"id\";i:24629;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2-2.jpg\";s:12:\"tmpl_created\";i:1653990132;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:123:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:121;a:20:{s:4:\"tmpl\";i:1446;s:2:\"id\";i:24644;s:5:\"title\";s:27:\"Wireframe – Webinar 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Webinar-1.jpg\";s:12:\"tmpl_created\";i:1653990164;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/wireframe-webinar-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:177:\"[\"About\",\"Academy\",\"Booking\",\"Conference\",\"Course Online\",\"Education\",\"Features\",\"Footer\",\"Form\",\"Landing Pages\",\"Online Event\",\"Online Service\",\"Subscribe\",\"Virtual\",\"Webinar\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:122;a:20:{s:4:\"tmpl\";i:1447;s:2:\"id\";i:24655;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3-2.jpg\";s:12:\"tmpl_created\";i:1653990198;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:143:\"[\"About\",\"Agency\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Landing Pages\",\"Portfolio\",\"Professional\",\"Project\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:123;a:20:{s:4:\"tmpl\";i:1448;s:2:\"id\";i:24677;s:5:\"title\";s:28:\"Wireframe – Services 4\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-4.jpg\";s:12:\"tmpl_created\";i:1653990233;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:102:\"[\"About\",\"Business\",\"Contact\",\"Footer\",\"Form\",\"Landing Pages\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:124;a:20:{s:4:\"tmpl\";i:1449;s:2:\"id\";i:24687;s:5:\"title\";s:28:\"Wireframe – Products 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Products-1.jpg\";s:12:\"tmpl_created\";i:1653990273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-products-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:128:\"[\"About\",\"Booking\",\"Business\",\"Clients\",\"Ecommerce\",\"Features\",\"Footer\",\"Landing Pages\",\"Products\",\"Sales\",\"Shop\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:125;a:20:{s:4:\"tmpl\";i:1450;s:2:\"id\";i:24706;s:5:\"title\";s:28:\"Wireframe – Services 5\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-5.jpg\";s:12:\"tmpl_created\";i:1653990322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/wireframe-services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Wireframe\";s:4:\"tags\";s:149:\"[\"About\",\"Booking\",\"Consulting\",\"Contact\",\"Doctor\",\"Footer\",\"Form\",\"Header\",\"Landing Pages\",\"Online Service\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:126;a:20:{s:4:\"tmpl\";i:1451;s:2:\"id\";i:23604;s:5:\"title\";s:38:\"Classic | Subscribe | Nail Polish Shop\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2022/03/38-Subscribe-Nail-Polish-Shop-Small.jpg\";s:12:\"tmpl_created\";i:1660205114;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/classic-subscribe-nail-polish-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:20:\"[\"Blog\",\"Subscribe\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:127;a:20:{s:4:\"tmpl\";i:1452;s:2:\"id\";i:23047;s:5:\"title\";s:46:\"Fly-In | Contact | Health & Fitness eBook\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/fitness-ebook-small.jpg\";s:12:\"tmpl_created\";i:1660205149;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/fly-in-contact-health-fitness-ebook/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Contact\",\"Ebook\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:128;a:20:{s:4:\"tmpl\";i:1199;s:2:\"id\";i:18839;s:5:\"title\";s:27:\"Hello Bar | CTA | eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/05/350x250.png\";s:12:\"tmpl_created\";i:1621870603;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/popups/hello-bar-cta-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:41:\"[\"Ecommerce\",\"Online Shop\",\"Sale\",\"Shop\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:129;a:20:{s:4:\"tmpl\";i:1247;s:2:\"id\";i:21907;s:5:\"title\";s:50:\"Fly-In | Team Details | Electronic Music Festival\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/Kit-8-electronic-music-festival-CTA-image-1.jpg\";s:12:\"tmpl_created\";i:1646660881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/popups/fly-in-team-details-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:130;a:20:{s:4:\"tmpl\";i:1253;s:2:\"id\";i:22162;s:5:\"title\";s:46:\"Full Screen | Menu | Electronic Music Festival\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/03/8-music-festival-Team-Details.jpg\";s:12:\"tmpl_created\";i:1647272934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:154:\"https://library.elementor.com/popups/full-screen-menu-popup-electronic-music-festival/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:21:\"[\"Fullscreen\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:131;a:20:{s:4:\"tmpl\";i:1254;s:2:\"id\";i:22172;s:5:\"title\";s:45:\"Classic | Discount | Health & Beauty Spa\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/health-beauty-spa-small.jpg\";s:12:\"tmpl_created\";i:1647273547;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-discount-popup-health-beauty-spa/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:36:\"[\"Hair\",\"Health\",\"Sales\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:132;a:20:{s:4:\"tmpl\";i:1255;s:2:\"id\";i:22183;s:5:\"title\";s:44:\"Hello Bar | CTA | Environmental Organization\";s:9:\"thumbnail\";s:104:\"https://library.elementor.com/wp-content/uploads/2022/03/11-Environmental-Organization-Click-Through.jpg\";s:12:\"tmpl_created\";i:1647274384;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/hello-bar-cta-popup-environmental-organization/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:133;a:20:{s:4:\"tmpl\";i:1256;s:2:\"id\";i:22195;s:5:\"title\";s:39:\"Classic | Discount | Italian Restaurant\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/restaurant-small.jpg\";s:12:\"tmpl_created\";i:1647329432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-discount-popup-italian-restaurant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:22:\"[\"Restaurant\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:134;a:20:{s:4:\"tmpl\";i:1257;s:2:\"id\";i:22210;s:5:\"title\";s:45:\"Bottom Bar | Discount | Technology Conference\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tech-conference-small.jpg\";s:12:\"tmpl_created\";i:1647330423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:153:\"https://library.elementor.com/popups/bottom-bar-discount-popup-technology-conference/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:38:\"[\"Conference\",\"Sales\",\"Save the Date\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:135;a:20:{s:4:\"tmpl\";i:1258;s:2:\"id\";i:22221;s:5:\"title\";s:32:\"Hello Bar | Menu | Tattoo Studio\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small-1.jpg\";s:12:\"tmpl_created\";i:1647330705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/hello-bar-menu-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:17:\"[\"Header\",\"menu\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:136;a:20:{s:4:\"tmpl\";i:1259;s:2:\"id\";i:22231;s:5:\"title\";s:37:\"Full Screen | Booking | Tattoo Studio\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/tattoo-studio-small.jpg\";s:12:\"tmpl_created\";i:1647331823;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-booking-popup-tattoo-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:32:\"[\"Booking\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:137;a:20:{s:4:\"tmpl\";i:1260;s:2:\"id\";i:22251;s:5:\"title\";s:34:\"Classic | Discount | Dental Clinic\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/dental-clinic-small.jpg\";s:12:\"tmpl_created\";i:1647332171;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-discount-popup-dental-clinic/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:30:\"[\"Health\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:138;a:20:{s:4:\"tmpl\";i:1261;s:2:\"id\";i:22261;s:5:\"title\";s:34:\"Slide-In | Contact | Makeup Artist\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/03/20-Makeup-Artist-Contact-Us.jpg\";s:12:\"tmpl_created\";i:1647333946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/slide-in-contact-popup-makeup-artist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:139;a:20:{s:4:\"tmpl\";i:1262;s:2:\"id\";i:22271;s:5:\"title\";s:24:\"Fly-In | CTA | Headphone\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/03/headphones-1-small.jpg\";s:12:\"tmpl_created\";i:1647334784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/fly-in-cta-popup-headphone/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:41:\"[\"cta\",\"Ecommerce\",\"Marketing\",\"Product\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:140;a:20:{s:4:\"tmpl\";i:1263;s:2:\"id\";i:22277;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/online-course-2.jpg\";s:12:\"tmpl_created\";i:1647337110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/classic-cta-popup-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:35:\"[\"Course Online\",\"cta\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:141;a:20:{s:4:\"tmpl\";i:1264;s:2:\"id\";i:22283;s:5:\"title\";s:40:\"Bottom Bar | Contact | Virtual Assistant\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/03/virtual-assistant-3.jpg\";s:12:\"tmpl_created\";i:1647337517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:148:\"https://library.elementor.com/popups/bottom-bar-contact-popup-virtual-assistant/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:10:\"bottom bar\";s:4:\"tags\";s:33:\"[\"Business\",\"Contact\",\"Services\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:142;a:20:{s:4:\"tmpl\";i:1265;s:2:\"id\";i:22289;s:5:\"title\";s:32:\"Fly-In | Contact | Private Tutor\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/private-tutor-4.jpg\";s:12:\"tmpl_created\";i:1647337676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/fly-in-contact-popup-private-tutor/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:27:\"[\"Contact\",\"Course Online\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:143;a:20:{s:4:\"tmpl\";i:1266;s:2:\"id\";i:22295;s:5:\"title\";s:31:\"Classic | Login | Login Travel\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/login-travel-6.jpg\";s:12:\"tmpl_created\";i:1647339467;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-login-popup-login-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:9:\"[\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:144;a:20:{s:4:\"tmpl\";i:1267;s:2:\"id\";i:22301;s:5:\"title\";s:36:\"Full Screen | Login | Login Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/login-business-7.jpg\";s:12:\"tmpl_created\";i:1647339782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/full-screen-login-popup-login-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:16:\"[\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:145;a:20:{s:4:\"tmpl\";i:1268;s:2:\"id\";i:22307;s:5:\"title\";s:28:\"Classic | Login | Login Blog\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2022/03/login-blog-8.jpg\";s:12:\"tmpl_created\";i:1647339986;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/classic-login-popup-login-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Blog\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:146;a:20:{s:4:\"tmpl\";i:1269;s:2:\"id\";i:22313;s:5:\"title\";s:31:\"Classic | Login | Login Fashion\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2022/03/login-fashion-9.jpg\";s:12:\"tmpl_created\";i:1647340204;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/classic-login-popup-login-fashion/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Fashion\",\"Login\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:147;a:20:{s:4:\"tmpl\";i:1270;s:2:\"id\";i:22319;s:5:\"title\";s:40:\"Classic | Login | Login Design Platform\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/03/login-design-platform-10.jpg\";s:12:\"tmpl_created\";i:1647340531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:147:\"https://library.elementor.com/popups/classic-login-popup-login-design-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:25:\"[\"Design\",\"Login\",\"SaaS\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:148;a:20:{s:4:\"tmpl\";i:1271;s:2:\"id\";i:22325;s:5:\"title\";s:36:\"Fly-In | Contact | Digital Marketing\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/03/digital-marketing-11.jpg\";s:12:\"tmpl_created\";i:1647340770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-contact-popup-digital-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:51:\"[\"Business\",\"Contact\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:149;a:20:{s:4:\"tmpl\";i:1272;s:2:\"id\";i:22331;s:5:\"title\";s:36:\"Fly-In | CTA | Dog Cat Food Delivery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/dog-cat-food-delivery-5.jpg\";s:12:\"tmpl_created\";i:1647341069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:144:\"https://library.elementor.com/popups/fly-in-cta-popup-dog-cat-food-delivery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:33:\"[\"cta\",\"Delivery Service\",\"Pets\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:150;a:20:{s:4:\"tmpl\";i:1273;s:2:\"id\";i:22337;s:5:\"title\";s:37:\"Full Screen | Contact | Design Studio\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/03/design-studio-12.jpg\";s:12:\"tmpl_created\";i:1647341370;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-contact-popup-design-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:39:\"[\"Business\",\"Contact\",\"Digital Agency\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:151;a:20:{s:4:\"tmpl\";i:1274;s:2:\"id\";i:22343;s:5:\"title\";s:44:\"Classic | Contact | Support Product Platform\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/03/support-13.jpg\";s:12:\"tmpl_created\";i:1647341972;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/popups/classic-contact-support-product-platform/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:21:\"[\"Contact\",\"Support\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:152;a:20:{s:4:\"tmpl\";i:1275;s:2:\"id\";i:22371;s:5:\"title\";s:38:\"Full Screen | Contact | Small Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/03/small-business-14.jpg\";s:12:\"tmpl_created\";i:1647342508;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:140:\"https://library.elementor.com/popups/full-screen-contact-small-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:40:\"[\"Business\",\"Contact\",\"Interior Design\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:153;a:20:{s:4:\"tmpl\";i:1276;s:2:\"id\";i:22377;s:5:\"title\";s:31:\"Classic | Contact | Online Shop\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2022/03/online-shop-15.jpg\";s:12:\"tmpl_created\";i:1647352786;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/classic-contact-online-shop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:154;a:20:{s:4:\"tmpl\";i:1277;s:2:\"id\";i:22383;s:5:\"title\";s:40:\"Classic | Booking | Children Optometrist\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/03/children-optometrist-16.jpg\";s:12:\"tmpl_created\";i:1647352963;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:142:\"https://library.elementor.com/popups/classic-booking-children-optometrist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:53:\"[\"Booking\",\"Business\",\"Contact\",\"Education\",\"Health\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:155;a:20:{s:4:\"tmpl\";i:1278;s:2:\"id\";i:22389;s:5:\"title\";s:28:\"Fly-In | Contact | Open Week\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2022/03/open-week17.jpg\";s:12:\"tmpl_created\";i:1647353281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/fly-in-contact-open-week/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:34:\"[\"Business\",\"Contact\",\"Marketing\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:156;a:20:{s:4:\"tmpl\";i:1279;s:2:\"id\";i:22397;s:5:\"title\";s:43:\"Full Screen | CTA | Plant Pots Online Store\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2022/03/plant-pots-online-store-18.jpg\";s:12:\"tmpl_created\";i:1647353429;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/popups/full-screen-cta-plant-pots-online-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:33:\"[\"Ecommerce\",\"Marketing\",\"Sales\"]\";s:10:\"menu_order\";i:0;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:157;a:20:{s:4:\"tmpl\";i:1054;s:2:\"id\";i:15414;s:5:\"title\";s:32:\"Classic | Contact | Dance Studio\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/PopUp.jpg\";s:12:\"tmpl_created\";i:1603180596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-dance-studio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:762;s:11:\"trend_index\";i:650;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:158;a:20:{s:4:\"tmpl\";i:1398;s:2:\"id\";i:23687;s:5:\"title\";s:32:\"Pizza Promotion – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/48-Pizza-Promotion.jpg\";s:12:\"tmpl_created\";i:1649670575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/pizza-promotion-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:92:\"[\"Business\",\"Cooking\",\"Delivery\",\"Discount\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:159;a:20:{s:4:\"tmpl\";i:1400;s:2:\"id\";i:23751;s:5:\"title\";s:33:\"Baby Sleep Webinar – Events\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/63-Baby-Sleep-Webinar.jpg\";s:12:\"tmpl_created\";i:1649676065;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/baby-sleep-webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:227:\"[\"Baby\",\"Booking\",\"Business\",\"Children\",\"Course Online\",\"Education\",\"Events\",\"Health\",\"Landing Pages\",\"Life Coach\",\"Lifestyle\",\"Online Event\",\"Online Service\",\"Parenting\",\"Professional\",\"Remote\",\"Services\",\"Training\",\"Webinar\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:160;a:20:{s:4:\"tmpl\";i:1401;s:2:\"id\";i:23776;s:5:\"title\";s:34:\"Ski Hotel Promotion – Travel\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2022/04/64-Ski-Hotel-Promotion.jpg\";s:12:\"tmpl_created\";i:1649691720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/ski-hotel-promotion-travel/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Travel\";s:4:\"tags\";s:118:\"[\"Accommodation\",\"Booking\",\"Discount. Landing Pages\",\"Lifestyle\",\"Luxury\",\"Services\",\"Spa\",\"Travel\",\"Trip\",\"Vacation\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:161;a:20:{s:4:\"tmpl\";i:1402;s:2:\"id\";i:23804;s:5:\"title\";s:30:\"Cake Delivery – Business\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2022/04/67-Cake-Delivery.jpg\";s:12:\"tmpl_created\";i:1649692909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/cake-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:101:\"[\"Bakery\",\"Business\",\"Cake\",\"Cooking\",\"Delivery\",\"Discount\",\"Food\",\"Landing Pages\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:162;a:20:{s:4:\"tmpl\";i:1403;s:2:\"id\";i:23832;s:5:\"title\";s:32:\"Furniture Store – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/87-Furniture-Store.jpg\";s:12:\"tmpl_created\";i:1649694812;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/furniture-store-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:232:\"[\"Architecture\",\"Art\",\"Business\",\"Construction\",\"Coupon\",\"Creative\",\"Decor\",\"Designer\",\"Discount\",\"Fashion\",\"Furniture Design\",\"Home\",\"House\",\"Interior Design\",\"Landing Pages\",\"Lifestyle\",\"Products\",\"Professional\",\"Services\",\"Shop\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:163;a:20:{s:4:\"tmpl\";i:1404;s:2:\"id\";i:23746;s:5:\"title\";s:22:\"Nails – Business\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2022/04/62-Nails-1.jpg\";s:12:\"tmpl_created\";i:1649704635;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/nails-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:173:\"[\"Art\",\"Beauty\",\"Business\",\"Colorful\",\"Cosmetics\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Girly\",\"Landing Pages\",\"Lifestyle\",\"Manicure\",\"Modern\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:164;a:20:{s:4:\"tmpl\";i:1405;s:2:\"id\";i:23846;s:5:\"title\";s:29:\"Music Festival – Events\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2022/04/88-Music-Festival.jpg\";s:12:\"tmpl_created\";i:1649707763;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/music-festival-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:128:\"[\"Author\",\"Booking\",\"Business\",\"Creative\",\"Discount\",\"Events\",\"Landing Pages\",\"Music\",\"Online\",\"Online Event\",\"Party\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:165;a:20:{s:4:\"tmpl\";i:1406;s:2:\"id\";i:23872;s:5:\"title\";s:40:\"Fashion Styling Course – Education\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/89-Fashion-Styling-Course.jpg\";s:12:\"tmpl_created\";i:1649708569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/fashion-styling-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:173:\"[\"Aesthetic\",\"Art\",\"Beauty\",\"Business\",\"Course Online\",\"Creative\",\"Discount\",\"Education\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Online\",\"Online Service\",\"Stylist\",\"Virtual\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:166;a:20:{s:4:\"tmpl\";i:1407;s:2:\"id\";i:23897;s:5:\"title\";s:33:\"Bags Online Shop – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2022/04/90-Bags-Online-Shop.jpg\";s:12:\"tmpl_created\";i:1649709513;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/bags-online-shop-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:170:\"[\"Art\",\"Bag\",\"Business\",\"Creative\",\"Design\",\"Discount\",\"Fashion\",\"Landing Pages\",\"Lifestyle\",\"Luxury\",\"Modern\",\"Online\",\"Online Shop\",\"Products\",\"Sales\",\"Shop\",\"Stylist\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:167;a:20:{s:4:\"tmpl\";i:1408;s:2:\"id\";i:23932;s:5:\"title\";s:32:\"Cooking Academy – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2022/04/91-Cooking-Academy.jpg\";s:12:\"tmpl_created\";i:1649710216;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/cooking-academy-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:145:\"[\"Academy\",\"Booking\",\"Business\",\"Chef\",\"Cooking\",\"Education\",\"Food\",\"Free Trial\",\"Landing Pages\",\"Professional\",\"School\",\"Teacher\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:168;a:20:{s:4:\"tmpl\";i:1409;s:2:\"id\";i:23970;s:5:\"title\";s:45:\"Ophthalmology Medical Clinic – Business\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2022/04/92-Ophthalmology-Medical-Clinic.jpg\";s:12:\"tmpl_created\";i:1649711096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/ophthalmology-medical-clinic-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:165:\"[\"About\",\"Business\",\"Care\",\"Consulting\",\"Eye\",\"Free Trial\",\"Glasses\",\"Health\",\"Landing Pages\",\"Lifestyle\",\"Medical\",\"Modern\",\"Optometrist\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:169;a:20:{s:4:\"tmpl\";i:1425;s:2:\"id\";i:24331;s:5:\"title\";s:24:\"Wireframe – Home 1\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-1.jpg\";s:12:\"tmpl_created\";i:1653988363;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:170;a:20:{s:4:\"tmpl\";i:1218;s:2:\"id\";i:20792;s:5:\"title\";s:26:\"Luxury Car – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/11/250x280-1.jpg\";s:12:\"tmpl_created\";i:1636903770;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/luxury-car-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:54:\"[\"car\",\"Ecommerce\",\"Landing Pages\",\"Luxury\",\"Product\"]\";s:10:\"menu_order\";i:1;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:171;a:20:{s:4:\"tmpl\";i:1428;s:2:\"id\";i:24398;s:5:\"title\";s:25:\"Wireframe – About 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-1.jpg\";s:12:\"tmpl_created\";i:1653988534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:83:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Professional\",\"Services\",\"Team\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:172;a:20:{s:4:\"tmpl\";i:991;s:2:\"id\";i:13413;s:5:\"title\";s:33:\"Classic | Contact | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Help.jpg\";s:12:\"tmpl_created\";i:1587474761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-contact-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:2;s:16:\"popularity_index\";i:530;s:11:\"trend_index\";i:369;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:173;a:20:{s:4:\"tmpl\";i:1053;s:2:\"id\";i:15272;s:5:\"title\";s:32:\"Classic | Contact | Psychologist\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/PopUp.png\";s:12:\"tmpl_created\";i:1600170487;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/classic-contact-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:578;s:11:\"trend_index\";i:312;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:174;a:20:{s:4:\"tmpl\";i:899;s:2:\"id\";i:11839;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Header_small.png\";s:12:\"tmpl_created\";i:1569430015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"creative portfolio\",\"header\",\"portfolio\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:189;s:11:\"trend_index\";i:20;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:175;a:20:{s:4:\"tmpl\";i:1433;s:2:\"id\";i:24477;s:5:\"title\";s:27:\"Wireframe – Gallery 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-2.jpg\";s:12:\"tmpl_created\";i:1653988835;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:176;a:20:{s:4:\"tmpl\";i:1205;s:2:\"id\";i:20233;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633881371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:3;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:177;a:20:{s:4:\"tmpl\";i:1214;s:2:\"id\";i:20539;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022706;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:178;a:20:{s:4:\"tmpl\";i:1224;s:2:\"id\";i:21013;s:5:\"title\";s:24:\"Restaurant – About\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/12/7-About-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638795588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:36:\"[\"About\",\"Chef\",\"Food\",\"Restaurant\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:179;a:20:{s:4:\"tmpl\";i:992;s:2:\"id\";i:13402;s:5:\"title\";s:29:\"Classic | CTA | Online Course\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/04/Popup-Course-Completed.jpg\";s:12:\"tmpl_created\";i:1587474772;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/popups/classic-cta-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:4;s:16:\"popularity_index\";i:619;s:11:\"trend_index\";i:582;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:180;a:20:{s:4:\"tmpl\";i:1206;s:2:\"id\";i:20254;s:5:\"title\";s:41:\"Digital Marketing Agency – Business\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Digital-Marketing-Agency-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882427;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/digital-marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:65:\"[\"Agency\",\"Business\",\"Digital Agency\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:181;a:20:{s:4:\"tmpl\";i:1235;s:2:\"id\";i:21281;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/16-Services-Law-firm.jpg\";s:12:\"tmpl_created\";i:1638819128;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/law-firm-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Consulting\",\"Law\",\"Law Firm\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:182;a:20:{s:4:\"tmpl\";i:1017;s:2:\"id\";i:14111;s:5:\"title\";s:36:\"Classic | Japanese restaurant | Sale\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1592300400;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-japanese-restaurant-sale/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:5;s:16:\"popularity_index\";i:717;s:11:\"trend_index\";i:697;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:183;a:20:{s:4:\"tmpl\";i:1213;s:2:\"id\";i:20509;s:5:\"title\";s:40:\"Dogs Adoption – Social Involvement\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/10/Dog-Adoption-250x280-1.jpg\";s:12:\"tmpl_created\";i:1634022353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/dogs-adoption-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:49:\"[\"Adoption\",\"Involvement\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:184;a:20:{s:4:\"tmpl\";i:1233;s:2:\"id\";i:21205;s:5:\"title\";s:29:\"Photographer – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/25-Projects-Photographer.jpg\";s:12:\"tmpl_created\";i:1638818372;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photographer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Black and white\",\"Photography\",\"Project\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:185;a:20:{s:4:\"tmpl\";i:993;s:2:\"id\";i:13422;s:5:\"title\";s:30:\"Classic | Menu | Online Course\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1587474782;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/classic-menu-online-course/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:6;s:16:\"popularity_index\";i:516;s:11:\"trend_index\";i:432;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:186;a:20:{s:4:\"tmpl\";i:925;s:2:\"id\";i:12540;s:5:\"title\";s:33:\"Classic | Menu | Travel and tours\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_Menu_s.png\";s:12:\"tmpl_created\";i:1575960267;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-menu-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:690;s:11:\"trend_index\";i:714;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:187;a:20:{s:4:\"tmpl\";i:1208;s:2:\"id\";i:20361;s:5:\"title\";s:51:\"Exercise & Fitness Equipment – eCommerce\";s:9:\"thumbnail\";s:97:\"https://library.elementor.com/wp-content/uploads/2021/10/Exercise-Fitness-Equipment-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633883766;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/exercise-fitness-equipment-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Fitness\",\"Health\",\"Landing Pages\",\"Online Shop\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:188;a:20:{s:4:\"tmpl\";i:1239;s:2:\"id\";i:21373;s:5:\"title\";s:28:\"Photographer – Gallery\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/18-Gallery-Photographer.jpg\";s:12:\"tmpl_created\";i:1638821177;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photographer-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Gallery\",\"Photography\",\"Portfolio\",\"Project\",\"Travel\"]\";s:10:\"menu_order\";i:7;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:189;a:20:{s:4:\"tmpl\";i:1426;s:2:\"id\";i:24348;s:5:\"title\";s:24:\"Wireframe – Home 2\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-2.jpg\";s:12:\"tmpl_created\";i:1653988444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:190;a:20:{s:4:\"tmpl\";i:958;s:2:\"id\";i:13129;s:5:\"title\";s:28:\"Classic | Menu | Photography\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/PopUp_s.png\";s:12:\"tmpl_created\";i:1582092645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/popups/classic-menu-photography/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:8;s:16:\"popularity_index\";i:646;s:11:\"trend_index\";i:521;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:191;a:20:{s:4:\"tmpl\";i:1427;s:2:\"id\";i:24366;s:5:\"title\";s:24:\"Wireframe – Home 3\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Home-3.jpg\";s:12:\"tmpl_created\";i:1653988491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/wireframe-home-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:102:\"[\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Homepage\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:192;a:20:{s:4:\"tmpl\";i:1207;s:2:\"id\";i:20299;s:5:\"title\";s:51:\"Interior Design Consultation – Online Service\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/10/Interior-Design-Consultation-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633882989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/interior-design-consultation-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:65:\"[\"Consulting\",\"Interior Design\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:193;a:20:{s:4:\"tmpl\";i:952;s:2:\"id\";i:12726;s:5:\"title\";s:52:\"Classic | Newsletter | Subscribe | Magazine and Blog\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_Newsletter_s.png\";s:12:\"tmpl_created\";i:1579061019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:152:\"https://library.elementor.com/popups/classic-newsletter-subscribe-magazine-and-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:9;s:16:\"popularity_index\";i:357;s:11:\"trend_index\";i:281;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:194;a:20:{s:4:\"tmpl\";i:883;s:2:\"id\";i:11468;s:5:\"title\";s:20:\"Classic | Sale | Gym\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/PopUp_Small.png\";s:12:\"tmpl_created\";i:1567393182;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/popups/classic-sale-gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:696;s:11:\"trend_index\";i:740;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:195;a:20:{s:4:\"tmpl\";i:1216;s:2:\"id\";i:20623;s:5:\"title\";s:57:\"Luxurious Camping Accommodation For Events – Events\";s:9:\"thumbnail\";s:113:\"https://library.elementor.com/wp-content/uploads/2021/10/Luxurious-Camping-Accommodation-For-Events-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634041681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/luxurious-camping-accommodation-for-events-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:43:\"[\"Event\",\"Events\",\"Landing Pages\",\"Travel\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:196;a:20:{s:4:\"tmpl\";i:1219;s:2:\"id\";i:20886;s:5:\"title\";s:28:\"Online Training – Home\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/12/2-Home-Online-Training.jpg\";s:12:\"tmpl_created\";i:1638784769;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/online-training-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Online\",\"Sport\",\"Training\"]\";s:10:\"menu_order\";i:10;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:197;a:20:{s:4:\"tmpl\";i:1065;s:2:\"id\";i:15570;s:5:\"title\";s:33:\"Classic | Subscribe | Travel Blog\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp.jpg\";s:12:\"tmpl_created\";i:1606215555;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/classic-subscribe-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:709;s:11:\"trend_index\";i:459;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:198;a:20:{s:4:\"tmpl\";i:1431;s:2:\"id\";i:24437;s:5:\"title\";s:25:\"Wireframe – About 4\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-4.jpg\";s:12:\"tmpl_created\";i:1653988733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"About\",\"Business\",\"Contact\",\"Features\",\"Footer\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:199;a:20:{s:4:\"tmpl\";i:1210;s:2:\"id\";i:20414;s:5:\"title\";s:45:\"Online English Courses – Online Service\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Online-English-Courses-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/online-english-courses-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Course Online\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:11;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:200;a:20:{s:4:\"tmpl\";i:1132;s:2:\"id\";i:16553;s:5:\"title\";s:31:\"Fly-In | Contact | Beauty Salon\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/12/PopUp.jpg\";s:12:\"tmpl_created\";i:1608622602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fly-in-contact-beauty-salon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:691;s:11:\"trend_index\";i:428;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:201;a:20:{s:4:\"tmpl\";i:1441;s:2:\"id\";i:24574;s:5:\"title\";s:27:\"Wireframe – Contact 5\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-5.jpg\";s:12:\"tmpl_created\";i:1653989135;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:202;a:20:{s:4:\"tmpl\";i:1217;s:2:\"id\";i:20333;s:5:\"title\";s:40:\"Plant Pots Online Shop – eCommerce\";s:9:\"thumbnail\";s:93:\"https://library.elementor.com/wp-content/uploads/2021/10/Plant-Pots-Online-Shop-250x280-2.jpg\";s:12:\"tmpl_created\";i:1634042184;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/plant-pots-online-shop-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:50:\"[\"Ecommerce\",\"Landing Pages\",\"Online Shop\",\"Shop\"]\";s:10:\"menu_order\";i:12;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:203;a:20:{s:4:\"tmpl\";i:1211;s:2:\"id\";i:20447;s:5:\"title\";s:33:\"Shared Workspace – Business\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Shared-Workspace.jpg\";s:12:\"tmpl_created\";i:1633884934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/shared-workspace-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:28:\"[\"Business\",\"Landing Pages\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:204;a:20:{s:4:\"tmpl\";i:1237;s:2:\"id\";i:21313;s:5:\"title\";s:34:\"Spa & Beauty – Services\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/12/Spa-Beauty-Treatments-page-1.jpg\";s:12:\"tmpl_created\";i:1638819709;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/spa-beauty-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:55:\"[\"Beauty\",\"Hair\",\"Health\",\"Services\",\"Spa\",\"Treatment\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:205;a:20:{s:4:\"tmpl\";i:1004;s:2:\"id\";i:13538;s:5:\"title\";s:32:\"Fly-In | Newsletter | Barbershop\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/05/Pop-Up-Page-Small.jpg\";s:12:\"tmpl_created\";i:1589893364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/popups/fly-in-newsletter-barbershop/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:13;s:16:\"popularity_index\";i:710;s:11:\"trend_index\";i:667;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:206;a:20:{s:4:\"tmpl\";i:924;s:2:\"id\";i:12550;s:5:\"title\";s:32:\"Fly-in | Sale | Travel and Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/PopUp_s.png\";s:12:\"tmpl_created\";i:1575960263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/flyin-sale-travel-and-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:754;s:11:\"trend_index\";i:791;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:207;a:20:{s:4:\"tmpl\";i:1212;s:2:\"id\";i:20479;s:5:\"title\";s:49:\"Teeth Straightening – Health & Fitness\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/10/250x280-Teeth-Whitening.jpg\";s:12:\"tmpl_created\";i:1633886115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/teeth-straightening-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:46:\"[\"Business\",\"Dental\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:208;a:20:{s:4:\"tmpl\";i:1234;s:2:\"id\";i:21234;s:5:\"title\";s:34:\"Insurance Company – Services\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/15-Services-Insurance-Company.jpg\";s:12:\"tmpl_created\";i:1638818688;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/insurance-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Faq\",\"Form\",\"Insurance\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:14;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:209;a:20:{s:4:\"tmpl\";i:1035;s:2:\"id\";i:15062;s:5:\"title\";s:35:\"Fly-In | Sign up | Flooring Company\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp.png\";s:12:\"tmpl_created\";i:1597739629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:137:\"https://library.elementor.com/popups/fly-in-sign-up-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"fly-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:625;s:11:\"trend_index\";i:309;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:210;a:20:{s:4:\"tmpl\";i:1209;s:2:\"id\";i:20394;s:5:\"title\";s:30:\"Time Management – Events\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/10/Time-Management-250x280-1.jpg\";s:12:\"tmpl_created\";i:1633884077;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/time-management-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:17:\"[\"Landing Pages\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:211;a:20:{s:4:\"tmpl\";i:1229;s:2:\"id\";i:21118;s:5:\"title\";s:28:\"Contact – Plants Store\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/12-Contact-Plants-Store.jpg\";s:12:\"tmpl_created\";i:1638802472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/contact-plants-store/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:40:\"[\"Contact\",\"Info\",\"Plant\",\"Testimonial\"]\";s:10:\"menu_order\";i:15;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:212;a:20:{s:4:\"tmpl\";i:893;s:2:\"id\";i:11822;s:5:\"title\";s:30:\"Full Screen | Menu | Portfolio\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/PopUp_small.png\";s:12:\"tmpl_created\";i:1569429896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/popups/full-screen-menu-portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:654;s:11:\"trend_index\";i:626;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:213;a:20:{s:4:\"tmpl\";i:1203;s:2:\"id\";i:18591;s:5:\"title\";s:28:\"Coffee Sale – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280-7.png\";s:12:\"tmpl_created\";i:1633877319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/coffee-sale-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:33:\"[\"Coffee\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:214;a:20:{s:4:\"tmpl\";i:1231;s:2:\"id\";i:21184;s:5:\"title\";s:28:\"Dental Care – Services\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/14-Services-Dental-Care.jpg\";s:12:\"tmpl_created\";i:1638807148;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dental-care-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:45:\"[\"Dental\",\"Medical\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:16;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:215;a:20:{s:4:\"tmpl\";i:1064;s:2:\"id\";i:15580;s:5:\"title\";s:31:\"Fullscreen | Menu | Travel Blog\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/PopUp-Menu.jpg\";s:12:\"tmpl_created\";i:1606215358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/fullscreen-menu-travel-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"full screen\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:673;s:11:\"trend_index\";i:348;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:216;a:20:{s:4:\"tmpl\";i:1133;s:2:\"id\";i:16645;s:5:\"title\";s:28:\"Headphones – eCommerce\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_headphones.png\";s:12:\"tmpl_created\";i:1609944115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/commerce-headphones/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:39:\"[\"Ecommerce\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:633;s:11:\"trend_index\";i:87;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:217;a:20:{s:4:\"tmpl\";i:1442;s:2:\"id\";i:24584;s:5:\"title\";s:27:\"Wireframe – Pricing 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Pricing-1.jpg\";s:12:\"tmpl_created\";i:1653989152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:146:\"[\"Booking\",\"Business\",\"Clients\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Online Service\",\"Pricing\",\"Products\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:17;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:218;a:20:{s:4:\"tmpl\";i:1138;s:2:\"id\";i:16762;s:5:\"title\";s:25:\"Conference – Events\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Conference.png\";s:12:\"tmpl_created\";i:1610455119;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/conference-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:60:\"[\"Conference\",\"Convention\",\"Event\",\"Events\",\"Landing Pages\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:705;s:11:\"trend_index\";i:216;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:219;a:20:{s:4:\"tmpl\";i:1438;s:2:\"id\";i:24539;s:5:\"title\";s:27:\"Wireframe – Contact 2\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-2.jpg\";s:12:\"tmpl_created\";i:1653989019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"Business\",\"Contact\",\"Footer\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:220;a:20:{s:4:\"tmpl\";i:981;s:2:\"id\";i:13281;s:5:\"title\";s:37:\"Hello Bar | Contact | Interior Design\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/PopUp.png\";s:12:\"tmpl_created\";i:1586148801;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/hello-bar-contact-interior-design/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:19:\"[\"Interior Design\"]\";s:10:\"menu_order\";i:18;s:16:\"popularity_index\";i:763;s:11:\"trend_index\";i:679;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:221;a:20:{s:4:\"tmpl\";i:1052;s:2:\"id\";i:15259;s:5:\"title\";s:31:\"Hello Bar | Menu | Psychologist\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Menu-PopUp.png\";s:12:\"tmpl_created\";i:1600170209;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/popups/hello-bar-menu-psychologist/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"hello bar\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:739;s:11:\"trend_index\";i:583;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:222;a:20:{s:4:\"tmpl\";i:1434;s:2:\"id\";i:24494;s:5:\"title\";s:28:\"Wireframe – Services 1\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-1.jpg\";s:12:\"tmpl_created\";i:1653988874;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Business\",\"Faq\",\"Footer\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:223;a:20:{s:4:\"tmpl\";i:1194;s:2:\"id\";i:18701;s:5:\"title\";s:32:\"Digital Course – eCommerce\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/04/250x280.jpg\";s:12:\"tmpl_created\";i:1618995134;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/digital-course-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Ecommerce\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:19;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:224;a:20:{s:4:\"tmpl\";i:1192;s:2:\"id\";i:18612;s:5:\"title\";s:34:\"Bag Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bag-Product.jpeg\";s:12:\"tmpl_created\";i:1618395406;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bag-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:61:\"[\"Bag\",\"Ecommerce\",\"Landing Pages\",\"Product\",\"Sale\",\"Travel\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:875;s:11:\"trend_index\";i:605;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:225;a:20:{s:4:\"tmpl\";i:1227;s:2:\"id\";i:21083;s:5:\"title\";s:26:\"Conference – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/10-Contact-Conference.jpg\";s:12:\"tmpl_created\";i:1638799208;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/conference-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:44:\"[\"Conference\",\"Contact\",\"Form\",\"Info\",\"Map\"]\";s:10:\"menu_order\";i:20;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:226;a:20:{s:4:\"tmpl\";i:1193;s:2:\"id\";i:18644;s:5:\"title\";s:37:\"Camera Product Sale – eCommerce\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/camera_sale_featured-img.jpg\";s:12:\"tmpl_created\";i:1618396388;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/camera-product-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Camera\",\"Ecommerce\",\"Landing Pages\",\"Photography\",\"Sale\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:873;s:11:\"trend_index\";i:535;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:227;a:20:{s:4:\"tmpl\";i:951;s:2:\"id\";i:12736;s:5:\"title\";s:41:\"Slide In | Contact Us | Magazine and Blog\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/01/PopUp_contact_s.png\";s:12:\"tmpl_created\";i:1579060978;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/popups/slide-in-contact-us/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:734;s:11:\"trend_index\";i:686;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:228;a:20:{s:4:\"tmpl\";i:1222;s:2:\"id\";i:20960;s:5:\"title\";s:26:\"Travel Agency – Home\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/12/5-Home-Travel-Agency.jpg\";s:12:\"tmpl_created\";i:1638788432;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/travel-agency-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:53:\"[\"Adventures\",\"Experience\",\"Explore\",\"Travel\",\"Trip\"]\";s:10:\"menu_order\";i:21;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:229;a:20:{s:4:\"tmpl\";i:1196;s:2:\"id\";i:18815;s:5:\"title\";s:25:\"Car Wash – Business\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Car-Wash.png\";s:12:\"tmpl_created\";i:1621336431;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/car-wash-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:45:\"[\"Business\",\"car\",\"Discount\",\"Landing Pages\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:230;a:20:{s:4:\"tmpl\";i:1242;s:2:\"id\";i:21473;s:5:\"title\";s:40:\"Architecture Photography – Gallery\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/20-Gallery-Architecture-Photography.jpg\";s:12:\"tmpl_created\";i:1638822115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/architecture-photography-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:52:\"[\"Architecture\",\"Gallery\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:231;a:20:{s:4:\"tmpl\";i:1015;s:2:\"id\";i:14067;s:5:\"title\";s:37:\"Slide In | Japanese restaurant | Menu\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2020/06/Menu-Pop-Up-Small.jpg\";s:12:\"tmpl_created\";i:1592290352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/popups/slide-in-japanese-restaurant-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:22;s:16:\"popularity_index\";i:650;s:11:\"trend_index\";i:565;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:232;a:20:{s:4:\"tmpl\";i:923;s:2:\"id\";i:12229;s:5:\"title\";s:33:\"Slide In | Law Firm | Information\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/popup.png\";s:12:\"tmpl_created\";i:1572847842;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/popups/slide-in-law-firm-information/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:547;s:11:\"trend_index\";i:413;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:233;a:20:{s:4:\"tmpl\";i:1198;s:2:\"id\";i:18824;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1621336756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:234;a:20:{s:4:\"tmpl\";i:1236;s:2:\"id\";i:21259;s:5:\"title\";s:28:\"3D Designer – Projects\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/24-Projects-3D-Designer.jpg\";s:12:\"tmpl_created\";i:1638819185;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/3d-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:69:\"[\"3D\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:23;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:235;a:20:{s:4:\"tmpl\";i:1028;s:2:\"id\";i:14827;s:5:\"title\";s:39:\"Slide-In | Contact | Luxury Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/PopUp.png\";s:12:\"tmpl_created\";i:1595323523;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/popups/slide-in-contact-luxury-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:559;s:11:\"trend_index\";i:284;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:236;a:20:{s:4:\"tmpl\";i:1197;s:2:\"id\";i:18819;s:5:\"title\";s:27:\"Dog Walker – Business\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Dog-Walker.png\";s:12:\"tmpl_created\";i:1621336601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/lp/dog-walker-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:41:\"[\"Business\",\"Dog\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:237;a:20:{s:4:\"tmpl\";i:1238;s:2:\"id\";i:21349;s:5:\"title\";s:29:\"Architecture – Projects\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/23-Projects-Architecture.jpg\";s:12:\"tmpl_created\";i:1638820870;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/architecture-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:70:\"[\"Architecture\",\"Creative\",\"Creative Portfolio\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:24;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:238;a:20:{s:4:\"tmpl\";i:1034;s:2:\"id\";i:15075;s:5:\"title\";s:34:\"Slide-In | Menu | Flooring Company\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/PopUp-1.png\";s:12:\"tmpl_created\";i:1597739605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/popups/slide-in-menu-flooring-company/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"slide-in\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:383;s:11:\"trend_index\";i:162;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:239;a:20:{s:4:\"tmpl\";i:1414;s:2:\"id\";i:24079;s:5:\"title\";s:32:\"Fashion Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Fashion-Shop.jpg\";s:12:\"tmpl_created\";i:1650988089;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/fashion-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:88:\"[\"Aesthetic\",\"Business\",\"Coming Soon\",\"Ecommerce\",\"Girly\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:240;a:20:{s:4:\"tmpl\";i:1195;s:2:\"id\";i:18761;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1621336146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:25;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:241;a:20:{s:4:\"tmpl\";i:1153;s:2:\"id\";i:17060;s:5:\"title\";s:36:\"Private Tutor – Online Service\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Tutor-2.png\";s:12:\"tmpl_created\";i:1610631042;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/private-tutor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:64:\"[\"Education\",\"Landing Pages\",\"Online Service\",\"Teacher\",\"Tutor\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:780;s:11:\"trend_index\";i:628;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:242;a:20:{s:4:\"tmpl\";i:1430;s:2:\"id\";i:24434;s:5:\"title\";s:25:\"Wireframe – About 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-3.jpg\";s:12:\"tmpl_created\";i:1653988697;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:26;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:243;a:20:{s:4:\"tmpl\";i:1158;s:2:\"id\";i:17232;s:5:\"title\";s:33:\"Life Coach – Online Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Life-Coach.png\";s:12:\"tmpl_created\";i:1610902793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/life-coach-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:38:\"[\"Coach\",\"Landing Pages\",\"Life Coach\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:787;s:11:\"trend_index\";i:751;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:244;a:20:{s:4:\"tmpl\";i:1436;s:2:\"id\";i:24515;s:5:\"title\";s:28:\"Wireframe – Services 3\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-3.jpg\";s:12:\"tmpl_created\";i:1653988946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:66:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\"]\";s:10:\"menu_order\";i:27;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:245;a:20:{s:4:\"tmpl\";i:875;s:2:\"id\";i:11241;s:5:\"title\";s:36:\"Classic | Digital Agency | Marketing\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/PopUp_small.jpg\";s:12:\"tmpl_created\";i:1564643043;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/popups/classic-digital-agency-marketing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"popup\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"classic\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:362;s:11:\"trend_index\";i:315;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:246;a:20:{s:4:\"tmpl\";i:1146;s:2:\"id\";i:16932;s:5:\"title\";s:35:\"Finance Consulting – Business\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Finance-Consulting.png\";s:12:\"tmpl_created\";i:1610532170;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/lp/finance-consulting-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:80:\"[\"Advisor\",\"Business\",\"Consulting\",\"Finance\",\"Investment\",\"Landing Pages\",\"Tax\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:790;s:11:\"trend_index\";i:630;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:247;a:20:{s:4:\"tmpl\";i:1429;s:2:\"id\";i:24421;s:5:\"title\";s:25:\"Wireframe – About 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-About-2.jpg\";s:12:\"tmpl_created\";i:1653988579;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/wireframe-about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"About\",\"Business\",\"Contact\",\"Faq\",\"Features\",\"Footer\",\"Header\",\"Professional\",\"Team\"]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:248;a:20:{s:4:\"tmpl\";i:674;s:2:\"id\";i:8505;s:5:\"title\";s:11:\"404 page 01\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/001.jpg\";s:12:\"tmpl_created\";i:1526415501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:28;s:16:\"popularity_index\";i:533;s:11:\"trend_index\";i:222;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:249;a:20:{s:4:\"tmpl\";i:1136;s:2:\"id\";i:16721;s:5:\"title\";s:35:\"Dental – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Dental.jpg\";s:12:\"tmpl_created\";i:1610448567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/dental-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:44:\"[\"Dental\",\"Doctor\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:801;s:11:\"trend_index\";i:655;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:250;a:20:{s:4:\"tmpl\";i:1417;s:2:\"id\";i:24116;s:5:\"title\";s:32:\"Tech Company – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Tech-Company.jpg\";s:12:\"tmpl_created\";i:1650989265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/tech-company-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:87:\"[\"Business\",\"Coding\",\"Coming Soon\",\"Computer\",\"Developer\",\"IT\",\"Services\",\"Technology\"]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:251;a:20:{s:4:\"tmpl\";i:675;s:2:\"id\";i:8511;s:5:\"title\";s:11:\"404 page 02\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/002.jpg\";s:12:\"tmpl_created\";i:1526415528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:29;s:16:\"popularity_index\";i:347;s:11:\"trend_index\";i:155;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:252;a:20:{s:4:\"tmpl\";i:1161;s:2:\"id\";i:17269;s:5:\"title\";s:34:\"Electronics Sale – eCommerce\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Electronic-Products.png\";s:12:\"tmpl_created\";i:1610903298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/electronics-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:800;s:11:\"trend_index\";i:556;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:253;a:20:{s:4:\"tmpl\";i:1220;s:2:\"id\";i:20908;s:5:\"title\";s:42:\"Packing & Moving Company – Home\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/12/3-Home-Packing-Moving-Company.jpg\";s:12:\"tmpl_created\";i:1638786127;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/packing-moving-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Movers\",\"Moving\",\"Storge\"]\";s:10:\"menu_order\";i:30;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:254;a:20:{s:4:\"tmpl\";i:1152;s:2:\"id\";i:17032;s:5:\"title\";s:42:\"Donate Computer – Social Involvement\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2021/01/Donation-2.png\";s:12:\"tmpl_created\";i:1610630585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/donate-computer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:67:\"[\"Computer\",\"Donate\",\"Donation\",\"Kids\",\"Landing Pages\",\"Nonprofit\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:718;s:11:\"trend_index\";i:278;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:255;a:20:{s:4:\"tmpl\";i:672;s:2:\"id\";i:8512;s:5:\"title\";s:11:\"404 page 03\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/003.jpg\";s:12:\"tmpl_created\";i:1526415449;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:450;s:11:\"trend_index\";i:375;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:256;a:20:{s:4:\"tmpl\";i:1245;s:2:\"id\";i:21546;s:5:\"title\";s:28:\"Interior Design – Home\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/12/1-Home-Interior-Design-1.jpg\";s:12:\"tmpl_created\";i:1639046269;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/interior-design-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Design\",\"Form\",\"Furniture Design\",\"Interior Design\",\"Testimonial\"]\";s:10:\"menu_order\";i:31;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:257;a:20:{s:4:\"tmpl\";i:1135;s:2:\"id\";i:16684;s:5:\"title\";s:34:\"SaaS HR Management – Product\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2021/01/lp_hr.png\";s:12:\"tmpl_created\";i:1609945486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/saas-hr-management-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:39:\"[\"HR\",\"Landing Pages\",\"Product\",\"SaaS\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:708;s:11:\"trend_index\";i:292;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:258;a:20:{s:4:\"tmpl\";i:671;s:2:\"id\";i:8513;s:5:\"title\";s:11:\"404 page 04\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/004.jpg\";s:12:\"tmpl_created\";i:1526415417;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:420;s:11:\"trend_index\";i:176;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:259;a:20:{s:4:\"tmpl\";i:1249;s:2:\"id\";i:22137;s:5:\"title\";s:31:\"Design Blog – Coming Soon\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/10/Design-Blog-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647177194;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/design-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:47:\"[\"Blog\",\"Coming Soon\",\"Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:32;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:260;a:20:{s:4:\"tmpl\";i:1134;s:2:\"id\";i:16660;s:5:\"title\";s:37:\"Medical center – Online service\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-medical-cosultation-250_280.png\";s:12:\"tmpl_created\";i:1609945122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/medical-center-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:44:\"[\"Landing Pages\",\"Medical\",\"Online Service\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:750;s:11:\"trend_index\";i:332;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:261;a:20:{s:4:\"tmpl\";i:1226;s:2:\"id\";i:21069;s:5:\"title\";s:21:\"Hotel – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/12/9-Contact-Hotel.jpg\";s:12:\"tmpl_created\";i:1638798545;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/hotel-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:36:\"[\"Contact\",\"from\",\"Info\",\"Vacation\"]\";s:10:\"menu_order\";i:33;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:262;a:20:{s:4:\"tmpl\";i:1150;s:2:\"id\";i:17001;s:5:\"title\";s:36:\"Parental Counseling – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/Parenting-Coach-2.png\";s:12:\"tmpl_created\";i:1610534999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/parental-counseling-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:99:\"[\"Advisor\",\"Business\",\"Coach\",\"Counseling\",\"Landing Pages\",\"Online Service\",\"Parental\",\"Parenting\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:817;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:263;a:20:{s:4:\"tmpl\";i:1432;s:2:\"id\";i:24461;s:5:\"title\";s:27:\"Wireframe – Gallery 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Gallery-1.jpg\";s:12:\"tmpl_created\";i:1653988784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-gallery-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:82:\"[\"Business\",\"Contact\",\"Design\",\"Footer\",\"Gallery\",\"Header\",\"Portfolio\",\"Services\"]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:264;a:20:{s:4:\"tmpl\";i:676;s:2:\"id\";i:8514;s:5:\"title\";s:11:\"404 Page 05\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/005.jpg\";s:12:\"tmpl_created\";i:1526415558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:34;s:16:\"popularity_index\";i:419;s:11:\"trend_index\";i:220;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:265;a:20:{s:4:\"tmpl\";i:1137;s:2:\"id\";i:16742;s:5:\"title\";s:31:\"Online Course – Education\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Course.png\";s:12:\"tmpl_created\";i:1610454122;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/online-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:55:\"[\"Academy\",\"Course Online\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:777;s:11:\"trend_index\";i:776;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:266;a:20:{s:4:\"tmpl\";i:668;s:2:\"id\";i:8523;s:5:\"title\";s:11:\"404 page 06\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/006.jpg\";s:12:\"tmpl_created\";i:1526415291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:298;s:11:\"trend_index\";i:268;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:267;a:20:{s:4:\"tmpl\";i:1440;s:2:\"id\";i:24563;s:5:\"title\";s:27:\"Wireframe – Contact 4\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-4.jpg\";s:12:\"tmpl_created\";i:1653989095;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:84:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Gallery\",\"Header\",\"Professional\",\"Subscribe\"]\";s:10:\"menu_order\";i:35;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:268;a:20:{s:4:\"tmpl\";i:1162;s:2:\"id\";i:17284;s:5:\"title\";s:38:\"Dietitian – Health & Fitness\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/01/Dietitian.png\";s:12:\"tmpl_created\";i:1610903484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/dietitian-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:39:\"[\"Fitness\",\"Health\",\"landscape design\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:814;s:11:\"trend_index\";i:800;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:269;a:20:{s:4:\"tmpl\";i:1439;s:2:\"id\";i:24553;s:5:\"title\";s:27:\"Wireframe – Contact 3\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-3.jpg\";s:12:\"tmpl_created\";i:1653989057;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Professional\",\"Testimonial\"]\";s:10:\"menu_order\";i:36;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:270;a:20:{s:4:\"tmpl\";i:1144;s:2:\"id\";i:16897;s:5:\"title\";s:30:\"Personal Chef – Business\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2021/01/Personal-Chef.png\";s:12:\"tmpl_created\";i:1610466247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/personal-chef-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:53:\"[\"Business\",\"Chef\",\"Food\",\"Landing Pages\",\"Services\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:795;s:11:\"trend_index\";i:617;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:271;a:20:{s:4:\"tmpl\";i:1435;s:2:\"id\";i:24504;s:5:\"title\";s:28:\"Wireframe – Services 2\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Services-2.jpg\";s:12:\"tmpl_created\";i:1653988910;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/wireframe-services-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:80:\"[\"Business\",\"Contact\",\"Footer\",\"Header\",\"Professional\",\"Services\",\"Testimonial\"]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:272;a:20:{s:4:\"tmpl\";i:669;s:2:\"id\";i:8524;s:5:\"title\";s:11:\"404 page 07\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/007.jpg\";s:12:\"tmpl_created\";i:1526415337;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:37;s:16:\"popularity_index\";i:303;s:11:\"trend_index\";i:171;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:273;a:20:{s:4:\"tmpl\";i:1147;s:2:\"id\";i:16946;s:5:\"title\";s:52:\"Online Full-Stack Developer Course – Education\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/01/Online-Full-Stack-Developer-Course.png\";s:12:\"tmpl_created\";i:1610532778;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/online-full-stack-developer-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:76:\"[\"Academy\",\"Coding\",\"Course Online\",\"Developer\",\"Education\",\"Landing Pages\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:805;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:274;a:20:{s:4:\"tmpl\";i:1437;s:2:\"id\";i:24528;s:5:\"title\";s:27:\"Wireframe – Contact 1\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2022/05/Wireframe-—-Contact-1.jpg\";s:12:\"tmpl_created\";i:1653988981;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/wireframe-contact-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:76:\"[\"Business\",\"Contact\",\"Footer\",\"Form\",\"Google Maps\",\"Header\",\"Professional\"]\";s:10:\"menu_order\";i:38;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:275;a:20:{s:4:\"tmpl\";i:1143;s:2:\"id\";i:16868;s:5:\"title\";s:40:\"Virtual Assistant – Online Service\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/01/Virtual-Assistant-250x280-1.png\";s:12:\"tmpl_created\";i:1610465656;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/virtual-assistant-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:46:\"[\"Assistant\",\"Landing Pages\",\"Online Service\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:793;s:11:\"trend_index\";i:757;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:276;a:20:{s:4:\"tmpl\";i:673;s:2:\"id\";i:8526;s:5:\"title\";s:11:\"404 page 09\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/009.jpg\";s:12:\"tmpl_created\";i:1526415474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:477;s:11:\"trend_index\";i:285;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:277;a:20:{s:4:\"tmpl\";i:1228;s:2:\"id\";i:21104;s:5:\"title\";s:26:\"Restaurant – Contact\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/11-Contact-Restaurant.jpg\";s:12:\"tmpl_created\";i:1638800146;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/restaurant-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:60:\"[\"Contact\",\"Food\",\"Form\",\"Google Maps\",\"Info\",\"Testimonial\"]\";s:10:\"menu_order\";i:39;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:278;a:20:{s:4:\"tmpl\";i:1140;s:2:\"id\";i:16812;s:5:\"title\";s:40:\"Construction Project – Real Estate\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Construction-Project.png\";s:12:\"tmpl_created\";i:1610463582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/construction-project-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:59:\"[\"Construction\",\"Landing Pages\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:796;s:11:\"trend_index\";i:724;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:279;a:20:{s:4:\"tmpl\";i:1244;s:2:\"id\";i:21393;s:5:\"title\";s:34:\"Interior Designer – Projects\";s:9:\"thumbnail\";s:99:\"https://library.elementor.com/wp-content/uploads/2021/12/big-22-Projects-Interior-Designer-New.jpeg\";s:12:\"tmpl_created\";i:1638823945;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/interior-designer-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:93:\"[\"Creative\",\"Creative Portfolio\",\"Design\",\"Designer\",\"Interior Design\",\"Portfolio\",\"Project\"]\";s:10:\"menu_order\";i:40;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:280;a:20:{s:4:\"tmpl\";i:1148;s:2:\"id\";i:16960;s:5:\"title\";s:44:\"Dog & Cat Food Delivery – Business\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2021/01/Dog-Food.png\";s:12:\"tmpl_created\";i:1610533581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/dog-cat-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:71:\"[\"Business\",\"Cat\",\"Delivery\",\"Dog\",\"Food\",\"Landing Pages\",\"Pet\",\"Pets\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:782;s:11:\"trend_index\";i:510;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:281;a:20:{s:4:\"tmpl\";i:670;s:2:\"id\";i:8525;s:5:\"title\";s:11:\"404 page 08\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2018/05/008.jpg\";s:12:\"tmpl_created\";i:1526415374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/404-page-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:510;s:11:\"trend_index\";i:575;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:282;a:20:{s:4:\"tmpl\";i:1251;s:2:\"id\";i:22143;s:5:\"title\";s:33:\"Fashion Store – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/05/Library-Pic-Fashion-Store.png\";s:12:\"tmpl_created\";i:1647177389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/fashion-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Coming Soon\",\"Fashion\",\"Landing Pages\",\"Shop\",\"store\"]\";s:10:\"menu_order\";i:41;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:283;a:20:{s:4:\"tmpl\";i:1155;s:2:\"id\";i:17095;s:5:\"title\";s:36:\"Mobile Pet Grooming – Business\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Mobile-Pet-Grooming.png\";s:12:\"tmpl_created\";i:1610632115;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/mobile-pet-grooming-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:38:\"[\"Dog\",\"Groom\",\"Landing Pages\",\"Pets\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:786;s:11:\"trend_index\";i:731;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:284;a:20:{s:4:\"tmpl\";i:1241;s:2:\"id\";i:21451;s:5:\"title\";s:26:\"Exhibition – Gallery\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/12/21-Gallery-Exhibition.jpg\";s:12:\"tmpl_created\";i:1638821855;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/exhibition-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:74:\"[\"Art\",\"Creative\",\"Creative Portfolio\",\"Exhibition\",\"Gallery\",\"Portfolio\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:285;a:20:{s:4:\"tmpl\";i:502;s:2:\"id\";i:5438;s:5:\"title\";s:7:\"About 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_4.png\";s:12:\"tmpl_created\";i:1520443512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:42;s:16:\"popularity_index\";i:147;s:11:\"trend_index\";i:9;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:286;a:20:{s:4:\"tmpl\";i:1159;s:2:\"id\";i:17245;s:5:\"title\";s:34:\"Marketing Course – Education\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2021/01/PPC.png\";s:12:\"tmpl_created\";i:1610902958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/marketing-course-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"Education\";s:4:\"tags\";s:45:\"[\"Course Online\",\"Landing Pages\",\"Marketing\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:770;s:11:\"trend_index\";i:430;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:287;a:20:{s:4:\"tmpl\";i:1240;s:2:\"id\";i:21430;s:5:\"title\";s:30:\"Travel Blogger – Gallery\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/12/19-Gallery-Travel-Blogger.jpg\";s:12:\"tmpl_created\";i:1638821592;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/travel-blogger-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:43:\"[\"Gallery\",\"Photography\",\"Slider\",\"Travel\"]\";s:10:\"menu_order\";i:43;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:288;a:20:{s:4:\"tmpl\";i:1149;s:2:\"id\";i:16983;s:5:\"title\";s:41:\"Pilates Instructor – Online Service\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2021/01/Pilates-Instructor.png\";s:12:\"tmpl_created\";i:1610534138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:135:\"https://library.elementor.com/lp/pilates-instructor-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:70:\"[\"Free Trial\",\"Instructor\",\"Landing Pages\",\"Online Service\",\"Pilates\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:778;s:11:\"trend_index\";i:412;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:289;a:20:{s:4:\"tmpl\";i:1416;s:2:\"id\";i:24104;s:5:\"title\";s:33:\"Ceramics Shop – Coming Soon\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Ceramics-Shop.jpg\";s:12:\"tmpl_created\";i:1650988949;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/ceramics-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:44;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:290;a:20:{s:4:\"tmpl\";i:557;s:2:\"id\";i:6135;s:5:\"title\";s:8:\"About 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_2.png\";s:12:\"tmpl_created\";i:1520443663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:77;s:11:\"trend_index\";i:47;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:291;a:20:{s:4:\"tmpl\";i:1412;s:2:\"id\";i:24033;s:5:\"title\";s:37:\"Dance Studio – Maintenance Mode\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Dance-Studio.jpg\";s:12:\"tmpl_created\";i:1649881344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/dance-studio-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:113:\"[\"Academy\",\"Business\",\"Dance Studio\",\"Form\",\"Pilates\",\"School\",\"Sport\",\"Teacher\",\"Training\",\"Under Construction\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:292;a:20:{s:4:\"tmpl\";i:1190;s:2:\"id\";i:18568;s:5:\"title\";s:32:\"Flower Delivery – Business\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/04/Flower-Delivery.png\";s:12:\"tmpl_created\";i:1617546716;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/flower-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:37:\"[\"Delivery\",\"Flower\",\"Landing Pages\"]\";s:10:\"menu_order\";i:45;s:16:\"popularity_index\";i:874;s:11:\"trend_index\";i:763;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:293;a:20:{s:4:\"tmpl\";i:1145;s:2:\"id\";i:16917;s:5:\"title\";s:22:\"Webinar – Events\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/01/Webinar-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610466822;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/lp/webinar-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:36:\"[\"Events\",\"Landing Pages\",\"Webinar\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:821;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:294;a:20:{s:4:\"tmpl\";i:1413;s:2:\"id\";i:24049;s:5:\"title\";s:33:\"ECO Shop – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-ECO-Shop.jpg\";s:12:\"tmpl_created\";i:1649882053;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/eco-shop-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:110:\"[\"Aesthetic\",\"Business\",\"Creative\",\"Decor\",\"Health\",\"Help\",\"Lifestyle\",\"Products\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:295;a:20:{s:4:\"tmpl\";i:497;s:2:\"id\";i:5397;s:5:\"title\";s:8:\"About 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1.png\";s:12:\"tmpl_created\";i:1520443503;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:46;s:16:\"popularity_index\";i:148;s:11:\"trend_index\";i:43;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:296;a:20:{s:4:\"tmpl\";i:1154;s:2:\"id\";i:17079;s:5:\"title\";s:42:\"Calls Volunteer – Social Involvement\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Calls-Volunteer.png\";s:12:\"tmpl_created\";i:1610631774;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/calls-volunteer-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Social Involvement\";s:4:\"tags\";s:68:\"[\"Care\",\"Covid-19\",\"Help\",\"Involvement\",\"Landing Pages\",\"Volunteer\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:854;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:297;a:20:{s:4:\"tmpl\";i:1419;s:2:\"id\";i:24136;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Food-Blog.jpg\";s:12:\"tmpl_created\";i:1650990034;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:62:\"[\"Blog\",\"Business\",\"Coming Soon\",\"Cooking\",\"Education\",\"Food\"]\";s:10:\"menu_order\";i:47;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:298;a:20:{s:4:\"tmpl\";i:1142;s:2:\"id\";i:16836;s:5:\"title\";s:33:\"Marketing Agency – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/01/Marketing-Agency-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610464490;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/marketing-agency-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:74:\"[\"Agency\",\"Business\",\"Landing Pages\",\"Marketing\",\"Marketing Landing Page\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:816;s:11:\"trend_index\";i:787;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:299;a:20:{s:4:\"tmpl\";i:1411;s:2:\"id\";i:24020;s:5:\"title\";s:35:\"Mobile App – Maintenance Mode\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Mobile-App.jpg\";s:12:\"tmpl_created\";i:1649880955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/mobile-app-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:77:\"[\"App\",\"Business\",\"Coding\",\"Computer\",\"Launch\",\"Mobile\",\"Under Construction\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:300;a:20:{s:4:\"tmpl\";i:498;s:2:\"id\";i:5405;s:5:\"title\";s:8:\"About 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1.png\";s:12:\"tmpl_created\";i:1520443505;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:48;s:16:\"popularity_index\";i:216;s:11:\"trend_index\";i:50;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:301;a:20:{s:4:\"tmpl\";i:1139;s:2:\"id\";i:16785;s:5:\"title\";s:42:\"Gym Promotion – Health & Fitness\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2021/01/Gym-LP.jpg\";s:12:\"tmpl_created\";i:1610455496;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/gym-promotion-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:42:\"[\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:820;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:302;a:20:{s:4:\"tmpl\";i:1420;s:2:\"id\";i:24152;s:5:\"title\";s:32:\"Perfume Shop – Coming Soon\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Perfume-Shop.jpg\";s:12:\"tmpl_created\";i:1650990353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/perfume-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:68:\"[\"Business\",\"Coming Soon\",\"Cosmetics\",\"Lifestyle\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:49;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:303;a:20:{s:4:\"tmpl\";i:1185;s:2:\"id\";i:18492;s:5:\"title\";s:34:\"Bicycle Pre-Sale – eCommerce\";s:9:\"thumbnail\";s:90:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Bike-Landing-Page.png\";s:12:\"tmpl_created\";i:1617535552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/lp/bicycle-pre-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:34:\"[\"Bicycle\",\"Landing Pages\",\"Sale\"]\";s:10:\"menu_order\";i:50;s:16:\"popularity_index\";i:871;s:11:\"trend_index\";i:826;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:304;a:20:{s:4:\"tmpl\";i:1418;s:2:\"id\";i:24126;s:5:\"title\";s:28:\"Skincare – Coming Soon\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Skincare.jpg\";s:12:\"tmpl_created\";i:1650989585;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/skincare-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:128:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Coming Soon\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Services\",\"Skincare\",\"Treatment\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:305;a:20:{s:4:\"tmpl\";i:1181;s:2:\"id\";i:18349;s:5:\"title\";s:39:\"Virtual try-on glasses – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-8.png\";s:12:\"tmpl_created\";i:1614772569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/virtual-try-on-glasses-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:64:\"[\"Fashion\",\"Glasses\",\"Landing Pages\",\"Online Service\",\"Virtual\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:848;s:11:\"trend_index\";i:803;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:306;a:20:{s:4:\"tmpl\";i:500;s:2:\"id\";i:5421;s:5:\"title\";s:8:\"About 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_3.png\";s:12:\"tmpl_created\";i:1520443509;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:51;s:16:\"popularity_index\";i:215;s:11:\"trend_index\";i:77;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:307;a:20:{s:4:\"tmpl\";i:513;s:2:\"id\";i:5533;s:5:\"title\";s:8:\"About 15\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_10.png\";s:12:\"tmpl_created\";i:1520443534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:21;s:11:\"trend_index\";i:57;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:308;a:20:{s:4:\"tmpl\";i:1410;s:2:\"id\";i:24004;s:5:\"title\";s:33:\"Skincare – Maintenance Mode\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2022/04/Maintenance-Mode-Skincare.jpg\";s:12:\"tmpl_created\";i:1649880534;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/skincare-maintenance-mode/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:144:\"[\"Aesthetic\",\"Beauty\",\"Beauty Salon\",\"Business\",\"Cosmetics\",\"Girly\",\"Lifestyle\",\"Makeup\",\"Services\",\"Skincare\",\"Treatment\",\"Under Construction\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:309;a:20:{s:4:\"tmpl\";i:1172;s:2:\"id\";i:17458;s:5:\"title\";s:31:\"Moving Company – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Moving-Company.png\";s:12:\"tmpl_created\";i:1612727025;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/moving-company-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"Landing Pages\",\"Movers\",\"Moving\"]\";s:10:\"menu_order\";i:52;s:16:\"popularity_index\";i:826;s:11:\"trend_index\";i:767;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:310;a:20:{s:4:\"tmpl\";i:1415;s:2:\"id\";i:24092;s:5:\"title\";s:29:\"Vase Shop – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2022/04/Coming-Soon-Vase-Shop.jpg\";s:12:\"tmpl_created\";i:1650988613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/vase-shop-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:115:\"[\"Art\",\"Business\",\"Coming Soon\",\"Creative\",\"Decor\",\"Design\",\"Furniture Design\",\"Interior Design\",\"Products\",\"Shop\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:311;a:20:{s:4:\"tmpl\";i:1186;s:2:\"id\";i:18517;s:5:\"title\";s:29:\"Food Blog – Coming Soon\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Food-Blog.png\";s:12:\"tmpl_created\";i:1617539897;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/food-blog-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:45:\"[\"Blog\",\"Coming Soon\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:53;s:16:\"popularity_index\";i:844;s:11:\"trend_index\";i:672;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:312;a:20:{s:4:\"tmpl\";i:1167;s:2:\"id\";i:17379;s:5:\"title\";s:33:\"IT Service – Online Service\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-IT-Service.png\";s:12:\"tmpl_created\";i:1612713022;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/it-service-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:41:\"[\"IT\",\"Landing Pages\",\"Remote\",\"Support\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:806;s:11:\"trend_index\";i:634;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:313;a:20:{s:4:\"tmpl\";i:1248;s:2:\"id\";i:22134;s:5:\"title\";s:32:\"Art Magazine – Coming Soon\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/10/Art-Magazine-Coming-Soon-250x280-1.jpg\";s:12:\"tmpl_created\";i:1647176713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/art-magazine-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Art\",\"Coming Soon\",\"Landing Pages\",\"Magazine\"]\";s:10:\"menu_order\";i:54;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:314;a:20:{s:4:\"tmpl\";i:512;s:2:\"id\";i:5525;s:5:\"title\";s:8:\"About 14\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_10.png\";s:12:\"tmpl_created\";i:1520443532;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:9;s:11:\"trend_index\";i:29;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:315;a:20:{s:4:\"tmpl\";i:1189;s:2:\"id\";i:18560;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1617542761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:146:\"https://library.elementor.com/lp/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:843;s:11:\"trend_index\";i:561;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:316;a:20:{s:4:\"tmpl\";i:1225;s:2:\"id\";i:21041;s:5:\"title\";s:41:\"Business Consulting Company – About\";s:9:\"thumbnail\";s:96:\"https://library.elementor.com/wp-content/uploads/2021/12/8-About-Business-Consulting-Company.jpg\";s:12:\"tmpl_created\";i:1638797560;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/business-consulting-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"Coach\",\"Collaboration\",\"Consulting\",\"Life Coach\"]\";s:10:\"menu_order\";i:55;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:317;a:20:{s:4:\"tmpl\";i:1187;s:2:\"id\";i:18528;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1617541784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/lp/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:872;s:11:\"trend_index\";i:819;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:318;a:20:{s:4:\"tmpl\";i:1243;s:2:\"id\";i:21135;s:5:\"title\";s:28:\"Construction – Service\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/12/13-Service-Construction.jpg\";s:12:\"tmpl_created\";i:1638823202;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/construction-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:48:\"[\"Architecture\",\"Construction\",\"Faq\",\"Services\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:319;a:20:{s:4:\"tmpl\";i:501;s:2:\"id\";i:5429;s:5:\"title\";s:8:\"About 16\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_4.png\";s:12:\"tmpl_created\";i:1520443510;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:56;s:16:\"popularity_index\";i:59;s:11:\"trend_index\";i:8;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:320;a:20:{s:4:\"tmpl\";i:1174;s:2:\"id\";i:17504;s:5:\"title\";s:29:\"Hair Stylist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-3.png\";s:12:\"tmpl_created\";i:1612883014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/lp/hair-stylist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:59:\"[\"Business\",\"Hair\",\"hairdresser\",\"Landing Pages\",\"Stylist\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:840;s:11:\"trend_index\";i:806;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:321;a:20:{s:4:\"tmpl\";i:1223;s:2:\"id\";i:20981;s:5:\"title\";s:37:\"Creative Digital Agency – About\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2021/12/6-About-Creative-Digital-Agency.jpg\";s:12:\"tmpl_created\";i:1638789303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/creative-digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:51:\"[\"About\",\"Advisor\",\"Creative\",\"Creative Portfolio\"]\";s:10:\"menu_order\";i:57;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:322;a:20:{s:4:\"tmpl\";i:1184;s:2:\"id\";i:18449;s:5:\"title\";s:45:\"Aesthetic Clinic – Health & Fitness\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/03/Aesthetic-Clinic.png\";s:12:\"tmpl_created\";i:1616682181;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/aesthetic-clinic-health-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Health and Fitness\";s:4:\"tags\";s:57:\"[\"Aesthetic\",\"Beauty\",\"Fitness\",\"Health\",\"Landing Pages\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:859;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:323;a:20:{s:4:\"tmpl\";i:1221;s:2:\"id\";i:20926;s:5:\"title\";s:33:\"Doctors Online Consultation -Home\";s:9:\"thumbnail\";s:95:\"https://library.elementor.com/wp-content/uploads/2021/12/4-Home-Doctors-Online-Consultation.jpg\";s:12:\"tmpl_created\";i:1638787371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/doctors-online-consultation-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:35:\"[\"App\",\"Health\",\"Medical\",\"Online\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:324;a:20:{s:4:\"tmpl\";i:505;s:2:\"id\";i:5464;s:5:\"title\";s:8:\"About 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_6.png\";s:12:\"tmpl_created\";i:1520443518;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:58;s:16:\"popularity_index\";i:220;s:11:\"trend_index\";i:142;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:325;a:20:{s:4:\"tmpl\";i:1165;s:2:\"id\";i:17353;s:5:\"title\";s:44:\"Online Cooking Course – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-2.png\";s:12:\"tmpl_created\";i:1612705144;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:138:\"https://library.elementor.com/lp/online-cooking-course-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:50:\"[\"Cooking\",\"Course Online\",\"Food\",\"Landing Pages\"]\";s:10:\"menu_order\";i:59;s:16:\"popularity_index\";i:845;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:326;a:20:{s:4:\"tmpl\";i:1188;s:2:\"id\";i:18550;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1617542506;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/lp/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:832;s:11:\"trend_index\";i:600;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:327;a:20:{s:4:\"tmpl\";i:1250;s:2:\"id\";i:22140;s:5:\"title\";s:33:\"Design School – Coming Soon\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/05/250x280-1.png\";s:12:\"tmpl_created\";i:1647177317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/design-school-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:49:\"[\"Coming Soon\",\"Design\",\"Landing Pages\",\"School\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:328;a:20:{s:4:\"tmpl\";i:510;s:2:\"id\";i:5504;s:5:\"title\";s:8:\"About 18\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_9.png\";s:12:\"tmpl_created\";i:1520443528;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:60;s:16:\"popularity_index\";i:104;s:11:\"trend_index\";i:46;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:329;a:20:{s:4:\"tmpl\";i:1191;s:2:\"id\";i:18539;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1617610273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:18:\"Under Construction\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:61;s:16:\"popularity_index\";i:876;s:11:\"trend_index\";i:652;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:330;a:20:{s:4:\"tmpl\";i:1175;s:2:\"id\";i:18270;s:5:\"title\";s:24:\"Open week – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280.png\";s:12:\"tmpl_created\";i:1614767186;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/lp/open-week-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"Events\";s:4:\"tags\";s:59:\"[\"Education\",\"Event\",\"Events\",\"Landing Pages\",\"University\"]\";s:10:\"menu_order\";i:62;s:16:\"popularity_index\";i:831;s:11:\"trend_index\";i:673;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:331;a:20:{s:4:\"tmpl\";i:1177;s:2:\"id\";i:18300;s:5:\"title\";s:30:\"Makeup Artist – Business\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-2.png\";s:12:\"tmpl_created\";i:1614768608;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/makeup-artist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Beauty\",\"Business\",\"Course Online\",\"Landing Pages\",\"Makeup\",\"Online Service\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:861;s:11:\"trend_index\";i:783;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:332;a:20:{s:4:\"tmpl\";i:511;s:2:\"id\";i:5515;s:5:\"title\";s:8:\"About 19\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_9.png\";s:12:\"tmpl_created\";i:1520443530;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:63;s:16:\"popularity_index\";i:268;s:11:\"trend_index\";i:161;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:333;a:20:{s:4:\"tmpl\";i:1179;s:2:\"id\";i:18329;s:5:\"title\";s:63:\"Online Real Estate Investment Conference – Online Service\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/03/250x280-5.png\";s:12:\"tmpl_created\";i:1614770404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:157:\"https://library.elementor.com/lp/online-real-estate-investment-conference-online-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Online Service\";s:4:\"tags\";s:76:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Online Event\",\"Real estate\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:866;s:11:\"trend_index\";i:779;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:334;a:20:{s:4:\"tmpl\";i:506;s:2:\"id\";i:5472;s:5:\"title\";s:7:\"About 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_7.png\";s:12:\"tmpl_created\";i:1520443520;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:64;s:16:\"popularity_index\";i:210;s:11:\"trend_index\";i:116;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:335;a:20:{s:4:\"tmpl\";i:1183;s:2:\"id\";i:18391;s:5:\"title\";s:45:\"Children’s Optometrist – Business\";s:9:\"thumbnail\";s:94:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Childrens-Optometrist.png\";s:12:\"tmpl_created\";i:1614773564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/childrens-optometrist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:85:\"[\"Business\",\"Children\",\"Eye\",\"Glasses\",\"Health\",\"Kids\",\"Landing Pages\",\"Optometrist\"]\";s:10:\"menu_order\";i:65;s:16:\"popularity_index\";i:877;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:336;a:20:{s:4:\"tmpl\";i:1182;s:2:\"id\";i:18366;s:5:\"title\";s:30:\"Car Insurance – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Car-Insurance.png\";s:12:\"tmpl_created\";i:1614773263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/car-insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:46:\"[\"Business\",\"car\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:869;s:11:\"trend_index\";i:797;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:337;a:20:{s:4:\"tmpl\";i:1201;s:2:\"id\";i:19144;s:5:\"title\";s:25:\"Birthday Party Invitation\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/06/250x280.png\";s:12:\"tmpl_created\";i:1623848691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/birthday-party-invitation/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:67:\"[\"Birthday\",\"Event\",\"Landing Pages\",\"Party\",\"RSVD\",\"Save the Date\"]\";s:10:\"menu_order\";i:66;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:338;a:20:{s:4:\"tmpl\";i:1124;s:2:\"id\";i:16473;s:5:\"title\";s:26:\"Beauty Salon – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/about-1.jpg\";s:12:\"tmpl_created\";i:1608622373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/beauty-salon-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:615;s:11:\"trend_index\";i:184;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:339;a:20:{s:4:\"tmpl\";i:1176;s:2:\"id\";i:18291;s:5:\"title\";s:47:\"Grill Restaurant Food Delivery – Business\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Food-Delivery-LP.png\";s:12:\"tmpl_created\";i:1614767830;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:141:\"https://library.elementor.com/lp/grill-restaurant-food-delivery-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:79:\"[\"Delivery\",\"Delivery Service\",\"Fast Food\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:819;s:11:\"trend_index\";i:685;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:340;a:20:{s:4:\"tmpl\";i:504;s:2:\"id\";i:5455;s:5:\"title\";s:8:\"About 20\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_6.png\";s:12:\"tmpl_created\";i:1520443516;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:67;s:16:\"popularity_index\";i:134;s:11:\"trend_index\";i:70;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:341;a:20:{s:4:\"tmpl\";i:1125;s:2:\"id\";i:16488;s:5:\"title\";s:28:\"Beauty Salon – Contact\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/12/contact.jpg\";s:12:\"tmpl_created\";i:1608622374;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:548;s:11:\"trend_index\";i:101;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:342;a:20:{s:4:\"tmpl\";i:1180;s:2:\"id\";i:18340;s:5:\"title\";s:30:\"Restaurant – Coming Soon\";s:9:\"thumbnail\";s:98:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Restuarant-Coming-Soon-LP.png\";s:12:\"tmpl_created\";i:1614772183;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/lp/restaurant-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:16:\"Coming Soon Page\";s:4:\"tags\";s:51:\"[\"Coming Soon\",\"Food\",\"Landing Pages\",\"Restaurant\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:810;s:11:\"trend_index\";i:809;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:343;a:20:{s:4:\"tmpl\";i:499;s:2:\"id\";i:5413;s:5:\"title\";s:8:\"About 21\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2.png\";s:12:\"tmpl_created\";i:1520443507;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/about-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:68;s:16:\"popularity_index\";i:83;s:11:\"trend_index\";i:52;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:344;a:20:{s:4:\"tmpl\";i:1126;s:2:\"id\";i:16496;s:5:\"title\";s:28:\"Beauty Salon – Gallery\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/12/gallery-1.jpg\";s:12:\"tmpl_created\";i:1608622379;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/beauty-salon-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:491;s:11:\"trend_index\";i:90;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:345;a:20:{s:4:\"tmpl\";i:1173;s:2:\"id\";i:17480;s:5:\"title\";s:42:\"At-home Massage Therapist – Business\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/02/At-Home-Massage-Therapist.jpg\";s:12:\"tmpl_created\";i:1612879264;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/lp/at-home-massage-therapist-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:60:\"[\"Business\",\"Health\",\"Landing Pages\",\"Services\",\"Therapist\"]\";s:10:\"menu_order\";i:69;s:16:\"popularity_index\";i:856;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:346;a:20:{s:4:\"tmpl\";i:1127;s:2:\"id\";i:16457;s:5:\"title\";s:25:\"Beauty Salon – Home\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/home-1.jpg\";s:12:\"tmpl_created\";i:1608622383;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/beauty-salon-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:408;s:11:\"trend_index\";i:56;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:347;a:20:{s:4:\"tmpl\";i:1178;s:2:\"id\";i:18317;s:5:\"title\";s:26:\"Insurance – Business\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2021/03/Library-Pic-Life-Insirance.png\";s:12:\"tmpl_created\";i:1614769488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/lp/insurance-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"Business\";s:4:\"tags\";s:61:\"[\"Business\",\"Family\",\"Financial\",\"Insurance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:70;s:16:\"popularity_index\";i:870;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:348;a:20:{s:4:\"tmpl\";i:1128;s:2:\"id\";i:16518;s:5:\"title\";s:29:\"Beauty Salon – Services\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/12/services-1.jpg\";s:12:\"tmpl_created\";i:1608622386;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/beauty-salon-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:23:\"[\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:664;s:11:\"trend_index\";i:261;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:349;a:20:{s:4:\"tmpl\";i:1168;s:2:\"id\";i:17401;s:5:\"title\";s:40:\"Conference Thank You Page – Events\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280.png\";s:12:\"tmpl_created\";i:1612724753;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/lp/conference-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:59:\"[\"Conference\",\"Event\",\"Events\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:799;s:11:\"trend_index\";i:540;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:350;a:20:{s:4:\"tmpl\";i:503;s:2:\"id\";i:5447;s:5:\"title\";s:7:\"About 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_5.png\";s:12:\"tmpl_created\";i:1520443514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:71;s:16:\"popularity_index\";i:48;s:11:\"trend_index\";i:12;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:351;a:20:{s:4:\"tmpl\";i:1073;s:2:\"id\";i:15486;s:5:\"title\";s:25:\"Travel Blog – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/11/About.jpg\";s:12:\"tmpl_created\";i:1606215720;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/travel-blog-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:608;s:11:\"trend_index\";i:343;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:352;a:20:{s:4:\"tmpl\";i:1166;s:2:\"id\";i:17368;s:5:\"title\";s:38:\"Real Estate Agency – Real-Estate\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Real-Estate.png\";s:12:\"tmpl_created\";i:1612711814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/lp/real-estate-agency-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:73:\"[\"Landing Pages\",\"listing\",\"Real estate\",\"Realestate\",\"realtor\",\"realty\"]\";s:10:\"menu_order\";i:72;s:16:\"popularity_index\";i:858;s:11:\"trend_index\";i:777;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:353;a:20:{s:4:\"tmpl\";i:1074;s:2:\"id\";i:15478;s:5:\"title\";s:27:\"Travel Blog – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/11/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1606215735;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-blog-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:687;s:11:\"trend_index\";i:564;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:354;a:20:{s:4:\"tmpl\";i:1170;s:2:\"id\";i:17423;s:5:\"title\";s:57:\"Volunteer Calls Thank You Page – Social Involvement\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2021/02/Volunteer-Calls-TYP.jpg\";s:12:\"tmpl_created\";i:1612726058;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:151:\"https://library.elementor.com/lp/volunteer-calls-thank-you-page-social-involvement/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:62:\"[\"Care\",\"Involvement\",\"Landing Pages\",\"Thank You\",\"Volunteer\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:857;s:11:\"trend_index\";i:818;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:355;a:20:{s:4:\"tmpl\";i:507;s:2:\"id\";i:5480;s:5:\"title\";s:7:\"About 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_7-1.png\";s:12:\"tmpl_created\";i:1520443522;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-4-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:73;s:16:\"popularity_index\";i:428;s:11:\"trend_index\";i:303;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:356;a:20:{s:4:\"tmpl\";i:1075;s:2:\"id\";i:15467;s:5:\"title\";s:24:\"Travel Blog – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/11/Home.jpg\";s:12:\"tmpl_created\";i:1606215756;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-blog-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:567;s:11:\"trend_index\";i:224;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:357;a:20:{s:4:\"tmpl\";i:1169;s:2:\"id\";i:17409;s:5:\"title\";s:37:\"Webinar Thank You Page – Events\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/02/Library-Pic-Webinar-TYP.png\";s:12:\"tmpl_created\";i:1612725644;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/lp/webinar-thank-you-page-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:56:\"[\"Event\",\"Events\",\"Landing Pages\",\"Thank You\",\"Webinar\"]\";s:10:\"menu_order\";i:74;s:16:\"popularity_index\";i:868;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:358;a:20:{s:4:\"tmpl\";i:1056;s:2:\"id\";i:15317;s:5:\"title\";s:25:\"Dance Studio – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/10/Home.jpg\";s:12:\"tmpl_created\";i:1603181291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/dance-studio-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:596;s:11:\"trend_index\";i:301;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:359;a:20:{s:4:\"tmpl\";i:545;s:2:\"id\";i:6027;s:5:\"title\";s:7:\"About 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_1-1.png\";s:12:\"tmpl_created\";i:1520443639;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-5-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:40;s:11:\"trend_index\";i:40;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:360;a:20:{s:4:\"tmpl\";i:1160;s:2:\"id\";i:17258;s:5:\"title\";s:32:\"Beauty Product – eCommerce\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2021/01/Beauty-Product.png\";s:12:\"tmpl_created\";i:1610903153;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/lp/beauty-product-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:38:\"[\"Beauty\",\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:75;s:16:\"popularity_index\";i:797;s:11:\"trend_index\";i:703;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:361;a:20:{s:4:\"tmpl\";i:1057;s:2:\"id\";i:15334;s:5:\"title\";s:26:\"Dance Studio – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/10/About.jpg\";s:12:\"tmpl_created\";i:1603181364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/dance-studio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:626;s:11:\"trend_index\";i:373;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:362;a:20:{s:4:\"tmpl\";i:546;s:2:\"id\";i:6036;s:5:\"title\";s:7:\"About 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_1-1.png\";s:12:\"tmpl_created\";i:1520443641;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/about-6-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:90;s:11:\"trend_index\";i:123;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:363;a:20:{s:4:\"tmpl\";i:1171;s:2:\"id\";i:17435;s:5:\"title\";s:39:\"Gym – App Service – Product\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2021/02/250x280-4.png\";s:12:\"tmpl_created\";i:1612726462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/lp/gym-app-service-product/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"Product\";s:4:\"tags\";s:58:\"[\"App\",\"Fitness\",\"Gym\",\"Health\",\"Landing Pages\",\"Product\"]\";s:10:\"menu_order\";i:76;s:16:\"popularity_index\";i:767;s:11:\"trend_index\";i:577;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:364;a:20:{s:4:\"tmpl\";i:1058;s:2:\"id\";i:15349;s:5:\"title\";s:28:\"Dance Studio – Classes\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes.jpg\";s:12:\"tmpl_created\";i:1603181425;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:629;s:11:\"trend_index\";i:458;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:365;a:20:{s:4:\"tmpl\";i:1156;s:2:\"id\";i:17111;s:5:\"title\";s:33:\"Sunglasses Sale – eCommerce\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2021/01/Sunglasses-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610632408;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/sunglasses-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:59:\"[\"Ecommerce\",\"Fashion\",\"Landing Pages\",\"Sale\",\"Sunglasses\"]\";s:10:\"menu_order\";i:77;s:16:\"popularity_index\";i:812;s:11:\"trend_index\";i:732;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:366;a:20:{s:4:\"tmpl\";i:1055;s:2:\"id\";i:15366;s:5:\"title\";s:29:\"Dance Studio – Schedule\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/10/Classes-Schedule.jpg\";s:12:\"tmpl_created\";i:1603181056;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/dance-studio-schedule/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:698;s:11:\"trend_index\";i:602;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:367;a:20:{s:4:\"tmpl\";i:1157;s:2:\"id\";i:17223;s:5:\"title\";s:25:\"Fashion – eCommerce\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2021/01/Commerce-Fashion.png\";s:12:\"tmpl_created\";i:1610902553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/lp/fashion-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:29:\"[\"Ecommerce\",\"Landing Pages\"]\";s:10:\"menu_order\";i:78;s:16:\"popularity_index\";i:808;s:11:\"trend_index\";i:745;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:368;a:20:{s:4:\"tmpl\";i:1059;s:2:\"id\";i:15373;s:5:\"title\";s:28:\"Dance Studio – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/10/Pricing.jpg\";s:12:\"tmpl_created\";i:1603181678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:731;s:11:\"trend_index\";i:661;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:369;a:20:{s:4:\"tmpl\";i:1151;s:2:\"id\";i:17017;s:5:\"title\";s:28:\"Shoes Sale – eCommerce\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2021/01/Shoes-LP-Library-Pic.jpg\";s:12:\"tmpl_created\";i:1610535361;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/lp/shoes-sale-ecommerce/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"eCommerce\";s:4:\"tags\";s:55:\"[\"Discount\",\"Ecommerce\",\"Landing Pages\",\"Sale\",\"Shoes\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:803;s:11:\"trend_index\";i:642;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:370;a:20:{s:4:\"tmpl\";i:508;s:2:\"id\";i:5488;s:5:\"title\";s:7:\"About 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_8.png\";s:12:\"tmpl_created\";i:1520443524;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:79;s:16:\"popularity_index\";i:307;s:11:\"trend_index\";i:169;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:371;a:20:{s:4:\"tmpl\";i:1060;s:2:\"id\";i:15384;s:5:\"title\";s:28:\"Dance Studio – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/10/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1603181738;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/dance-studio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:16:\"[\"Dance Studio\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:741;s:11:\"trend_index\";i:721;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:372;a:20:{s:4:\"tmpl\";i:556;s:2:\"id\";i:6122;s:5:\"title\";s:7:\"About 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_white_2-1.png\";s:12:\"tmpl_created\";i:1520443661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:38;s:11:\"trend_index\";i:26;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:373;a:20:{s:4:\"tmpl\";i:1163;s:2:\"id\";i:17301;s:5:\"title\";s:53:\"Personal Chef – Thank You Page – Business\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2021/01/TYP-Personal-Chef.jpg\";s:12:\"tmpl_created\";i:1610903622;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:139:\"https://library.elementor.com/lp/personal-chef-thank-you-page-business/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:43:\"[\"Chef\",\"Food\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:80;s:16:\"popularity_index\";i:823;s:11:\"trend_index\";i:754;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:374;a:20:{s:4:\"tmpl\";i:1042;s:2:\"id\";i:15158;s:5:\"title\";s:26:\"Psychologist – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/09/About.jpg\";s:12:\"tmpl_created\";i:1600157561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/psychologist-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:618;s:11:\"trend_index\";i:426;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:375;a:20:{s:4:\"tmpl\";i:1164;s:2:\"id\";i:17313;s:5:\"title\";s:60:\"Development Course – Thank You Page – Education\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2021/01/Dev-Course-TYP-.png\";s:12:\"tmpl_created\";i:1610903776;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/lp/development-course-thank-you-page-education/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"Thank You Page\";s:4:\"tags\";s:57:\"[\"Course Online\",\"Education\",\"Landing Pages\",\"Thank You\"]\";s:10:\"menu_order\";i:81;s:16:\"popularity_index\";i:834;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:376;a:20:{s:4:\"tmpl\";i:1045;s:2:\"id\";i:15197;s:5:\"title\";s:28:\"Psychologist – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/09/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1600160499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:666;s:11:\"trend_index\";i:558;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:377;a:20:{s:4:\"tmpl\";i:509;s:2:\"id\";i:5496;s:5:\"title\";s:7:\"About 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/about_black_8-1.png\";s:12:\"tmpl_created\";i:1520443526;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/about-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"about\";s:4:\"tags\";s:9:\"[\"About\"]\";s:10:\"menu_order\";i:82;s:16:\"popularity_index\";i:523;s:11:\"trend_index\";i:453;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:378;a:20:{s:4:\"tmpl\";i:1041;s:2:\"id\";i:15142;s:5:\"title\";s:25:\"Psychologist – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Home.jpg\";s:12:\"tmpl_created\";i:1600156308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/psychologist-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:83;s:16:\"popularity_index\";i:464;s:11:\"trend_index\";i:297;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:379;a:20:{s:4:\"tmpl\";i:1044;s:2:\"id\";i:15188;s:5:\"title\";s:28:\"Psychologist – Pricing\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/09/Pricing.jpg\";s:12:\"tmpl_created\";i:1600159731;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/psychologist-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:732;s:11:\"trend_index\";i:537;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:380;a:20:{s:4:\"tmpl\";i:684;s:2:\"id\";i:8961;s:5:\"title\";s:9:\"archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.1.jpg\";s:12:\"tmpl_created\";i:1528639909;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:84;s:16:\"popularity_index\";i:79;s:11:\"trend_index\";i:15;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:381;a:20:{s:4:\"tmpl\";i:1043;s:2:\"id\";i:15167;s:5:\"title\";s:29:\"Psychologist – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/09/Services.jpg\";s:12:\"tmpl_created\";i:1600158206;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/psychologist-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:85;s:16:\"popularity_index\";i:606;s:11:\"trend_index\";i:379;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:382;a:20:{s:4:\"tmpl\";i:1036;s:2:\"id\";i:14932;s:5:\"title\";s:30:\"Flooring Company – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/08/About.png\";s:12:\"tmpl_created\";i:1597740110;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/flooring-company-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:488;s:11:\"trend_index\";i:319;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:383;a:20:{s:4:\"tmpl\";i:685;s:2:\"id\";i:8969;s:5:\"title\";s:9:\"archive 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.2.jpg\";s:12:\"tmpl_created\";i:1528700014;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:86;s:16:\"popularity_index\";i:250;s:11:\"trend_index\";i:124;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:384;a:20:{s:4:\"tmpl\";i:1037;s:2:\"id\";i:14998;s:5:\"title\";s:32:\"Flooring Company – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/08/Contact-Us.png\";s:12:\"tmpl_created\";i:1597740222;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:87;s:16:\"popularity_index\";i:553;s:11:\"trend_index\";i:380;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:385;a:20:{s:4:\"tmpl\";i:1038;s:2:\"id\";i:14965;s:5:\"title\";s:32:\"Flooring Company – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/08/Gallery.png\";s:12:\"tmpl_created\";i:1597740353;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/flooring-company-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:371;s:11:\"trend_index\";i:291;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:386;a:20:{s:4:\"tmpl\";i:686;s:2:\"id\";i:8973;s:5:\"title\";s:9:\"archive 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.3.jpg\";s:12:\"tmpl_created\";i:1528700205;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:88;s:16:\"popularity_index\";i:176;s:11:\"trend_index\";i:54;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:387;a:20:{s:4:\"tmpl\";i:1282;s:2:\"id\";i:22417;s:5:\"title\";s:52:\"Finance Learning Platform – Under Construction\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Finance-Platform.png\";s:12:\"tmpl_created\";i:1647354987;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/finance-learning-platform-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Finance\",\"Landing Pages\"]\";s:10:\"menu_order\";i:89;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:388;a:20:{s:4:\"tmpl\";i:1040;s:2:\"id\";i:14947;s:5:\"title\";s:33:\"Flooring company – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/08/Services.png\";s:12:\"tmpl_created\";i:1597740551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/flooring-company-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:90;s:16:\"popularity_index\";i:538;s:11:\"trend_index\";i:392;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:389;a:20:{s:4:\"tmpl\";i:1039;s:2:\"id\";i:14901;s:5:\"title\";s:29:\"Flooring Company – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Home.png\";s:12:\"tmpl_created\";i:1597740474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/flooring-company-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:387;s:11:\"trend_index\";i:185;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:390;a:20:{s:4:\"tmpl\";i:687;s:2:\"id\";i:8977;s:5:\"title\";s:9:\"archive 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.4.jpg\";s:12:\"tmpl_created\";i:1528700326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:91;s:16:\"popularity_index\";i:354;s:11:\"trend_index\";i:396;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:391;a:20:{s:4:\"tmpl\";i:1252;s:2:\"id\";i:22146;s:5:\"title\";s:36:\"Home Decor Store – Coming Soon\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Home-Decore.png\";s:12:\"tmpl_created\";i:1647177514;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/home-decor-store-coming-soon/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:57:\"[\"Coming Soon\",\"Decor\",\"Interior Design\",\"Landing Pages\"]\";s:10:\"menu_order\";i:92;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:392;a:20:{s:4:\"tmpl\";i:688;s:2:\"id\";i:8981;s:5:\"title\";s:9:\"archive 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.5.jpg\";s:12:\"tmpl_created\";i:1528700484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:333;s:11:\"trend_index\";i:195;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:393;a:20:{s:4:\"tmpl\";i:1021;s:2:\"id\";i:14737;s:5:\"title\";s:32:\"Luxury Real Estate – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/07/About.png\";s:12:\"tmpl_created\";i:1595313527;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/luxury-real-estate-about-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:93;s:16:\"popularity_index\";i:150;s:11:\"trend_index\";i:447;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:394;a:20:{s:4:\"tmpl\";i:689;s:2:\"id\";i:8985;s:5:\"title\";s:9:\"archive 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.6.jpg\";s:12:\"tmpl_created\";i:1528700612;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:204;s:11:\"trend_index\";i:95;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:395;a:20:{s:4:\"tmpl\";i:1020;s:2:\"id\";i:14756;s:5:\"title\";s:34:\"Luxury Real Estate – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Contact-Us.png\";s:12:\"tmpl_created\";i:1595313519;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/luxury-real-estate-contact-us-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:94;s:16:\"popularity_index\";i:610;s:11:\"trend_index\";i:569;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:396;a:20:{s:4:\"tmpl\";i:1019;s:2:\"id\";i:14716;s:5:\"title\";s:31:\"Luxury Real Estate – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Home.png\";s:12:\"tmpl_created\";i:1595313512;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:95;s:16:\"popularity_index\";i:394;s:11:\"trend_index\";i:165;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:397;a:20:{s:4:\"tmpl\";i:690;s:2:\"id\";i:8989;s:5:\"title\";s:9:\"archive 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.7.jpg\";s:12:\"tmpl_created\";i:1528701063;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:208;s:11:\"trend_index\";i:111;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:398;a:20:{s:4:\"tmpl\";i:1018;s:2:\"id\";i:14763;s:5:\"title\";s:31:\"Luxury Real Estate – News\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/07/news-Archive.png\";s:12:\"tmpl_created\";i:1595313273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/luxury-real-estate-news-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:96;s:16:\"popularity_index\";i:404;s:11:\"trend_index\";i:167;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:399;a:20:{s:4:\"tmpl\";i:1283;s:2:\"id\";i:22423;s:5:\"title\";s:39:\"Online Store – Under Construction\";s:9:\"thumbnail\";s:85:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Online-Store.png\";s:12:\"tmpl_created\";i:1647355154;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/online-store-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:59:\"[\"Landing Pages\",\"Online Shop\",\"Shop\",\"Under Construction\"]\";s:10:\"menu_order\";i:97;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:400;a:20:{s:4:\"tmpl\";i:691;s:2:\"id\";i:8996;s:5:\"title\";s:9:\"archive 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.8.jpg\";s:12:\"tmpl_created\";i:1528701290;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:227;s:11:\"trend_index\";i:153;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:401;a:20:{s:4:\"tmpl\";i:1010;s:2:\"id\";i:13960;s:5:\"title\";s:32:\"Japanese restaurant – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/06/Home-Page.jpg\";s:12:\"tmpl_created\";i:1592289775;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/japanese-restaurant-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:98;s:16:\"popularity_index\";i:537;s:11:\"trend_index\";i:287;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:402;a:20:{s:4:\"tmpl\";i:1284;s:2:\"id\";i:22428;s:5:\"title\";s:40:\"Travel Agency – Under Construction\";s:9:\"thumbnail\";s:88:\"https://library.elementor.com/wp-content/uploads/2021/04/Library-Pic-Travel-Agency-1.png\";s:12:\"tmpl_created\";i:1647355339;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/travel-agency-under-construction/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:56:\"[\"Agency\",\"Landing Pages\",\"Travel\",\"Under Construction\"]\";s:10:\"menu_order\";i:99;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:403;a:20:{s:4:\"tmpl\";i:692;s:2:\"id\";i:9001;s:5:\"title\";s:9:\"archive 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/06/Archive_350.9.jpg\";s:12:\"tmpl_created\";i:1528701433;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/archive-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:265;s:11:\"trend_index\";i:208;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:404;a:20:{s:4:\"tmpl\";i:1007;s:2:\"id\";i:13993;s:5:\"title\";s:45:\"Japanese restaurant – Chef’s Menu\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/06/Chef_s-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/japanese-restaurant-chefs-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:100;s:16:\"popularity_index\";i:651;s:11:\"trend_index\";i:675;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:405;a:20:{s:4:\"tmpl\";i:1006;s:2:\"id\";i:14012;s:5:\"title\";s:36:\"Japanese restaurant – Bar Menu\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/06/Bar-Menu-Page.jpg\";s:12:\"tmpl_created\";i:1592289665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/japanese-restaurant-bar-menu/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:101;s:16:\"popularity_index\";i:735;s:11:\"trend_index\";i:829;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:406;a:20:{s:4:\"tmpl\";i:1005;s:2:\"id\";i:13917;s:5:\"title\";s:33:\"Japanese restaurant – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/06/About-Page.jpg\";s:12:\"tmpl_created\";i:1592289629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/japanese-restaurant-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:102;s:16:\"popularity_index\";i:640;s:11:\"trend_index\";i:389;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:407;a:20:{s:4:\"tmpl\";i:997;s:2:\"id\";i:13528;s:5:\"title\";s:22:\"Barbershop – 404\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/05/404-Page.jpg\";s:12:\"tmpl_created\";i:1589893152;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/barbershop-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:768;s:11:\"trend_index\";i:681;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:408;a:20:{s:4:\"tmpl\";i:1009;s:2:\"id\";i:13937;s:5:\"title\";s:35:\"Japanese restaurant – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1592289748;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/japanese-restaurant-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:103;s:16:\"popularity_index\";i:648;s:11:\"trend_index\";i:551;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:409;a:20:{s:4:\"tmpl\";i:1008;s:2:\"id\";i:14030;s:5:\"title\";s:34:\"Japanese restaurant – Events\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/06/Events-Page.jpg\";s:12:\"tmpl_created\";i:1592289713;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/japanese-restaurant-events/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:104;s:16:\"popularity_index\";i:723;s:11:\"trend_index\";i:711;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:410;a:20:{s:4:\"tmpl\";i:998;s:2:\"id\";i:13518;s:5:\"title\";s:26:\"Barbershop – Archive\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Blog-Page.jpg\";s:12:\"tmpl_created\";i:1589893157;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/barbershop-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:737;s:11:\"trend_index\";i:523;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:411;a:20:{s:4:\"tmpl\";i:1016;s:2:\"id\";i:13984;s:5:\"title\";s:40:\"Japanese restaurant – Reservations\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/reservations.jpg\";s:12:\"tmpl_created\";i:1592294757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/japanese-restaurant-reservations/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:32:\"[\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:105;s:16:\"popularity_index\";i:715;s:11:\"trend_index\";i:727;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:412;a:20:{s:4:\"tmpl\";i:999;s:2:\"id\";i:13479;s:5:\"title\";s:23:\"Barbershop – Home\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/05/Home-Page.jpg\";s:12:\"tmpl_created\";i:1589893275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/barbershop-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:106;s:16:\"popularity_index\";i:683;s:11:\"trend_index\";i:832;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:413;a:20:{s:4:\"tmpl\";i:996;s:2:\"id\";i:13604;s:5:\"title\";s:25:\"Barbershop – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1589893147;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Footer\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:555;s:11:\"trend_index\";i:267;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:414;a:20:{s:4:\"tmpl\";i:1000;s:2:\"id\";i:13503;s:5:\"title\";s:24:\"Barbershop – About\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/05/About-Page.jpg\";s:12:\"tmpl_created\";i:1589893289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/barbershop-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:107;s:16:\"popularity_index\";i:744;s:11:\"trend_index\";i:739;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:415;a:20:{s:4:\"tmpl\";i:995;s:2:\"id\";i:13612;s:5:\"title\";s:25:\"Barbershop – Header\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/06/barber-shop-header.jpg\";s:12:\"tmpl_created\";i:1589893142;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/barbershop-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Barber Shop\",\"Barbershop\",\"Header\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:343;s:11:\"trend_index\";i:137;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:416;a:20:{s:4:\"tmpl\";i:1001;s:2:\"id\";i:13548;s:5:\"title\";s:27:\"Barbershop – Services\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/05/Services-Page.jpg\";s:12:\"tmpl_created\";i:1589893298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/barbershop-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:108;s:16:\"popularity_index\";i:761;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:417;a:20:{s:4:\"tmpl\";i:1002;s:2:\"id\";i:13560;s:5:\"title\";s:26:\"Barbershop – Gallery\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/05/Gallery-Page.jpg\";s:12:\"tmpl_created\";i:1589893307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:109;s:16:\"popularity_index\";i:756;s:11:\"trend_index\";i:822;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:418;a:20:{s:4:\"tmpl\";i:1003;s:2:\"id\";i:13587;s:5:\"title\";s:26:\"Barbershop – Contact\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/05/Contact-Us-Page.jpg\";s:12:\"tmpl_created\";i:1589893315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/barbershop-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:110;s:16:\"popularity_index\";i:753;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:419;a:20:{s:4:\"tmpl\";i:982;s:2:\"id\";i:13307;s:5:\"title\";s:26:\"Online Course – Home\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.jpg\";s:12:\"tmpl_created\";i:1587474541;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/online-course-home/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:230;s:11:\"trend_index\";i:125;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:420;a:20:{s:4:\"tmpl\";i:994;s:2:\"id\";i:13621;s:5:\"title\";s:30:\"Barbershop – Single Post\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/05/Single-Page.jpg\";s:12:\"tmpl_created\";i:1589893137;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/barbershop-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Barber Shop\",\"Barbershop\"]\";s:10:\"menu_order\";i:111;s:16:\"popularity_index\";i:736;s:11:\"trend_index\";i:580;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:421;a:20:{s:4:\"tmpl\";i:1131;s:2:\"id\";i:16527;s:5:\"title\";s:24:\"Beauty Salon – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/12/404.jpg\";s:12:\"tmpl_created\";i:1608622517;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/beauty-salon-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:29:\"[\"404\",\"Beauty Salon\",\"Hair\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:742;s:11:\"trend_index\";i:563;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:422;a:20:{s:4:\"tmpl\";i:983;s:2:\"id\";i:13328;s:5:\"title\";s:27:\"Online Course – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.jpg\";s:12:\"tmpl_created\";i:1587474558;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/online-course-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:112;s:16:\"popularity_index\";i:508;s:11:\"trend_index\";i:429;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:423;a:20:{s:4:\"tmpl\";i:984;s:2:\"id\";i:13338;s:5:\"title\";s:33:\"Online Course – Course Page\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Course-Page.png\";s:12:\"tmpl_created\";i:1587474574;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/online-course-course-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:113;s:16:\"popularity_index\";i:337;s:11:\"trend_index\";i:310;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:424;a:20:{s:4:\"tmpl\";i:985;s:2:\"id\";i:13352;s:5:\"title\";s:29:\"Online Course – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.jpg\";s:12:\"tmpl_created\";i:1587474591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/online-course-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:114;s:16:\"popularity_index\";i:565;s:11:\"trend_index\";i:533;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:425;a:20:{s:4:\"tmpl\";i:1130;s:2:\"id\";i:16535;s:5:\"title\";s:27:\"Beauty Salon – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Footer.jpg\";s:12:\"tmpl_created\";i:1608622498;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Footer\",\"Hair\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:524;s:11:\"trend_index\";i:126;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:426;a:20:{s:4:\"tmpl\";i:971;s:2:\"id\";i:13187;s:5:\"title\";s:33:\"Interior Design – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Home.png\";s:12:\"tmpl_created\";i:1586148661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/interior-design-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:115;s:16:\"popularity_index\";i:331;s:11:\"trend_index\";i:264;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:427;a:20:{s:4:\"tmpl\";i:1453;s:2:\"id\";i:16346;s:5:\"title\";s:33:\"Your New Home – Real Estate\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2017/03/lp3-l.png\";s:12:\"tmpl_created\";i:1660205402;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/lp/your-new-home-real-estate/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:2:\"lp\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:11:\"Real Estate\";s:4:\"tags\";s:31:\"[\"Landing Pages\",\"Real estate\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:-1;s:11:\"trend_index\";i:-1;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:428;a:20:{s:4:\"tmpl\";i:972;s:2:\"id\";i:13199;s:5:\"title\";s:29:\"Interior Design – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/04/About.png\";s:12:\"tmpl_created\";i:1586148666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/interior-design-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:116;s:16:\"popularity_index\";i:316;s:11:\"trend_index\";i:334;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:429;a:20:{s:4:\"tmpl\";i:1129;s:2:\"id\";i:16545;s:5:\"title\";s:27:\"Beauty Salon – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/12/Header.jpg\";s:12:\"tmpl_created\";i:1608622495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/beauty-salon-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:32:\"[\"Beauty Salon\",\"Hair\",\"Header\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:356;s:11:\"trend_index\";i:49;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:430;a:20:{s:4:\"tmpl\";i:973;s:2:\"id\";i:13214;s:5:\"title\";s:32:\"Interior Design – Projects\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/portfolio_s.jpg\";s:12:\"tmpl_created\";i:1586148672;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/interior-design-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:117;s:16:\"popularity_index\";i:367;s:11:\"trend_index\";i:323;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:431;a:20:{s:4:\"tmpl\";i:641;s:2:\"id\";i:7686;s:5:\"title\";s:12:\"Blog Posts 1\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2018/03/blog_posts.png\";s:12:\"tmpl_created\";i:1521558047;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/blog-posts-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:26:\"[\"Archive\",\"Blog\",\"posts\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:131;s:11:\"trend_index\";i:152;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:432;a:20:{s:4:\"tmpl\";i:974;s:2:\"id\";i:13229;s:5:\"title\";s:31:\"Interior Design – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/04/Contact-Us.png\";s:12:\"tmpl_created\";i:1586148677;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/interior-design-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:118;s:16:\"popularity_index\";i:395;s:11:\"trend_index\";i:337;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:433;a:20:{s:4:\"tmpl\";i:959;s:2:\"id\";i:12948;s:5:\"title\";s:29:\"Photography – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Home_s.png\";s:12:\"tmpl_created\";i:1582093442;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/photography-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:119;s:16:\"popularity_index\";i:241;s:11:\"trend_index\";i:201;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:434;a:20:{s:4:\"tmpl\";i:960;s:2:\"id\";i:12798;s:5:\"title\";s:25:\"Photography – About\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/About_s.png\";s:12:\"tmpl_created\";i:1582093446;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/photography-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:499;s:11:\"trend_index\";i:374;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:435;a:20:{s:4:\"tmpl\";i:484;s:2:\"id\";i:5283;s:5:\"title\";s:9:\"Clients 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_2.png\";s:12:\"tmpl_created\";i:1520443478;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:120;s:16:\"popularity_index\";i:294;s:11:\"trend_index\";i:202;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:436;a:20:{s:4:\"tmpl\";i:961;s:2:\"id\";i:12868;s:5:\"title\";s:27:\"Photography – Contact\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Contact_s.png\";s:12:\"tmpl_created\";i:1582093450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/photography-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:121;s:16:\"popularity_index\";i:531;s:11:\"trend_index\";i:350;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:437;a:20:{s:4:\"tmpl\";i:962;s:2:\"id\";i:13056;s:5:\"title\";s:28:\"Photography – Wildlife\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/02/Wildlife_s.png\";s:12:\"tmpl_created\";i:1582093454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/photography-wildlife/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:579;s:11:\"trend_index\";i:656;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:438;a:20:{s:4:\"tmpl\";i:487;s:2:\"id\";i:5306;s:5:\"title\";s:10:\"Clients 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_3.png\";s:12:\"tmpl_created\";i:1520443484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:122;s:16:\"popularity_index\";i:657;s:11:\"trend_index\";i:581;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:439;a:20:{s:4:\"tmpl\";i:963;s:2:\"id\";i:12922;s:5:\"title\";s:37:\"Photography – Glowing Jellyfish\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Jellyfish_S.png\";s:12:\"tmpl_created\";i:1582093457;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/photography-glowing-jellyfish/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:123;s:16:\"popularity_index\";i:628;s:11:\"trend_index\";i:532;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:440;a:20:{s:4:\"tmpl\";i:964;s:2:\"id\";i:12875;s:5:\"title\";s:36:\"Photography – Fluttering Birds\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Birds_s.png\";s:12:\"tmpl_created\";i:1582093461;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-fluttering-birds/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:124;s:16:\"popularity_index\";i:693;s:11:\"trend_index\";i:766;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:441;a:20:{s:4:\"tmpl\";i:965;s:2:\"id\";i:12962;s:5:\"title\";s:26:\"Photography – Nature\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Nature_s.png\";s:12:\"tmpl_created\";i:1582093465;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/photography-nature/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:592;s:11:\"trend_index\";i:778;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:442;a:20:{s:4:\"tmpl\";i:491;s:2:\"id\";i:5341;s:5:\"title\";s:10:\"Clients 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_4.png\";s:12:\"tmpl_created\";i:1520443491;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:125;s:16:\"popularity_index\";i:603;s:11:\"trend_index\";i:633;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:443;a:20:{s:4:\"tmpl\";i:966;s:2:\"id\";i:12833;s:5:\"title\";s:38:\"Photography – Blossoming Flowers\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Flowers_s.png\";s:12:\"tmpl_created\";i:1582093469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/photography-blossoming-flowers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:597;s:11:\"trend_index\";i:750;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:444;a:20:{s:4:\"tmpl\";i:488;s:2:\"id\";i:5315;s:5:\"title\";s:10:\"Clients 12\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4-1.png\";s:12:\"tmpl_created\";i:1520443486;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:126;s:16:\"popularity_index\";i:485;s:11:\"trend_index\";i:263;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:445;a:20:{s:4:\"tmpl\";i:967;s:2:\"id\";i:12898;s:5:\"title\";s:36:\"Photography – Forest Mushrooms\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/02/Mushrooms_s.png\";s:12:\"tmpl_created\";i:1582093473;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/photography-forest-mushrooms/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:127;s:16:\"popularity_index\";i:667;s:11:\"trend_index\";i:649;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:446;a:20:{s:4:\"tmpl\";i:968;s:2:\"id\";i:12994;s:5:\"title\";s:24:\"Photography – Pets\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Pets_s.png\";s:12:\"tmpl_created\";i:1582093477;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/photography-pets/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:128;s:16:\"popularity_index\";i:612;s:11:\"trend_index\";i:508;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:447;a:20:{s:4:\"tmpl\";i:969;s:2:\"id\";i:12805;s:5:\"title\";s:37:\"Photography – B&W Portraits\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/02/Black_s.png\";s:12:\"tmpl_created\";i:1582093481;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/photography-bw-portraits/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:695;s:11:\"trend_index\";i:735;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:448;a:20:{s:4:\"tmpl\";i:490;s:2:\"id\";i:5333;s:5:\"title\";s:10:\"Clients 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_6.png\";s:12:\"tmpl_created\";i:1520443489;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:129;s:16:\"popularity_index\";i:234;s:11:\"trend_index\";i:128;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:449;a:20:{s:4:\"tmpl\";i:970;s:2:\"id\";i:13031;s:5:\"title\";s:33:\"Photography – Vivid Parrots\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/02/Parrots_s.png\";s:12:\"tmpl_created\";i:1582093484;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/photography-vivid-parrots/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:660;s:11:\"trend_index\";i:643;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:450;a:20:{s:4:\"tmpl\";i:496;s:2:\"id\";i:5389;s:5:\"title\";s:10:\"Clients 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_9.png\";s:12:\"tmpl_created\";i:1520443501;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:130;s:16:\"popularity_index\";i:407;s:11:\"trend_index\";i:307;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:451;a:20:{s:4:\"tmpl\";i:940;s:2:\"id\";i:12621;s:5:\"title\";s:26:\"Magazine – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/01/Home_s.png\";s:12:\"tmpl_created\";i:1579060604;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/magazine-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:131;s:16:\"popularity_index\";i:167;s:11:\"trend_index\";i:121;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:452;a:20:{s:4:\"tmpl\";i:936;s:2:\"id\";i:12352;s:5:\"title\";s:24:\"Travel – Home Page\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/12/Home_s.png\";s:12:\"tmpl_created\";i:1575960464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/travel-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:291;s:11:\"trend_index\";i:194;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:453;a:20:{s:4:\"tmpl\";i:486;s:2:\"id\";i:5298;s:5:\"title\";s:10:\"Clients 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_3.png\";s:12:\"tmpl_created\";i:1520443482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:132;s:16:\"popularity_index\";i:465;s:11:\"trend_index\";i:520;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:454;a:20:{s:4:\"tmpl\";i:932;s:2:\"id\";i:12400;s:5:\"title\";s:20:\"Travel – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/12/About.png\";s:12:\"tmpl_created\";i:1575960441;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:133;s:16:\"popularity_index\";i:444;s:11:\"trend_index\";i:445;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:455;a:20:{s:4:\"tmpl\";i:938;s:2:\"id\";i:12479;s:5:\"title\";s:20:\"Travel – Tours\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Tours_s.png\";s:12:\"tmpl_created\";i:1575960474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/travel-tours/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:539;s:11:\"trend_index\";i:726;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:456;a:20:{s:4:\"tmpl\";i:495;s:2:\"id\";i:5381;s:5:\"title\";s:10:\"Clients 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_9.png\";s:12:\"tmpl_created\";i:1520443499;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/clients-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:134;s:16:\"popularity_index\";i:198;s:11:\"trend_index\";i:168;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:457;a:20:{s:4:\"tmpl\";i:937;s:2:\"id\";i:12466;s:5:\"title\";s:27:\"Travel – Testimonials\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/12/Testimonials.png\";s:12:\"tmpl_created\";i:1575960469;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-testimonials/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:135;s:16:\"popularity_index\";i:527;s:11:\"trend_index\";i:481;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:458;a:20:{s:4:\"tmpl\";i:935;s:2:\"id\";i:12443;s:5:\"title\";s:22:\"Travel – Gallery\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/12/Gallery.png\";s:12:\"tmpl_created\";i:1575960459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/travel-gallery/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:136;s:16:\"popularity_index\";i:467;s:11:\"trend_index\";i:501;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:459;a:20:{s:4:\"tmpl\";i:934;s:2:\"id\";i:12431;s:5:\"title\";s:18:\"Travel – FAQ\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/FAQ.png\";s:12:\"tmpl_created\";i:1575960453;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/travel-faq/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:501;s:11:\"trend_index\";i:387;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:460;a:20:{s:4:\"tmpl\";i:493;s:2:\"id\";i:5357;s:5:\"title\";s:9:\"Clients 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_7.png\";s:12:\"tmpl_created\";i:1520443495;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:137;s:16:\"popularity_index\";i:341;s:11:\"trend_index\";i:232;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:461;a:20:{s:4:\"tmpl\";i:933;s:2:\"id\";i:12421;s:5:\"title\";s:27:\"Travel – Contact Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/12/Contsct-Us.png\";s:12:\"tmpl_created\";i:1575960445;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/travel-contact-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:138;s:16:\"popularity_index\";i:571;s:11:\"trend_index\";i:536;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:462;a:20:{s:4:\"tmpl\";i:892;s:2:\"id\";i:11763;s:5:\"title\";s:27:\"Portfolio – Home Page\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Homepage_small.png\";s:12:\"tmpl_created\";i:1569428959;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/portfolio-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:280;s:11:\"trend_index\";i:241;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:463;a:20:{s:4:\"tmpl\";i:485;s:2:\"id\";i:5290;s:5:\"title\";s:9:\"Clients 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_2.png\";s:12:\"tmpl_created\";i:1520443480;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/clients-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:139;s:16:\"popularity_index\";i:545;s:11:\"trend_index\";i:502;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:464;a:20:{s:4:\"tmpl\";i:891;s:2:\"id\";i:11781;s:5:\"title\";s:23:\"Portfolio – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/09/About_small.png\";s:12:\"tmpl_created\";i:1569428955;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/portfolio-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:349;s:11:\"trend_index\";i:290;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:465;a:20:{s:4:\"tmpl\";i:482;s:2:\"id\";i:5266;s:5:\"title\";s:9:\"Clients 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_white_1.png\";s:12:\"tmpl_created\";i:1520443474;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:140;s:16:\"popularity_index\";i:95;s:11:\"trend_index\";i:134;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:466;a:20:{s:4:\"tmpl\";i:890;s:2:\"id\";i:11793;s:5:\"title\";s:26:\"Portfolio – Projects\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Projects_small.png\";s:12:\"tmpl_created\";i:1569428951;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/portfolio-projects/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:141;s:16:\"popularity_index\";i:448;s:11:\"trend_index\";i:467;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:467;a:20:{s:4:\"tmpl\";i:889;s:2:\"id\";i:11800;s:5:\"title\";s:25:\"Portfolio – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/09/Contact_small.png\";s:12:\"tmpl_created\";i:1569428946;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/portfolio-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:142;s:16:\"popularity_index\";i:494;s:11:\"trend_index\";i:449;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:468;a:20:{s:4:\"tmpl\";i:866;s:2:\"id\";i:11163;s:5:\"title\";s:32:\"Digital Agency – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/07/Home_small.png\";s:12:\"tmpl_created\";i:1564641877;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/digital-agency-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:57;s:11:\"trend_index\";i:32;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:469;a:20:{s:4:\"tmpl\";i:483;s:2:\"id\";i:5275;s:5:\"title\";s:9:\"Clients 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/clients_black_1.png\";s:12:\"tmpl_created\";i:1520443476;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:143;s:16:\"popularity_index\";i:334;s:11:\"trend_index\";i:321;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:470;a:20:{s:4:\"tmpl\";i:492;s:2:\"id\";i:5349;s:5:\"title\";s:9:\"Clients 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_7.png\";s:12:\"tmpl_created\";i:1520443493;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:144;s:16:\"popularity_index\";i:233;s:11:\"trend_index\";i:92;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:471;a:20:{s:4:\"tmpl\";i:916;s:2:\"id\";i:12143;s:5:\"title\";s:22:\"Law Firm – About\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2019/11/about.png\";s:12:\"tmpl_created\";i:1572847069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/law-firm-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:350;s:11:\"trend_index\";i:344;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:472;a:20:{s:4:\"tmpl\";i:489;s:2:\"id\";i:5324;s:5:\"title\";s:9:\"Clients 8\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5-1.png\";s:12:\"tmpl_created\";i:1520443488;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:146;s:16:\"popularity_index\";i:526;s:11:\"trend_index\";i:381;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:473;a:20:{s:4:\"tmpl\";i:920;s:2:\"id\";i:12091;s:5:\"title\";s:21:\"Law Firm – Team\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/team.png\";s:12:\"tmpl_created\";i:1572847113;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/law-firm-team/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:147;s:16:\"popularity_index\";i:318;s:11:\"trend_index\";i:314;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:474;a:20:{s:4:\"tmpl\";i:869;s:2:\"id\";i:11129;s:5:\"title\";s:28:\"Digital Agency – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/About_small.png\";s:12:\"tmpl_created\";i:1564641889;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/digital-agency-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:148;s:16:\"popularity_index\";i:182;s:11:\"trend_index\";i:166;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:475;a:20:{s:4:\"tmpl\";i:880;s:2:\"id\";i:11572;s:5:\"title\";s:19:\"Gym – Trainer\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Trainer_Small.png\";s:12:\"tmpl_created\";i:1567392934;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-trainer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:521;s:11:\"trend_index\";i:590;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:476;a:20:{s:4:\"tmpl\";i:494;s:2:\"id\";i:5368;s:5:\"title\";s:9:\"Clients 9\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_8.png\";s:12:\"tmpl_created\";i:1520443497;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/clients-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"clients\";s:4:\"tags\";s:11:\"[\"Clients\"]\";s:10:\"menu_order\";i:149;s:16:\"popularity_index\";i:253;s:11:\"trend_index\";i:273;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:477;a:20:{s:4:\"tmpl\";i:917;s:2:\"id\";i:12133;s:5:\"title\";s:24:\"Law Firm – Careers\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2019/11/careers.png\";s:12:\"tmpl_created\";i:1572847078;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-careers/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:583;s:11:\"trend_index\";i:640;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:478;a:20:{s:4:\"tmpl\";i:425;s:2:\"id\";i:4436;s:5:\"title\";s:11:\"Contact 16\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_2.png\";s:12:\"tmpl_created\";i:1520443293;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:151;s:16:\"popularity_index\";i:161;s:11:\"trend_index\";i:68;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:479;a:20:{s:4:\"tmpl\";i:915;s:2:\"id\";i:12155;s:5:\"title\";s:26:\"Law Firm – Home Page\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2019/11/home.png\";s:12:\"tmpl_created\";i:1572847054;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/law-firm-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:193;s:11:\"trend_index\";i:110;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:480;a:20:{s:4:\"tmpl\";i:423;s:2:\"id\";i:4420;s:5:\"title\";s:9:\"Contact 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_black_1.png\";s:12:\"tmpl_created\";i:1520443289;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-1-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:152;s:16:\"popularity_index\";i:196;s:11:\"trend_index\";i:127;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:481;a:20:{s:4:\"tmpl\";i:921;s:2:\"id\";i:12080;s:5:\"title\";s:24:\"Law Firm – Partner\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/11/partner-1.png\";s:12:\"tmpl_created\";i:1572847120;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-partner/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:153;s:16:\"popularity_index\";i:556;s:11:\"trend_index\";i:471;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:482;a:20:{s:4:\"tmpl\";i:534;s:2:\"id\";i:5836;s:5:\"title\";s:10:\"Contact 10\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:114;s:11:\"trend_index\";i:76;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:483;a:20:{s:4:\"tmpl\";i:865;s:2:\"id\";i:11074;s:5:\"title\";s:31:\"Digital Agency – Services\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/07/Services_small.png\";s:12:\"tmpl_created\";i:1564641872;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/digital-agency-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:154;s:16:\"popularity_index\";i:163;s:11:\"trend_index\";i:170;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:484;a:20:{s:4:\"tmpl\";i:879;s:2:\"id\";i:11506;s:5:\"title\";s:19:\"Gym – Classes\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Classes_Small.png\";s:12:\"tmpl_created\";i:1567392930;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-classes/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:155;s:16:\"popularity_index\";i:514;s:11:\"trend_index\";i:554;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:485;a:20:{s:4:\"tmpl\";i:535;s:2:\"id\";i:5844;s:5:\"title\";s:10:\"Contact 11\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_2.png\";s:12:\"tmpl_created\";i:1520443599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:156;s:16:\"popularity_index\";i:289;s:11:\"trend_index\";i:313;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:486;a:20:{s:4:\"tmpl\";i:922;s:2:\"id\";i:12044;s:5:\"title\";s:24:\"Law Firm – Contact\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/contsct_us.png\";s:12:\"tmpl_created\";i:1572847130;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:437;s:11:\"trend_index\";i:304;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:487;a:20:{s:4:\"tmpl\";i:430;s:2:\"id\";i:4476;s:5:\"title\";s:10:\"Contact 15\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_4.png\";s:12:\"tmpl_created\";i:1520443303;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:157;s:16:\"popularity_index\";i:229;s:11:\"trend_index\";i:187;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:488;a:20:{s:4:\"tmpl\";i:918;s:2:\"id\";i:12124;s:5:\"title\";s:25:\"Law Firm – Services\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/11/services.png\";s:12:\"tmpl_created\";i:1572847096;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/law-firm-services/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:158;s:16:\"popularity_index\";i:433;s:11:\"trend_index\";i:296;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:489;a:20:{s:4:\"tmpl\";i:864;s:2:\"id\";i:11056;s:5:\"title\";s:35:\"Digital Agency – Social Media\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2019/07/Social-Media_small.png\";s:12:\"tmpl_created\";i:1564641867;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/digital-agency-social-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:297;s:11:\"trend_index\";i:361;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:490;a:20:{s:4:\"tmpl\";i:476;s:2:\"id\";i:5214;s:5:\"title\";s:10:\"Contact 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_2.png\";s:12:\"tmpl_created\";i:1520443462;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/contact-16-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:159;s:16:\"popularity_index\";i:194;s:11:\"trend_index\";i:106;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:491;a:20:{s:4:\"tmpl\";i:878;s:2:\"id\";i:11536;s:5:\"title\";s:19:\"Gym – Fitness\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Fitness_Small.png\";s:12:\"tmpl_created\";i:1567392927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-fitness/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:160;s:16:\"popularity_index\";i:621;s:11:\"trend_index\";i:674;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:492;a:20:{s:4:\"tmpl\";i:882;s:2:\"id\";i:11545;s:5:\"title\";s:21:\"Gym – Home Page\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Home_Small.png\";s:12:\"tmpl_created\";i:1567392943;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/gym-home-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:161;s:16:\"popularity_index\";i:310;s:11:\"trend_index\";i:229;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:493;a:20:{s:4:\"tmpl\";i:919;s:2:\"id\";i:12116;s:5:\"title\";s:24:\"Law Firm – Service\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/11/family_law.png\";s:12:\"tmpl_created\";i:1572847105;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/law-firm-service/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:489;s:11:\"trend_index\";i:339;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:494;a:20:{s:4:\"tmpl\";i:478;s:2:\"id\";i:5230;s:5:\"title\";s:10:\"Contact 17\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_3.png\";s:12:\"tmpl_created\";i:1520443466;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:162;s:16:\"popularity_index\";i:339;s:11:\"trend_index\";i:335;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:495;a:20:{s:4:\"tmpl\";i:868;s:2:\"id\";i:11094;s:5:\"title\";s:30:\"Digital Agency – Clients\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/07/Clients_small.png\";s:12:\"tmpl_created\";i:1564641885;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/digital-agency-clients/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:424;s:11:\"trend_index\";i:424;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:496;a:20:{s:4:\"tmpl\";i:481;s:2:\"id\";i:5257;s:5:\"title\";s:10:\"Contact 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_5.png\";s:12:\"tmpl_created\";i:1520443472;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/contact-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:163;s:16:\"popularity_index\";i:438;s:11:\"trend_index\";i:490;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:497;a:20:{s:4:\"tmpl\";i:881;s:2:\"id\";i:11478;s:5:\"title\";s:17:\"Gym – About\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/08/About_Small.png\";s:12:\"tmpl_created\";i:1567392939;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:108:\"https://library.elementor.com/gym-about/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:164;s:16:\"popularity_index\";i:481;s:11:\"trend_index\";i:579;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:498;a:20:{s:4:\"tmpl\";i:532;s:2:\"id\";i:5820;s:5:\"title\";s:9:\"Contact 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:183;s:11:\"trend_index\";i:357;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:499;a:20:{s:4:\"tmpl\";i:877;s:2:\"id\";i:11563;s:5:\"title\";s:19:\"Gym – Pricing\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Pricing_Small.png\";s:12:\"tmpl_created\";i:1567392923;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-pricing/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:166;s:16:\"popularity_index\";i:577;s:11:\"trend_index\";i:736;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:500;a:20:{s:4:\"tmpl\";i:422;s:2:\"id\";i:4411;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_1.png\";s:12:\"tmpl_created\";i:1520443287;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:167;s:16:\"popularity_index\";i:113;s:11:\"trend_index\";i:217;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:501;a:20:{s:4:\"tmpl\";i:867;s:2:\"id\";i:11034;s:5:\"title\";s:30:\"Digital Agency – Contact\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2019/07/Contsct-Us_small.png\";s:12:\"tmpl_created\";i:1564641881;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/contact-digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:168;s:16:\"popularity_index\";i:191;s:11:\"trend_index\";i:156;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:502;a:20:{s:4:\"tmpl\";i:533;s:2:\"id\";i:5828;s:5:\"title\";s:9:\"Contact 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443595;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:170;s:16:\"popularity_index\";i:312;s:11:\"trend_index\";i:495;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:503;a:20:{s:4:\"tmpl\";i:876;s:2:\"id\";i:11528;s:5:\"title\";s:19:\"Gym – Contact\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/08/Contact_Small.png\";s:12:\"tmpl_created\";i:1567392917;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/gym-contact/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:4:\"page\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:505;s:11:\"trend_index\";i:624;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:504;a:20:{s:4:\"tmpl\";i:424;s:2:\"id\";i:4428;s:5:\"title\";s:9:\"Contact 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_2.png\";s:12:\"tmpl_created\";i:1520443291;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:171;s:16:\"popularity_index\";i:118;s:11:\"trend_index\";i:131;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:505;a:20:{s:4:\"tmpl\";i:426;s:2:\"id\";i:4444;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_1.png\";s:12:\"tmpl_created\";i:1520443295;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:174;s:16:\"popularity_index\";i:84;s:11:\"trend_index\";i:93;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:506;a:20:{s:4:\"tmpl\";i:432;s:2:\"id\";i:4492;s:5:\"title\";s:9:\"Contact 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/02/map_white_3.png\";s:12:\"tmpl_created\";i:1520443307;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/contact-5-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:176;s:16:\"popularity_index\";i:37;s:11:\"trend_index\";i:31;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:507;a:20:{s:4:\"tmpl\";i:427;s:2:\"id\";i:4452;s:5:\"title\";s:9:\"Contact 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_1.png\";s:12:\"tmpl_created\";i:1520443296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:178;s:16:\"popularity_index\";i:139;s:11:\"trend_index\";i:150;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:508;a:20:{s:4:\"tmpl\";i:429;s:2:\"id\";i:4468;s:5:\"title\";s:9:\"Contact 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_3.png\";s:12:\"tmpl_created\";i:1520443301;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:179;s:16:\"popularity_index\";i:127;s:11:\"trend_index\";i:72;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:509;a:20:{s:4:\"tmpl\";i:431;s:2:\"id\";i:4484;s:5:\"title\";s:9:\"Contact 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_black_3.png\";s:12:\"tmpl_created\";i:1520443305;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:18:\"[\"Contact\",\"Form\"]\";s:10:\"menu_order\";i:182;s:16:\"popularity_index\";i:328;s:11:\"trend_index\";i:260;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:510;a:20:{s:4:\"tmpl\";i:428;s:2:\"id\";i:4460;s:5:\"title\";s:9:\"Contact 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/contact_white_2.png\";s:12:\"tmpl_created\";i:1520443298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/contact-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:7:\"contact\";s:4:\"tags\";s:11:\"[\"Contact\"]\";s:10:\"menu_order\";i:184;s:16:\"popularity_index\";i:99;s:11:\"trend_index\";i:80;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:511;a:20:{s:4:\"tmpl\";i:613;s:2:\"id\";i:5558;s:5:\"title\";s:5:\"CTA 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_2.png\";s:12:\"tmpl_created\";i:1520520684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:185;s:16:\"popularity_index\";i:129;s:11:\"trend_index\";i:69;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:512;a:20:{s:4:\"tmpl\";i:634;s:2:\"id\";i:5939;s:5:\"title\";s:6:\"CTA 10\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_13-1.png\";s:12:\"tmpl_created\";i:1520520760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:187;s:16:\"popularity_index\";i:190;s:11:\"trend_index\";i:118;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:513;a:20:{s:4:\"tmpl\";i:633;s:2:\"id\";i:5930;s:5:\"title\";s:6:\"CTA 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_15.png\";s:12:\"tmpl_created\";i:1520520758;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:190;s:16:\"popularity_index\";i:76;s:11:\"trend_index\";i:84;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:514;a:20:{s:4:\"tmpl\";i:632;s:2:\"id\";i:5921;s:5:\"title\";s:6:\"CTA 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_14.png\";s:12:\"tmpl_created\";i:1520520757;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:192;s:16:\"popularity_index\";i:278;s:11:\"trend_index\";i:234;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:515;a:20:{s:4:\"tmpl\";i:618;s:2:\"id\";i:5607;s:5:\"title\";s:6:\"CTA 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_5.png\";s:12:\"tmpl_created\";i:1520520695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:194;s:16:\"popularity_index\";i:42;s:11:\"trend_index\";i:11;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:516;a:20:{s:4:\"tmpl\";i:574;s:2:\"id\";i:6017;s:5:\"title\";s:6:\"CTA 14\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_14.png\";s:12:\"tmpl_created\";i:1520520331;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:196;s:16:\"popularity_index\";i:152;s:11:\"trend_index\";i:122;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:517;a:20:{s:4:\"tmpl\";i:628;s:2:\"id\";i:5885;s:5:\"title\";s:6:\"CTA 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_11.png\";s:12:\"tmpl_created\";i:1520520751;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:197;s:16:\"popularity_index\";i:274;s:11:\"trend_index\";i:256;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:518;a:20:{s:4:\"tmpl\";i:627;s:2:\"id\";i:5877;s:5:\"title\";s:6:\"CTA 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_10.png\";s:12:\"tmpl_created\";i:1520520749;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:200;s:16:\"popularity_index\";i:564;s:11:\"trend_index\";i:677;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:519;a:20:{s:4:\"tmpl\";i:625;s:2:\"id\";i:5860;s:5:\"title\";s:6:\"CTA 17\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_9.png\";s:12:\"tmpl_created\";i:1520520746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:201;s:16:\"popularity_index\";i:120;s:11:\"trend_index\";i:63;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:520;a:20:{s:4:\"tmpl\";i:626;s:2:\"id\";i:5869;s:5:\"title\";s:6:\"CTA 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_10.png\";s:12:\"tmpl_created\";i:1520520747;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:204;s:16:\"popularity_index\";i:345;s:11:\"trend_index\";i:486;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:521;a:20:{s:4:\"tmpl\";i:611;s:2:\"id\";i:5542;s:5:\"title\";s:6:\"CTA 19\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_1.png\";s:12:\"tmpl_created\";i:1520520681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:205;s:16:\"popularity_index\";i:169;s:11:\"trend_index\";i:270;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:522;a:20:{s:4:\"tmpl\";i:614;s:2:\"id\";i:5567;s:5:\"title\";s:5:\"CTA 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_2.png\";s:12:\"tmpl_created\";i:1520520685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:207;s:16:\"popularity_index\";i:143;s:11:\"trend_index\";i:225;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:523;a:20:{s:4:\"tmpl\";i:629;s:2:\"id\";i:5893;s:5:\"title\";s:6:\"CTA 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_12.png\";s:12:\"tmpl_created\";i:1520520752;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:210;s:16:\"popularity_index\";i:259;s:11:\"trend_index\";i:457;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:524;a:20:{s:4:\"tmpl\";i:619;s:2:\"id\";i:5634;s:5:\"title\";s:6:\"CTA 24\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_6.png\";s:12:\"tmpl_created\";i:1520520699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:212;s:16:\"popularity_index\";i:188;s:11:\"trend_index\";i:255;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:525;a:20:{s:4:\"tmpl\";i:620;s:2:\"id\";i:5642;s:5:\"title\";s:6:\"CTA 25\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_6.png\";s:12:\"tmpl_created\";i:1520520701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:214;s:16:\"popularity_index\";i:226;s:11:\"trend_index\";i:262;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:526;a:20:{s:4:\"tmpl\";i:615;s:2:\"id\";i:5583;s:5:\"title\";s:6:\"CTA 26\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_3.png\";s:12:\"tmpl_created\";i:1520520689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:216;s:16:\"popularity_index\";i:117;s:11:\"trend_index\";i:117;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:527;a:20:{s:4:\"tmpl\";i:630;s:2:\"id\";i:5904;s:5:\"title\";s:6:\"CTA 27\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_13.png\";s:12:\"tmpl_created\";i:1520520754;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:217;s:16:\"popularity_index\";i:528;s:11:\"trend_index\";i:517;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:528;a:20:{s:4:\"tmpl\";i:631;s:2:\"id\";i:5912;s:5:\"title\";s:6:\"CTA 28\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_11.png\";s:12:\"tmpl_created\";i:1520520755;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:219;s:16:\"popularity_index\";i:665;s:11:\"trend_index\";i:702;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:529;a:20:{s:4:\"tmpl\";i:473;s:2:\"id\";i:5189;s:5:\"title\";s:6:\"CTA 29\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_1.png\";s:12:\"tmpl_created\";i:1520443456;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:221;s:16:\"popularity_index\";i:472;s:11:\"trend_index\";i:631;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:530;a:20:{s:4:\"tmpl\";i:623;s:2:\"id\";i:5667;s:5:\"title\";s:5:\"CTA 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_8.png\";s:12:\"tmpl_created\";i:1520520705;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:222;s:16:\"popularity_index\";i:171;s:11:\"trend_index\";i:250;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:531;a:20:{s:4:\"tmpl\";i:474;s:2:\"id\";i:5198;s:5:\"title\";s:6:\"CTA 30\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_1.png\";s:12:\"tmpl_created\";i:1520443458;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:225;s:16:\"popularity_index\";i:572;s:11:\"trend_index\";i:511;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:532;a:20:{s:4:\"tmpl\";i:475;s:2:\"id\";i:5206;s:5:\"title\";s:6:\"CTA 31\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_2.png\";s:12:\"tmpl_created\";i:1520443459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:226;s:16:\"popularity_index\";i:593;s:11:\"trend_index\";i:611;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:533;a:20:{s:4:\"tmpl\";i:480;s:2:\"id\";i:5249;s:5:\"title\";s:6:\"CTA 32\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_black_4.png\";s:12:\"tmpl_created\";i:1520443470;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-32/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:228;s:16:\"popularity_index\";i:512;s:11:\"trend_index\";i:409;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:534;a:20:{s:4:\"tmpl\";i:612;s:2:\"id\";i:5550;s:5:\"title\";s:6:\"CTA 33\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_1.png\";s:12:\"tmpl_created\";i:1520520682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-33/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:231;s:16:\"popularity_index\";i:260;s:11:\"trend_index\";i:562;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:535;a:20:{s:4:\"tmpl\";i:536;s:2:\"id\";i:5852;s:5:\"title\";s:6:\"CTA 34\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2018/03/form_1.png\";s:12:\"tmpl_created\";i:1520443600;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/cta-34/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:8:\"[\"Form\"]\";s:10:\"menu_order\";i:232;s:16:\"popularity_index\";i:563;s:11:\"trend_index\";i:828;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:536;a:20:{s:4:\"tmpl\";i:624;s:2:\"id\";i:5675;s:5:\"title\";s:5:\"CTA 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_8.png\";s:12:\"tmpl_created\";i:1520520707;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:235;s:16:\"popularity_index\";i:391;s:11:\"trend_index\";i:484;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:537;a:20:{s:4:\"tmpl\";i:616;s:2:\"id\";i:5591;s:5:\"title\";s:5:\"CTA 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_4.png\";s:12:\"tmpl_created\";i:1520520691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:237;s:16:\"popularity_index\";i:133;s:11:\"trend_index\";i:130;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:538;a:20:{s:4:\"tmpl\";i:617;s:2:\"id\";i:5599;s:5:\"title\";s:5:\"CTA 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_4.png\";s:12:\"tmpl_created\";i:1520520693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:239;s:16:\"popularity_index\";i:252;s:11:\"trend_index\";i:362;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:539;a:20:{s:4:\"tmpl\";i:514;s:2:\"id\";i:5575;s:5:\"title\";s:5:\"CTA 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_3.png\";s:12:\"tmpl_created\";i:1520443543;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:240;s:16:\"popularity_index\";i:13;s:11:\"trend_index\";i:586;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:540;a:20:{s:4:\"tmpl\";i:622;s:2:\"id\";i:5658;s:5:\"title\";s:5:\"CTA 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_black_7.png\";s:12:\"tmpl_created\";i:1520520704;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:243;s:16:\"popularity_index\";i:187;s:11:\"trend_index\";i:235;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:541;a:20:{s:4:\"tmpl\";i:621;s:2:\"id\";i:5650;s:5:\"title\";s:5:\"CTA 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_7.png\";s:12:\"tmpl_created\";i:1520520702;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/cta-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:14:\"call to action\";s:4:\"tags\";s:7:\"[\"cta\"]\";s:10:\"menu_order\";i:244;s:16:\"popularity_index\";i:94;s:11:\"trend_index\";i:148;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:542;a:20:{s:4:\"tmpl\";i:1061;s:2:\"id\";i:15407;s:5:\"title\";s:24:\"Dance Studio – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/10/404.jpg\";s:12:\"tmpl_created\";i:1603181958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/dance-studio-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:22:\"[\"404\",\"Dance Studio\"]\";s:10:\"menu_order\";i:246;s:16:\"popularity_index\";i:783;s:11:\"trend_index\";i:710;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:543;a:20:{s:4:\"tmpl\";i:1062;s:2:\"id\";i:15400;s:5:\"title\";s:27:\"Dance Studio – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Footer.jpg\";s:12:\"tmpl_created\";i:1603181989;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Footer\"]\";s:10:\"menu_order\";i:247;s:16:\"popularity_index\";i:586;s:11:\"trend_index\";i:243;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:544;a:20:{s:4:\"tmpl\";i:1063;s:2:\"id\";i:15391;s:5:\"title\";s:27:\"Dance Studio – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/10/Header.jpg\";s:12:\"tmpl_created\";i:1603182011;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/dance-studio-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:25:\"[\"Dance Studio\",\"Header\"]\";s:10:\"menu_order\";i:248;s:16:\"popularity_index\";i:352;s:11:\"trend_index\";i:67;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:545;a:20:{s:4:\"tmpl\";i:874;s:2:\"id\";i:11192;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/07/Footer_small.jpg\";s:12:\"tmpl_created\";i:1564642399;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Footer\",\"Marketing\"]\";s:10:\"menu_order\";i:250;s:16:\"popularity_index\";i:172;s:11:\"trend_index\";i:105;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:546;a:20:{s:4:\"tmpl\";i:873;s:2:\"id\";i:11198;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-digital-marketing-agency.png\";s:12:\"tmpl_created\";i:1564642395;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Digital Agency\",\"Header\",\"Marketing\"]\";s:10:\"menu_order\";i:251;s:16:\"popularity_index\";i:34;s:11:\"trend_index\";i:10;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:547;a:20:{s:4:\"tmpl\";i:872;s:2:\"id\";i:11204;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/07/404_small.jpg\";s:12:\"tmpl_created\";i:1564642389;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:36:\"[\"404\",\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:253;s:16:\"popularity_index\";i:301;s:11:\"trend_index\";i:239;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:548;a:20:{s:4:\"tmpl\";i:871;s:2:\"id\";i:11220;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/08/Archive_small1.png\";s:12:\"tmpl_created\";i:1564642385;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/digital-agency-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:255;s:16:\"popularity_index\";i:116;s:11:\"trend_index\";i:73;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:549;a:20:{s:4:\"tmpl\";i:870;s:2:\"id\";i:11231;s:5:\"title\";s:14:\"Digital Agency\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2019/07/Post_small1.png\";s:12:\"tmpl_created\";i:1564642380;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/digital-agency/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Digital Agency\",\"Marketing\"]\";s:10:\"menu_order\";i:257;s:16:\"popularity_index\";i:145;s:11:\"trend_index\";i:71;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:550;a:20:{s:4:\"tmpl\";i:520;s:2:\"id\";i:5711;s:5:\"title\";s:5:\"FAQ 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_2.png\";s:12:\"tmpl_created\";i:1520443571;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:260;s:16:\"popularity_index\";i:200;s:11:\"trend_index\";i:231;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:551;a:20:{s:4:\"tmpl\";i:523;s:2:\"id\";i:5737;s:5:\"title\";s:6:\"FAQ 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_4.png\";s:12:\"tmpl_created\";i:1520443576;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:261;s:16:\"popularity_index\";i:155;s:11:\"trend_index\";i:112;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:552;a:20:{s:4:\"tmpl\";i:524;s:2:\"id\";i:5746;s:5:\"title\";s:6:\"FAQ 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_4.png\";s:12:\"tmpl_created\";i:1520443578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:264;s:16:\"popularity_index\";i:212;s:11:\"trend_index\";i:305;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:553;a:20:{s:4:\"tmpl\";i:519;s:2:\"id\";i:5703;s:5:\"title\";s:6:\"FAQ 13\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_2.png\";s:12:\"tmpl_created\";i:1520443569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/faq-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:265;s:16:\"popularity_index\";i:29;s:11:\"trend_index\";i:38;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:554;a:20:{s:4:\"tmpl\";i:521;s:2:\"id\";i:5719;s:5:\"title\";s:5:\"FAQ 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_3.png\";s:12:\"tmpl_created\";i:1520443573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:267;s:16:\"popularity_index\";i:125;s:11:\"trend_index\";i:251;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:555;a:20:{s:4:\"tmpl\";i:522;s:2:\"id\";i:5729;s:5:\"title\";s:5:\"FAQ 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_3.png\";s:12:\"tmpl_created\";i:1520443575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:269;s:16:\"popularity_index\";i:319;s:11:\"trend_index\";i:327;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:556;a:20:{s:4:\"tmpl\";i:525;s:2:\"id\";i:5755;s:5:\"title\";s:5:\"FAQ 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_5.png\";s:12:\"tmpl_created\";i:1520443580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:271;s:16:\"popularity_index\";i:112;s:11:\"trend_index\";i:180;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:557;a:20:{s:4:\"tmpl\";i:526;s:2:\"id\";i:5764;s:5:\"title\";s:5:\"FAQ 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_5.png\";s:12:\"tmpl_created\";i:1520443582;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:273;s:16:\"popularity_index\";i:338;s:11:\"trend_index\";i:474;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:558;a:20:{s:4:\"tmpl\";i:517;s:2:\"id\";i:5684;s:5:\"title\";s:5:\"FAQ 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_white_1.png\";s:12:\"tmpl_created\";i:1520443565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:274;s:16:\"popularity_index\";i:74;s:11:\"trend_index\";i:193;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:559;a:20:{s:4:\"tmpl\";i:518;s:2:\"id\";i:5693;s:5:\"title\";s:5:\"FAQ 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/faq_black_1.png\";s:12:\"tmpl_created\";i:1520443567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/faq-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:3:\"faq\";s:4:\"tags\";s:7:\"[\"Faq\"]\";s:10:\"menu_order\";i:276;s:16:\"popularity_index\";i:224;s:11:\"trend_index\";i:515;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:560;a:20:{s:4:\"tmpl\";i:548;s:2:\"id\";i:6053;s:5:\"title\";s:10:\"Features 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_5.png\";s:12:\"tmpl_created\";i:1520443645;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:277;s:16:\"popularity_index\";i:179;s:11:\"trend_index\";i:463;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:561;a:20:{s:4:\"tmpl\";i:542;s:2:\"id\";i:5991;s:5:\"title\";s:11:\"Features 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_4.png\";s:12:\"tmpl_created\";i:1520443632;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:279;s:16:\"popularity_index\";i:135;s:11:\"trend_index\";i:265;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:562;a:20:{s:4:\"tmpl\";i:547;s:2:\"id\";i:6044;s:5:\"title\";s:11:\"Features 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_5.png\";s:12:\"tmpl_created\";i:1520443643;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:280;s:16:\"popularity_index\";i:70;s:11:\"trend_index\";i:163;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:563;a:20:{s:4:\"tmpl\";i:566;s:2:\"id\";i:6212;s:5:\"title\";s:11:\"Features 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_7.png\";s:12:\"tmpl_created\";i:1520443684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/features-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:281;s:16:\"popularity_index\";i:81;s:11:\"trend_index\";i:98;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:564;a:20:{s:4:\"tmpl\";i:567;s:2:\"id\";i:6220;s:5:\"title\";s:10:\"Features 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_8.png\";s:12:\"tmpl_created\";i:1520443685;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:282;s:16:\"popularity_index\";i:88;s:11:\"trend_index\";i:189;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:565;a:20:{s:4:\"tmpl\";i:541;s:2:\"id\";i:5983;s:5:\"title\";s:10:\"Features 3\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_3.png\";s:12:\"tmpl_created\";i:1520443630;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:283;s:16:\"popularity_index\";i:231;s:11:\"trend_index\";i:351;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:566;a:20:{s:4:\"tmpl\";i:540;s:2:\"id\";i:5974;s:5:\"title\";s:10:\"Features 4\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_3.png\";s:12:\"tmpl_created\";i:1520443629;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:286;s:16:\"popularity_index\";i:69;s:11:\"trend_index\";i:181;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:567;a:20:{s:4:\"tmpl\";i:516;s:2:\"id\";i:5624;s:5:\"title\";s:10:\"Features 5\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_black_1.png\";s:12:\"tmpl_created\";i:1520443553;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:287;s:16:\"popularity_index\";i:93;s:11:\"trend_index\";i:352;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:568;a:20:{s:4:\"tmpl\";i:515;s:2:\"id\";i:5615;s:5:\"title\";s:10:\"Features 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/cta_white_5.png\";s:12:\"tmpl_created\";i:1520443551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:290;s:16:\"popularity_index\";i:41;s:11:\"trend_index\";i:119;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:569;a:20:{s:4:\"tmpl\";i:539;s:2:\"id\";i:5963;s:5:\"title\";s:10:\"Features 7\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_2.png\";s:12:\"tmpl_created\";i:1520443626;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:291;s:16:\"popularity_index\";i:67;s:11:\"trend_index\";i:133;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:570;a:20:{s:4:\"tmpl\";i:565;s:2:\"id\";i:6204;s:5:\"title\";s:10:\"Features 8\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_6.png\";s:12:\"tmpl_created\";i:1520443681;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:292;s:16:\"popularity_index\";i:217;s:11:\"trend_index\";i:223;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:571;a:20:{s:4:\"tmpl\";i:564;s:2:\"id\";i:6196;s:5:\"title\";s:10:\"Features 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/features_white_6.png\";s:12:\"tmpl_created\";i:1520443680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/features-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"features\";s:4:\"tags\";s:12:\"[\"Features\"]\";s:10:\"menu_order\";i:294;s:16:\"popularity_index\";i:106;s:11:\"trend_index\";i:113;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:572;a:20:{s:4:\"tmpl\";i:1033;s:2:\"id\";i:15033;s:5:\"title\";s:28:\"Flooring Company – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/08/404.png\";s:12:\"tmpl_created\";i:1597739459;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/flooring-company-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:45:\"[\"404\",\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:296;s:16:\"popularity_index\";i:655;s:11:\"trend_index\";i:671;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:573;a:20:{s:4:\"tmpl\";i:1032;s:2:\"id\";i:15042;s:5:\"title\";s:32:\"Flooring Company – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/08/Blog.png\";s:12:\"tmpl_created\";i:1597739084;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/flooring-company-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:297;s:16:\"popularity_index\";i:320;s:11:\"trend_index\";i:275;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:574;a:20:{s:4:\"tmpl\";i:1031;s:2:\"id\";i:15017;s:5:\"title\";s:31:\"Flooring Company – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Footer.png\";s:12:\"tmpl_created\";i:1597738933;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Footer\"]\";s:10:\"menu_order\";i:299;s:16:\"popularity_index\";i:323;s:11:\"trend_index\";i:192;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:575;a:20:{s:4:\"tmpl\";i:1030;s:2:\"id\";i:15007;s:5:\"title\";s:31:\"Flooring Company – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Header.png\";s:12:\"tmpl_created\";i:1597738896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/flooring-company-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:48:\"[\"Flooring company\",\"Flooring website\",\"Header\"]\";s:10:\"menu_order\";i:302;s:16:\"popularity_index\";i:459;s:11:\"trend_index\";i:333;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:576;a:20:{s:4:\"tmpl\";i:1029;s:2:\"id\";i:15052;s:5:\"title\";s:36:\"Flooring Company – Single post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/08/Single.png\";s:12:\"tmpl_created\";i:1597738858;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/flooring-company-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:39:\"[\"Flooring company\",\"Flooring website\"]\";s:10:\"menu_order\";i:303;s:16:\"popularity_index\";i:392;s:11:\"trend_index\";i:226;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:577;a:20:{s:4:\"tmpl\";i:651;s:2:\"id\";i:7837;s:5:\"title\";s:9:\"footer 01\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.14.jpg\";s:12:\"tmpl_created\";i:1524582852;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:305;s:16:\"popularity_index\";i:495;s:11:\"trend_index\";i:539;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:578;a:20:{s:4:\"tmpl\";i:647;s:2:\"id\";i:7937;s:5:\"title\";s:10:\"footer 010\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.5.jpg\";s:12:\"tmpl_created\";i:1524582665;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-010/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:308;s:16:\"popularity_index\";i:185;s:11:\"trend_index\";i:115;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:579;a:20:{s:4:\"tmpl\";i:646;s:2:\"id\";i:7950;s:5:\"title\";s:10:\"footer 011\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.4.jpg\";s:12:\"tmpl_created\";i:1524582631;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-011/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:310;s:16:\"popularity_index\";i:244;s:11:\"trend_index\";i:203;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:580;a:20:{s:4:\"tmpl\";i:645;s:2:\"id\";i:7959;s:5:\"title\";s:10:\"footer 012\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.3.jpg\";s:12:\"tmpl_created\";i:1524582605;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-012/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:311;s:16:\"popularity_index\";i:177;s:11:\"trend_index\";i:140;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:581;a:20:{s:4:\"tmpl\";i:644;s:2:\"id\";i:7982;s:5:\"title\";s:10:\"footer 013\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.2.jpg\";s:12:\"tmpl_created\";i:1524582468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-013/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:314;s:16:\"popularity_index\";i:209;s:11:\"trend_index\";i:212;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:582;a:20:{s:4:\"tmpl\";i:643;s:2:\"id\";i:7997;s:5:\"title\";s:10:\"footer 014\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.1.jpg\";s:12:\"tmpl_created\";i:1524582343;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/footer-014/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:316;s:16:\"popularity_index\";i:64;s:11:\"trend_index\";i:41;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:583;a:20:{s:4:\"tmpl\";i:693;s:2:\"id\";i:9119;s:5:\"title\";s:10:\"footer 015\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/Footer_GetStarted_350.png\";s:12:\"tmpl_created\";i:1532428138;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:110:\"https://library.elementor.com/blocks/demo/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:317;s:16:\"popularity_index\";i:240;s:11:\"trend_index\";i:154;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:584;a:20:{s:4:\"tmpl\";i:652;s:2:\"id\";i:7852;s:5:\"title\";s:9:\"footer 02\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.13.jpg\";s:12:\"tmpl_created\";i:1524582875;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:320;s:16:\"popularity_index\";i:199;s:11:\"trend_index\";i:96;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:585;a:20:{s:4:\"tmpl\";i:653;s:2:\"id\";i:7862;s:5:\"title\";s:9:\"footer 03\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.12.jpg\";s:12:\"tmpl_created\";i:1524582903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:321;s:16:\"popularity_index\";i:137;s:11:\"trend_index\";i:91;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:586;a:20:{s:4:\"tmpl\";i:654;s:2:\"id\";i:7871;s:5:\"title\";s:9:\"footer 04\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.11.jpg\";s:12:\"tmpl_created\";i:1524582927;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:323;s:16:\"popularity_index\";i:97;s:11:\"trend_index\";i:55;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:587;a:20:{s:4:\"tmpl\";i:655;s:2:\"id\";i:7884;s:5:\"title\";s:9:\"footer 05\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.10.jpg\";s:12:\"tmpl_created\";i:1524582944;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-05/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:325;s:16:\"popularity_index\";i:92;s:11:\"trend_index\";i:109;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:588;a:20:{s:4:\"tmpl\";i:656;s:2:\"id\";i:7892;s:5:\"title\";s:9:\"footer 06\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.9.jpg\";s:12:\"tmpl_created\";i:1524583015;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-06/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:326;s:16:\"popularity_index\";i:132;s:11:\"trend_index\";i:146;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:589;a:20:{s:4:\"tmpl\";i:650;s:2:\"id\";i:7904;s:5:\"title\";s:9:\"footer 07\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.8.jpg\";s:12:\"tmpl_created\";i:1524582814;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-07/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:328;s:16:\"popularity_index\";i:203;s:11:\"trend_index\";i:186;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:590;a:20:{s:4:\"tmpl\";i:649;s:2:\"id\";i:7917;s:5:\"title\";s:9:\"footer 08\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.7.jpg\";s:12:\"tmpl_created\";i:1524582788;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-08/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:329;s:16:\"popularity_index\";i:89;s:11:\"trend_index\";i:144;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:591;a:20:{s:4:\"tmpl\";i:648;s:2:\"id\";i:7927;s:5:\"title\";s:9:\"footer 09\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/footer350.6.jpg\";s:12:\"tmpl_created\";i:1524582691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/footer-09/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:331;s:16:\"popularity_index\";i:178;s:11:\"trend_index\";i:100;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:592;a:20:{s:4:\"tmpl\";i:642;s:2:\"id\";i:4676;s:5:\"title\";s:8:\"Footer 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_7.png\";s:12:\"tmpl_created\";i:1522014215;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer_7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:338;s:16:\"popularity_index\";i:237;s:11:\"trend_index\";i:346;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:593;a:20:{s:4:\"tmpl\";i:637;s:2:\"id\";i:7627;s:5:\"title\";s:8:\"Footer 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_1.png\";s:12:\"tmpl_created\";i:1521547332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:340;s:16:\"popularity_index\";i:100;s:11:\"trend_index\";i:83;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:594;a:20:{s:4:\"tmpl\";i:638;s:2:\"id\";i:7638;s:5:\"title\";s:8:\"Footer 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/footer_hero_2.png\";s:12:\"tmpl_created\";i:1521547502;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/footer-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:10:\"[\"Footer\"]\";s:10:\"menu_order\";i:342;s:16:\"popularity_index\";i:124;s:11:\"trend_index\";i:147;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:595;a:20:{s:4:\"tmpl\";i:888;s:2:\"id\";i:11424;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/08/404_Small.png\";s:12:\"tmpl_created\";i:1567393309;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:13:\"[\"404\",\"Gym\"]\";s:10:\"menu_order\";i:344;s:16:\"popularity_index\";i:679;s:11:\"trend_index\";i:769;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:596;a:20:{s:4:\"tmpl\";i:887;s:2:\"id\";i:11435;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Archiv_Small.png\";s:12:\"tmpl_created\";i:1567393296;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:346;s:16:\"popularity_index\";i:441;s:11:\"trend_index\";i:507;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:597;a:20:{s:4:\"tmpl\";i:886;s:2:\"id\";i:11445;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/08/Post_Small.png\";s:12:\"tmpl_created\";i:1567393229;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:7:\"[\"Gym\"]\";s:10:\"menu_order\";i:349;s:16:\"popularity_index\";i:452;s:11:\"trend_index\";i:479;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:598;a:20:{s:4:\"tmpl\";i:885;s:2:\"id\";i:11453;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/08/Footer_Small.png\";s:12:\"tmpl_created\";i:1567393224;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:111:\"https://library.elementor.com/blocks/gym-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:16:\"[\"Footer\",\"Gym\"]\";s:10:\"menu_order\";i:351;s:16:\"popularity_index\";i:270;s:11:\"trend_index\";i:331;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:599;a:20:{s:4:\"tmpl\";i:884;s:2:\"id\";i:11461;s:5:\"title\";s:3:\"GYM\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-gym-and-fitness.png\";s:12:\"tmpl_created\";i:1567393219;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:109:\"https://library.elementor.com/blocks/gym/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:16:\"[\"Gym\",\"Header\"]\";s:10:\"menu_order\";i:352;s:16:\"popularity_index\";i:201;s:11:\"trend_index\";i:135;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:600;a:20:{s:4:\"tmpl\";i:635;s:2:\"id\";i:7596;s:5:\"title\";s:8:\"Header 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.12.jpg\";s:12:\"tmpl_created\";i:1521546999;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:354;s:16:\"popularity_index\";i:33;s:11:\"trend_index\";i:17;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:601;a:20:{s:4:\"tmpl\";i:663;s:2:\"id\";i:7801;s:5:\"title\";s:9:\"header 10\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.9.jpg\";s:12:\"tmpl_created\";i:1524583659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:356;s:16:\"popularity_index\";i:51;s:11:\"trend_index\";i:14;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:602;a:20:{s:4:\"tmpl\";i:658;s:2:\"id\";i:7812;s:5:\"title\";s:9:\"header 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.10.jpg\";s:12:\"tmpl_created\";i:1524583298;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:358;s:16:\"popularity_index\";i:96;s:11:\"trend_index\";i:103;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:603;a:20:{s:4:\"tmpl\";i:657;s:2:\"id\";i:7825;s:5:\"title\";s:9:\"header 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.11.jpg\";s:12:\"tmpl_created\";i:1524583273;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:360;s:16:\"popularity_index\";i:63;s:11:\"trend_index\";i:75;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:604;a:20:{s:4:\"tmpl\";i:694;s:2:\"id\";i:9127;s:5:\"title\";s:9:\"header 13\";s:9:\"thumbnail\";s:86:\"https://library.elementor.com/wp-content/uploads/2018/07/Header_get_started_1200V3.png\";s:12:\"tmpl_created\";i:1532428699;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/header-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:362;s:16:\"popularity_index\";i:61;s:11:\"trend_index\";i:58;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:605;a:20:{s:4:\"tmpl\";i:636;s:2:\"id\";i:7615;s:5:\"title\";s:8:\"Header 2\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.1.jpg\";s:12:\"tmpl_created\";i:1521547237;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:10:\"[\"Header\"]\";s:10:\"menu_order\";i:365;s:16:\"popularity_index\";i:30;s:11:\"trend_index\";i:33;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:606;a:20:{s:4:\"tmpl\";i:665;s:2:\"id\";i:7713;s:5:\"title\";s:8:\"header 3\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.2.jpg\";s:12:\"tmpl_created\";i:1524584780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:367;s:16:\"popularity_index\";i:43;s:11:\"trend_index\";i:28;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:607;a:20:{s:4:\"tmpl\";i:659;s:2:\"id\";i:7724;s:5:\"title\";s:8:\"header 4\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.3.jpg\";s:12:\"tmpl_created\";i:1524583367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:369;s:16:\"popularity_index\";i:24;s:11:\"trend_index\";i:13;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:608;a:20:{s:4:\"tmpl\";i:660;s:2:\"id\";i:7734;s:5:\"title\";s:8:\"header 5\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.4.jpg\";s:12:\"tmpl_created\";i:1524583436;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:371;s:16:\"popularity_index\";i:36;s:11:\"trend_index\";i:18;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:609;a:20:{s:4:\"tmpl\";i:666;s:2:\"id\";i:7744;s:5:\"title\";s:8:\"Header 6\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.5.jpg\";s:12:\"tmpl_created\";i:1524584784;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:372;s:16:\"popularity_index\";i:65;s:11:\"trend_index\";i:94;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:610;a:20:{s:4:\"tmpl\";i:664;s:2:\"id\";i:7754;s:5:\"title\";s:8:\"header 7\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.6.jpg\";s:12:\"tmpl_created\";i:1524583712;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:375;s:16:\"popularity_index\";i:111;s:11:\"trend_index\";i:143;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:611;a:20:{s:4:\"tmpl\";i:661;s:2:\"id\";i:7771;s:5:\"title\";s:8:\"header 8\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.7.jpg\";s:12:\"tmpl_created\";i:1524583540;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:376;s:16:\"popularity_index\";i:91;s:11:\"trend_index\";i:60;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:612;a:20:{s:4:\"tmpl\";i:662;s:2:\"id\";i:7787;s:5:\"title\";s:8:\"header 9\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/header350.8.jpg\";s:12:\"tmpl_created\";i:1524583598;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/header-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:379;s:16:\"popularity_index\";i:102;s:11:\"trend_index\";i:78;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:613;a:20:{s:4:\"tmpl\";i:572;s:2:\"id\";i:6266;s:5:\"title\";s:6:\"Hero 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_4.png\";s:12:\"tmpl_created\";i:1520443695;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:380;s:16:\"popularity_index\";i:52;s:11:\"trend_index\";i:35;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:614;a:20:{s:4:\"tmpl\";i:528;s:2:\"id\";i:5783;s:5:\"title\";s:7:\"Hero 10\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_2.png\";s:12:\"tmpl_created\";i:1520443586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:383;s:16:\"popularity_index\";i:365;s:11:\"trend_index\";i:567;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:615;a:20:{s:4:\"tmpl\";i:527;s:2:\"id\";i:5773;s:5:\"title\";s:7:\"Hero 11\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_1.png\";s:12:\"tmpl_created\";i:1520443584;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:384;s:16:\"popularity_index\";i:39;s:11:\"trend_index\";i:179;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:616;a:20:{s:4:\"tmpl\";i:479;s:2:\"id\";i:5238;s:5:\"title\";s:7:\"Hero 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/form_white_4.png\";s:12:\"tmpl_created\";i:1520443468;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/hero-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:386;s:16:\"popularity_index\";i:611;s:11:\"trend_index\";i:555;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:617;a:20:{s:4:\"tmpl\";i:573;s:2:\"id\";i:6274;s:5:\"title\";s:6:\"Hero 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_5.png\";s:12:\"tmpl_created\";i:1520443698;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:389;s:16:\"popularity_index\";i:87;s:11:\"trend_index\";i:88;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:618;a:20:{s:4:\"tmpl\";i:569;s:2:\"id\";i:6239;s:5:\"title\";s:6:\"Hero 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_1.png\";s:12:\"tmpl_created\";i:1520443689;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:391;s:16:\"popularity_index\";i:23;s:11:\"trend_index\";i:34;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:619;a:20:{s:4:\"tmpl\";i:571;s:2:\"id\";i:6258;s:5:\"title\";s:6:\"Hero 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_3.png\";s:12:\"tmpl_created\";i:1520443693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:393;s:16:\"popularity_index\";i:479;s:11:\"trend_index\";i:470;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:620;a:20:{s:4:\"tmpl\";i:570;s:2:\"id\";i:6249;s:5:\"title\";s:6:\"Hero 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_black_2.png\";s:12:\"tmpl_created\";i:1520443691;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:395;s:16:\"popularity_index\";i:56;s:11:\"trend_index\";i:85;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:621;a:20:{s:4:\"tmpl\";i:568;s:2:\"id\";i:6230;s:5:\"title\";s:6:\"Hero 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/heroo_white_1.png\";s:12:\"tmpl_created\";i:1520443687;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:396;s:16:\"popularity_index\";i:406;s:11:\"trend_index\";i:542;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:622;a:20:{s:4:\"tmpl\";i:530;s:2:\"id\";i:5801;s:5:\"title\";s:6:\"Hero 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_4.png\";s:12:\"tmpl_created\";i:1520443589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:8:\"[\"hero\"]\";s:10:\"menu_order\";i:398;s:16:\"popularity_index\";i:15;s:11:\"trend_index\";i:37;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:623;a:20:{s:4:\"tmpl\";i:531;s:2:\"id\";i:5811;s:5:\"title\";s:6:\"Hero 8\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_5.png\";s:12:\"tmpl_created\";i:1520443591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:400;s:16:\"popularity_index\";i:105;s:11:\"trend_index\";i:86;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:624;a:20:{s:4:\"tmpl\";i:529;s:2:\"id\";i:5792;s:5:\"title\";s:6:\"Hero 9\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/03/header_3.png\";s:12:\"tmpl_created\";i:1520443588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/hero-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"hero\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:403;s:16:\"popularity_index\";i:225;s:11:\"trend_index\";i:244;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:625;a:20:{s:4:\"tmpl\";i:978;s:2:\"id\";i:13251;s:5:\"title\";s:27:\"Interior Design – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.png\";s:12:\"tmpl_created\";i:1586148737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/interior-design-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:405;s:16:\"popularity_index\";i:730;s:11:\"trend_index\";i:795;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:626;a:20:{s:4:\"tmpl\";i:979;s:2:\"id\";i:13244;s:5:\"title\";s:30:\"Interior Design – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.png\";s:12:\"tmpl_created\";i:1586148742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:39:\"[\"Business\",\"Footer\",\"Interior Design\"]\";s:10:\"menu_order\";i:406;s:16:\"popularity_index\";i:322;s:11:\"trend_index\";i:178;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:627;a:20:{s:4:\"tmpl\";i:980;s:2:\"id\";i:13236;s:5:\"title\";s:30:\"Interior Design – Header\";s:9:\"thumbnail\";s:83:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-interior-design.png\";s:12:\"tmpl_created\";i:1586148746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/interior-design-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:39:\"[\"Business\",\"Header\",\"Interior Design\"]\";s:10:\"menu_order\";i:408;s:16:\"popularity_index\";i:146;s:11:\"trend_index\";i:64;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:628;a:20:{s:4:\"tmpl\";i:977;s:2:\"id\";i:13259;s:5:\"title\";s:36:\"Interior Design – News Archive\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Archiv-Blog.png\";s:12:\"tmpl_created\";i:1586148733;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/interior-design-news-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:410;s:16:\"popularity_index\";i:436;s:11:\"trend_index\";i:132;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:629;a:20:{s:4:\"tmpl\";i:976;s:2:\"id\";i:13267;s:5:\"title\";s:35:\"Interior Design – Single News\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/04/Post.png\";s:12:\"tmpl_created\";i:1586148728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/interior-design-single-news/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:413;s:16:\"popularity_index\";i:402;s:11:\"trend_index\";i:108;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:630;a:20:{s:4:\"tmpl\";i:975;s:2:\"id\";i:13274;s:5:\"title\";s:38:\"Interior Design – Single Project\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/04/Single-Project-.png\";s:12:\"tmpl_created\";i:1586148723;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/interior-design-single-project/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:30:\"[\"Business\",\"Interior Design\"]\";s:10:\"menu_order\";i:414;s:16:\"popularity_index\";i:601;s:11:\"trend_index\";i:324;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:631;a:20:{s:4:\"tmpl\";i:1011;s:2:\"id\";i:14058;s:5:\"title\";s:36:\"Japanese restaurant – 404 page\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/06/404-Page.jpg\";s:12:\"tmpl_created\";i:1592290211;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:134:\"https://library.elementor.com/blocks/japanese-restaurant-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:38:\"[\"404\",\"Food\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:416;s:16:\"popularity_index\";i:724;s:11:\"trend_index\";i:647;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:632;a:20:{s:4:\"tmpl\";i:1012;s:2:\"id\";i:14050;s:5:\"title\";s:34:\"Japanese restaurant – Footer\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/06/Footer-Small.jpg\";s:12:\"tmpl_created\";i:1592290247;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:41:\"[\"Food\",\"Footer\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:419;s:16:\"popularity_index\";i:317;s:11:\"trend_index\";i:238;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:633;a:20:{s:4:\"tmpl\";i:1013;s:2:\"id\";i:14042;s:5:\"title\";s:34:\"Japanese Restaurant – Header\";s:9:\"thumbnail\";s:87:\"https://library.elementor.com/wp-content/uploads/2020/06/japanese-restaurant-header.jpg\";s:12:\"tmpl_created\";i:1592290277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/japanese-restaurant-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:41:\"[\"Food\",\"Header\",\"Japanese\",\"Restaurant\"]\";s:10:\"menu_order\";i:421;s:16:\"popularity_index\";i:411;s:11:\"trend_index\";i:274;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:634;a:20:{s:4:\"tmpl\";i:914;s:2:\"id\";i:12164;s:5:\"title\";s:20:\"Law Firm – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/11/404.png\";s:12:\"tmpl_created\";i:1572846979;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/law-firm-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:422;s:16:\"popularity_index\";i:704;s:11:\"trend_index\";i:716;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:635;a:20:{s:4:\"tmpl\";i:913;s:2:\"id\";i:12170;s:5:\"title\";s:23:\"Law Firm – Archiv\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/archiv.png\";s:12:\"tmpl_created\";i:1572846967;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:424;s:16:\"popularity_index\";i:431;s:11:\"trend_index\";i:294;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:636;a:20:{s:4:\"tmpl\";i:912;s:2:\"id\";i:12179;s:5:\"title\";s:23:\"Law Firm – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/footer.png\";s:12:\"tmpl_created\";i:1572846958;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:425;s:16:\"popularity_index\";i:388;s:11:\"trend_index\";i:240;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:637;a:20:{s:4:\"tmpl\";i:911;s:2:\"id\";i:12194;s:5:\"title\";s:23:\"Law Firm – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-law-firm.png\";s:12:\"tmpl_created\";i:1572846935;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/law-firm-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:427;s:16:\"popularity_index\";i:80;s:11:\"trend_index\";i:39;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:638;a:20:{s:4:\"tmpl\";i:910;s:2:\"id\";i:12203;s:5:\"title\";s:30:\"Law Firm – Search Archiv\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/11/search_result.png\";s:12:\"tmpl_created\";i:1572846925;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/law-firm-search-archiv/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:430;s:16:\"popularity_index\";i:493;s:11:\"trend_index\";i:433;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:639;a:20:{s:4:\"tmpl\";i:909;s:2:\"id\";i:12212;s:5:\"title\";s:28:\"Law Firm – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2019/11/single.png\";s:12:\"tmpl_created\";i:1572846914;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/law-firm-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Law\",\"Law Firm\"]\";s:10:\"menu_order\";i:432;s:16:\"popularity_index\";i:326;s:11:\"trend_index\";i:214;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:640;a:20:{s:4:\"tmpl\";i:1022;s:2:\"id\";i:14772;s:5:\"title\";s:35:\"Luxury Real Estate – 404 page\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/07/404.png\";s:12:\"tmpl_created\";i:1595315728;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:133:\"https://library.elementor.com/blocks/luxury-real-estate-404-page/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:34:\"[\"404\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:433;s:16:\"popularity_index\";i:759;s:11:\"trend_index\";i:720;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:641;a:20:{s:4:\"tmpl\";i:1023;s:2:\"id\";i:14779;s:5:\"title\";s:33:\"Luxury Real Estate – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Footer.png\";s:12:\"tmpl_created\";i:1595315743;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:37:\"[\"Footer\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:434;s:16:\"popularity_index\";i:536;s:11:\"trend_index\";i:505;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:642;a:20:{s:4:\"tmpl\";i:1024;s:2:\"id\";i:14790;s:5:\"title\";s:33:\"Luxury Real Estate – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/07/Header.png\";s:12:\"tmpl_created\";i:1595315760;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/luxury-real-estate-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:37:\"[\"Header\",\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:436;s:16:\"popularity_index\";i:101;s:11:\"trend_index\";i:157;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:643;a:20:{s:4:\"tmpl\";i:1026;s:2:\"id\";i:14809;s:5:\"title\";s:45:\"Luxury Real Estate – Properties Archive\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2020/07/Properties.png\";s:12:\"tmpl_created\";i:1595315826;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:143:\"https://library.elementor.com/blocks/luxury-real-estate-properties-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:438;s:16:\"popularity_index\";i:414;s:11:\"trend_index\";i:420;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:644;a:20:{s:4:\"tmpl\";i:1027;s:2:\"id\";i:14816;s:5:\"title\";s:47:\"Luxury Real Estate – Property single post\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2020/07/Single-Property-.png\";s:12:\"tmpl_created\";i:1595315847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:145:\"https://library.elementor.com/blocks/luxury-real-estate-property-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:441;s:16:\"popularity_index\";i:541;s:11:\"trend_index\";i:665;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:645;a:20:{s:4:\"tmpl\";i:1025;s:2:\"id\";i:14799;s:5:\"title\";s:38:\"Luxury Real Estate – single post\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/07/Post.png\";s:12:\"tmpl_created\";i:1595315792;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:136:\"https://library.elementor.com/blocks/luxury-real-estate-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:28:\"[\"Real estate\",\"Realestate\"]\";s:10:\"menu_order\";i:442;s:16:\"popularity_index\";i:369;s:11:\"trend_index\";i:441;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:646;a:20:{s:4:\"tmpl\";i:950;s:2:\"id\";i:12635;s:5:\"title\";s:20:\"Magazine – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/01/404_s.png\";s:12:\"tmpl_created\";i:1579060746;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/magazine-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:25:\"[\"404\",\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:445;s:16:\"popularity_index\";i:645;s:11:\"trend_index\";i:734;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:647;a:20:{s:4:\"tmpl\";i:949;s:2:\"id\";i:12643;s:5:\"title\";s:24:\"Magazine – Archiv1\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv1_s.png\";s:12:\"tmpl_created\";i:1579060737;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:447;s:16:\"popularity_index\";i:346;s:11:\"trend_index\";i:272;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:648;a:20:{s:4:\"tmpl\";i:946;s:2:\"id\";i:12669;s:5:\"title\";s:23:\"Magazine – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Footer_s.png\";s:12:\"tmpl_created\";i:1579060715;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:28:\"[\"Blog\",\"Footer\",\"Magazine\"]\";s:10:\"menu_order\";i:448;s:16:\"popularity_index\";i:442;s:11:\"trend_index\";i:349;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:649;a:20:{s:4:\"tmpl\";i:945;s:2:\"id\";i:12678;s:5:\"title\";s:23:\"Magazine – Header\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-magazine.png\";s:12:\"tmpl_created\";i:1579060701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:28:\"[\"Blog\",\"Header\",\"Magazine\"]\";s:10:\"menu_order\";i:450;s:16:\"popularity_index\";i:295;s:11:\"trend_index\";i:197;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:650;a:20:{s:4:\"tmpl\";i:947;s:2:\"id\";i:12661;s:5:\"title\";s:23:\"Magazine – Search\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/01/Search_s.png\";s:12:\"tmpl_created\";i:1579060722;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/magazine-search/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:452;s:16:\"popularity_index\";i:396;s:11:\"trend_index\";i:509;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:651;a:20:{s:4:\"tmpl\";i:944;s:2:\"id\";i:12688;s:5:\"title\";s:30:\"Magazine – Single Post 1\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post2_s.png\";s:12:\"tmpl_created\";i:1579060692;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:453;s:16:\"popularity_index\";i:342;s:11:\"trend_index\";i:175;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:652;a:20:{s:4:\"tmpl\";i:943;s:2:\"id\";i:12699;s:5:\"title\";s:30:\"Magazine – Single Post 2\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post3_s.png\";s:12:\"tmpl_created\";i:1579060680;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:454;s:16:\"popularity_index\";i:348;s:11:\"trend_index\";i:129;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:653;a:20:{s:4:\"tmpl\";i:942;s:2:\"id\";i:12707;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post1_s.png\";s:12:\"tmpl_created\";i:1579060669;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:128:\"https://library.elementor.com/blocks/magazine-single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:457;s:16:\"popularity_index\";i:476;s:11:\"trend_index\";i:246;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:654;a:20:{s:4:\"tmpl\";i:941;s:2:\"id\";i:12716;s:5:\"title\";s:30:\"Magazine – Single Post 3\";s:9:\"thumbnail\";s:68:\"https://library.elementor.com/wp-content/uploads/2020/01/Post4_s.png\";s:12:\"tmpl_created\";i:1579060659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/magazine-single-post-3-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:459;s:16:\"popularity_index\";i:513;s:11:\"trend_index\";i:489;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:655;a:20:{s:4:\"tmpl\";i:948;s:2:\"id\";i:12652;s:5:\"title\";s:17:\"Magazine- Archiv2\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2020/01/Archiv2_s.png\";s:12:\"tmpl_created\";i:1579060730;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/magazine-archiv2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:19:\"[\"Blog\",\"Magazine\"]\";s:10:\"menu_order\";i:461;s:16:\"popularity_index\";i:525;s:11:\"trend_index\";i:585;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:656;a:20:{s:4:\"tmpl\";i:990;s:2:\"id\";i:13361;s:5:\"title\";s:25:\"Online Course – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/04/404.jpg\";s:12:\"tmpl_created\";i:1587474710;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/online-course-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:35:\"[\"404\",\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:462;s:16:\"popularity_index\";i:682;s:11:\"trend_index\";i:498;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:657;a:20:{s:4:\"tmpl\";i:987;s:2:\"id\";i:13387;s:5:\"title\";s:32:\"Online Course – End Lesson\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-End-.jpg\";s:12:\"tmpl_created\";i:1587474682;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/online-course-end-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:464;s:16:\"popularity_index\";i:653;s:11:\"trend_index\";i:408;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:658;a:20:{s:4:\"tmpl\";i:989;s:2:\"id\";i:13369;s:5:\"title\";s:28:\"Online Course – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/04/Footer.jpg\";s:12:\"tmpl_created\";i:1587474701;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Footer\"]\";s:10:\"menu_order\";i:466;s:16:\"popularity_index\";i:389;s:11:\"trend_index\";i:308;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:659;a:20:{s:4:\"tmpl\";i:988;s:2:\"id\";i:13378;s:5:\"title\";s:28:\"Online Course – Header\";s:9:\"thumbnail\";s:92:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-education-online-courses.jpg\";s:12:\"tmpl_created\";i:1587474693;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/online-course-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:38:\"[\"Course Online\",\"Education\",\"Header\"]\";s:10:\"menu_order\";i:469;s:16:\"popularity_index\";i:492;s:11:\"trend_index\";i:519;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:660;a:20:{s:4:\"tmpl\";i:986;s:2:\"id\";i:13395;s:5:\"title\";s:34:\"Online Course – Start Lesson\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/04/Lesson-Start.jpg\";s:12:\"tmpl_created\";i:1587474673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/online-course-start-lesson/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:29:\"[\"Course Online\",\"Education\"]\";s:10:\"menu_order\";i:471;s:16:\"popularity_index\";i:672;s:11:\"trend_index\";i:578;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:661;a:20:{s:4:\"tmpl\";i:953;s:2:\"id\";i:13089;s:5:\"title\";s:23:\"Photography – 404\";s:9:\"thumbnail\";s:66:\"https://library.elementor.com/wp-content/uploads/2020/02/404_s.png\";s:12:\"tmpl_created\";i:1582091623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/photography-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:33:\"[\"404\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:473;s:16:\"popularity_index\";i:702;s:11:\"trend_index\";i:706;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:662;a:20:{s:4:\"tmpl\";i:954;s:2:\"id\";i:13096;s:5:\"title\";s:32:\"Photography – Archiv Media\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Archiv_s.png\";s:12:\"tmpl_created\";i:1582091742;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:130:\"https://library.elementor.com/blocks/photography-archiv-media/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:475;s:16:\"popularity_index\";i:631;s:11:\"trend_index\";i:405;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:663;a:20:{s:4:\"tmpl\";i:955;s:2:\"id\";i:13103;s:5:\"title\";s:26:\"Photography – Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2020/02/Footer_s.png\";s:12:\"tmpl_created\";i:1582091903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:36:\"[\"Footer\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:477;s:16:\"popularity_index\";i:422;s:11:\"trend_index\";i:230;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:664;a:20:{s:4:\"tmpl\";i:957;s:2:\"id\";i:13112;s:5:\"title\";s:26:\"Photography – Header\";s:9:\"thumbnail\";s:89:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-photography-portfolio.png\";s:12:\"tmpl_created\";i:1582092483;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/photography-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:36:\"[\"Header\",\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:478;s:16:\"popularity_index\";i:325;s:11:\"trend_index\";i:205;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:665;a:20:{s:4:\"tmpl\";i:956;s:2:\"id\";i:13120;s:5:\"title\";s:31:\"Photography – Single Post\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/02/Post_s.png\";s:12:\"tmpl_created\";i:1582092351;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/photography-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:27:\"[\"Photography\",\"Portfolio\"]\";s:10:\"menu_order\";i:480;s:16:\"popularity_index\";i:671;s:11:\"trend_index\";i:645;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:666;a:20:{s:4:\"tmpl\";i:901;s:2:\"id\";i:11807;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:70:\"https://library.elementor.com/wp-content/uploads/2019/09/404_small.png\";s:12:\"tmpl_created\";i:1569430070;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:483;s:16:\"popularity_index\";i:480;s:11:\"trend_index\";i:497;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:667;a:20:{s:4:\"tmpl\";i:900;s:2:\"id\";i:11832;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Footer_small.png\";s:12:\"tmpl_created\";i:1569430019;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Footer\",\"Portfolio\"]\";s:10:\"menu_order\";i:484;s:16:\"popularity_index\";i:246;s:11:\"trend_index\";i:102;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:668;a:20:{s:4:\"tmpl\";i:898;s:2:\"id\";i:11847;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2019/09/Archiv_small.png\";s:12:\"tmpl_created\";i:1569430010;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:487;s:16:\"popularity_index\";i:336;s:11:\"trend_index\";i:455;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:669;a:20:{s:4:\"tmpl\";i:897;s:2:\"id\";i:11854;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:71:\"https://library.elementor.com/wp-content/uploads/2019/09/Post_small.png\";s:12:\"tmpl_created\";i:1569429983;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/portfolio/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:489;s:16:\"popularity_index\";i:482;s:11:\"trend_index\";i:609;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:670;a:20:{s:4:\"tmpl\";i:904;s:2:\"id\";i:11890;s:5:\"title\";s:9:\"Portfolio\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-design-portfolio.png\";s:12:\"tmpl_created\";i:1571907344;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Creative Portfolio\",\"Header\",\"Portfolio\"]\";s:10:\"menu_order\";i:491;s:16:\"popularity_index\";i:306;s:11:\"trend_index\";i:364;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:671;a:20:{s:4:\"tmpl\";i:896;s:2:\"id\";i:11861;s:5:\"title\";s:27:\"Portfolio – Project 1\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project1_small.png\";s:12:\"tmpl_created\";i:1569429975;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:493;s:16:\"popularity_index\";i:643;s:11:\"trend_index\";i:764;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:672;a:20:{s:4:\"tmpl\";i:895;s:2:\"id\";i:11870;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569429964;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:495;s:16:\"popularity_index\";i:662;s:11:\"trend_index\";i:816;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:673;a:20:{s:4:\"tmpl\";i:903;s:2:\"id\";i:11897;s:5:\"title\";s:27:\"Portfolio – Project 2\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project2_small.png\";s:12:\"tmpl_created\";i:1569494236;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/portfolio-project-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:496;s:16:\"popularity_index\";i:733;s:11:\"trend_index\";i:744;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:674;a:20:{s:4:\"tmpl\";i:894;s:2:\"id\";i:11877;s:5:\"title\";s:27:\"Portfolio – Project 3\";s:9:\"thumbnail\";s:75:\"https://library.elementor.com/wp-content/uploads/2019/09/Project3_small.png\";s:12:\"tmpl_created\";i:1569429954;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/portfolio-project-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Creative Portfolio\",\"Portfolio\"]\";s:10:\"menu_order\";i:498;s:16:\"popularity_index\";i:692;s:11:\"trend_index\";i:0;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:675;a:20:{s:4:\"tmpl\";i:597;s:2:\"id\";i:5019;s:5:\"title\";s:11:\"Portfolio 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_1.png\";s:12:\"tmpl_created\";i:1520520580;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:500;s:16:\"popularity_index\";i:170;s:11:\"trend_index\";i:236;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:676;a:20:{s:4:\"tmpl\";i:609;s:2:\"id\";i:5141;s:5:\"title\";s:12:\"Portfolio 10\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_10.png\";s:12:\"tmpl_created\";i:1520520601;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:503;s:16:\"popularity_index\";i:416;s:11:\"trend_index\";i:478;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:677;a:20:{s:4:\"tmpl\";i:598;s:2:\"id\";i:5027;s:5:\"title\";s:12:\"Portfolio 11\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_2.png\";s:12:\"tmpl_created\";i:1520520581;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:504;s:16:\"popularity_index\";i:304;s:11:\"trend_index\";i:421;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:678;a:20:{s:4:\"tmpl\";i:599;s:2:\"id\";i:5037;s:5:\"title\";s:12:\"Portfolio 12\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_3.png\";s:12:\"tmpl_created\";i:1520520583;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:507;s:16:\"popularity_index\";i:279;s:11:\"trend_index\";i:399;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:679;a:20:{s:4:\"tmpl\";i:600;s:2:\"id\";i:5057;s:5:\"title\";s:12:\"Portfolio 13\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_4.png\";s:12:\"tmpl_created\";i:1520520586;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:509;s:16:\"popularity_index\";i:239;s:11:\"trend_index\";i:288;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:680;a:20:{s:4:\"tmpl\";i:601;s:2:\"id\";i:5071;s:5:\"title\";s:12:\"Portfolio 14\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_5.png\";s:12:\"tmpl_created\";i:1520520588;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:511;s:16:\"popularity_index\";i:276;s:11:\"trend_index\";i:329;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:681;a:20:{s:4:\"tmpl\";i:603;s:2:\"id\";i:5090;s:5:\"title\";s:12:\"Portfolio 15\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_6.png\";s:12:\"tmpl_created\";i:1520520591;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:513;s:16:\"popularity_index\";i:186;s:11:\"trend_index\";i:283;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:682;a:20:{s:4:\"tmpl\";i:604;s:2:\"id\";i:5098;s:5:\"title\";s:12:\"Portfolio 16\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_7.png\";s:12:\"tmpl_created\";i:1520520593;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:515;s:16:\"popularity_index\";i:156;s:11:\"trend_index\";i:211;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:683;a:20:{s:4:\"tmpl\";i:606;s:2:\"id\";i:5115;s:5:\"title\";s:12:\"Portfolio 17\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_8.png\";s:12:\"tmpl_created\";i:1520520596;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:517;s:16:\"popularity_index\";i:19;s:11:\"trend_index\";i:22;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:684;a:20:{s:4:\"tmpl\";i:608;s:2:\"id\";i:5133;s:5:\"title\";s:12:\"Portfolio 18\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_9.png\";s:12:\"tmpl_created\";i:1520520599;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:118:\"https://library.elementor.com/blocks/portfolio-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:519;s:16:\"popularity_index\";i:180;s:11:\"trend_index\";i:280;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:685;a:20:{s:4:\"tmpl\";i:610;s:2:\"id\";i:5149;s:5:\"title\";s:11:\"Portfolio 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_10.png\";s:12:\"tmpl_created\";i:1520520602;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:521;s:16:\"popularity_index\";i:413;s:11:\"trend_index\";i:635;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:686;a:20:{s:4:\"tmpl\";i:468;s:2:\"id\";i:5045;s:5:\"title\";s:11:\"Portfolio 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_2.png\";s:12:\"tmpl_created\";i:1520443423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:523;s:16:\"popularity_index\";i:636;s:11:\"trend_index\";i:608;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:687;a:20:{s:4:\"tmpl\";i:602;s:2:\"id\";i:5082;s:5:\"title\";s:11:\"Portfolio 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_4.png\";s:12:\"tmpl_created\";i:1520520589;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:524;s:16:\"popularity_index\";i:558;s:11:\"trend_index\";i:654;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:688;a:20:{s:4:\"tmpl\";i:605;s:2:\"id\";i:5107;s:5:\"title\";s:11:\"Portfolio 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_7.png\";s:12:\"tmpl_created\";i:1520520594;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:527;s:16:\"popularity_index\";i:380;s:11:\"trend_index\";i:347;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:689;a:20:{s:4:\"tmpl\";i:607;s:2:\"id\";i:5125;s:5:\"title\";s:11:\"Portfolio 6\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_black_8.png\";s:12:\"tmpl_created\";i:1520520597;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:529;s:16:\"popularity_index\";i:236;s:11:\"trend_index\";i:386;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:690;a:20:{s:4:\"tmpl\";i:596;s:2:\"id\";i:5007;s:5:\"title\";s:11:\"Portfolio 7\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/portfolio_white_1.png\";s:12:\"tmpl_created\";i:1520520578;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/portfolio-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:9:\"portfolio\";s:4:\"tags\";s:13:\"[\"Portfolio\"]\";s:10:\"menu_order\";i:530;s:16:\"popularity_index\";i:44;s:11:\"trend_index\";i:183;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:691;a:20:{s:4:\"tmpl\";i:434;s:2:\"id\";i:4509;s:5:\"title\";s:9:\"Pricing 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_1.png\";s:12:\"tmpl_created\";i:1520443310;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:532;s:16:\"popularity_index\";i:703;s:11:\"trend_index\";i:641;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:692;a:20:{s:4:\"tmpl\";i:439;s:2:\"id\";i:4553;s:5:\"title\";s:10:\"Pricing 10\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_4.png\";s:12:\"tmpl_created\";i:1520443319;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:534;s:16:\"popularity_index\";i:511;s:11:\"trend_index\";i:506;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:693;a:20:{s:4:\"tmpl\";i:441;s:2:\"id\";i:4572;s:5:\"title\";s:10:\"Pricing 11\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_5.png\";s:12:\"tmpl_created\";i:1520443324;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:537;s:16:\"popularity_index\";i:308;s:11:\"trend_index\";i:248;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:694;a:20:{s:4:\"tmpl\";i:442;s:2:\"id\";i:4580;s:5:\"title\";s:10:\"Pricing 12\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_6.png\";s:12:\"tmpl_created\";i:1520443326;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:539;s:16:\"popularity_index\";i:576;s:11:\"trend_index\";i:526;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:695;a:20:{s:4:\"tmpl\";i:444;s:2:\"id\";i:4597;s:5:\"title\";s:10:\"Pricing 13\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_7.png\";s:12:\"tmpl_created\";i:1520443330;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:540;s:16:\"popularity_index\";i:613;s:11:\"trend_index\";i:450;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:696;a:20:{s:4:\"tmpl\";i:446;s:2:\"id\";i:4613;s:5:\"title\";s:10:\"Pricing 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_8.png\";s:12:\"tmpl_created\";i:1520443334;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/pricing-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:543;s:16:\"popularity_index\";i:581;s:11:\"trend_index\";i:568;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:697;a:20:{s:4:\"tmpl\";i:436;s:2:\"id\";i:4529;s:5:\"title\";s:9:\"Pricing 2\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_2.png\";s:12:\"tmpl_created\";i:1520443314;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:545;s:16:\"popularity_index\";i:609;s:11:\"trend_index\";i:613;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:698;a:20:{s:4:\"tmpl\";i:438;s:2:\"id\";i:4545;s:5:\"title\";s:9:\"Pricing 3\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_3.png\";s:12:\"tmpl_created\";i:1520443317;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:547;s:16:\"popularity_index\";i:707;s:11:\"trend_index\";i:825;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:699;a:20:{s:4:\"tmpl\";i:440;s:2:\"id\";i:4562;s:5:\"title\";s:9:\"Pricing 4\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_4.png\";s:12:\"tmpl_created\";i:1520443322;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:549;s:16:\"popularity_index\";i:697;s:11:\"trend_index\";i:821;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:700;a:20:{s:4:\"tmpl\";i:443;s:2:\"id\";i:4589;s:5:\"title\";s:9:\"Pricing 5\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_6.png\";s:12:\"tmpl_created\";i:1520443327;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:551;s:16:\"popularity_index\";i:716;s:11:\"trend_index\";i:639;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:701;a:20:{s:4:\"tmpl\";i:445;s:2:\"id\";i:4605;s:5:\"title\";s:9:\"Pricing 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_black_7.png\";s:12:\"tmpl_created\";i:1520443332;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:553;s:16:\"popularity_index\";i:738;s:11:\"trend_index\";i:773;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:702;a:20:{s:4:\"tmpl\";i:433;s:2:\"id\";i:4500;s:5:\"title\";s:9:\"Pricing 7\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_1.png\";s:12:\"tmpl_created\";i:1520443308;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:554;s:16:\"popularity_index\";i:500;s:11:\"trend_index\";i:451;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:703;a:20:{s:4:\"tmpl\";i:435;s:2:\"id\";i:4521;s:5:\"title\";s:9:\"Pricing 8\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_2.png\";s:12:\"tmpl_created\";i:1520443312;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:557;s:16:\"popularity_index\";i:311;s:11:\"trend_index\";i:372;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:704;a:20:{s:4:\"tmpl\";i:437;s:2:\"id\";i:4537;s:5:\"title\";s:9:\"Pricing 9\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/02/price_white_3.png\";s:12:\"tmpl_created\";i:1520443315;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/pricing-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"pricing\";s:4:\"tags\";s:11:\"[\"Pricing\"]\";s:10:\"menu_order\";i:559;s:16:\"popularity_index\";i:589;s:11:\"trend_index\";i:841;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:705;a:20:{s:4:\"tmpl\";i:1046;s:2:\"id\";i:15204;s:5:\"title\";s:24:\"Psychologist – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/09/404.jpg\";s:12:\"tmpl_created\";i:1600161419;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/psychologist-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:40:\"[\"404\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:564;s:16:\"popularity_index\";i:574;s:11:\"trend_index\";i:493;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:706;a:20:{s:4:\"tmpl\";i:1047;s:2:\"id\";i:15212;s:5:\"title\";s:28:\"Psychologist – Archive\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2020/09/Blog.jpg\";s:12:\"tmpl_created\";i:1600162340;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:126:\"https://library.elementor.com/blocks/psychologist-archive/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:565;s:16:\"popularity_index\";i:379;s:11:\"trend_index\";i:358;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:707;a:20:{s:4:\"tmpl\";i:1048;s:2:\"id\";i:15219;s:5:\"title\";s:27:\"Psychologist – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Footer.jpg\";s:12:\"tmpl_created\";i:1600163069;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:43:\"[\"Footer\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:599;s:11:\"trend_index\";i:500;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:708;a:20:{s:4:\"tmpl\";i:701;s:2:\"id\";i:9239;s:5:\"title\";s:17:\"product archive 1\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-1.png\";s:12:\"tmpl_created\";i:1532953482;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:566;s:16:\"popularity_index\";i:60;s:11:\"trend_index\";i:25;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:709;a:20:{s:4:\"tmpl\";i:1049;s:2:\"id\";i:15230;s:5:\"title\";s:27:\"Psychologist – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/09/Header.png\";s:12:\"tmpl_created\";i:1600163444;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/psychologist-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:43:\"[\"Header\",\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:429;s:11:\"trend_index\";i:423;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:710;a:20:{s:4:\"tmpl\";i:702;s:2:\"id\";i:9247;s:5:\"title\";s:17:\"product archive 2\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-2.png\";s:12:\"tmpl_created\";i:1532953793;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:567;s:16:\"popularity_index\";i:71;s:11:\"trend_index\";i:30;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:711;a:20:{s:4:\"tmpl\";i:1050;s:2:\"id\";i:15240;s:5:\"title\";s:34:\"Psychologist – single post 1\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Post.png\";s:12:\"tmpl_created\";i:1600164087;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:562;s:11:\"trend_index\";i:570;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:712;a:20:{s:4:\"tmpl\";i:703;s:2:\"id\";i:9254;s:5:\"title\";s:17:\"product archive 3\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/product-archive-350-3.png\";s:12:\"tmpl_created\";i:1532954032;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/product-archive-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:15:\"product archive\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:568;s:16:\"popularity_index\";i:73;s:11:\"trend_index\";i:44;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:713;a:20:{s:4:\"tmpl\";i:1051;s:2:\"id\";i:15251;s:5:\"title\";s:34:\"Psychologist – single post 2\";s:9:\"thumbnail\";s:80:\"https://library.elementor.com/wp-content/uploads/2020/09/Single-Service-Page.png\";s:12:\"tmpl_created\";i:1600165179;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:132:\"https://library.elementor.com/blocks/psychologist-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:34:\"[\"Psychologist\",\"Psychotherapist\"]\";s:10:\"menu_order\";i:569;s:16:\"popularity_index\";i:507;s:11:\"trend_index\";i:368;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:714;a:20:{s:4:\"tmpl\";i:412;s:2:\"id\";i:4313;s:5:\"title\";s:11:\"Services 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_8.png\";s:12:\"tmpl_created\";i:1520443268;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:570;s:16:\"popularity_index\";i:115;s:11:\"trend_index\";i:53;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:715;a:20:{s:4:\"tmpl\";i:413;s:2:\"id\";i:4324;s:5:\"title\";s:11:\"Services 14\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_9.png\";s:12:\"tmpl_created\";i:1520443270;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:571;s:16:\"popularity_index\";i:277;s:11:\"trend_index\";i:138;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:716;a:20:{s:4:\"tmpl\";i:418;s:2:\"id\";i:4368;s:5:\"title\";s:11:\"Services 16\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_13.png\";s:12:\"tmpl_created\";i:1520443279;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:572;s:16:\"popularity_index\";i:62;s:11:\"trend_index\";i:59;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:717;a:20:{s:4:\"tmpl\";i:420;s:2:\"id\";i:4391;s:5:\"title\";s:11:\"Services 17\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_14.png\";s:12:\"tmpl_created\";i:1520443283;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:573;s:16:\"popularity_index\";i:153;s:11:\"trend_index\";i:120;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:718;a:20:{s:4:\"tmpl\";i:403;s:2:\"id\";i:4235;s:5:\"title\";s:11:\"Services 18\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_2.png\";s:12:\"tmpl_created\";i:1520443251;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:574;s:16:\"popularity_index\";i:273;s:11:\"trend_index\";i:172;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:719;a:20:{s:4:\"tmpl\";i:417;s:2:\"id\";i:4357;s:5:\"title\";s:11:\"Services 20\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_12.png\";s:12:\"tmpl_created\";i:1520443277;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:575;s:16:\"popularity_index\";i:45;s:11:\"trend_index\";i:45;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:720;a:20:{s:4:\"tmpl\";i:415;s:2:\"id\";i:4341;s:5:\"title\";s:11:\"Services 21\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_11.png\";s:12:\"tmpl_created\";i:1520443274;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:576;s:16:\"popularity_index\";i:142;s:11:\"trend_index\";i:114;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:721;a:20:{s:4:\"tmpl\";i:414;s:2:\"id\";i:4332;s:5:\"title\";s:11:\"Services 22\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_10.png\";s:12:\"tmpl_created\";i:1520443272;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:577;s:16:\"popularity_index\";i:138;s:11:\"trend_index\";i:149;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:722;a:20:{s:4:\"tmpl\";i:401;s:2:\"id\";i:4212;s:5:\"title\";s:11:\"Services 23\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_1.png\";s:12:\"tmpl_created\";i:1520443248;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:578;s:16:\"popularity_index\";i:136;s:11:\"trend_index\";i:302;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:723;a:20:{s:4:\"tmpl\";i:408;s:2:\"id\";i:4276;s:5:\"title\";s:11:\"Services 24\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_4.png\";s:12:\"tmpl_created\";i:1520443261;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:579;s:16:\"popularity_index\";i:353;s:11:\"trend_index\";i:514;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:724;a:20:{s:4:\"tmpl\";i:406;s:2:\"id\";i:4260;s:5:\"title\";s:11:\"Services 25\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_3.png\";s:12:\"tmpl_created\";i:1520443257;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-25/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:580;s:16:\"popularity_index\";i:184;s:11:\"trend_index\";i:209;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:725;a:20:{s:4:\"tmpl\";i:404;s:2:\"id\";i:4244;s:5:\"title\";s:11:\"Services 26\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_2.png\";s:12:\"tmpl_created\";i:1520443253;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:581;s:16:\"popularity_index\";i:544;s:11:\"trend_index\";i:596;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:726;a:20:{s:4:\"tmpl\";i:421;s:2:\"id\";i:4400;s:5:\"title\";s:11:\"Services 27\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_13.png\";s:12:\"tmpl_created\";i:1520443285;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:582;s:16:\"popularity_index\";i:286;s:11:\"trend_index\";i:438;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:727;a:20:{s:4:\"tmpl\";i:419;s:2:\"id\";i:4376;s:5:\"title\";s:11:\"Services 28\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_12.png\";s:12:\"tmpl_created\";i:1520443281;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-28/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:583;s:16:\"popularity_index\";i:151;s:11:\"trend_index\";i:249;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:728;a:20:{s:4:\"tmpl\";i:416;s:2:\"id\";i:4349;s:5:\"title\";s:11:\"Services 29\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_11.png\";s:12:\"tmpl_created\";i:1520443275;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:584;s:16:\"popularity_index\";i:330;s:11:\"trend_index\";i:483;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:729;a:20:{s:4:\"tmpl\";i:402;s:2:\"id\";i:4227;s:5:\"title\";s:11:\"Services 30\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_black_1.png\";s:12:\"tmpl_created\";i:1520443250;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-30/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:585;s:16:\"popularity_index\";i:351;s:11:\"trend_index\";i:553;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:730;a:20:{s:4:\"tmpl\";i:560;s:2:\"id\";i:6162;s:5:\"title\";s:11:\"Services 31\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_1.png\";s:12:\"tmpl_created\";i:1520443668;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/services-31/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:586;s:16:\"popularity_index\";i:372;s:11:\"trend_index\";i:550;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:731;a:20:{s:4:\"tmpl\";i:411;s:2:\"id\";i:4302;s:5:\"title\";s:10:\"Services 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_7.png\";s:12:\"tmpl_created\";i:1520443266;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:587;s:16:\"popularity_index\";i:58;s:11:\"trend_index\";i:97;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:732;a:20:{s:4:\"tmpl\";i:410;s:2:\"id\";i:4293;s:5:\"title\";s:10:\"Services 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_6.png\";s:12:\"tmpl_created\";i:1520443265;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:588;s:16:\"popularity_index\";i:288;s:11:\"trend_index\";i:269;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:733;a:20:{s:4:\"tmpl\";i:409;s:2:\"id\";i:4284;s:5:\"title\";s:10:\"Services 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_5.png\";s:12:\"tmpl_created\";i:1520443263;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:589;s:16:\"popularity_index\";i:27;s:11:\"trend_index\";i:21;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:734;a:20:{s:4:\"tmpl\";i:407;s:2:\"id\";i:4268;s:5:\"title\";s:10:\"Services 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_4.png\";s:12:\"tmpl_created\";i:1520443259;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:590;s:16:\"popularity_index\";i:173;s:11:\"trend_index\";i:213;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:735;a:20:{s:4:\"tmpl\";i:405;s:2:\"id\";i:4252;s:5:\"title\";s:10:\"Services 9\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/02/Service_white_3.png\";s:12:\"tmpl_created\";i:1520443255;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/services-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:8:\"services\";s:4:\"tags\";s:12:\"[\"Services\"]\";s:10:\"menu_order\";i:591;s:16:\"popularity_index\";i:46;s:11:\"trend_index\";i:99;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:736;a:20:{s:4:\"tmpl\";i:677;s:2:\"id\";i:8676;s:5:\"title\";s:13:\"single page 1\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.6.jpg\";s:12:\"tmpl_created\";i:1527682423;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:592;s:16:\"popularity_index\";i:285;s:11:\"trend_index\";i:145;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:737;a:20:{s:4:\"tmpl\";i:678;s:2:\"id\";i:8678;s:5:\"title\";s:13:\"single page 2\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.2.jpg\";s:12:\"tmpl_created\";i:1527682780;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:593;s:16:\"popularity_index\";i:140;s:11:\"trend_index\";i:82;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:738;a:20:{s:4:\"tmpl\";i:679;s:2:\"id\";i:8679;s:5:\"title\";s:13:\"single page 3\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.3.jpg\";s:12:\"tmpl_created\";i:1527682847;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:594;s:16:\"popularity_index\";i:122;s:11:\"trend_index\";i:23;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:739;a:20:{s:4:\"tmpl\";i:680;s:2:\"id\";i:8680;s:5:\"title\";s:13:\"single page 4\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.1.jpg\";s:12:\"tmpl_created\";i:1527682896;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:595;s:16:\"popularity_index\";i:373;s:11:\"trend_index\";i:190;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:740;a:20:{s:4:\"tmpl\";i:681;s:2:\"id\";i:8681;s:5:\"title\";s:13:\"single page 5\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.5.jpg\";s:12:\"tmpl_created\";i:1527682969;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:596;s:16:\"popularity_index\";i:287;s:11:\"trend_index\";i:218;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:741;a:20:{s:4:\"tmpl\";i:682;s:2:\"id\";i:8682;s:5:\"title\";s:13:\"single page 6\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.4.jpg\";s:12:\"tmpl_created\";i:1527683026;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:597;s:16:\"popularity_index\";i:412;s:11:\"trend_index\";i:227;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:742;a:20:{s:4:\"tmpl\";i:683;s:2:\"id\";i:8703;s:5:\"title\";s:13:\"single page 7\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2018/05/S_P350.7.jpg\";s:12:\"tmpl_created\";i:1527683072;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-page-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single page\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:598;s:16:\"popularity_index\";i:401;s:11:\"trend_index\";i:316;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:743;a:20:{s:4:\"tmpl\";i:640;s:2:\"id\";i:7650;s:5:\"title\";s:13:\"Single Post 1\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_1_v2.jpg\";s:12:\"tmpl_created\";i:1521557736;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:599;s:16:\"popularity_index\";i:119;s:11:\"trend_index\";i:266;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:744;a:20:{s:4:\"tmpl\";i:639;s:2:\"id\";i:7663;s:5:\"title\";s:13:\"Single Post 2\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/single_post_2_v2.jpg\";s:12:\"tmpl_created\";i:1521547761;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:24:\"[\"Blog\",\"Post\",\"Single\"]\";s:10:\"menu_order\";i:600;s:16:\"popularity_index\";i:50;s:11:\"trend_index\";i:139;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:745;a:20:{s:4:\"tmpl\";i:705;s:2:\"id\";i:9296;s:5:\"title\";s:13:\"Single Post 3\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3002.jpg\";s:12:\"tmpl_created\";i:1537440673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:601;s:16:\"popularity_index\";i:213;s:11:\"trend_index\";i:204;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:746;a:20:{s:4:\"tmpl\";i:704;s:2:\"id\";i:9301;s:5:\"title\";s:13:\"Single Post 4\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3003.jpg\";s:12:\"tmpl_created\";i:1537440661;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:602;s:16:\"popularity_index\";i:248;s:11:\"trend_index\";i:336;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:747;a:20:{s:4:\"tmpl\";i:706;s:2:\"id\";i:9313;s:5:\"title\";s:13:\"Single Post 5\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3001.jpg\";s:12:\"tmpl_created\";i:1537440798;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:603;s:16:\"popularity_index\";i:197;s:11:\"trend_index\";i:177;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:748;a:20:{s:4:\"tmpl\";i:707;s:2:\"id\";i:9343;s:5:\"title\";s:13:\"Single Post 6\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3004.jpg\";s:12:\"tmpl_created\";i:1537443531;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:604;s:16:\"popularity_index\";i:228;s:11:\"trend_index\";i:279;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:749;a:20:{s:4:\"tmpl\";i:708;s:2:\"id\";i:9349;s:5:\"title\";s:13:\"Single Post 7\";s:9:\"thumbnail\";s:65:\"https://library.elementor.com/wp-content/uploads/2018/09/3005.jpg\";s:12:\"tmpl_created\";i:1537443903;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/single-post-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:605;s:16:\"popularity_index\";i:158;s:11:\"trend_index\";i:253;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:750;a:20:{s:4:\"tmpl\";i:555;s:2:\"id\";i:6114;s:5:\"title\";s:7:\"Stats 1\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_6.png\";s:12:\"tmpl_created\";i:1520443659;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:610;s:16:\"popularity_index\";i:434;s:11:\"trend_index\";i:692;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:751;a:20:{s:4:\"tmpl\";i:562;s:2:\"id\";i:6178;s:5:\"title\";s:8:\"Stats 10\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_2.png\";s:12:\"tmpl_created\";i:1520443676;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:611;s:16:\"popularity_index\";i:435;s:11:\"trend_index\";i:755;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:752;a:20:{s:4:\"tmpl\";i:561;s:2:\"id\";i:6170;s:5:\"title\";s:8:\"Stats 11\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_2.png\";s:12:\"tmpl_created\";i:1520443670;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:366;s:11:\"trend_index\";i:552;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:753;a:20:{s:4:\"tmpl\";i:697;s:2:\"id\";i:9174;s:5:\"title\";s:17:\"single product 01\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product01_350.png\";s:12:\"tmpl_created\";i:1532950125;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-01/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:612;s:16:\"popularity_index\";i:31;s:11:\"trend_index\";i:6;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:754;a:20:{s:4:\"tmpl\";i:563;s:2:\"id\";i:6186;s:5:\"title\";s:8:\"Stats 12\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_white_3.png\";s:12:\"tmpl_created\";i:1520443678;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:569;s:11:\"trend_index\";i:811;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:755;a:20:{s:4:\"tmpl\";i:698;s:2:\"id\";i:9178;s:5:\"title\";s:17:\"single product 02\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product02_350new.png\";s:12:\"tmpl_created\";i:1532951997;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-02/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:613;s:16:\"popularity_index\";i:66;s:11:\"trend_index\";i:42;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:756;a:20:{s:4:\"tmpl\";i:550;s:2:\"id\";i:6071;s:5:\"title\";s:8:\"Stats 13\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_3.png\";s:12:\"tmpl_created\";i:1520443649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:114:\"https://library.elementor.com/blocks/stats-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:168;s:11:\"trend_index\";i:328;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:757;a:20:{s:4:\"tmpl\";i:699;s:2:\"id\";i:9180;s:5:\"title\";s:17:\"single product 03\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product03_350.png\";s:12:\"tmpl_created\";i:1532952302;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-03/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:614;s:16:\"popularity_index\";i:108;s:11:\"trend_index\";i:66;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:758;a:20:{s:4:\"tmpl\";i:554;s:2:\"id\";i:6106;s:5:\"title\";s:7:\"Stats 2\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_6.png\";s:12:\"tmpl_created\";i:1520443657;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:361;s:11:\"trend_index\";i:784;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:759;a:20:{s:4:\"tmpl\";i:700;s:2:\"id\";i:9182;s:5:\"title\";s:17:\"single product 04\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/07/single_product040_350.png\";s:12:\"tmpl_created\";i:1532952606;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:123:\"https://library.elementor.com/blocks/single-product-04/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:17:\"essential-oct2023\";s:7:\"subtype\";s:14:\"single product\";s:4:\"tags\";s:2:\"[]\";s:10:\"menu_order\";i:615;s:16:\"popularity_index\";i:123;s:11:\"trend_index\";i:81;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:760;a:20:{s:4:\"tmpl\";i:551;s:2:\"id\";i:6079;s:5:\"title\";s:7:\"Stats 3\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_4.png\";s:12:\"tmpl_created\";i:1520443651;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:616;s:16:\"popularity_index\";i:284;s:11:\"trend_index\";i:385;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:761;a:20:{s:4:\"tmpl\";i:552;s:2:\"id\";i:6089;s:5:\"title\";s:7:\"Stats 4\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_5.png\";s:12:\"tmpl_created\";i:1520443653;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:617;s:16:\"popularity_index\";i:205;s:11:\"trend_index\";i:452;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:762;a:20:{s:4:\"tmpl\";i:549;s:2:\"id\";i:6063;s:5:\"title\";s:7:\"Stats 5\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_2.png\";s:12:\"tmpl_created\";i:1520443647;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:618;s:16:\"popularity_index\";i:181;s:11:\"trend_index\";i:419;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:763;a:20:{s:4:\"tmpl\";i:553;s:2:\"id\";i:6097;s:5:\"title\";s:7:\"Stats 6\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_2.png\";s:12:\"tmpl_created\";i:1520443655;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:11:\"[\"numbers\"]\";s:10:\"menu_order\";i:619;s:16:\"popularity_index\";i:264;s:11:\"trend_index\";i:492;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:764;a:20:{s:4:\"tmpl\";i:538;s:2:\"id\";i:5956;s:5:\"title\";s:7:\"Stats 7\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_black_1.png\";s:12:\"tmpl_created\";i:1520443623;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:620;s:16:\"popularity_index\";i:532;s:11:\"trend_index\";i:541;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:765;a:20:{s:4:\"tmpl\";i:537;s:2:\"id\";i:5947;s:5:\"title\";s:7:\"Stats 8\";s:9:\"thumbnail\";s:76:\"https://library.elementor.com/wp-content/uploads/2018/03/numbers_white_1.png\";s:12:\"tmpl_created\";i:1520443621;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-8/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:621;s:16:\"popularity_index\";i:368;s:11:\"trend_index\";i:531;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:766;a:20:{s:4:\"tmpl\";i:559;s:2:\"id\";i:6152;s:5:\"title\";s:7:\"Stats 9\";s:9:\"thumbnail\";s:77:\"https://library.elementor.com/wp-content/uploads/2018/03/progress_black_1.png\";s:12:\"tmpl_created\";i:1520443666;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/stats-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:5:\"stats\";s:4:\"tags\";s:9:\"[\"Stats\"]\";s:10:\"menu_order\";i:622;s:16:\"popularity_index\";i:272;s:11:\"trend_index\";i:557;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:767;a:20:{s:4:\"tmpl\";i:469;s:2:\"id\";i:5157;s:5:\"title\";s:11:\"Subscribe 1\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_1.png\";s:12:\"tmpl_created\";i:1520443448;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:623;s:16:\"popularity_index\";i:340;s:11:\"trend_index\";i:293;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:768;a:20:{s:4:\"tmpl\";i:472;s:2:\"id\";i:5181;s:5:\"title\";s:11:\"Subscribe 2\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_2.png\";s:12:\"tmpl_created\";i:1520443454;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/subscribe-2-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:624;s:16:\"popularity_index\";i:451;s:11:\"trend_index\";i:340;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:769;a:20:{s:4:\"tmpl\";i:470;s:2:\"id\";i:5165;s:5:\"title\";s:11:\"Subscribe 3\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_1.png\";s:12:\"tmpl_created\";i:1520443450;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-3/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:625;s:16:\"popularity_index\";i:520;s:11:\"trend_index\";i:620;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:770;a:20:{s:4:\"tmpl\";i:477;s:2:\"id\";i:5222;s:5:\"title\";s:11:\"Subscribe 4\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_black_3.png\";s:12:\"tmpl_created\";i:1520443464;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:626;s:16:\"popularity_index\";i:397;s:11:\"trend_index\";i:427;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:771;a:20:{s:4:\"tmpl\";i:471;s:2:\"id\";i:5173;s:5:\"title\";s:11:\"Subscribe 5\";s:9:\"thumbnail\";s:78:\"https://library.elementor.com/wp-content/uploads/2018/03/subscribe_white_2.png\";s:12:\"tmpl_created\";i:1520443452;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:117:\"https://library.elementor.com/blocks/subscribe-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:9:\"subscribe\";s:4:\"tags\";s:20:\"[\"Form\",\"Subscribe\"]\";s:10:\"menu_order\";i:627;s:16:\"popularity_index\";i:261;s:11:\"trend_index\";i:237;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:772;a:20:{s:4:\"tmpl\";i:465;s:2:\"id\";i:4801;s:5:\"title\";s:7:\"Team 11\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_8.png\";s:12:\"tmpl_created\";i:1520443369;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:628;s:16:\"popularity_index\";i:332;s:11:\"trend_index\";i:188;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:773;a:20:{s:4:\"tmpl\";i:462;s:2:\"id\";i:4770;s:5:\"title\";s:7:\"Team 12\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_6.png\";s:12:\"tmpl_created\";i:1520443364;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:115:\"https://library.elementor.com/blocks/team-12-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:629;s:16:\"popularity_index\";i:432;s:11:\"trend_index\";i:488;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:774;a:20:{s:4:\"tmpl\";i:458;s:2:\"id\";i:4727;s:5:\"title\";s:7:\"Team 13\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_2.png\";s:12:\"tmpl_created\";i:1520443356;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:630;s:16:\"popularity_index\";i:375;s:11:\"trend_index\";i:345;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:775;a:20:{s:4:\"tmpl\";i:543;s:2:\"id\";i:5999;s:5:\"title\";s:7:\"Team 14\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_10.png\";s:12:\"tmpl_created\";i:1520443634;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:631;s:16:\"popularity_index\";i:110;s:11:\"trend_index\";i:318;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:776;a:20:{s:4:\"tmpl\";i:455;s:2:\"id\";i:4698;s:5:\"title\";s:7:\"Team 15\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_1.png\";s:12:\"tmpl_created\";i:1520443350;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:632;s:16:\"popularity_index\";i:449;s:11:\"trend_index\";i:410;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:777;a:20:{s:4:\"tmpl\";i:463;s:2:\"id\";i:4781;s:5:\"title\";s:7:\"Team 16\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_7.png\";s:12:\"tmpl_created\";i:1520443365;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:633;s:16:\"popularity_index\";i:267;s:11:\"trend_index\";i:330;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:778;a:20:{s:4:\"tmpl\";i:558;s:2:\"id\";i:6144;s:5:\"title\";s:7:\"Team 17\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_11.png\";s:12:\"tmpl_created\";i:1520443664;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:634;s:16:\"popularity_index\";i:166;s:11:\"trend_index\";i:365;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:779;a:20:{s:4:\"tmpl\";i:464;s:2:\"id\";i:4793;s:5:\"title\";s:7:\"Team 18\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_8.png\";s:12:\"tmpl_created\";i:1520443367;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:635;s:16:\"popularity_index\";i:207;s:11:\"trend_index\";i:173;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:780;a:20:{s:4:\"tmpl\";i:466;s:2:\"id\";i:4809;s:5:\"title\";s:7:\"Team 19\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_9.png\";s:12:\"tmpl_created\";i:1520443371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:636;s:16:\"popularity_index\";i:300;s:11:\"trend_index\";i:465;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:781;a:20:{s:4:\"tmpl\";i:459;s:2:\"id\";i:4736;s:5:\"title\";s:7:\"Team 20\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_4.png\";s:12:\"tmpl_created\";i:1520443358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:637;s:16:\"popularity_index\";i:144;s:11:\"trend_index\";i:159;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:782;a:20:{s:4:\"tmpl\";i:467;s:2:\"id\";i:4818;s:5:\"title\";s:7:\"Team 21\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_9.png\";s:12:\"tmpl_created\";i:1520443373;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:638;s:16:\"popularity_index\";i:515;s:11:\"trend_index\";i:606;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:783;a:20:{s:4:\"tmpl\";i:461;s:2:\"id\";i:4759;s:5:\"title\";s:7:\"Team 22\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_5.png\";s:12:\"tmpl_created\";i:1520443362;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:639;s:16:\"popularity_index\";i:299;s:11:\"trend_index\";i:376;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:784;a:20:{s:4:\"tmpl\";i:460;s:2:\"id\";i:4746;s:5:\"title\";s:7:\"Team 23\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_black_4.png\";s:12:\"tmpl_created\";i:1520443360;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:113:\"https://library.elementor.com/blocks/team-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:640;s:16:\"popularity_index\";i:282;s:11:\"trend_index\";i:378;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:785;a:20:{s:4:\"tmpl\";i:457;s:2:\"id\";i:4718;s:5:\"title\";s:6:\"Team 4\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_3.png\";s:12:\"tmpl_created\";i:1520443354;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-4/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:641;s:16:\"popularity_index\";i:192;s:11:\"trend_index\";i:359;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:786;a:20:{s:4:\"tmpl\";i:456;s:2:\"id\";i:4706;s:5:\"title\";s:6:\"Team 5\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_2.png\";s:12:\"tmpl_created\";i:1520443352;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-5/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:642;s:16:\"popularity_index\";i:149;s:11:\"trend_index\";i:299;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:787;a:20:{s:4:\"tmpl\";i:544;s:2:\"id\";i:6008;s:5:\"title\";s:6:\"Team 6\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_10.png\";s:12:\"tmpl_created\";i:1520443636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-6/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:643;s:16:\"popularity_index\";i:75;s:11:\"trend_index\";i:277;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:788;a:20:{s:4:\"tmpl\";i:454;s:2:\"id\";i:4690;s:5:\"title\";s:6:\"Team 7\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2018/03/team_white_1.png\";s:12:\"tmpl_created\";i:1520443348;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:112:\"https://library.elementor.com/blocks/team-7/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:4:\"team\";s:4:\"tags\";s:8:\"[\"Team\"]\";s:10:\"menu_order\";i:644;s:16:\"popularity_index\";i:243;s:11:\"trend_index\";i:402;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:789;a:20:{s:4:\"tmpl\";i:586;s:2:\"id\";i:4921;s:5:\"title\";s:14:\"Testimonial 10\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_5.png\";s:12:\"tmpl_created\";i:1520520562;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-10/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:645;s:16:\"popularity_index\";i:219;s:11:\"trend_index\";i:198;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:790;a:20:{s:4:\"tmpl\";i:582;s:2:\"id\";i:4889;s:5:\"title\";s:14:\"Testimonial 11\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-2.jpg\";s:12:\"tmpl_created\";i:1520520556;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-11/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:646;s:16:\"popularity_index\";i:557;s:11:\"trend_index\";i:522;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:791;a:20:{s:4:\"tmpl\";i:580;s:2:\"id\";i:4871;s:5:\"title\";s:14:\"Testimonial 12\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_3.png\";s:12:\"tmpl_created\";i:1520520552;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-12/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:647;s:16:\"popularity_index\";i:262;s:11:\"trend_index\";i:391;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:792;a:20:{s:4:\"tmpl\";i:578;s:2:\"id\";i:4854;s:5:\"title\";s:14:\"Testimonial 13\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_2.png\";s:12:\"tmpl_created\";i:1520520549;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-13/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:648;s:16:\"popularity_index\";i:637;s:11:\"trend_index\";i:741;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:793;a:20:{s:4:\"tmpl\";i:595;s:2:\"id\";i:4995;s:5:\"title\";s:14:\"Testimonial 14\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_12.png\";s:12:\"tmpl_created\";i:1520520577;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-14/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:649;s:16:\"popularity_index\";i:400;s:11:\"trend_index\";i:411;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:794;a:20:{s:4:\"tmpl\";i:593;s:2:\"id\";i:4979;s:5:\"title\";s:14:\"Testimonial 15\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_10.png\";s:12:\"tmpl_created\";i:1520520573;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-15/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:650;s:16:\"popularity_index\";i:568;s:11:\"trend_index\";i:544;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:795;a:20:{s:4:\"tmpl\";i:576;s:2:\"id\";i:4835;s:5:\"title\";s:14:\"Testimonial 16\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_1.png\";s:12:\"tmpl_created\";i:1520520546;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-16/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:651;s:16:\"popularity_index\";i:399;s:11:\"trend_index\";i:401;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:796;a:20:{s:4:\"tmpl\";i:594;s:2:\"id\";i:4987;s:5:\"title\";s:14:\"Testimonial 17\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_12-1.png\";s:12:\"tmpl_created\";i:1520520575;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-17/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:652;s:16:\"popularity_index\";i:159;s:11:\"trend_index\";i:199;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:797;a:20:{s:4:\"tmpl\";i:577;s:2:\"id\";i:4843;s:5:\"title\";s:14:\"Testimonial 18\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_2.png\";s:12:\"tmpl_created\";i:1520520548;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-18/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:653;s:16:\"popularity_index\";i:457;s:11:\"trend_index\";i:780;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:798;a:20:{s:4:\"tmpl\";i:579;s:2:\"id\";i:4863;s:5:\"title\";s:14:\"Testimonial 19\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_3.png\";s:12:\"tmpl_created\";i:1520520551;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-19/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:654;s:16:\"popularity_index\";i:245;s:11:\"trend_index\";i:599;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:799;a:20:{s:4:\"tmpl\";i:581;s:2:\"id\";i:4880;s:5:\"title\";s:14:\"Testimonial 20\";s:9:\"thumbnail\";s:72:\"https://library.elementor.com/wp-content/uploads/2018/03/customers-1.jpg\";s:12:\"tmpl_created\";i:1520520554;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-20/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:655;s:16:\"popularity_index\";i:446;s:11:\"trend_index\";i:653;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:800;a:20:{s:4:\"tmpl\";i:583;s:2:\"id\";i:4897;s:5:\"title\";s:14:\"Testimonial 21\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_5.png\";s:12:\"tmpl_created\";i:1520520557;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-21/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:656;s:16:\"popularity_index\";i:78;s:11:\"trend_index\";i:289;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:801;a:20:{s:4:\"tmpl\";i:584;s:2:\"id\";i:4905;s:5:\"title\";s:14:\"Testimonial 22\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_6.png\";s:12:\"tmpl_created\";i:1520520559;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-22/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:657;s:16:\"popularity_index\";i:121;s:11:\"trend_index\";i:221;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:802;a:20:{s:4:\"tmpl\";i:585;s:2:\"id\";i:4913;s:5:\"title\";s:14:\"Testimonial 23\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_7.png\";s:12:\"tmpl_created\";i:1520520561;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-23/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:658;s:16:\"popularity_index\";i:247;s:11:\"trend_index\";i:566;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:803;a:20:{s:4:\"tmpl\";i:575;s:2:\"id\";i:4826;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_1.png\";s:12:\"tmpl_created\";i:1520520544;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-24-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:659;s:16:\"popularity_index\";i:256;s:11:\"trend_index\";i:395;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:804;a:20:{s:4:\"tmpl\";i:587;s:2:\"id\";i:4929;s:5:\"title\";s:14:\"Testimonial 24\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_8.png\";s:12:\"tmpl_created\";i:1520520564;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-24/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:660;s:16:\"popularity_index\";i:49;s:11:\"trend_index\";i:206;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:805;a:20:{s:4:\"tmpl\";i:591;s:2:\"id\";i:4963;s:5:\"title\";s:14:\"Testimonial 25\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_10.png\";s:12:\"tmpl_created\";i:1520520570;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:122:\"https://library.elementor.com/blocks/testimonial-25-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:661;s:16:\"popularity_index\";i:417;s:11:\"trend_index\";i:546;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:806;a:20:{s:4:\"tmpl\";i:592;s:2:\"id\";i:4971;s:5:\"title\";s:14:\"Testimonial 26\";s:9:\"thumbnail\";s:82:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_11.png\";s:12:\"tmpl_created\";i:1520520572;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-26/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:662;s:16:\"popularity_index\";i:649;s:11:\"trend_index\";i:718;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:807;a:20:{s:4:\"tmpl\";i:589;s:2:\"id\";i:4947;s:5:\"title\";s:14:\"Testimonial 27\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_white_9.png\";s:12:\"tmpl_created\";i:1520520567;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-27/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:663;s:16:\"popularity_index\";i:221;s:11:\"trend_index\";i:496;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:808;a:20:{s:4:\"tmpl\";i:590;s:2:\"id\";i:4955;s:5:\"title\";s:14:\"Testimonial 29\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_9.png\";s:12:\"tmpl_created\";i:1520520569;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:120:\"https://library.elementor.com/blocks/testimonial-29/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:664;s:16:\"popularity_index\";i:378;s:11:\"trend_index\";i:695;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:809;a:20:{s:4:\"tmpl\";i:588;s:2:\"id\";i:4939;s:5:\"title\";s:13:\"Testimonial 9\";s:9:\"thumbnail\";s:81:\"https://library.elementor.com/wp-content/uploads/2018/03/testimonials_black_8.png\";s:12:\"tmpl_created\";i:1520520565;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/testimonial-9/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:4:\"free\";s:7:\"subtype\";s:12:\"testimonials\";s:4:\"tags\";s:15:\"[\"Testimonial\"]\";s:10:\"menu_order\";i:665;s:16:\"popularity_index\";i:103;s:11:\"trend_index\";i:341;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"0\";s:12:\"access_level\";i:0;}i:810;a:20:{s:4:\"tmpl\";i:928;s:2:\"id\";i:12509;s:5:\"title\";s:18:\"Travel – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2019/12/404.png\";s:12:\"tmpl_created\";i:1575960378;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:116:\"https://library.elementor.com/blocks/travel-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:24:\"[\"404\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:666;s:16:\"popularity_index\";i:747;s:11:\"trend_index\";i:712;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:811;a:20:{s:4:\"tmpl\";i:929;s:2:\"id\";i:12516;s:5:\"title\";s:27:\"Travel – Archive Blog\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Archiv_s.png\";s:12:\"tmpl_created\";i:1575960387;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:125:\"https://library.elementor.com/blocks/travel-archive-blog/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:667;s:16:\"popularity_index\";i:496;s:11:\"trend_index\";i:487;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:812;a:20:{s:4:\"tmpl\";i:927;s:2:\"id\";i:12500;s:5:\"title\";s:21:\"Travel – Header\";s:9:\"thumbnail\";s:84:\"https://library.elementor.com/wp-content/uploads/2020/06/Header-travel-and-tours.png\";s:12:\"tmpl_created\";i:1575960371;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:27:\"[\"Header\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:668;s:16:\"popularity_index\";i:443;s:11:\"trend_index\";i:434;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:813;a:20:{s:4:\"tmpl\";i:930;s:2:\"id\";i:12524;s:5:\"title\";s:26:\"Travel – Single Post\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Post_s.png\";s:12:\"tmpl_created\";i:1575960397;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-single-post/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:669;s:16:\"popularity_index\";i:591;s:11:\"trend_index\";i:663;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:814;a:20:{s:4:\"tmpl\";i:931;s:2:\"id\";i:12531;s:5:\"title\";s:31:\"Travel – Single Post Tour\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2019/12/Single_Tour_s.png\";s:12:\"tmpl_created\";i:1575960404;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:129:\"https://library.elementor.com/blocks/travel-single-post-tour/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:18:\"[\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:670;s:16:\"popularity_index\";i:630;s:11:\"trend_index\";i:548;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:815;a:20:{s:4:\"tmpl\";i:926;s:2:\"id\";i:12492;s:5:\"title\";s:14:\"Travel -Footer\";s:9:\"thumbnail\";s:69:\"https://library.elementor.com/wp-content/uploads/2019/12/Footer_s.png\";s:12:\"tmpl_created\";i:1575960358;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:119:\"https://library.elementor.com/blocks/travel-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:27:\"[\"Footer\",\"Tours\",\"Travel\"]\";s:10:\"menu_order\";i:671;s:16:\"popularity_index\";i:453;s:11:\"trend_index\";i:322;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:816;a:20:{s:4:\"tmpl\";i:1068;s:2:\"id\";i:15498;s:5:\"title\";s:23:\"Travel Blog – 404\";s:9:\"thumbnail\";s:64:\"https://library.elementor.com/wp-content/uploads/2020/11/404.jpg\";s:12:\"tmpl_created\";i:1606215636;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:121:\"https://library.elementor.com/blocks/travel-blog-404/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:8:\"404 page\";s:4:\"tags\";s:23:\"[\"404\",\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:672;s:16:\"popularity_index\";i:749;s:11:\"trend_index\";i:759;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:817;a:20:{s:4:\"tmpl\";i:1069;s:2:\"id\";i:15508;s:5:\"title\";s:29:\"Travel Blog – Archive 1\";s:9:\"thumbnail\";s:74:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-1-350.jpg\";s:12:\"tmpl_created\";i:1606215649;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:673;s:16:\"popularity_index\";i:659;s:11:\"trend_index\";i:468;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:818;a:20:{s:4:\"tmpl\";i:1070;s:2:\"id\";i:15518;s:5:\"title\";s:29:\"Travel Blog – Archive 2\";s:9:\"thumbnail\";s:79:\"https://library.elementor.com/wp-content/uploads/2020/11/Archive-2-350-Copy.jpg\";s:12:\"tmpl_created\";i:1606215663;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:127:\"https://library.elementor.com/blocks/travel-blog-archive-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:7:\"archive\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:674;s:16:\"popularity_index\";i:688;s:11:\"trend_index\";i:431;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:819;a:20:{s:4:\"tmpl\";i:1071;s:2:\"id\";i:15528;s:5:\"title\";s:26:\"Travel Blog – Footer\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Footer.jpg\";s:12:\"tmpl_created\";i:1606215673;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-footer/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"footer\";s:4:\"tags\";s:26:\"[\"Blog\",\"Footer\",\"Travel\"]\";s:10:\"menu_order\";i:675;s:16:\"popularity_index\";i:656;s:11:\"trend_index\";i:377;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:820;a:20:{s:4:\"tmpl\";i:1067;s:2:\"id\";i:15536;s:5:\"title\";s:26:\"Travel Blog – Header\";s:9:\"thumbnail\";s:67:\"https://library.elementor.com/wp-content/uploads/2020/11/Header.jpg\";s:12:\"tmpl_created\";i:1606215625;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:124:\"https://library.elementor.com/blocks/travel-blog-header/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:6:\"header\";s:4:\"tags\";s:26:\"[\"Blog\",\"Header\",\"Travel\"]\";s:10:\"menu_order\";i:676;s:16:\"popularity_index\";i:584;s:11:\"trend_index\";i:228;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"0\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:821;a:20:{s:4:\"tmpl\";i:1072;s:2:\"id\";i:15545;s:5:\"title\";s:33:\"Travel Blog – Single Post 1\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-1-350.jpg\";s:12:\"tmpl_created\";i:1606215684;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-1/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:677;s:16:\"popularity_index\";i:669;s:11:\"trend_index\";i:482;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}i:822;a:20:{s:4:\"tmpl\";i:1066;s:2:\"id\";i:15556;s:5:\"title\";s:33:\"Travel Blog – Single Post 2\";s:9:\"thumbnail\";s:73:\"https://library.elementor.com/wp-content/uploads/2020/11/Single-2-350.jpg\";s:12:\"tmpl_created\";i:1606215613;s:6:\"author\";s:9:\"Elementor\";s:3:\"url\";s:131:\"https://library.elementor.com/blocks/travel-blog-single-post-2/?utm_source=template-library&utm_medium=wp-dash&utm_campaign=preview\";s:4:\"type\";s:5:\"block\";s:11:\"access_tier\";s:9:\"essential\";s:7:\"subtype\";s:11:\"single post\";s:4:\"tags\";s:17:\"[\"Blog\",\"Travel\"]\";s:10:\"menu_order\";i:678;s:16:\"popularity_index\";i:652;s:11:\"trend_index\";i:454;s:18:\"editor_layout_type\";s:0:\"\";s:15:\"minimum_version\";s:5:\"0.0.0\";s:8:\"products\";s:7:\"regular\";s:17:\"has_page_settings\";s:1:\"1\";s:6:\"is_pro\";s:1:\"1\";s:12:\"access_level\";i:1;}}}','off'),(79535,'elementor_remote_info_feed_data','a:3:{i:0;a:5:{s:5:\"title\";s:43:\"Introducing Angie: Agentic AI for WordPress\";s:7:\"excerpt\";s:365:\"Meet Angie, agentic AI purpose-built for WordPress. Angie understands your site, connects to your tools, and takes real actions on your behalf. Its first capability, Angie Code, lets you describe any WordPress feature you can imagine and have it built for you in minutes. Production-ready, fully integrated with your site, and safe to test before it ever goes live.\";s:7:\"created\";i:1774270910;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:142:\"https://elementor.com/blog/introducing-angie-agentic-ai-for-wordpress/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:1;a:5:{s:5:\"title\";s:59:\"The atomic foundation of version 4 is ready for real sites!\";s:7:\"excerpt\";s:296:\"The alpha phase is complete. Version 4 is now in beta, and the atomic foundation is ready to be used on real sites! This is the final step before the official release of version 4.0, activating the new features automatically on new sites, and becoming the default editing experience in Elementor.\";s:7:\"created\";i:1770651621;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:113:\"https://elementor.com/blog/editor-4-beta/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}i:2;a:5:{s:5:\"title\";s:79:\"Introducing Elementor 3.33: Variables Manager, Custom CSS, Blend Modes, & more!\";s:7:\"excerpt\";s:340:\"Elementor 3.33 builds on the foundation of Editor V4, continuing our mission to create a faster, more scalable, and more intuitive design experience for Web Creators. With the addition of the Variables Manager, element-level Custom CSS, Background Clipping, and Blend Modes, designers have more creative precision and consistency than ever.\";s:7:\"created\";i:1762944115;s:5:\"badge\";s:3:\"NEW\";s:3:\"url\";s:145:\"https://elementor.com/blog/elementor-333-v4-variables-manager-custom-css/?utm_source=wp-overview-widget&utm_medium=wp-dash&utm_campaign=news-feed\";}}','off'),(79546,'elementor_fonts_manager_font_types','a:0:{}','yes'),(79547,'elementor_fonts_manager_fonts','a:0:{}','yes'),(79548,'elementor_pro_version','3.21.3','yes'),(79549,'widget_elementor-library','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(79550,'_elementor_pro_installed_time','1646941824','yes'),(79551,'elementor_submissions_db_version','5','yes'),(79552,'elementor_connect_site_key','91851ed5b652122fe4ceebc52a3af4c3','yes'),(79554,'elementor_pro_license_key','ep-96KPPzV01BZfVbBHAqb91604636942feBIQw0BkbHg','yes'),(79555,'_elementor_pro_license_data_fallback','a:2:{s:7:\"timeout\";i:1717109103;s:5:\"value\";s:2634:\"{\"expires\":\"2024-11-06 04:30:40\",\"subscription_id\":\"9606162\",\"success\":true,\"license\":\"valid\",\"subscriptions\":\"enable\",\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"editor_comments\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\"],\"tier\":\"expert\",\"generation\":\"empty\"}\";}','no'),(79556,'_elementor_pro_license_data','a:2:{s:7:\"timeout\";i:1717065903;s:5:\"value\";s:2634:\"{\"expires\":\"2024-11-06 04:30:40\",\"subscription_id\":\"9606162\",\"success\":true,\"license\":\"valid\",\"subscriptions\":\"enable\",\"features\":[\"template_access_level_20\",\"kit_access_level_20\",\"editor_comments\",\"activity-log\",\"breadcrumbs\",\"form\",\"posts\",\"template\",\"countdown\",\"slides\",\"price-list\",\"portfolio\",\"flip-box\",\"price-table\",\"login\",\"share-buttons\",\"theme-post-content\",\"theme-post-title\",\"nav-menu\",\"blockquote\",\"media-carousel\",\"animated-headline\",\"facebook-comments\",\"facebook-embed\",\"facebook-page\",\"facebook-button\",\"testimonial-carousel\",\"post-navigation\",\"search-form\",\"post-comments\",\"author-box\",\"call-to-action\",\"post-info\",\"theme-site-logo\",\"theme-site-title\",\"theme-archive-title\",\"theme-post-excerpt\",\"theme-post-featured-image\",\"archive-posts\",\"theme-page-title\",\"sitemap\",\"reviews\",\"table-of-contents\",\"lottie\",\"code-highlight\",\"hotspot\",\"video-playlist\",\"progress-tracker\",\"section-effects\",\"sticky\",\"scroll-snap\",\"page-transitions\",\"mega-menu\",\"nested-carousel\",\"loop-grid\",\"loop-carousel\",\"theme-builder\",\"elementor_icons\",\"elementor_custom_fonts\",\"dynamic-tags\",\"taxonomy-filter\",\"email\",\"email2\",\"mailpoet\",\"mailpoet3\",\"redirect\",\"header\",\"footer\",\"single-post\",\"single-page\",\"archive\",\"search-results\",\"error-404\",\"loop-item\",\"font-awesome-pro\",\"typekit\",\"gallery\",\"element-manager-permissions\",\"akismet\",\"display-conditions\",\"woocommerce-products\",\"wc-products\",\"woocommerce-product-add-to-cart\",\"wc-elements\",\"wc-categories\",\"woocommerce-product-price\",\"woocommerce-product-title\",\"woocommerce-product-images\",\"woocommerce-product-upsell\",\"woocommerce-product-short-description\",\"woocommerce-product-meta\",\"woocommerce-product-stock\",\"woocommerce-product-rating\",\"wc-add-to-cart\",\"dynamic-tags-wc\",\"woocommerce-product-data-tabs\",\"woocommerce-product-related\",\"woocommerce-breadcrumb\",\"wc-archive-products\",\"woocommerce-archive-products\",\"woocommerce-product-additional-information\",\"woocommerce-menu-cart\",\"woocommerce-product-content\",\"woocommerce-archive-description\",\"paypal-button\",\"woocommerce-checkout-page\",\"woocommerce-cart\",\"woocommerce-my-account\",\"woocommerce-purchase-summary\",\"woocommerce-notices\",\"settings-woocommerce-pages\",\"settings-woocommerce-notices\",\"popup\",\"custom-css\",\"global-css\",\"custom_code\",\"custom-attributes\",\"form-submissions\",\"form-integrations\",\"dynamic-tags-acf\",\"dynamic-tags-pods\",\"dynamic-tags-toolset\",\"editor_comments\",\"stripe-button\",\"role-manager\",\"global-widget\",\"activecampaign\",\"cf7db\",\"convertkit\",\"discord\",\"drip\",\"getresponse\",\"mailchimp\",\"mailerlite\",\"slack\",\"webhook\",\"product-single\",\"product-archive\",\"wc-single-elements\"],\"tier\":\"expert\",\"generation\":\"empty\"}\";}','no'),(79557,'_elementor_pro_api_requests_lock','a:2:{s:16:\"get_license_data\";i:1785099415;s:11:\"get_version\";i:1785114494;}','yes'),(79559,'elementor_scheme_color','a:4:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";}','yes'),(79560,'elementor_scheme_typography','a:4:{i:1;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"600\";}i:2;a:2:{s:11:\"font_family\";s:11:\"Roboto Slab\";s:11:\"font_weight\";s:3:\"400\";}i:3;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"400\";}i:4;a:2:{s:11:\"font_family\";s:6:\"Roboto\";s:11:\"font_weight\";s:3:\"500\";}}','yes'),(79561,'elementor_scheme_color-picker','a:8:{i:1;s:7:\"#6ec1e4\";i:2;s:7:\"#54595f\";i:3;s:7:\"#7a7a7a\";i:4;s:7:\"#61ce70\";i:5;s:7:\"#4054b2\";i:6;s:7:\"#23a455\";i:7;s:4:\"#000\";i:8;s:4:\"#fff\";}','yes'),(79562,'elementor_custom_icon_sets_config','a:0:{}','yes'),(80501,'elementor_pro_theme_builder_conditions','a:3:{s:6:\"single\";a:1:{i:3806;a:1:{i:0;s:21:\"include/singular/post\";}}s:6:\"footer\";a:1:{i:3672;a:1:{i:0;s:15:\"include/general\";}}s:6:\"header\";a:1:{i:3669;a:1:{i:0;s:15:\"include/general\";}}}','yes'),(80504,'theme_mods_hello-elementor','a:4:{i:0;b:0;s:18:\"nav_menu_locations\";a:0:{}s:18:\"custom_css_post_id\";i:-1;s:11:\"custom_logo\";i:3667;}','yes'),(80505,'hello_theme_version','2.6.1','yes'),(80506,'site_logo','3667','yes'),(80507,'elementor_log','a:42:{s:32:\"7299cb651ac220875eb5cad3e1c9834d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-13 14:03:14\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.3\";s:2:\"to\";s:6:\"3.27.4\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-13 14:03:14\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.3\";s:2:\"to\";s:6:\"3.27.4\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"25029672716aa71f0e10e51b3dd533e2\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 12:55:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 12:55:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"a797a7210ee00ddcbe7f55b536203fa7\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 12:55:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 12:55:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"be10e2c9a43d3b5729baecba3ce86a1d\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 12:55:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 12:55:49\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"a7653e02fc15b1766ed37ee98ed903be\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 12:55:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 12:55:49\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"5dba29e240198b521f9ba8ccc19532a1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-16 12:55:49\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-16 12:55:49\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.4\";s:2:\"to\";s:6:\"3.27.5\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"4b50487997ffe3306184b46e0a07b05d\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2025-02-16 22:45:40\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3697.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:2;s:14:\"\0*\0times_dates\";a:2:{i:0;s:19:\"2025-02-16 22:45:40\";i:1;s:19:\"2025-03-03 04:12:59\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3697.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"9ca5811f612b0447036f89df0998957a\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:695;s:7:\"\0*\0date\";s:19:\"2025-02-17 11:54:08\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:20:\"Undefined offset: -1\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1866;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-11-22 12:43:51\";i:1;s:19:\"2025-11-23 07:31:16\";i:2;s:19:\"2025-11-23 14:27:15\";i:3;s:19:\"2025-11-23 14:29:04\";i:4;s:19:\"2025-11-24 02:24:58\";i:5;s:19:\"2025-11-24 02:24:59\";i:6;s:19:\"2025-11-24 02:53:53\";i:7;s:19:\"2025-11-24 15:22:41\";i:8;s:19:\"2025-11-24 18:49:38\";i:9;s:19:\"2025-11-25 16:08:37\";i:10;s:19:\"2025-11-26 09:57:57\";i:11;s:19:\"2025-11-26 16:37:45\";i:12;s:19:\"2025-11-27 06:53:14\";i:13;s:19:\"2025-11-27 17:01:37\";i:14;s:19:\"2025-11-28 10:01:53\";i:15;s:19:\"2025-11-28 17:35:19\";i:16;s:19:\"2025-11-29 17:42:42\";i:17;s:19:\"2025-11-30 18:07:22\";i:18;s:19:\"2025-12-01 18:27:23\";i:19;s:19:\"2025-12-01 20:56:01\";i:20;s:19:\"2025-12-02 13:47:07\";i:21;s:19:\"2025-12-02 19:04:56\";i:22;s:19:\"2025-12-03 20:24:39\";i:23;s:19:\"2025-12-04 21:45:37\";i:24;s:19:\"2025-12-05 22:28:06\";i:25;s:19:\"2025-12-06 01:36:50\";i:26;s:19:\"2025-12-06 23:40:30\";i:27;s:19:\"2025-12-07 00:16:46\";i:28;s:19:\"2025-12-07 23:40:37\";i:29;s:19:\"2025-12-08 17:34:28\";i:30;s:19:\"2025-12-08 19:53:04\";i:31;s:19:\"2025-12-08 22:49:50\";i:32;s:19:\"2025-12-08 23:46:32\";i:33;s:19:\"2025-12-09 21:21:42\";i:34;s:19:\"2025-12-09 23:40:13\";i:35;s:19:\"2025-12-09 23:56:56\";i:36;s:19:\"2025-12-10 01:55:11\";i:37;s:19:\"2025-12-10 06:31:11\";i:38;s:19:\"2025-12-11 00:19:24\";i:39;s:19:\"2025-12-11 01:45:45\";i:40;s:19:\"2025-12-11 03:24:52\";i:41;s:19:\"2025-12-11 07:10:03\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:20:\"Undefined offset: -1\";s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:695;s:5:\"trace\";b:1;}}s:32:\"693bdd4bfdf494e4ecbec3f0e069ce6f\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-19 13:16:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-19 13:16:20\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"b8c8016b9614f01669c31a2d2f5f4200\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-19 13:16:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-19 13:16:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"e46ed36ab26ba7806d094ca08bed3f07\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-19 13:16:20\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-19 13:16:20\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"1e9289df7484673a473cf6cef5ebc356\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-19 13:16:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-19 13:16:21\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"99b90b0f21b7128b1f40dc4f09e34967\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-02-19 13:16:21\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-02-19 13:16:21\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.5\";s:2:\"to\";s:6:\"3.27.6\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"c1e718cd9d79a7e7b4775c7def59c466\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:99:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:7:\"\0*\0line\";i:223;s:7:\"\0*\0date\";s:19:\"2025-02-27 03:29:08\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:99:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:223;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1869;s:8:\"function\";s:17:\"get_pointer_index\";s:5:\"class\";s:21:\"Elementor\\Widget_Base\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:103:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/controls/groups/base.php\";s:4:\"line\";i:130;s:8:\"function\";s:11:\"end_popover\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:780;s:8:\"function\";s:12:\"add_controls\";s:5:\"class\";s:28:\"Elementor\\Group_Control_Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:117:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php\";s:4:\"line\";i:475;s:8:\"function\";s:17:\"add_group_control\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2025-02-27 03:29:08\";i:1;s:19:\"2025-02-28 04:41:14\";i:2;s:19:\"2025-03-01 11:11:09\";i:3;s:19:\"2025-03-09 07:10:45\";i:4;s:19:\"2025-03-12 19:04:46\";i:5;s:19:\"2025-03-18 02:42:46\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:99:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:223;s:5:\"trace\";b:1;}}s:32:\"c10b984eda02c69e09373068dacfad21\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:695;s:7:\"\0*\0date\";s:19:\"2025-02-27 03:29:08\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:20:\"Undefined offset: -1\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:695;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1869;s:8:\"function\";s:15:\"get_control_key\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:103:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/controls/groups/base.php\";s:4:\"line\";i:130;s:8:\"function\";s:11:\"end_popover\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:780;s:8:\"function\";s:12:\"add_controls\";s:5:\"class\";s:28:\"Elementor\\Group_Control_Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:117:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php\";s:4:\"line\";i:475;s:8:\"function\";s:17:\"add_group_control\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:6;s:14:\"\0*\0times_dates\";a:6:{i:0;s:19:\"2025-02-27 03:29:08\";i:1;s:19:\"2025-02-28 04:41:14\";i:2;s:19:\"2025-03-01 11:11:09\";i:3;s:19:\"2025-03-09 07:10:45\";i:4;s:19:\"2025-03-12 19:04:46\";i:5;s:19:\"2025-03-18 02:42:46\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:20:\"Undefined offset: -1\";s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:695;s:5:\"trace\";b:1;}}s:32:\"22b1bab3681854bbd2d4c96507f6cd3b\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:02\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-14 13:29:02\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"89b1e249837a8e38e6ca49406aeb248e\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:36:\"elementor::elementor_updater Started\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-14 13:29:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:36:\"elementor::elementor_updater Started\";s:4:\"type\";s:4:\"info\";}}s:32:\"da3eb835d35b99489c34ae94c2ff4c25\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-14 13:29:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:44:\"Elementor/Upgrades - _on_each_version Start \";s:4:\"type\";s:4:\"info\";}}s:32:\"5393048f9d5fe6a8668f6f11773e86c4\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:7:\"\0*\0meta\";a:0:{}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-14 13:29:03\";}s:7:\"\0*\0args\";a:2:{s:7:\"message\";s:46:\"Elementor/Upgrades - _on_each_version Finished\";s:4:\"type\";s:4:\"info\";}}s:32:\"34674e54b8fd3ee12f9cbcc38d6274d1\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:03\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:50:\"Elementor data updater process has been completed.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-14 13:29:03\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:7:\"message\";s:50:\"Elementor data updater process has been completed.\";s:4:\"type\";s:4:\"info\";}}s:32:\"3bd70b6bda81eb5d1a33b1a80345330e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:92:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/manager.php\";s:7:\"\0*\0line\";i:112;s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:03\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:114:\"unlink(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3672.css): Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:61;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2026-07-23 13:33:21\";i:1;s:19:\"2026-07-23 13:33:29\";i:2;s:19:\"2026-07-23 13:33:38\";i:3;s:19:\"2026-07-23 13:33:47\";i:4;s:19:\"2026-07-23 18:35:46\";i:5;s:19:\"2026-07-23 18:35:56\";i:6;s:19:\"2026-07-23 18:36:03\";i:7;s:19:\"2026-07-23 18:36:14\";i:8;s:19:\"2026-07-23 18:36:24\";i:9;s:19:\"2026-07-24 12:18:46\";i:10;s:19:\"2026-07-24 12:21:58\";i:11;s:19:\"2026-07-24 12:27:12\";i:12;s:19:\"2026-07-24 12:34:41\";i:13;s:19:\"2026-07-24 13:53:04\";i:14;s:19:\"2026-07-24 13:53:16\";i:15;s:19:\"2026-07-24 13:53:23\";i:16;s:19:\"2026-07-24 13:53:33\";i:17;s:19:\"2026-07-24 13:53:42\";i:18;s:19:\"2026-07-25 04:16:51\";i:19;s:19:\"2026-07-25 04:17:00\";i:20;s:19:\"2026-07-25 04:17:08\";i:21;s:19:\"2026-07-25 04:17:18\";i:22;s:19:\"2026-07-25 04:17:26\";i:23;s:19:\"2026-07-25 15:44:55\";i:24;s:19:\"2026-07-25 19:39:11\";i:25;s:19:\"2026-07-25 21:22:51\";i:26;s:19:\"2026-07-25 21:23:13\";i:27;s:19:\"2026-07-25 21:23:33\";i:28;s:19:\"2026-07-25 21:23:56\";i:29;s:19:\"2026-07-25 21:24:17\";i:30;s:19:\"2026-07-26 10:37:10\";i:31;s:19:\"2026-07-26 15:24:32\";i:32;s:19:\"2026-07-26 19:05:08\";i:33;s:19:\"2026-07-26 19:33:07\";i:34;s:19:\"2026-07-26 20:57:13\";i:35;s:19:\"2026-07-26 23:05:33\";i:36;s:19:\"2026-07-27 01:00:24\";i:37;s:19:\"2026-07-27 01:00:28\";i:38;s:19:\"2026-07-27 01:02:26\";i:39;s:19:\"2026-07-27 01:04:29\";i:40;s:19:\"2026-07-27 01:05:26\";i:41;s:19:\"2026-07-27 01:08:24\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:114:\"unlink(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3672.css): Permission denied\";s:4:\"file\";s:92:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/manager.php\";s:4:\"line\";i:112;s:5:\"trace\";b:1;}}s:32:\"405511045e08668c4f8215aad9fac785\";O:32:\"Elementor\\Core\\Logger\\Items\\Base\":7:{s:7:\"\0*\0date\";s:19:\"2025-03-14 13:29:04\";s:7:\"\0*\0type\";s:4:\"info\";s:10:\"\0*\0message\";s:47:\"Elementor data updater process has been queued.\";s:7:\"\0*\0meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-03-14 13:29:04\";}s:7:\"\0*\0args\";a:3:{s:4:\"meta\";a:3:{s:6:\"plugin\";s:9:\"Elementor\";s:4:\"from\";s:6:\"3.27.6\";s:2:\"to\";s:6:\"3.27.7\";}s:7:\"message\";s:47:\"Elementor data updater process has been queued.\";s:4:\"type\";s:4:\"info\";}}s:32:\"29274511cc8d23d3658953b4e71266fb\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2025-03-14 15:18:41\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3704.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:21;s:14:\"\0*\0times_dates\";a:21:{i:0;s:19:\"2025-03-14 15:18:41\";i:1;s:19:\"2026-01-24 11:47:16\";i:2;s:19:\"2026-03-27 13:59:31\";i:3;s:19:\"2026-05-11 16:44:22\";i:4;s:19:\"2026-06-11 15:04:40\";i:5;s:19:\"2026-07-20 19:18:27\";i:6;s:19:\"2026-07-22 03:53:37\";i:7;s:19:\"2026-07-22 17:23:17\";i:8;s:19:\"2026-07-22 19:41:16\";i:9;s:19:\"2026-07-22 20:29:01\";i:10;s:19:\"2026-07-23 03:10:49\";i:11;s:19:\"2026-07-23 17:01:16\";i:12;s:19:\"2026-07-23 21:46:14\";i:13;s:19:\"2026-07-24 10:18:59\";i:14;s:19:\"2026-07-24 13:52:15\";i:15;s:19:\"2026-07-24 16:12:27\";i:16;s:19:\"2026-07-25 04:16:07\";i:17;s:19:\"2026-07-25 14:25:25\";i:18;s:19:\"2026-07-25 16:21:31\";i:19;s:19:\"2026-07-25 21:20:49\";i:20;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3704.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"be2e387447a22cefbe93cb22a96f5d9e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/fonts/google-font.php\";s:7:\"\0*\0line\";i:224;s:7:\"\0*\0date\";s:19:\"2025-03-18 15:41:39\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:220:\"copy(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/google-fonts/fonts/montserratalternates-mftjwacfw6zh4dthxcyms1lppc8i_b0juu057p-xejzj11l4.woff2): failed to open stream: No such file or directory\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:19347;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-08-05 22:05:52\";i:1;s:19:\"2025-08-05 22:05:54\";i:2;s:19:\"2025-08-05 22:05:55\";i:3;s:19:\"2025-08-05 22:05:56\";i:4;s:19:\"2025-08-05 22:05:57\";i:5;s:19:\"2025-08-05 22:05:58\";i:6;s:19:\"2025-08-05 22:05:59\";i:7;s:19:\"2025-08-05 22:06:02\";i:8;s:19:\"2025-08-05 22:06:05\";i:9;s:19:\"2025-08-05 22:06:06\";i:10;s:19:\"2025-08-05 22:06:07\";i:11;s:19:\"2025-08-05 22:06:08\";i:12;s:19:\"2025-08-06 00:06:00\";i:13;s:19:\"2025-08-06 00:06:05\";i:14;s:19:\"2025-08-06 00:06:11\";i:15;s:19:\"2025-08-06 00:59:33\";i:16;s:19:\"2025-08-06 00:59:35\";i:17;s:19:\"2025-08-06 00:59:37\";i:18;s:19:\"2025-08-06 00:59:46\";i:19;s:19:\"2025-08-06 00:59:47\";i:20;s:19:\"2025-08-06 00:59:48\";i:21;s:19:\"2025-08-06 00:59:49\";i:22;s:19:\"2025-08-06 00:59:50\";i:23;s:19:\"2025-08-06 00:59:51\";i:24;s:19:\"2025-08-06 00:59:52\";i:25;s:19:\"2025-08-06 01:23:20\";i:26;s:19:\"2025-08-06 01:23:59\";i:27;s:19:\"2025-08-06 03:01:18\";i:28;s:19:\"2025-08-06 04:47:57\";i:29;s:19:\"2025-08-06 04:47:58\";i:30;s:19:\"2025-08-06 05:45:33\";i:31;s:19:\"2025-08-06 05:56:01\";i:32;s:19:\"2025-08-06 06:02:39\";i:33;s:19:\"2025-08-06 06:41:39\";i:34;s:19:\"2025-08-06 06:41:41\";i:35;s:19:\"2025-08-06 06:41:42\";i:36;s:19:\"2025-08-06 06:41:44\";i:37;s:19:\"2025-08-06 06:41:45\";i:38;s:19:\"2025-08-06 06:41:46\";i:39;s:19:\"2025-08-06 06:41:48\";i:40;s:19:\"2025-08-06 06:41:49\";i:41;s:19:\"2025-08-06 06:41:50\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:220:\"copy(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/google-fonts/fonts/montserratalternates-mftjwacfw6zh4dthxcyms1lppc8i_b0juu057p-xejzj11l4.woff2): failed to open stream: No such file or directory\";s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/fonts/google-font.php\";s:4:\"line\";i:224;s:5:\"trace\";b:1;}}s:32:\"81d886ceae17c63e1067c3239c8a994e\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:99:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:7:\"\0*\0line\";i:224;s:7:\"\0*\0date\";s:19:\"2025-03-20 05:36:50\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to access array offset on value of type bool\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:99:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:224;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1877;s:8:\"function\";s:17:\"get_pointer_index\";s:5:\"class\";s:21:\"Elementor\\Widget_Base\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:103:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/controls/groups/base.php\";s:4:\"line\";i:130;s:8:\"function\";s:11:\"end_popover\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:781;s:8:\"function\";s:12:\"add_controls\";s:5:\"class\";s:28:\"Elementor\\Group_Control_Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:117:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php\";s:4:\"line\";i:475;s:8:\"function\";s:17:\"add_group_control\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:111;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-08-16 03:21:57\";i:1;s:19:\"2025-08-18 06:29:03\";i:2;s:19:\"2025-08-18 06:31:10\";i:3;s:19:\"2025-08-18 14:04:55\";i:4;s:19:\"2025-08-19 02:58:10\";i:5;s:19:\"2025-08-20 23:15:33\";i:6;s:19:\"2025-08-21 00:35:36\";i:7;s:19:\"2025-08-23 02:37:00\";i:8;s:19:\"2025-08-25 19:19:35\";i:9;s:19:\"2025-08-26 12:35:41\";i:10;s:19:\"2025-08-27 03:39:18\";i:11;s:19:\"2025-08-31 02:04:16\";i:12;s:19:\"2025-11-01 04:17:09\";i:13;s:19:\"2025-11-06 04:56:53\";i:14;s:19:\"2025-11-11 22:52:51\";i:15;s:19:\"2025-11-12 16:17:31\";i:16;s:19:\"2025-11-20 07:26:10\";i:17;s:19:\"2025-11-22 20:33:25\";i:18;s:19:\"2025-11-23 09:26:37\";i:19;s:19:\"2025-11-27 20:22:28\";i:20;s:19:\"2025-12-02 16:44:56\";i:21;s:19:\"2025-12-07 19:31:18\";i:22;s:19:\"2025-12-07 21:12:51\";i:23;s:19:\"2025-12-10 06:51:04\";i:24;s:19:\"2025-12-16 14:54:47\";i:25;s:19:\"2025-12-17 02:30:33\";i:26;s:19:\"2025-12-17 08:52:10\";i:27;s:19:\"2025-12-17 12:02:57\";i:28;s:19:\"2025-12-19 16:53:17\";i:29;s:19:\"2025-12-23 12:50:49\";i:30;s:19:\"2025-12-23 16:59:40\";i:31;s:19:\"2025-12-27 12:09:35\";i:32;s:19:\"2025-12-29 03:29:15\";i:33;s:19:\"2025-12-31 10:34:14\";i:34;s:19:\"2026-01-03 03:45:07\";i:35;s:19:\"2026-01-09 17:30:21\";i:36;s:19:\"2026-01-20 05:20:58\";i:37;s:19:\"2026-01-23 23:45:59\";i:38;s:19:\"2026-01-25 03:39:27\";i:39;s:19:\"2026-01-25 21:36:19\";i:40;s:19:\"2026-01-26 15:09:47\";i:41;s:19:\"2026-01-31 11:57:54\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:51:\"Trying to access array offset on value of type bool\";s:4:\"file\";s:99:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/widget-base.php\";s:4:\"line\";i:224;s:5:\"trace\";b:1;}}s:32:\"a97eaef6e1e750fe00f235d8425a84ba\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:7:\"\0*\0line\";i:696;s:7:\"\0*\0date\";s:19:\"2025-03-20 05:36:50\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:20:\"Undefined offset: -1\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:696;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:1877;s:8:\"function\";s:15:\"get_control_key\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:103:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/controls/groups/base.php\";s:4:\"line\";i:130;s:8:\"function\";s:11:\"end_popover\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:781;s:8:\"function\";s:12:\"add_controls\";s:5:\"class\";s:28:\"Elementor\\Group_Control_Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:117:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/carousel/widgets/media-carousel.php\";s:4:\"line\";i:475;s:8:\"function\";s:17:\"add_group_control\";s:5:\"class\";s:24:\"Elementor\\Controls_Stack\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:111;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-08-16 03:21:57\";i:1;s:19:\"2025-08-18 06:29:03\";i:2;s:19:\"2025-08-18 06:31:10\";i:3;s:19:\"2025-08-18 14:04:55\";i:4;s:19:\"2025-08-19 02:58:10\";i:5;s:19:\"2025-08-20 23:15:33\";i:6;s:19:\"2025-08-21 00:35:36\";i:7;s:19:\"2025-08-23 02:37:00\";i:8;s:19:\"2025-08-25 19:19:35\";i:9;s:19:\"2025-08-26 12:35:41\";i:10;s:19:\"2025-08-27 03:39:18\";i:11;s:19:\"2025-08-31 02:04:16\";i:12;s:19:\"2025-11-01 04:17:09\";i:13;s:19:\"2025-11-06 04:56:53\";i:14;s:19:\"2025-11-11 22:52:51\";i:15;s:19:\"2025-11-12 16:17:31\";i:16;s:19:\"2025-11-20 07:26:10\";i:17;s:19:\"2025-11-22 20:33:25\";i:18;s:19:\"2025-11-23 09:26:37\";i:19;s:19:\"2025-11-27 20:22:28\";i:20;s:19:\"2025-12-02 16:44:56\";i:21;s:19:\"2025-12-07 19:31:18\";i:22;s:19:\"2025-12-07 21:12:51\";i:23;s:19:\"2025-12-10 06:51:04\";i:24;s:19:\"2025-12-16 14:54:47\";i:25;s:19:\"2025-12-17 02:30:33\";i:26;s:19:\"2025-12-17 08:52:10\";i:27;s:19:\"2025-12-17 12:02:57\";i:28;s:19:\"2025-12-19 16:53:17\";i:29;s:19:\"2025-12-23 12:50:49\";i:30;s:19:\"2025-12-23 16:59:40\";i:31;s:19:\"2025-12-27 12:09:35\";i:32;s:19:\"2025-12-29 03:29:15\";i:33;s:19:\"2025-12-31 10:34:14\";i:34;s:19:\"2026-01-03 03:45:07\";i:35;s:19:\"2026-01-09 17:30:21\";i:36;s:19:\"2026-01-20 05:20:58\";i:37;s:19:\"2026-01-23 23:45:59\";i:38;s:19:\"2026-01-25 03:39:27\";i:39;s:19:\"2026-01-25 21:36:19\";i:40;s:19:\"2026-01-26 15:09:47\";i:41;s:19:\"2026-01-31 11:57:54\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:20:\"Undefined offset: -1\";s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/includes/base/controls-stack.php\";s:4:\"line\";i:696;s:5:\"trace\";b:1;}}s:32:\"21637dc586b7d7c0cbdd674a0dd8c4db\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/fonts/google-font.php\";s:7:\"\0*\0line\";i:233;s:7:\"\0*\0date\";s:19:\"2025-08-06 07:59:04\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:180:\"copy(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/google-fonts/fonts/montserratalternates-359e7e5d.woff2): failed to open stream: No such file or directory\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:4416;s:14:\"\0*\0times_dates\";a:42:{i:0;s:19:\"2025-08-31 15:01:56\";i:1;s:19:\"2025-08-31 15:01:57\";i:2;s:19:\"2025-08-31 15:01:57\";i:3;s:19:\"2025-08-31 15:01:58\";i:4;s:19:\"2025-08-31 17:32:42\";i:5;s:19:\"2025-08-31 17:46:17\";i:6;s:19:\"2025-08-31 18:13:31\";i:7;s:19:\"2025-08-31 20:20:37\";i:8;s:19:\"2025-08-31 20:52:29\";i:9;s:19:\"2025-08-31 20:52:30\";i:10;s:19:\"2025-08-31 21:37:43\";i:11;s:19:\"2025-08-31 23:00:29\";i:12;s:19:\"2025-08-31 23:00:31\";i:13;s:19:\"2025-08-31 23:00:34\";i:14;s:19:\"2025-08-31 23:00:38\";i:15;s:19:\"2025-08-31 23:00:41\";i:16;s:19:\"2025-08-31 23:06:05\";i:17;s:19:\"2025-09-01 00:08:39\";i:18;s:19:\"2025-09-01 00:08:42\";i:19;s:19:\"2025-09-01 00:20:54\";i:20;s:19:\"2025-09-01 01:52:27\";i:21;s:19:\"2025-09-01 02:05:38\";i:22;s:19:\"2025-09-01 02:28:19\";i:23;s:19:\"2025-09-01 02:28:21\";i:24;s:19:\"2025-09-01 02:28:21\";i:25;s:19:\"2025-09-01 02:28:22\";i:26;s:19:\"2025-09-01 03:25:26\";i:27;s:19:\"2025-09-01 04:46:25\";i:28;s:19:\"2025-09-01 06:07:38\";i:29;s:19:\"2025-09-01 06:31:56\";i:30;s:19:\"2025-09-01 06:31:56\";i:31;s:19:\"2025-09-01 06:31:58\";i:32;s:19:\"2025-09-01 06:31:58\";i:33;s:19:\"2025-09-01 06:37:49\";i:34;s:19:\"2025-09-01 06:38:30\";i:35;s:19:\"2025-09-01 08:22:42\";i:36;s:19:\"2025-09-01 08:22:45\";i:37;s:19:\"2025-09-01 09:02:16\";i:38;s:19:\"2025-09-01 09:02:18\";i:39;s:19:\"2025-09-01 14:58:07\";i:40;s:19:\"2025-09-01 17:43:10\";i:41;s:19:\"2025-09-01 17:46:16\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:180:\"copy(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/google-fonts/fonts/montserratalternates-359e7e5d.woff2): failed to open stream: No such file or directory\";s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/fonts/google-font.php\";s:4:\"line\";i:233;s:5:\"trace\";b:1;}}s:32:\"12dd729bf273c1fea9422eb26a455ad1\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/fonts/google-font.php\";s:7:\"\0*\0line\";i:233;s:7:\"\0*\0date\";s:19:\"2025-09-07 01:24:04\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:180:\"copy(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/google-fonts/fonts/montserratalternates-3145634c.woff2): failed to open stream: No such file or directory\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:1;s:14:\"\0*\0times_dates\";a:1:{i:0;s:19:\"2025-09-07 01:24:04\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:180:\"copy(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/google-fonts/fonts/montserratalternates-3145634c.woff2): failed to open stream: No such file or directory\";s:4:\"file\";s:102:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/fonts/google-font.php\";s:4:\"line\";i:233;s:5:\"trace\";b:1;}}s:32:\"d6bc638089e026cd3a6442556e8ed8df\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:120:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php\";s:7:\"\0*\0line\";i:124;s:7:\"\0*\0date\";s:19:\"2025-11-20 18:48:29\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:22:\"Undefined index: score\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:1:{i:0;a:3:{s:8:\"function\";s:8:\"shutdown\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:23;s:14:\"\0*\0times_dates\";a:23:{i:0;s:19:\"2025-11-20 18:48:29\";i:1;s:19:\"2025-11-24 16:16:28\";i:2;s:19:\"2025-12-27 11:02:52\";i:3;s:19:\"2026-01-08 19:21:31\";i:4;s:19:\"2026-01-24 15:08:10\";i:5;s:19:\"2026-01-28 18:24:19\";i:6;s:19:\"2026-02-08 08:27:02\";i:7;s:19:\"2026-02-08 08:29:50\";i:8;s:19:\"2026-02-17 07:58:06\";i:9;s:19:\"2026-02-17 19:32:22\";i:10;s:19:\"2026-02-17 19:35:09\";i:11;s:19:\"2026-03-13 15:42:47\";i:12;s:19:\"2026-03-17 14:58:16\";i:13;s:19:\"2026-03-20 03:46:46\";i:14;s:19:\"2026-03-23 00:23:20\";i:15;s:19:\"2026-03-23 00:26:20\";i:16;s:19:\"2026-03-28 17:00:05\";i:17;s:19:\"2026-03-28 17:02:45\";i:18;s:19:\"2026-04-03 07:23:32\";i:19;s:19:\"2026-04-19 15:31:36\";i:20;s:19:\"2026-05-14 08:21:49\";i:21;s:19:\"2026-05-29 13:40:11\";i:22;s:19:\"2026-05-29 13:43:01\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:22:\"Undefined index: score\";s:4:\"file\";s:120:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/forms/classes/recaptcha-v3-handler.php\";s:4:\"line\";i:124;s:5:\"trace\";b:1;}}s:32:\"436582581f478fcddac7f1683c72c5c2\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-01-25 21:36:18\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3698.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:20;s:14:\"\0*\0times_dates\";a:20:{i:0;s:19:\"2026-01-25 21:36:18\";i:1;s:19:\"2026-04-03 23:18:17\";i:2;s:19:\"2026-05-11 16:44:27\";i:3;s:19:\"2026-06-11 15:04:52\";i:4;s:19:\"2026-07-20 19:18:26\";i:5;s:19:\"2026-07-22 03:53:37\";i:6;s:19:\"2026-07-22 17:23:17\";i:7;s:19:\"2026-07-22 19:41:15\";i:8;s:19:\"2026-07-22 20:29:01\";i:9;s:19:\"2026-07-23 03:10:48\";i:10;s:19:\"2026-07-23 17:01:16\";i:11;s:19:\"2026-07-23 21:46:14\";i:12;s:19:\"2026-07-24 10:18:58\";i:13;s:19:\"2026-07-24 13:52:15\";i:14;s:19:\"2026-07-24 16:12:27\";i:15;s:19:\"2026-07-25 04:16:07\";i:16;s:19:\"2026-07-25 14:25:25\";i:17;s:19:\"2026-07-25 16:21:31\";i:18;s:19:\"2026-07-25 21:20:48\";i:19;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3698.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"477345b0f49f946a5e39b3f1ab4bf9a1\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-01-25 21:36:19\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3675.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:20;s:14:\"\0*\0times_dates\";a:20:{i:0;s:19:\"2026-01-25 21:36:19\";i:1;s:19:\"2026-03-27 13:59:34\";i:2;s:19:\"2026-05-11 16:44:02\";i:3;s:19:\"2026-06-11 15:04:45\";i:4;s:19:\"2026-07-20 19:18:26\";i:5;s:19:\"2026-07-22 03:53:36\";i:6;s:19:\"2026-07-22 17:23:16\";i:7;s:19:\"2026-07-22 19:41:14\";i:8;s:19:\"2026-07-22 20:29:00\";i:9;s:19:\"2026-07-23 03:10:47\";i:10;s:19:\"2026-07-23 17:01:15\";i:11;s:19:\"2026-07-23 21:46:13\";i:12;s:19:\"2026-07-24 10:18:55\";i:13;s:19:\"2026-07-24 13:52:14\";i:14;s:19:\"2026-07-24 16:12:26\";i:15;s:19:\"2026-07-25 04:16:06\";i:16;s:19:\"2026-07-25 14:25:24\";i:17;s:19:\"2026-07-25 16:21:30\";i:18;s:19:\"2026-07-25 21:20:48\";i:19;s:19:\"2026-07-26 02:07:31\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3675.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"2686cbb7009c33d96cba310af662fc29\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:26\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3683.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:26\";i:1;s:19:\"2026-07-22 03:53:36\";i:2;s:19:\"2026-07-22 17:23:17\";i:3;s:19:\"2026-07-22 19:41:15\";i:4;s:19:\"2026-07-22 20:29:01\";i:5;s:19:\"2026-07-23 03:10:48\";i:6;s:19:\"2026-07-23 17:01:15\";i:7;s:19:\"2026-07-23 21:46:13\";i:8;s:19:\"2026-07-24 10:18:55\";i:9;s:19:\"2026-07-24 13:52:14\";i:10;s:19:\"2026-07-24 16:12:26\";i:11;s:19:\"2026-07-25 04:16:07\";i:12;s:19:\"2026-07-25 14:25:24\";i:13;s:19:\"2026-07-25 16:21:30\";i:14;s:19:\"2026-07-25 21:20:48\";i:15;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3683.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"f04a045aeabe2280460e38f25e31d2d9\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:26\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3684.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:26\";i:1;s:19:\"2026-07-22 03:53:36\";i:2;s:19:\"2026-07-22 17:23:17\";i:3;s:19:\"2026-07-22 19:41:15\";i:4;s:19:\"2026-07-22 20:29:01\";i:5;s:19:\"2026-07-23 03:10:48\";i:6;s:19:\"2026-07-23 17:01:15\";i:7;s:19:\"2026-07-23 21:46:13\";i:8;s:19:\"2026-07-24 10:18:56\";i:9;s:19:\"2026-07-24 13:52:15\";i:10;s:19:\"2026-07-24 16:12:26\";i:11;s:19:\"2026-07-25 04:16:07\";i:12;s:19:\"2026-07-25 14:25:24\";i:13;s:19:\"2026-07-25 16:21:30\";i:14;s:19:\"2026-07-25 21:20:48\";i:15;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3684.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"973fe9a263b59c920ccf14e392f0ea73\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:26\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3685.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:26\";i:1;s:19:\"2026-07-22 03:53:36\";i:2;s:19:\"2026-07-22 17:23:17\";i:3;s:19:\"2026-07-22 19:41:15\";i:4;s:19:\"2026-07-22 20:29:01\";i:5;s:19:\"2026-07-23 03:10:48\";i:6;s:19:\"2026-07-23 17:01:15\";i:7;s:19:\"2026-07-23 21:46:13\";i:8;s:19:\"2026-07-24 10:18:56\";i:9;s:19:\"2026-07-24 13:52:15\";i:10;s:19:\"2026-07-24 16:12:26\";i:11;s:19:\"2026-07-25 04:16:07\";i:12;s:19:\"2026-07-25 14:25:25\";i:13;s:19:\"2026-07-25 16:21:30\";i:14;s:19:\"2026-07-25 21:20:48\";i:15;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3685.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"76fc504b552e1c704cb4bf2a5ad046a2\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3700.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:27\";i:1;s:19:\"2026-07-22 03:53:37\";i:2;s:19:\"2026-07-22 17:23:17\";i:3;s:19:\"2026-07-22 19:41:16\";i:4;s:19:\"2026-07-22 20:29:01\";i:5;s:19:\"2026-07-23 03:10:49\";i:6;s:19:\"2026-07-23 17:01:16\";i:7;s:19:\"2026-07-23 21:46:14\";i:8;s:19:\"2026-07-24 10:18:58\";i:9;s:19:\"2026-07-24 13:52:15\";i:10;s:19:\"2026-07-24 16:12:27\";i:11;s:19:\"2026-07-25 04:16:07\";i:12;s:19:\"2026-07-25 14:25:25\";i:13;s:19:\"2026-07-25 16:21:31\";i:14;s:19:\"2026-07-25 21:20:49\";i:15;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3700.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"109b372030259fbf868f322418e6f734\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3720.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:27\";i:1;s:19:\"2026-07-22 03:53:37\";i:2;s:19:\"2026-07-22 17:23:18\";i:3;s:19:\"2026-07-22 19:41:16\";i:4;s:19:\"2026-07-22 20:29:02\";i:5;s:19:\"2026-07-23 03:10:49\";i:6;s:19:\"2026-07-23 17:01:16\";i:7;s:19:\"2026-07-23 21:46:14\";i:8;s:19:\"2026-07-24 10:19:00\";i:9;s:19:\"2026-07-24 13:52:16\";i:10;s:19:\"2026-07-24 16:12:27\";i:11;s:19:\"2026-07-25 04:16:07\";i:12;s:19:\"2026-07-25 14:25:25\";i:13;s:19:\"2026-07-25 16:21:31\";i:14;s:19:\"2026-07-25 21:20:49\";i:15;s:19:\"2026-07-26 02:07:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3720.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"b39bdcbc85bdd2541d874952b668cc44\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3736.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:27\";i:1;s:19:\"2026-07-22 03:53:37\";i:2;s:19:\"2026-07-22 17:23:18\";i:3;s:19:\"2026-07-22 19:41:16\";i:4;s:19:\"2026-07-22 20:29:02\";i:5;s:19:\"2026-07-23 03:10:49\";i:6;s:19:\"2026-07-23 17:01:16\";i:7;s:19:\"2026-07-23 21:46:14\";i:8;s:19:\"2026-07-24 10:19:00\";i:9;s:19:\"2026-07-24 13:52:16\";i:10;s:19:\"2026-07-24 16:12:27\";i:11;s:19:\"2026-07-25 04:16:07\";i:12;s:19:\"2026-07-25 14:25:25\";i:13;s:19:\"2026-07-25 16:21:31\";i:14;s:19:\"2026-07-25 21:20:49\";i:15;s:19:\"2026-07-26 02:07:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3736.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"2dc45bd469d204280b42ea43e831f80f\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3746.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:27\";i:1;s:19:\"2026-07-22 03:53:37\";i:2;s:19:\"2026-07-22 17:23:18\";i:3;s:19:\"2026-07-22 19:41:16\";i:4;s:19:\"2026-07-22 20:29:02\";i:5;s:19:\"2026-07-23 03:10:49\";i:6;s:19:\"2026-07-23 17:01:16\";i:7;s:19:\"2026-07-23 21:46:14\";i:8;s:19:\"2026-07-24 10:19:00\";i:9;s:19:\"2026-07-24 13:52:16\";i:10;s:19:\"2026-07-24 16:12:27\";i:11;s:19:\"2026-07-25 04:16:08\";i:12;s:19:\"2026-07-25 14:25:25\";i:13;s:19:\"2026-07-25 16:21:32\";i:14;s:19:\"2026-07-25 21:20:49\";i:15;s:19:\"2026-07-26 02:07:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3746.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"c4d1f01cc44000e16087f9de934eec84\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-20 19:18:27\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3806.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:16;s:14:\"\0*\0times_dates\";a:16:{i:0;s:19:\"2026-07-20 19:18:27\";i:1;s:19:\"2026-07-22 03:53:37\";i:2;s:19:\"2026-07-22 17:23:18\";i:3;s:19:\"2026-07-22 19:41:16\";i:4;s:19:\"2026-07-22 20:29:02\";i:5;s:19:\"2026-07-23 03:10:49\";i:6;s:19:\"2026-07-23 17:01:16\";i:7;s:19:\"2026-07-23 21:46:15\";i:8;s:19:\"2026-07-24 10:19:01\";i:9;s:19:\"2026-07-24 13:52:16\";i:10;s:19:\"2026-07-24 16:12:28\";i:11;s:19:\"2026-07-25 04:16:08\";i:12;s:19:\"2026-07-25 14:25:26\";i:13;s:19:\"2026-07-25 16:21:32\";i:14;s:19:\"2026-07-25 21:20:49\";i:15;s:19:\"2026-07-26 02:07:33\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3806.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"f5a90a25b59872a4563876b1ab46684b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:7:\"\0*\0line\";i:194;s:7:\"\0*\0date\";s:19:\"2026-07-22 03:53:36\";s:7:\"\0*\0type\";s:7:\"warning\";s:10:\"\0*\0message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3697.css): failed to open stream: Permission denied\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:3:{s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:3:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:8:\"function\";s:17:\"file_put_contents\";}i:2;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:166;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:183;s:8:\"function\";s:5:\"write\";s:5:\"class\";s:29:\"Elementor\\Core\\Files\\CSS\\Base\";s:4:\"type\";s:2:\"->\";}i:4;a:5:{s:4:\"file\";s:93:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/css/base.php\";s:4:\"line\";i:133;s:8:\"function\";s:11:\"update_file\";s:5:\"class\";s:25:\"Elementor\\Core\\Files\\Base\";s:4:\"type\";s:2:\"->\";}}}s:8:\"\0*\0times\";i:15;s:14:\"\0*\0times_dates\";a:15:{i:0;s:19:\"2026-07-22 03:53:36\";i:1;s:19:\"2026-07-22 17:23:17\";i:2;s:19:\"2026-07-22 19:41:15\";i:3;s:19:\"2026-07-22 20:29:01\";i:4;s:19:\"2026-07-23 03:10:48\";i:5;s:19:\"2026-07-23 17:01:15\";i:6;s:19:\"2026-07-23 21:46:13\";i:7;s:19:\"2026-07-24 10:18:56\";i:8;s:19:\"2026-07-24 13:52:15\";i:9;s:19:\"2026-07-24 16:12:27\";i:10;s:19:\"2026-07-25 04:16:07\";i:11;s:19:\"2026-07-25 14:25:25\";i:12;s:19:\"2026-07-25 16:21:31\";i:13;s:19:\"2026-07-25 21:20:48\";i:14;s:19:\"2026-07-26 02:07:32\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:7:\"warning\";s:7:\"message\";s:148:\"file_put_contents(/storage/v12552/solsculpting/public_html/wp-content/uploads/elementor/css/post-3697.css): failed to open stream: Permission denied\";s:4:\"file\";s:89:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/core/files/base.php\";s:4:\"line\";i:194;s:5:\"trace\";b:1;}}s:32:\"40b6b780e0ab9572327f5e153362a77a\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:94:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/modules/usage/module.php\";s:7:\"\0*\0line\";i:209;s:7:\"\0*\0date\";s:19:\"2026-07-23 19:54:38\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:51:\"Trying to get property 'ID' of non-object\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:94:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/modules/usage/module.php\";s:4:\"line\";i:209;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:70:\"/storage/v12552/solsculpting/public_html/wp-includes/class-wp-hook.php\";s:4:\"line\";i:341;s:8:\"function\";s:16:\"on_status_change\";s:5:\"class\";s:30:\"Elementor\\Modules\\Usage\\Module\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:70:\"/storage/v12552/solsculpting/public_html/wp-includes/class-wp-hook.php\";s:4:\"line\";i:365;s:8:\"function\";s:13:\"apply_filters\";s:5:\"class\";s:7:\"WP_Hook\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:63:\"/storage/v12552/solsculpting/public_html/wp-includes/plugin.php\";s:4:\"line\";i:522;s:8:\"function\";s:9:\"do_action\";s:5:\"class\";s:7:\"WP_Hook\";s:4:\"type\";s:2:\"->\";}i:4;a:3:{s:4:\"file\";s:61:\"/storage/v12552/solsculpting/public_html/wp-includes/post.php\";s:4:\"line\";i:5826;s:8:\"function\";s:9:\"do_action\";}}}s:8:\"\0*\0times\";i:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2026-07-23 19:54:38\";i:1;s:19:\"2026-07-23 20:57:57\";i:2;s:19:\"2026-07-25 09:38:37\";i:3;s:19:\"2026-07-25 10:11:19\";i:4;s:19:\"2026-07-25 10:27:59\";i:5;s:19:\"2026-07-26 02:24:30\";i:6;s:19:\"2026-07-26 02:24:30\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:41:\"Trying to get property \'ID\' of non-object\";s:4:\"file\";s:94:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor/modules/usage/module.php\";s:4:\"line\";i:209;s:5:\"trace\";b:1;}}s:32:\"78636df95fdcceae1e814f95c6dd072b\";O:31:\"Elementor\\Core\\Logger\\Items\\PHP\":9:{s:7:\"\0*\0file\";s:131:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php\";s:7:\"\0*\0line\";i:473;s:7:\"\0*\0date\";s:19:\"2026-07-23 19:54:38\";s:7:\"\0*\0type\";s:6:\"notice\";s:10:\"\0*\0message\";s:58:\"Trying to get property 'post_type' of non-object\";s:7:\"\0*\0meta\";a:1:{s:5:\"trace\";a:5:{i:0;a:5:{s:4:\"file\";s:131:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php\";s:4:\"line\";i:473;s:8:\"function\";s:18:\"rest_error_handler\";s:5:\"class\";s:29:\"Elementor\\Core\\Logger\\Manager\";s:4:\"type\";s:2:\"->\";}i:1;a:5:{s:4:\"file\";s:70:\"/storage/v12552/solsculpting/public_html/wp-includes/class-wp-hook.php\";s:4:\"line\";i:341;s:8:\"function\";s:22:\"transition_post_status\";s:5:\"class\";s:64:\"ElementorPro\\Modules\\AssetsManager\\AssetTypes\\Icons\\Custom_Icons\";s:4:\"type\";s:2:\"->\";}i:2;a:5:{s:4:\"file\";s:70:\"/storage/v12552/solsculpting/public_html/wp-includes/class-wp-hook.php\";s:4:\"line\";i:365;s:8:\"function\";s:13:\"apply_filters\";s:5:\"class\";s:7:\"WP_Hook\";s:4:\"type\";s:2:\"->\";}i:3;a:5:{s:4:\"file\";s:63:\"/storage/v12552/solsculpting/public_html/wp-includes/plugin.php\";s:4:\"line\";i:522;s:8:\"function\";s:9:\"do_action\";s:5:\"class\";s:7:\"WP_Hook\";s:4:\"type\";s:2:\"->\";}i:4;a:3:{s:4:\"file\";s:61:\"/storage/v12552/solsculpting/public_html/wp-includes/post.php\";s:4:\"line\";i:5826;s:8:\"function\";s:9:\"do_action\";}}}s:8:\"\0*\0times\";i:7;s:14:\"\0*\0times_dates\";a:7:{i:0;s:19:\"2026-07-23 19:54:38\";i:1;s:19:\"2026-07-23 20:57:57\";i:2;s:19:\"2026-07-25 09:38:37\";i:3;s:19:\"2026-07-25 10:11:19\";i:4;s:19:\"2026-07-25 10:27:59\";i:5;s:19:\"2026-07-26 02:24:30\";i:6;s:19:\"2026-07-26 02:24:30\";}s:7:\"\0*\0args\";a:5:{s:4:\"type\";s:6:\"notice\";s:7:\"message\";s:48:\"Trying to get property \'post_type\' of non-object\";s:4:\"file\";s:131:\"/storage/v12552/solsculpting/public_html/wp-content/plugins/elementor-pro/modules/assets-manager/asset-types/icons/custom-icons.php\";s:4:\"line\";i:473;s:5:\"trace\";b:1;}}}','off'),(80512,'elementor_allow_tracking','yes','yes'),(80513,'elementor_tracker_last_send','1774833577','yes'),(80516,'papro_updated','true','yes'),(80518,'edd_sl_74d626434e61718d87e2dccd8bec5fb9','a:2:{s:7:\"timeout\";i:1647210254;s:5:\"value\";s:112706:\"{\"new_version\":\"2.7.3\",\"stable_version\":\"2.7.3\",\"name\":\"Premium Addons Pro\",\"slug\":\"premium-addons-pro-for-elementor\",\"url\":\"https:\\/\\/my.leap13.com\\/downloads\\/premium-addons-pro-for-elementor\\/?changelog=1\",\"last_updated\":\"2022-03-09 17:21:35\",\"homepage\":\"https:\\/\\/premiumaddons.com\",\"package\":\"\",\"download_link\":\"\",\"sections\":{\"description\":\"<p>This plugin is an extension to Premium Addons for Elementor Plugin that includes Pro Elementor widgets and Addons for Elementor Page Builder. Visit <a href=\\\"https:\\/\\/www.premiumaddons.com\\/\\\">Premium Addons Website<\\/a> to check widgets and addons demos.<\\/p>\\n<p>Premium Addons PRO plugin\\u2019s widgets are cross browser compatible and also fully responsive, Your website will rock on all browsers as well as tables and mobile devices.<\\/p>\\n<p>When using Premium Addons\\u2019 widgets you will notice that it has more customization options than any other widget in other plugin.<\\/p>\\n<p>Premium Addons PRO can be used only as a complement of Elementor page builder plugin as it\\u2019s not a standalone plugin.<\\/p>\\n<h3>Features<\\/h3>\\n<ul>\\n<li>Fully Customizable Elements.<\\/li>\\n<li>Options panel for enabling desired elements only for faster performance.<\\/li>\\n<li>Free Support through online forums.<\\/li>\\n<\\/ul>\\n<h3>Available Elements<\\/h3>\\n<ol>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">Premium Alert Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/animated-section-gradients-for-elementor-page-builder\\/\\\">Premium Animated Section Gradient<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/behance-feed-widget-for-elementor-page-builder\\/\\\">Premium Behance Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/charts-widget-for-elementor-page-builder\\/\\\">Premium Charts<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/content-switcher-widget-for-elementor-page-builder\\/\\\">Premium Content Switcher<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/dual-header-widget-for-elementor-page-builder\\/\\\">Premium Divider<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-feed-widget-for-elementor-page-builder-2\\/\\\">Premium Facebook Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-messenger-widget-for-elementor-page-builder\\/\\\">Premium Facebook Messenger<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-reviews-widget-for-elementor-page-builder\\/\\\">Premium Facebook Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">Premium Flip Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/google-reviews-for-elementor-page-builder\\/\\\">Premium Google Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/icon-box-widget-for-elementor-page-builder\\/\\\">Premium Icon Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ihover-widget-for-elementor-page-builder\\/\\\">Premium iHover<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-image-accordion-widget\\/\\\">Premium Image Accordion<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-comparison-widget-for-elementor-page-builder\\/\\\">Premium Image Comparison<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-hotspots-widget-for-elementor-page-builder\\/\\\">Premium Image Hotspots<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-layers-widget-for-elementor-page-builder\\/\\\">Premium Image Layers<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/instagram-feed-widget-for-elementor-page-builder\\/\\\">Premium Instagram Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ken-burns-section-addon-for-elementor-page-builder\\/\\\">Premium Ken Burns<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/magic-section-widget-for-elementor-page-builder\\/\\\">Premium Magic Section<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">Premium Multi Scroll<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/parallax-section-addon-for-elementor-page-builder\\/\\\">Premium Parallax<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/particles-section-addon-for-elementor-page-builder\\/\\\">Premium Particles<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/preview-window-widget-for-elementor-page-builder\\/\\\">Premium Preview Window<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/table-widget-for-elementor-page-builder\\/\\\">Premium Tables<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/twitter-feed-widget-for-elementor-page-builder\\/\\\">Premium Twitter Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/tabs-widget-for-elementor-page-builder-2\\/\\\">Premium Tabs<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/unfold-widget-for-elementor-page-builder\\/\\\">Premium Unfold<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/whatsapp-widget-for-elementor-page-builder\\/\\\">Premium WhatsApp Chat<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-yelp-reviews-widget\\/\\\">Premium Yelp Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-trustpilot-reviews-widget\\/\\\">Premium Trustpilot Reviews<\\/a><\\/li>\\n<\\/ol>\",\"changelog\":\"<h4> 2.7.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<\\/ul>\\n<h4> 2.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<li>Fixed: Button Trigger Size option not working on frontend in Magic Section widget.<\\/li>\\n<li>Fixed: Alignment issue in Icon Box widget when description is short.<\\/li>\\n<li>Fixed: Invalid CSS added in the editor when Badge Addon is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.7.1 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error with some PHP versions after v2.7.0<\\/li>\\n<\\/ul>\\n<h4> 2.7.0 <\\/h4>\\n<ul>\\n<li>New: Added Premium Badge global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-badge-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: HTML markup optimized for Table widget for better performance.<\\/li>\\n<li>Tweak: Added Icon Color and Text Color\\/Typography options for each repeater cell in Table widget.<\\/li>\\n<li>Fixed: Hover Color and Padding options not working for Read More link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.8 <\\/h4>\\n<ul>\\n<li>New: Added five new skins in Elementor WooCommerce Products Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-woocommerce-products\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added compatibility between section\\/column addons and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Widgets code refactored to improve performance and loading speed.<\\/li>\\n<li>Tweak: Added Hover Box Shadow option in Lottie Animation section addon.<\\/li>\\n<li>Fixed: PHP warning when Follow Delay option value is not set in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Image with Size option set to custom not rendered in Image Layers and Icon Box widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.6.7 <\\/h4>\\n<ul>\\n<li>New: Added Custom Mouse Cursor global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Auto Change Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: HTML markup for images in Icon Box widget.<\\/li>\\n<li>Tweak: Make sure images in Image Layers and Tabs widgets are lazyloaded to improve loading speed.<\\/li>\\n<li>Fixed: Section\\/Column addons not working on editor when used inside widgets using Elementor templates.<\\/li>\\n<\\/ul>\\n<h4> 2.6.6 <\\/h4>\\n<ul>\\n<li>Fixed: Box shadow and Background Color options overriden by default values in CSS in Preview Window widget.<\\/li>\\n<li>Fixed: Charts widget not working in some cases inside Tabs widget.<\\/li>\\n<li>Fixed: Animated Gradient and Blob Generator addons not working in Tabs widget.<\\/li>\\n<li>Fixed: Ken Burns addon Infinite option always disabled when the editor page is reloaded.<\\/li>\\n<\\/ul>\\n<h4> 2.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load the main CSS file only when required.<\\/li>\\n<li>Fixed: Tabs widget not working properly with some themes.<\\/li>\\n<li>Fixed: Compatibility between Carousel option in Social Reviews widgets and RTL sites.<\\/li>\\n<li>Fixed: Keyboard Scrolling still works even when the control is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.5.0.<\\/li>\\n<\\/ul>\\n<h4> 2.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added options to control Scroll Offset for each section individually in Color Transition widget.<\\/li>\\n<li>Tweak: Javascript loading method improved for Animated Gradient, Particles section\\/column addons for better performance.<\\/li>\\n<li>Fixed: Styling options not working for SVG icons in Magic Section widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added WooCommerce Total Amount In Cart and Current Product Stock options in Display Conditions feature.<\\/li>\\n<li>Fixed: Console error when videos are inserted in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fixed: Undefined variable $dir_class in Image Layers widget when Text option is used.<\\/li>\\n<li>Fixed: Button Size option not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.0 <\\/h4>\\n<ul>\\n<li>New: Added Animated Blob Generator section addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-animated-blob-generator\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Radar Style option in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added div, p and span HTML tag options for heading in Hover Box widget.<\\/li>\\n<li>Fixed: Default icon size changed in Hover Box widget.<\\/li>\\n<li>Fixed: Background Color not changing when multiple Background Transition widgets are used on the same page.<\\/li>\\n<\\/ul>\\n<h4> 2.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Background is not changed on scroll up in Background Transition widget.<\\/li>\\n<li>Fixed: Nested tabs styling overwrite issue in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Tabs widget rebuilt for better usability and editing experience.<\\/li>\\n<li>Tweak: Control number of carousel slides to show in Instagram Feed widget.<\\/li>\\n<li>Tweak: Prevent Background Transition widget from changing color when up\\/down backgrounds are the same.<\\/li>\\n<li>Fixed: Line height not working for Business\\/Place Name, Reviewer Name and Review Text in Social Reviews widgets.<\\/li>\\n<li>Fixed: Entrance Animations not working on for the first in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Tabs widget not working when shortcodes are used in tabs content.<\\/li>\\n<\\/ul>\\n<h4> 2.5.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Heroes Flying-Left effect in iHover widget.<\\/li>\\n<li>Tweak: Remove any duplicate content when Accordion Tabs option is enabled in Tabs widget.<\\/li>\\n<li>Tweak: Added Tab ID option in Tabs widget.<\\/li>\\n<li>Fixed: Animation issues for Flash Rotation, Flip Door, and Magic Door effects in iHover widget.<\\/li>\\n<li>Fixed: Charts not working on the editor page on Chrome browser.<\\/li>\\n<li>Fixed: Color option not applied on links in Table widget when CSV file is used.<\\/li>\\n<\\/ul>\\n<h4> 2.5.2 <\\/h4>\\n<ul>\\n<li>Tweak: Save all the plugin settings on change without need to click "Save Settings" button.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.4.<\\/li>\\n<li>Fixed: Trustpilot Reviews widget not working for some businesses.<\\/li>\\n<li>Fixed: Snappy scroll stability issues in Horizontal Scroll issues.<\\/li>\\n<li>Fixed: Compatibility issues between Elementor custom breakpoints and Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: iHover widget code refactored for faster editing speed..<\\/li>\\n<li>Tweak: Added Image Hover Effect in Image Layers widget.<\\/li>\\n<li>Tweak: Added compatibility between Multiscroll widget and sticky headers.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Premium Particles not working on some devices in editor page.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Content is not fully rendered issue in Unfold widget.<\\/li>\\n<li>Fixed: Removed Unnecessary requests made in Instagram Feed widget.<\\/li>\\n<li>Fixed: Hide Slide On and Disable Horizontal Scroll On options not working togethr in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Carousel not working in Facebook Feed widget when <code>Only Show Admin Posts<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Fold Height option not working when set to <code>0<\\/code> in Unfold widget.<\\/li>\\n<li>Fixed: Console error in Multi Scroll widget.<\\/li>\\n<li>Fixed: Admin notices not showing when Premium Addons for Elementor is not installed.<\\/li>\\n<\\/ul>\\n<h4> 2.5.0 <\\/h4>\\n<ul>\\n<li>Tweak: JS code refactored for better performance and faster editing speed.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.2.<\\/li>\\n<li>Fixed: Emojis not showing in Twitter Feed widget.<\\/li>\\n<li>Fixed: Slides overlapping issue on touch devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Image Hotspots colors not working in editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.4.9 <\\/h4>\\n<ul>\\n<li>New: Added Advanced Border Radius option to improve the normal Border Radius option - <a href=\\\"https:\\/\\/9elements.github.io\\/fancy-border-radius\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Particles overlapping issue when browser active tab is changed.<\\/li>\\n<li>Fixed: Alignment controls icons not showing in editor panel.<\\/li>\\n<li>Fixed: Tabs widget style conflict with LearnDash plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to control <code>Based on Number of Reviews<\\/code> string in all social reviews widgets.<\\/li>\\n<li>Fixed: Expired access token is not refreshed in Instagram Feed widget.<\\/li>\\n<li>Fixed: Image appears before entrance animation starts in Image Layers widget.<\\/li>\\n<li>Fixed: Facebook Feed widget conflict with Complianz | GDPR\\/CCPA Cookie Consent plugin.<\\/li>\\n<li>Fixed: Pagination not working in the editor in Table widget.<\\/li>\\n<li>Fixed: Reviews markup issue with <code>Review Words Length<\\/code> option in Trustpilot Reviews widget.<\\/li>\\n<li>Fixed: Tabs widget conflict with some themes.<\\/li>\\n<\\/ul>\\n<h4> 2.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Change Tabs to Accordion On Small Screens<\\/code> option in Tabs widget.<\\/li>\\n<li>Tweak: Improved compatibility with Elementor new version.<\\/li>\\n<\\/ul>\\n<h4> 2.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Improved Social Reviews widgets compatibility for RTL sites.<\\/li>\\n<li>Tweak: Improved WPML compatibility with all widgets.<\\/li>\\n<li>Tweak: Added Icon Spacing option in Unfold widget.<\\/li>\\n<li>Fixed: SVGs icons not showing on button in Unfold widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.5 <\\/h4>\\n<ul>\\n<li>Fixed: Error <code>Call to undefined function<\\/code> when only Trustpilot Review widget is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.4.4 <\\/h4>\\n<ul>\\n<li>Fixed: Console error in Parallax addon issue.<\\/li>\\n<\\/ul>\\n<h4> 2.4.3 <\\/h4>\\n<ul>\\n<li>New: Added Premium Trustpilot Reviews widget.<\\/li>\\n<li>Tweak: Added Infinite Autoplay for carousel in social reviews widgets.<\\/li>\\n<li>Tweak: Added Navigation Type Dots\\/Arrows option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Show Number of Reviews option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Put Place\\/Business Info next to reviews option in social reviews widgets.<\\/li>\\n<li>Fixed: Console error <code>$ is not defined<\\/code> since v2.4.2.<\\/li>\\n<\\/ul>\\n<h4> 2.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Clear Cached Data button to Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Carousel Arrows option for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Snap Scroll improved in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.1 <\\/h4>\\n<ul>\\n<li>Fixed: Horizontal Scroll slides anchoring not working since v2.4.0<\\/li>\\n<li>Fixed: Lightbox option issue in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.0 <\\/h4>\\n<ul>\\n<li>Tweak: Feed Media Height control added to work all time in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Section\\/Column addons code refactored to improve editing speed.<\\/li>\\n<\\/ul>\\n<h4> 2.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hovered Image Width control option in Image Accordion widget.<\\/li>\\n<li>Tweak: Javascript Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Lottie Animation icon size option not working on Chrome in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spacing Color option in Image Accordion widget.<\\/li>\\n<li>Fixed: Horizontal Scroll anchor links not working with Elementor popups.<\\/li>\\n<li>Fixed: Images Spacing option not working with horizontal direction in Image Accordion widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Minimal Mask effect for Text in Image Layers widget.<\\/li>\\n<li>Tweak: Added Image Spacing option in Image Accordion widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in all widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Hide Section option not working after v2.3.5 in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Disable Horizontal Scroll On Tablet\\/Mobile devices option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Wave Effect option in Animated Gradient add-on.<\\/li>\\n<li>Tweak: Added Change Legend to Circles option in Charts widget.<\\/li>\\n<li>Tweak: Added Maximum Height control in Magic Section.<\\/li>\\n<li>Fixed: Equal Height option not working when Carousel is enabled in Social Feed and Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Live Search option shows results only from current page in Table widget.<\\/li>\\n<li>Fixed: Icon Hover Animation not working with Whole Box Link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Pull Data from CSV file in Charts widget.<\\/li>\\n<li>Fixed: Some Particles effects not working.<\\/li>\\n<li>Fixed: Template style is rendered in Content Toggle widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Lottie Animations, Icon and Text Trigger options in Preview Window widget.<\\/li>\\n<li>Tweak: Added Show\\/Hide Reviewer Image option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Added Show\\/Hide Place Rating Stars option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Compatibility with Elementor PRO 3.2.0.<\\/li>\\n<\\/ul>\\n<h4> 2.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and faster editor loading.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for Magic Section widget.<\\/li>\\n<li>Tweak: Added option to enable cookies for logged in users in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Image option in Preview Window widget.<\\/li>\\n<li>Tweak: Added responsive controls for Fold Height and Fade Height options in Unfold widget.<\\/li>\\n<li>Tweak: Added Icon Spacing option for Link in Icon Box widget.<\\/li>\\n<li>Fixed: Icon Spacing not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Tooltips height issue in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide specific sections on different devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Content alignment responsive controls not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.8 <\\/h4>\\n<ul>\\n<li>New: Apply Animated Gradient, Ken Burns, Parallax and Particles add-on on columns.<\\/li>\\n<li>Fixed: Global Colors not working for Animated Gradient add-on.<\\/li>\\n<li>Fixed: Spinner effect text link not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text option in Image Layers widget.<\\/li>\\n<li>Tweak: Code refactored for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show Admin Posts Only option in Facebook Feed widget.<\\/li>\\n<li>Tweak: Added Data Format Locale option to format numbers in Charts widget.<\\/li>\\n<li>Tweak: Number formatting in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Horizontal Scroll Parallax option in Parallax Section add-on.<\\/li>\\n<li>Tweak: Added Profile Header and Tweet Information options in Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Cube effect in Hover Box widget.<\\/li>\\n<li>Tweak: Added Profile Header in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Feed Share button in Instagram Feed widget.<\\/li>\\n<li>Tweak: WPML Compatibility for Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Reload data every Minute option changed to Five Minutes to prevent API block in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show\\/Hide Profile Name and Feed Content option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Feed Media Image Height option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added CSS ID option for hotspots in Image Hotspots widget.<\\/li>\\n<li>Fixed: All RTL issues in Facebook\\/Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation option to Tabs widget.<\\/li>\\n<li>Tweak: Added Back To Initial Position for Parallax Mouse Interactivity in Image Layers widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when direction option is set to RTL in Table widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Left Margin\\/Padding option not working for Title\\/Link in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can load more than 25 feed posts in Instagram Feed widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Carousel swipes in opposite direction in all social feed\\/reviews widgets.<\\/li>\\n<li>Fixed: Duplicated Premium Addons icon in section add-ons after WordPress v5.6.<\\/li>\\n<\\/ul>\\n<h4> 2.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Description not showing issue in Icon Box widget.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in Image Hotspots widget.<\\/li>\\n<li>Fixed: Inline editing not working for content in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added two new styles to Hover Box widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Carousel option in Facebook\\/Instagram Feed widgets.<\\/li>\\n<li>Tweak: Added Equal Height option in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added Lottie Animation Icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Whole Box Link and Link Position options in Icon Box widget.<\\/li>\\n<li>Tweak: Added responsive controls for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added slides spacing for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Rotate option to back icon in Icon Box widget.<\\/li>\\n<li>Tweak: Hotspots Image render function code refactored to improve for site performance.<\\/li>\\n<li>Tweak: Removed API Key option in Behance Feed widget.<\\/li>\\n<li>Fixed: List layout width issue in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Fixed: Multi Scroll widget console error with some themes.<\\/li>\\n<li>Fixed: Horizontal Scroll widget issues on browser window resize.<\\/li>\\n<li>Fixed: Tabs widget spacing issues on small screens.<\\/li>\\n<li>Fixed: Default padding given to content in Content Toggle widget.<\\/li>\\n<li>Fixed: Widgets Badge White Labeling option not working.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type null<\\/code> when Navigation Arrows option is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added WPML Compatibility for Table widget.<\\/li>\\n<li>Fixed: Bounce image issue in Parallax section addon.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in social feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.3 <\\/h4>\\n<ul>\\n<li>Tweak: Alt attribute is now reading from Media library for images in Image Layers widget.<\\/li>\\n<li>Tweak: Unnecessary code removed for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Editor\\/Template Content Type option in Unfold widget.<\\/li>\\n<li>Tweak: Added Interactive option for tooltips in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added File Source (URL\\/File Upload) option in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Images Alt attribute not added in multi-layered Parallax add-on.<\\/li>\\n<li>Fixed: Images stretch issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Handle not moving in RTL sites issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Responsive controls for section background not applied on Parallax add-on.<\\/li>\\n<li>Fixed: Custom Data table not pulling data after the file URL is changed in Table widget.<\\/li>\\n<li>Fixed: Instagram video not showing in RTL sites in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added new skin Cards in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Maximum Words Number option for image caption in Instagram Feed widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in Tabs widget.<\\/li>\\n<li>Fixed: Place\\/Page avatar alignment issue on Twenty Twenty theme in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Icon Spacing option not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when Icon Position is set to After in Magic Section widget.<\\/li>\\n<li>Fixed: Freehand design option not working in Image Layers, Hotspots and Parallax section add-on after Elementor 3.0.0.<\\/li>\\n<li>Fixed: Page update button is disabled after using Freehand position\\/resize feature.<\\/li>\\n<\\/ul>\\n<h4> 2.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.0.0.<\\/li>\\n<li>Fixed: Particles add-on appears below section in RTL sites issue.<\\/li>\\n<li>Fixed: Undefined \'open_graph_story\' in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Icon Size option not working with SVG icons in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.8 <\\/h4>\\n<ul>\\n<li>Tweak: Add different color to each dataset value in bar Chart widget.<\\/li>\\n<li>Fixed: WhatsApp Chat widget group option not working on mobile devices.<\\/li>\\n<li>Fixed: Hotspots Horizontal Position option not working for RTL sites in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility issues with WordPress 5.5.<\\/li>\\n<\\/ul>\\n<h4> 2.0.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Change Colors As Gradient option in Background Transition widget.<\\/li>\\n<li>Tweak: API Version updated for Facebook Reviews\\/Feed widgets.<\\/li>\\n<li>Fixed: Filter by Tags option letter case sensitive in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option for remote CSV files in Table widget.<\\/li>\\n<li>Tweak: Added Filter by Tags option in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: Instagram deprecated API replaced with Facebook API in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Color options for feed links in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Tweak: Added Background Color, Margin and Padding option for readmore link in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Fixed: Widgets with entrance animations not showing on tablet\\/mobile devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Instagram Feed widget now supports Instagram videos.<\\/li>\\n<li>Tweak: Added RTL Mode option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Image icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Change Readmore text option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Render Type option in Lottie Animations section add-on.<\\/li>\\n<li>Tweak: Added Speed option in Flip Box widget.<\\/li>\\n<li>Fixed: Facebook Feed widget date not showing in Safari.<\\/li>\\n<li>Fixed: Social reviews carousel issue in RTL sites.<\\/li>\\n<li>Fixed: Vertical Image Comparison widget not working when label option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.2 <\\/h4>\\n<ul>\\n<li>Fixed: Image Layers scroll effects not working since v2.0.0<\\/li>\\n<li>Fixed: Premium Lottie section add-on editor overloading issue.<\\/li>\\n<li>Fixed: WhatsApp button not working on iOS mobile devices.<\\/li>\\n<\\/ul>\\n<h4> 2.0.1 <\\/h4>\\n<ul>\\n<li>Fixed: Freehand positioning conflict in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Entrance animation duplicate issue in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.0 <\\/h4>\\n<ul>\\n<li>New: Introducing Lottie Animations Integration for all the widgets including icon options.<\\/li>\\n<li>New: Added Premium Lottie Animations Section Add-on.<\\/li>\\n<li>Tweak: Added Overlay Background option to Alert Box widget.<\\/li>\\n<li>Tweak: Added Default Tab Index option to Tabs widget.<\\/li>\\n<li>Tweak: Added Border Radius option for button in Content Switcher widget.<\\/li>\\n<li>Tweak: Added Show\\/hide layers on different devices option in Parallax Add-on multi layers.<\\/li>\\n<li>Tweak: Added Floating Effects in Image Hotspots and Preview Window widgets.<\\/li>\\n<li>Fixed: Horizontal Scroll not scrolling below last slide on Snappy effect.<\\/li>\\n<li>Fixed: Widgets masonry layout issues on the editor on Chrome browser.<\\/li>\\n<li>Fixed: Table widget responsive option not working on tablets.<\\/li>\\n<li>Fixed: Instagram Feed new API not working for logged out users.<\\/li>\\n<li>Fixed: Instagram login button not working when Facebook Reviews widget is disabled.<\\/li>\\n<li>Fixed: Conflict with Pinpoint Booking System Plugin shortcodes.<\\/li>\\n<li>Fixed: Multi Scroll widget Left\\/Right Section Width option override previous widgets.<\\/li>\\n<li>Fixed: PHP error <code>Trying to access array offer on value of type bool<\\/code> in \\/white-label\\/admin.php.<\\/li>\\n<li>Fixed: Console error <code>jQuery is not defined<\\/code> in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility errors with PHP v7.0<\\/li>\\n<\\/ul>\\n<h4> 1.9.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added new API options for Instagram Feed widget.<\\/li>\\n<li>Fixed: Horizontal Scroll widget not working on RTL sites.<\\/li>\\n<li>Fixed: Opacity floating effect now working in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hover Text\\/Icon Color option for Trigger Button in Magic Section widget.<\\/li>\\n<li>Tweak: Added Opacity to Float Effects in Image Layers widget.<\\/li>\\n<li>Tweak: Change "Read More" link text option added in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added <code>Mouse Tilt<\\/code> option in Icon Box widget.<\\/li>\\n<li>Tweak: Get \'alt\' attribute for images in iHover widget.<\\/li>\\n<li>Fixed: Dynamic links not working for some elements.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type bool<\\/code> in section add-ons.<\\/li>\\n<\\/ul>\\n<h4> 1.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for dynamic fields in all social media widgets.<\\/li>\\n<li>Fixed: Scrolling issues in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error <code>ReferenceError: module is not defined<\\/code><\\/li>\\n<\\/ul>\\n<h4> 1.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Animated Gradient section add-on.<\\/li>\\n<li>Tweak: Added Chinese to Language option for Facebook Messenger Chat widget.<\\/li>\\n<li>Tweak: Added <code>Whole Box Link<\\/code> option in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Load Chart on Scroll\\/Page Load<\\/code> option in Charts widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Charts widget.<\\/li>\\n<li>Fixed: Filters by rating not working properly when review rating is not set in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Improved <code>Filter By Language<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Fixed: Spacings not applied on tooltips templates in Image Hotspots widget.<\\/li>\\n<li>Fixed: Colors applied on <code>Whole Box Link<\\/code> in iHover widget.<\\/li>\\n<li>Fixed: Rating Schema in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Pagination<\\/code> options in Table widget.<\\/li>\\n<li>Tweak: Added <code>Carousel<\\/code> options in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.6 <\\/h4>\\n<ul>\\n<li>Tweak: Now, you can remove all header cells in Table widget.<\\/li>\\n<li>Tweak: Added <code>Hover Text Animation<\\/code> switcher option in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added new effects for Ken Burns add-on.<\\/li>\\n<li>Tweak: Added <code>Reverse Direction<\\/code> for mousemove parallax in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Link<\\/code> option for header cells in Table widget.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working in Ken Burns section add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Padding<\\/code> option for container in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Blend Mode<\\/code> option to iHover, Image Hotspots and Image Layers widgets.<\\/li>\\n<li>Tweak: Added <code>Filter by Tags<\\/code> option to Instagram Feed widget.<\\/li>\\n<li>Fixed: Lightbox not working in Instagram Feed widget.<\\/li>\\n<li>Fixed: Console errors on IE due to Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Floating Effects<\\/code> to Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Zoom In\\/Out<\\/code> option for each layer in Ken Burns add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added four new effects to Flip Box widget.<\\/li>\\n<li>Tweak: 3D flip effect animation enhanced in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can set different style to each hotspot item in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added link option for Button in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Background Color option Alert Box widget.<\\/li>\\n<li>Fixed: Not all ratings are pulled in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spinner styling option for loading spinner in Instagram Feed widget.<\\/li>\\n<li>Fixed: <code>$<\\/code> is not defined in Facebook Reviews and Feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Button<\\/code> option to iHover widget.<\\/li>\\n<li>Tweak: Added <code>Hide Plugin Row Meta<\\/code> and <code>Hide Plugin Changelog Link<\\/code> to plugin White Labeling options.<\\/li>\\n<li>Fixed: Background Transition widget not working with <code>RGB<\\/code> colors.<\\/li>\\n<li>Fixed: Console errors with invalid sections CSS IDs in Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>CSS Filter<\\/code> for normal\\/hover state in Image Hotspots widget.<\\/li>\\n<li>Fixed: Grey line appears by default in Image Layers widget.<\\/li>\\n<li>Fixed: Even Layout not working with Carousel option enabled in all Reviews widgets.<\\/li>\\n<li>Fixed: Carousel slides not appearing on RTL sites in all Reviews widgets.<\\/li>\\n<li>Fixed: SVG icons size option not working in all widgets.<\\/li>\\n<li>Fixed: Link title and icon are not aligned in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Background Transition widget improved.<\\/li>\\n<li>Fixed: Caching is not applied on place data in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Nested Premium Tabs not appearing.<\\/li>\\n<li>Fixed: Active Tab box shadow option not applied on the same selector in normal\\/hover in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option <code>Reload Reviews Once Every<\\/code> in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.3 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed widget not working on IE browsers.<\\/li>\\n<\\/ul>\\n<h4> 1.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Render First Row As<\\/code> option in Table widget.<\\/li>\\n<li>Fixed: Flipbox widget <code>Whole Box<\\/code> link option is not working.<\\/li>\\n<li>Fixed: Default icon is not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.1 <\\/h4>\\n<ul>\\n<li>New: Added Color Transition widget.<\\/li>\\n<li>Tweak: Get Instagram feed by Access Token only.<\\/li>\\n<li>Tweak: Added dynamic field support for CSV file in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.0 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed loading spinner does not appear on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Hover Color<\\/code> option for title\\/icon in Tabs widget.<\\/li>\\n<li>Fixed: Active tab Margin\\/Padding issue in Tabs widget.<\\/li>\\n<li>Fixed: Vertical Tabs widget alignment issue.<\\/li>\\n<li>Fixed: Security bugs fixed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Schema Support<\\/code> option for all Reviews widgets.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for all widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.6.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Minimum Value<\\/code> option in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Line Width<\\/code> option for grid lines in Charts widget.<\\/li>\\n<li>Tweak: Added transition for Image Accordion overlay color.<\\/li>\\n<li>Fixed: Parallax section add-on does not work on frontend pages.<\\/li>\\n<\\/ul>\\n<h4> 1.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load assets files for section add-ons only when needed to improve performance.<\\/li>\\n<li>Tweak: Added <code>Step Size<\\/code> option for Radar type Charts.<\\/li>\\n<li>Fixed: Tabs nav container changed to div to prevent styling issues.<\\/li>\\n<\\/ul>\\n<h4> 1.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Reviews Word Length<\\/code> option does not work for non-latin characters in all reviews widgets.<\\/li>\\n<li>Fixed: <code>Notice: Undefined variable: tool_tips_image_url<\\/code> in Preview Window widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Alignment<\\/code> option in iHover widget.<\\/li>\\n<li>Fixed: <code>Border Color<\\/code> option missing for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<li>Fixed: Bottom positioned Magic Section appears after page load.<\\/li>\\n<\\/ul>\\n<h4> 1.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Feed widget for easier feed pull.<\\/li>\\n<li>Fixed: <code>Maximum Value<\\/code> option added to Radar chat type in Charts widget.<\\/li>\\n<li>Fixed: <code>Carousel Arrows Position<\\/code> option shows when <code>Autoplay<\\/code> option is enabled in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Loader spinner not showing on the preview page in Facebook\\/Twitter Feed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>RTL Mode<\\/code> option for Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Image Layers <code>Freehand<\\/code> reposition not working if page contains Premium Carousel widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Review Length<\\/code> option to Facebook Reviews widget.<\\/li>\\n<li>Fixed: Images pixelated when size is increased in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Messenger Chat icon not showing on mobile devices.<\\/li>\\n<li>Fixed: Cells alignment issue with multi-line text in Table widget.<\\/li>\\n<li>Fixed: Blank line below Instagram images for some themes.<\\/li>\\n<\\/ul>\\n<h4> 1.5.9 <\\/h4>\\n<ul>\\n<li>New: Added Yelp Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Reviews widget for easier reviews pull.<\\/li>\\n<li>Tweak: Added <code>Review Length<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Responsive Controls<\\/code> for Premium Particles section add-on.<\\/li>\\n<li>Tweak: Added <code>Table Layout<\\/code> option in Premium Table widget.<\\/li>\\n<li>Fixed: Divider and text in Premium Divider widget are not centered in some themes.<\\/li>\\n<li>Fixed: <code>Button Size<\\/code> in Unfold widget not applied on the front-end.<\\/li>\\n<li>Fixed: Back side <code>Link<\\/code> unclickable on Microsoft Edge in Flip Box widget.<\\/li>\\n<li>Fixed: Twitter\\/Facebook Feed time elapsed Singular\\/Plural issue.<\\/li>\\n<li>Fixed: Clipped reviewer profile picture in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.8 <\\/h4>\\n<ul>\\n<li>New: Added Image Accordion widget.<\\/li>\\n<li>Fixed: Title\\/Icon are not horizontally centered in styles 3,4 in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.7 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Read More<\\/code> button redirects to post instead of page in Facebook Feed widget.<\\/li>\\n<li>Fixed: Carousel arrows styling only works on the editor page in Google\\/Facebook Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Theme<\\/code> option for lightbox in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Fade Speed<\\/code> option for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Posts` images don\'t appear in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Reviews date doesn\'t appear with <code>Place Info<\\/code> option disabled.<\\/li>\\n<li>Fixed: Right templates shift to left by <code>1px<\\/code> in Multi Scroll widget.<\\/li>\\n<li>Fixed: Facebook Feed widget doesn\'t work with APIs v3.3.<\\/li>\\n<\\/ul>\\n<h4> 1.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core refactored to improve performance.<\\/li>\\n<\\/ul>\\n<h4> 1.5.3 <\\/h4>\\n<ul>\\n<li>Fixed: Charts animation doesn\'t work when height option is set.<\\/li>\\n<li>Fixed: <code>Tabs Background<\\/code> overrides lists background for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.2 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Dynamic Content<\\/code> doesn\'t work when <code>ACF Field<\\/code> is selected in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Tilt Mouse Interactivity<\\/code> doesn\'t work on IE for Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.0 <\\/h4>\\n<ul>\\n<li>Fixed: Image Comparison broken on IE with Section Vertical Parallax enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Outer Background Color<\\/code> option for container in Preview Window widget.<\\/li>\\n<li>Fixed: Magic Section content appears until page is loaded.<\\/li>\\n<li>Fixed: Image Comparison broken on IE with Image Layers scroll effects enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: <code>WPML Compatibility<\\/code> for all widgets.<\\/li>\\n<li>Fixed: License deactivation issues.<\\/li>\\n<li>Fixed: Google reCaptcha doesn\'t work after v1.4.8<\\/li>\\n<li>Fixed: Particles are stretched on small screens.<\\/li>\\n<li>Fixed: Add-ons don\'t load with <code>MyListing<\\/code> theme.<\\/li>\\n<\\/ul>\\n<h4> 1.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Stretch Image<\\/code> option for background image in Image Hotspots widget.<\\/li>\\n<li>Fixed: Console error <code>UniversalTilt undefined<\\/code> on IE browser with Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for Instagram widget.<\\/li>\\n<li>Fixed: <code>Invalid Character on line 3361<\\/code> after v1.3.5<\\/li>\\n<\\/ul>\\n<h4> 1.4.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Scroll Effects<\\/code> for images in Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning, resizing features for layers in Image Layers widget and Multi Layer Parallax.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning feature for Image Hotspots widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option for Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for all <code>URL<\\/code> fields.<\\/li>\\n<li>Fixed: Content Switcher widget button issue when browse back page button is clicked.<\\/li>\\n<li>Fixed: <code>Save Settings<\\/code> button doesn\'t work in White Labeling Dashboard submenu.<\\/li>\\n<li><strong>Important: This update includes deep enhancements for Image Hotspots, Image Layers widgets and Parallax Add-on. So, please review your existing pages.<\\/strong><\\/li>\\n<\\/ul>\\n<h4> 1.4.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Data Separator<\\/code> optiuon for CSV files in Table widget.<\\/li>\\n<li>Fixed: Layout issues on Microsoft IE browser.<\\/li>\\n<li>Fixed: <code>Notice: Undefined index: premium_parallax_android_support<\\/code> , <code>premium_parallax_ios_support<\\/code> in Parallax add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.4.3 <\\/h4>\\n<ul>\\n<li>Tweak: Prevent adding inline styles\\/scripts for Section add-ons.<\\/li>\\n<li>Tweak: Changed Particles Add-on <code>JSON<\\/code> code area from <code>TEXTAREA<\\/code> to <code>CODE<\\/code><\\/li>\\n<li>Tweak: Ability to change <code>Live Search<\\/code> and <code>Show Records<\\/code> strings in Table widget.<\\/li>\\n<li>Tweak: Wait images to load before triggering <code>Masonry<\\/code> layout in Faceook Feed widget.<\\/li>\\n<li>Fixed: Cells align right issue on Google Chrome in Table widget.<\\/li>\\n<li>Fixed: Premium Divider issues with <code>Elementor Custom Positioning<\\/code> option.<\\/li>\\n<\\/ul>\\n<h4> 1.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Records<\\/code> option in Table widget.<\\/li>\\n<li>Tweak: Added <code>Blur On Hover<\\/code> effect in Table widget.<\\/li>\\n<li>Tweak: Added <code>responsive controls<\\/code> for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Text Color<\\/code> option for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Settings<\\/code> to plugin action links on <code>Plugins<\\/code> page.<\\/li>\\n<\\/ul>\\n<h4> 1.4.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Left\\/Right Section Width<\\/code> option to control width ratio in Multi Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Show Caption<\\/code> option to show photo caption in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> options group for hover state in Instagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.0 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Twitter Feed does not work.<\\/li>\\n<\\/ul>\\n<h4> 1.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Parallax background position, repeat and size inherit from Elementor responsive background options.<\\/li>\\n<li>Tweak: Added responsive controls for <code>Arrow Size<\\/code> option in Premium Facebook\\/Google Reviews widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images for trigger and preview images in Preview Image widget.<\\/li>\\n<li>Tweak: Code refactor to enhance plugin performance speed.<\\/li>\\n<\\/ul>\\n<h4> 1.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Number of Columns<\\/code> option in Premium Facebook\\/Google Review and Facebook\\/Twitter widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images in Premium Behance\\/Instagram Feed and iHover widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Images per Row<\\/code> option in Premium Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Widgets Badge<\\/code> option to white labeling to change widgets` icons badge text.<\\/li>\\n<li>Fixed: Enable Parallax on Android\\/iOS does not work for Parallax section add-on.<\\/li>\\n<li>Fixed: Different images height when <code>Masonry<\\/code> option is disabled in Premium Intagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Warning: require_once(\\/premium-addons-pro-includes\\/deps\\/json.php): failed to open stream: No such file or directory.<\\/li>\\n<li>Fixed: Images order when <code>Masonry<\\/code> option is disabled in Premium Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Facebook, Twitter and Instagram elements to improve plugin performance.<\\/li>\\n<li>Tweak: Added <code>Infinite<\\/code> option for single image in Ken Burns add-on.<\\/li>\\n<li>Fixed: Set Tabs content to Full Width issue.<\\/li>\\n<li>Fixed: Posts overlapping when masonry option enabled in Premium Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Charts, Facebook\\/Google Reviews, Image layers, Multi Scroll , and Tabs elements to improve plugin performance.<\\/li>\\n<li>Tweak: Dynamic data support for <code>Image<\\/code> in Premium Divider widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Dynamic data support in Premium Ken Burns add-on.<\\/li>\\n<li>Fixed: Image Hotspots widget issue on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.3.2 <\\/h4>\\n<ul>\\n<li>Fixed: Pointer cursor for cells with <code>Link<\\/code> option disabled in Premium Table widget.<\\/li>\\n<li>Fixed: overlapping issue when iHover widget <code>Link<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Tabs widget layout issue on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 1.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Border Width<\\/code> option for each dataset in Premium Charts widget.<\\/li>\\n<li>Fixed: <code>Warning: Creating default object from empty value<\\/code> in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Unnecessary <code>esc_html()<\\/code> function removed.<\\/li>\\n<li>Tweak: Unnecessary conditions removed to enhance editor page loading speed.<\\/li>\\n<\\/ul>\\n<h4> 1.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Second Fill Color<\\/code> option to create gradients in Line, Bar and Horizontal Bar charts.<\\/li>\\n<li>Tweak: Unnecessary functions removed from Facebook Feed, Charts, Behance and Image Comparison widgets to enhance performance.<\\/li>\\n<\\/ul>\\n<h4> 1.2.8 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files loaded only when required to enhance plugin performance.<\\/li>\\n<li>Tweak: Show label next to value on Pie\\/Doughnut Premium Chart hover.<\\/li>\\n<\\/ul>\\n<h4> 1.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Values on Chart<\\/code> option to Pie\\/Doughnut chart in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added language option to Premium Messenger Chat widget.<\\/li>\\n<li>Fixed: <code>View Details<\\/code> link appears for Premium Add-ons for Elementor with White Labeling enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Formatting Y-Axis labels numbers in Premium Charts widget.<\\/li>\\n<li>Tweak: Ken Burns can now be used with only one image.<\\/li>\\n<li>Fixed: Charts not visible when inserted in Elementor Accordion widget.<\\/li>\\n<li>Fixed: CSV files don\'t appear in Media in Premium Tables widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Overlay Color option to Premium Ken Burns section add-on.<\\/li>\\n<li>Fixed: <code>Detected usage of deprecated noAndroid<\\/code> with Premium Parallax section add-on.<\\/li>\\n<li>Fixed: Premium Messenger Chat not working after Facebook latest Apps update.<\\/li>\\n<\\/ul>\\n<h4> 1.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added vertical tabs sections width option in Premium Tabs widget.<\\/li>\\n<li>Tweak: Added Filter by language option in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added arrow size and padding options to carousel arrows in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Dynamic data support in Premium Charts widget.<\\/li>\\n<li>Tweak: Shortcodes support using text editor in Premium Content Switcher widget.<\\/li>\\n<li>Fixed: Charts issue when inserted inside Premium Modal Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Projects with grid images in Premium Behance widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added Column Width option in Premium Charts widget.<\\/li>\\n<li>Tweak: Added Carousel Autoplay speed option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Added Carousel Arrows position option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Carousel responsive issues in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Reviews issue when no stars is returned with review.<\\/li>\\n<\\/ul>\\n<h4> 1.1.9 <\\/h4>\\n<ul>\\n<li>Tweak: Hide specific sections on mobiles\\/tables option added to Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.8 <\\/h4>\\n<ul>\\n<li>Fixed: Sections order on mobile\\/tablets in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.7 <\\/h4>\\n<ul>\\n<li>Fixed: Responsive issues in Premium Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.6 <\\/h4>\\n<ul>\\n<li>New: Added Multi Scroll widget.<\\/li>\\n<li>Tweak: Added Margin Option for Magic Section widget in active case.<\\/li>\\n<li>Fixed: Google Reviews unloaded place image.<\\/li>\\n<li>Fixed: Tabs background\\/arrow color issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Table widget performance enhanced.<\\/li>\\n<li>Tweak: Added Dynamic Images option for all widgets.<\\/li>\\n<li>Tweak: Added Dynamic place id option for Premium Google Reviews widget.<\\/li>\\n<li>Tweak: Added Carousel option for Premium Facebook\\/Google reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.4 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Tabs conflict issue.<\\/li>\\n<li>Fixed: Facebook\\/Twitter Feed read more issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.3 <\\/h4>\\n<ul>\\n<li>Fixed: Facebook Feed widget conflict issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added convert values to percentage in Premium Charts widget.<\\/li>\\n<li>Fixed: Call to a member function get_error_message() on array after license activation.<\\/li>\\n<\\/ul>\\n<h4> 1.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancement for faster performance.<\\/li>\\n<li>Tweak: Premium Divider widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Flip Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Icon Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Image Layers widget performance enhanced.<\\/li>\\n<li>Tweak: Premium iHover widget performance enhanced.<\\/li>\\n<\\/ul>\\n<h4> 1.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Tabs issue on IE browser.<\\/li>\\n<li>Fixed: Group Control issue in Premium Facebook\\/Twitter widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Warning "Invalid argument supplied for foreach() in \\/premium-addons-pro\\/widgets\\/premium-tables.php on line 1567".<\\/li>\\n<\\/ul>\\n<h4> 1.0.8 <\\/h4>\\n<ul>\\n<li>Fixed: License not Valid after trying to activate license.<\\/li>\\n<\\/ul>\\n<h4> 1.0.7 <\\/h4>\\n<ul>\\n<li>New: Added WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.6 <\\/h4>\\n<ul>\\n<li>Fixed: Image size issue in Premium Parallax addon.<\\/li>\\n<li>Fixed: Transparent images grey background issue.<\\/li>\\n<li>Fixed: Invisible charts issue.<\\/li>\\n<\\/ul>\\n<h4> 1.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: App ID and App secret are changed to Access Token in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Animations starts on scrolling in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.3 <\\/h4>\\n<ul>\\n<li>New: Added Facebook Feed element.<\\/li>\\n<\\/ul>\\n<h4> 1.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Background Size\\/Position options in Premium Section Parallax.<\\/li>\\n<li>Fixed: Instagram Feed grid issue when Masonry is disabled.<\\/li>\\n<li>Fixed: Fatal error: Can\'t use function return value in write context for PHP versions below 5.5<\\/li>\\n<\\/ul>\\n<h4> 1.0.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added URLs option to each dataset in Premium Charts widget.<\\/li>\\n<li>Tweak: Added image fill option in Premium Ken Burns.<\\/li>\\n<\\/ul>\\n<h4> 1.0.0 <\\/h4>\\n<ul>\\n<li>Initial stable release.<\\/li>\\n<\\/ul>\",\"installation\":\"<h4> Minimum Requirements <\\/h4>\\n<ul>\\n<li>WordPress 4.5 or greater<\\/li>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>MySQL version 5.0 or greater<\\/li>\\n<\\/ul>\\n<h4> Installation Instructions <\\/h4>\\n<ul>\\n<li>First make sure that Elementor Page Builder and Premium Addons for Elementor are installed, As this plugin works only with both of them.<\\/li>\\n<li>Download the plugin then Upload it to the plugin folder: \\/wp-content\\/plugins\\/ or install it through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \\u2018Plugins\\u2019 screen in WordPress<\\/li>\\n<li>You can find Premium Addons Elements under the category \\u201cPremium Addons\\u201d on your Elementor element\\/widget list.<\\/li>\\n<\\/ul>\"},\"banners\":{\"high\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2018\\/10\\/premium-addons-pro-plugin-banner-hd.jpg\",\"low\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2018\\/10\\/premium-addons-pro-plugin-banner-ld.jpg\"},\"icons\":{\"1x\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2021\\/08\\/premium-addons-logo-128x128.jpg\",\"2x\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2021\\/08\\/premium-addons-logo-256x256.jpg\"},\"msg\":\"No license key has been provided.\",\"stable_tag\":\"2.7.3\",\"license\":\"GPL v3.0\",\"tested\":\"5.9.1\",\"description\":[\"<p>This plugin is an extension to Premium Addons for Elementor Plugin that includes Pro Elementor widgets and Addons for Elementor Page Builder. Visit <a href=\\\"https:\\/\\/www.premiumaddons.com\\/\\\">Premium Addons Website<\\/a> to check widgets and addons demos.<\\/p>\\n<p>Premium Addons PRO plugin\\u2019s widgets are cross browser compatible and also fully responsive, Your website will rock on all browsers as well as tables and mobile devices.<\\/p>\\n<p>When using Premium Addons\\u2019 widgets you will notice that it has more customization options than any other widget in other plugin.<\\/p>\\n<p>Premium Addons PRO can be used only as a complement of Elementor page builder plugin as it\\u2019s not a standalone plugin.<\\/p>\\n<h3>Features<\\/h3>\\n<ul>\\n<li>Fully Customizable Elements.<\\/li>\\n<li>Options panel for enabling desired elements only for faster performance.<\\/li>\\n<li>Free Support through online forums.<\\/li>\\n<\\/ul>\\n<h3>Available Elements<\\/h3>\\n<ol>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">Premium Alert Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/animated-section-gradients-for-elementor-page-builder\\/\\\">Premium Animated Section Gradient<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/behance-feed-widget-for-elementor-page-builder\\/\\\">Premium Behance Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/charts-widget-for-elementor-page-builder\\/\\\">Premium Charts<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/content-switcher-widget-for-elementor-page-builder\\/\\\">Premium Content Switcher<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/dual-header-widget-for-elementor-page-builder\\/\\\">Premium Divider<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-feed-widget-for-elementor-page-builder-2\\/\\\">Premium Facebook Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-messenger-widget-for-elementor-page-builder\\/\\\">Premium Facebook Messenger<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-reviews-widget-for-elementor-page-builder\\/\\\">Premium Facebook Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">Premium Flip Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/google-reviews-for-elementor-page-builder\\/\\\">Premium Google Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/icon-box-widget-for-elementor-page-builder\\/\\\">Premium Icon Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ihover-widget-for-elementor-page-builder\\/\\\">Premium iHover<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-image-accordion-widget\\/\\\">Premium Image Accordion<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-comparison-widget-for-elementor-page-builder\\/\\\">Premium Image Comparison<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-hotspots-widget-for-elementor-page-builder\\/\\\">Premium Image Hotspots<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-layers-widget-for-elementor-page-builder\\/\\\">Premium Image Layers<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/instagram-feed-widget-for-elementor-page-builder\\/\\\">Premium Instagram Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ken-burns-section-addon-for-elementor-page-builder\\/\\\">Premium Ken Burns<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/magic-section-widget-for-elementor-page-builder\\/\\\">Premium Magic Section<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">Premium Multi Scroll<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/parallax-section-addon-for-elementor-page-builder\\/\\\">Premium Parallax<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/particles-section-addon-for-elementor-page-builder\\/\\\">Premium Particles<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/preview-window-widget-for-elementor-page-builder\\/\\\">Premium Preview Window<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/table-widget-for-elementor-page-builder\\/\\\">Premium Tables<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/twitter-feed-widget-for-elementor-page-builder\\/\\\">Premium Twitter Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/tabs-widget-for-elementor-page-builder-2\\/\\\">Premium Tabs<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/unfold-widget-for-elementor-page-builder\\/\\\">Premium Unfold<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/whatsapp-widget-for-elementor-page-builder\\/\\\">Premium WhatsApp Chat<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-yelp-reviews-widget\\/\\\">Premium Yelp Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-trustpilot-reviews-widget\\/\\\">Premium Trustpilot Reviews<\\/a><\\/li>\\n<\\/ol>\"],\"changelog\":[\"<h4> 2.7.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<\\/ul>\\n<h4> 2.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<li>Fixed: Button Trigger Size option not working on frontend in Magic Section widget.<\\/li>\\n<li>Fixed: Alignment issue in Icon Box widget when description is short.<\\/li>\\n<li>Fixed: Invalid CSS added in the editor when Badge Addon is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.7.1 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error with some PHP versions after v2.7.0<\\/li>\\n<\\/ul>\\n<h4> 2.7.0 <\\/h4>\\n<ul>\\n<li>New: Added Premium Badge global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-badge-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: HTML markup optimized for Table widget for better performance.<\\/li>\\n<li>Tweak: Added Icon Color and Text Color\\/Typography options for each repeater cell in Table widget.<\\/li>\\n<li>Fixed: Hover Color and Padding options not working for Read More link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.8 <\\/h4>\\n<ul>\\n<li>New: Added five new skins in Elementor WooCommerce Products Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-woocommerce-products\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added compatibility between section\\/column addons and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Widgets code refactored to improve performance and loading speed.<\\/li>\\n<li>Tweak: Added Hover Box Shadow option in Lottie Animation section addon.<\\/li>\\n<li>Fixed: PHP warning when Follow Delay option value is not set in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Image with Size option set to custom not rendered in Image Layers and Icon Box widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.6.7 <\\/h4>\\n<ul>\\n<li>New: Added Custom Mouse Cursor global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-feature\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Auto Change Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: HTML markup for images in Icon Box widget.<\\/li>\\n<li>Tweak: Make sure images in Image Layers and Tabs widgets are lazyloaded to improve loading speed.<\\/li>\\n<li>Fixed: Section\\/Column addons not working on editor when used inside widgets using Elementor templates.<\\/li>\\n<\\/ul>\\n<h4> 2.6.6 <\\/h4>\\n<ul>\\n<li>Fixed: Box shadow and Background Color options overriden by default values in CSS in Preview Window widget.<\\/li>\\n<li>Fixed: Charts widget not working in some cases inside Tabs widget.<\\/li>\\n<li>Fixed: Animated Gradient and Blob Generator addons not working in Tabs widget.<\\/li>\\n<li>Fixed: Ken Burns addon Infinite option always disabled when the editor page is reloaded.<\\/li>\\n<\\/ul>\\n<h4> 2.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load the main CSS file only when required.<\\/li>\\n<li>Fixed: Tabs widget not working properly with some themes.<\\/li>\\n<li>Fixed: Compatibility between Carousel option in Social Reviews widgets and RTL sites.<\\/li>\\n<li>Fixed: Keyboard Scrolling still works even when the control is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.5.0.<\\/li>\\n<\\/ul>\\n<h4> 2.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added options to control Scroll Offset for each section individually in Color Transition widget.<\\/li>\\n<li>Tweak: Javascript loading method improved for Animated Gradient, Particles section\\/column addons for better performance.<\\/li>\\n<li>Fixed: Styling options not working for SVG icons in Magic Section widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added WooCommerce Total Amount In Cart and Current Product Stock options in Display Conditions feature.<\\/li>\\n<li>Fixed: Console error when videos are inserted in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fixed: Undefined variable $dir_class in Image Layers widget when Text option is used.<\\/li>\\n<li>Fixed: Button Size option not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.0 <\\/h4>\\n<ul>\\n<li>New: Added Animated Blob Generator section addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-animated-blob-generator\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Radar Style option in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added div, p and span HTML tag options for heading in Hover Box widget.<\\/li>\\n<li>Fixed: Default icon size changed in Hover Box widget.<\\/li>\\n<li>Fixed: Background Color not changing when multiple Background Transition widgets are used on the same page.<\\/li>\\n<\\/ul>\\n<h4> 2.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Background is not changed on scroll up in Background Transition widget.<\\/li>\\n<li>Fixed: Nested tabs styling overwrite issue in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Tabs widget rebuilt for better usability and editing experience.<\\/li>\\n<li>Tweak: Control number of carousel slides to show in Instagram Feed widget.<\\/li>\\n<li>Tweak: Prevent Background Transition widget from changing color when up\\/down backgrounds are the same.<\\/li>\\n<li>Fixed: Line height not working for Business\\/Place Name, Reviewer Name and Review Text in Social Reviews widgets.<\\/li>\\n<li>Fixed: Entrance Animations not working on for the first in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Tabs widget not working when shortcodes are used in tabs content.<\\/li>\\n<\\/ul>\\n<h4> 2.5.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Heroes Flying-Left effect in iHover widget.<\\/li>\\n<li>Tweak: Remove any duplicate content when Accordion Tabs option is enabled in Tabs widget.<\\/li>\\n<li>Tweak: Added Tab ID option in Tabs widget.<\\/li>\\n<li>Fixed: Animation issues for Flash Rotation, Flip Door, and Magic Door effects in iHover widget.<\\/li>\\n<li>Fixed: Charts not working on the editor page on Chrome browser.<\\/li>\\n<li>Fixed: Color option not applied on links in Table widget when CSV file is used.<\\/li>\\n<\\/ul>\\n<h4> 2.5.2 <\\/h4>\\n<ul>\\n<li>Tweak: Save all the plugin settings on change without need to click "Save Settings" button.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.4.<\\/li>\\n<li>Fixed: Trustpilot Reviews widget not working for some businesses.<\\/li>\\n<li>Fixed: Snappy scroll stability issues in Horizontal Scroll issues.<\\/li>\\n<li>Fixed: Compatibility issues between Elementor custom breakpoints and Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: iHover widget code refactored for faster editing speed..<\\/li>\\n<li>Tweak: Added Image Hover Effect in Image Layers widget.<\\/li>\\n<li>Tweak: Added compatibility between Multiscroll widget and sticky headers.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Premium Particles not working on some devices in editor page.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Content is not fully rendered issue in Unfold widget.<\\/li>\\n<li>Fixed: Removed Unnecessary requests made in Instagram Feed widget.<\\/li>\\n<li>Fixed: Hide Slide On and Disable Horizontal Scroll On options not working togethr in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Carousel not working in Facebook Feed widget when <code>Only Show Admin Posts<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Fold Height option not working when set to <code>0<\\/code> in Unfold widget.<\\/li>\\n<li>Fixed: Console error in Multi Scroll widget.<\\/li>\\n<li>Fixed: Admin notices not showing when Premium Addons for Elementor is not installed.<\\/li>\\n<\\/ul>\\n<h4> 2.5.0 <\\/h4>\\n<ul>\\n<li>Tweak: JS code refactored for better performance and faster editing speed.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.2.<\\/li>\\n<li>Fixed: Emojis not showing in Twitter Feed widget.<\\/li>\\n<li>Fixed: Slides overlapping issue on touch devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Image Hotspots colors not working in editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.4.9 <\\/h4>\\n<ul>\\n<li>New: Added Advanced Border Radius option to improve the normal Border Radius option - <a href=\\\"https:\\/\\/9elements.github.io\\/fancy-border-radius\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Particles overlapping issue when browser active tab is changed.<\\/li>\\n<li>Fixed: Alignment controls icons not showing in editor panel.<\\/li>\\n<li>Fixed: Tabs widget style conflict with LearnDash plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to control <code>Based on Number of Reviews<\\/code> string in all social reviews widgets.<\\/li>\\n<li>Fixed: Expired access token is not refreshed in Instagram Feed widget.<\\/li>\\n<li>Fixed: Image appears before entrance animation starts in Image Layers widget.<\\/li>\\n<li>Fixed: Facebook Feed widget conflict with Complianz | GDPR\\/CCPA Cookie Consent plugin.<\\/li>\\n<li>Fixed: Pagination not working in the editor in Table widget.<\\/li>\\n<li>Fixed: Reviews markup issue with <code>Review Words Length<\\/code> option in Trustpilot Reviews widget.<\\/li>\\n<li>Fixed: Tabs widget conflict with some themes.<\\/li>\\n<\\/ul>\\n<h4> 2.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Change Tabs to Accordion On Small Screens<\\/code> option in Tabs widget.<\\/li>\\n<li>Tweak: Improved compatibility with Elementor new version.<\\/li>\\n<\\/ul>\\n<h4> 2.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Improved Social Reviews widgets compatibility for RTL sites.<\\/li>\\n<li>Tweak: Improved WPML compatibility with all widgets.<\\/li>\\n<li>Tweak: Added Icon Spacing option in Unfold widget.<\\/li>\\n<li>Fixed: SVGs icons not showing on button in Unfold widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.5 <\\/h4>\\n<ul>\\n<li>Fixed: Error <code>Call to undefined function<\\/code> when only Trustpilot Review widget is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.4.4 <\\/h4>\\n<ul>\\n<li>Fixed: Console error in Parallax addon issue.<\\/li>\\n<\\/ul>\\n<h4> 2.4.3 <\\/h4>\\n<ul>\\n<li>New: Added Premium Trustpilot Reviews widget.<\\/li>\\n<li>Tweak: Added Infinite Autoplay for carousel in social reviews widgets.<\\/li>\\n<li>Tweak: Added Navigation Type Dots\\/Arrows option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Show Number of Reviews option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Put Place\\/Business Info next to reviews option in social reviews widgets.<\\/li>\\n<li>Fixed: Console error <code>$ is not defined<\\/code> since v2.4.2.<\\/li>\\n<\\/ul>\\n<h4> 2.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Clear Cached Data button to Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Carousel Arrows option for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Snap Scroll improved in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.1 <\\/h4>\\n<ul>\\n<li>Fixed: Horizontal Scroll slides anchoring not working since v2.4.0<\\/li>\\n<li>Fixed: Lightbox option issue in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.4.0 <\\/h4>\\n<ul>\\n<li>Tweak: Feed Media Height control added to work all time in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Section\\/Column addons code refactored to improve editing speed.<\\/li>\\n<\\/ul>\\n<h4> 2.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hovered Image Width control option in Image Accordion widget.<\\/li>\\n<li>Tweak: Javascript Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Lottie Animation icon size option not working on Chrome in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spacing Color option in Image Accordion widget.<\\/li>\\n<li>Fixed: Horizontal Scroll anchor links not working with Elementor popups.<\\/li>\\n<li>Fixed: Images Spacing option not working with horizontal direction in Image Accordion widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Minimal Mask effect for Text in Image Layers widget.<\\/li>\\n<li>Tweak: Added Image Spacing option in Image Accordion widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in all widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Hide Section option not working after v2.3.5 in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Disable Horizontal Scroll On Tablet\\/Mobile devices option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Wave Effect option in Animated Gradient add-on.<\\/li>\\n<li>Tweak: Added Change Legend to Circles option in Charts widget.<\\/li>\\n<li>Tweak: Added Maximum Height control in Magic Section.<\\/li>\\n<li>Fixed: Equal Height option not working when Carousel is enabled in Social Feed and Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Live Search option shows results only from current page in Table widget.<\\/li>\\n<li>Fixed: Icon Hover Animation not working with Whole Box Link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Pull Data from CSV file in Charts widget.<\\/li>\\n<li>Fixed: Some Particles effects not working.<\\/li>\\n<li>Fixed: Template style is rendered in Content Toggle widget.<\\/li>\\n<\\/ul>\\n<h4> 2.3.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Lottie Animations, Icon and Text Trigger options in Preview Window widget.<\\/li>\\n<li>Tweak: Added Show\\/Hide Reviewer Image option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Added Show\\/Hide Place Rating Stars option in Social Reviews widgets.<\\/li>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Compatibility with Elementor PRO 3.2.0.<\\/li>\\n<\\/ul>\\n<h4> 2.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and faster editor loading.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for Magic Section widget.<\\/li>\\n<li>Tweak: Added option to enable cookies for logged in users in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Image option in Preview Window widget.<\\/li>\\n<li>Tweak: Added responsive controls for Fold Height and Fade Height options in Unfold widget.<\\/li>\\n<li>Tweak: Added Icon Spacing option for Link in Icon Box widget.<\\/li>\\n<li>Fixed: Icon Spacing not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Tooltips height issue in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide specific sections on different devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Content alignment responsive controls not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.8 <\\/h4>\\n<ul>\\n<li>New: Apply Animated Gradient, Ken Burns, Parallax and Particles add-on on columns.<\\/li>\\n<li>Fixed: Global Colors not working for Animated Gradient add-on.<\\/li>\\n<li>Fixed: Spinner effect text link not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text option in Image Layers widget.<\\/li>\\n<li>Tweak: Code refactored for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show Admin Posts Only option in Facebook Feed widget.<\\/li>\\n<li>Tweak: Added Data Format Locale option to format numbers in Charts widget.<\\/li>\\n<li>Tweak: Number formatting in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added Horizontal Scroll Parallax option in Parallax Section add-on.<\\/li>\\n<li>Tweak: Added Profile Header and Tweet Information options in Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Cube effect in Hover Box widget.<\\/li>\\n<li>Tweak: Added Profile Header in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Feed Share button in Instagram Feed widget.<\\/li>\\n<li>Tweak: WPML Compatibility for Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Reload data every Minute option changed to Five Minutes to prevent API block in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Show\\/Hide Profile Name and Feed Content option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added Feed Media Image Height option in Facebook\\/Twitter Feed widget.<\\/li>\\n<li>Tweak: Added CSS ID option for hotspots in Image Hotspots widget.<\\/li>\\n<li>Fixed: All RTL issues in Facebook\\/Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation option to Tabs widget.<\\/li>\\n<li>Tweak: Added Back To Initial Position for Parallax Mouse Interactivity in Image Layers widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when direction option is set to RTL in Table widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Left Margin\\/Padding option not working for Title\\/Link in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can load more than 25 feed posts in Instagram Feed widget.<\\/li>\\n<li>Fixed: Google Sheets not working in Table widget.<\\/li>\\n<li>Fixed: Carousel swipes in opposite direction in all social feed\\/reviews widgets.<\\/li>\\n<li>Fixed: Duplicated Premium Addons icon in section add-ons after WordPress v5.6.<\\/li>\\n<\\/ul>\\n<h4> 2.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Description not showing issue in Icon Box widget.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in Image Hotspots widget.<\\/li>\\n<li>Fixed: Inline editing not working for content in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added two new styles to Hover Box widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Carousel option in Facebook\\/Instagram Feed widgets.<\\/li>\\n<li>Tweak: Added Equal Height option in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added Lottie Animation Icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Whole Box Link and Link Position options in Icon Box widget.<\\/li>\\n<li>Tweak: Added responsive controls for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added slides spacing for Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Rotate option to back icon in Icon Box widget.<\\/li>\\n<li>Tweak: Hotspots Image render function code refactored to improve for site performance.<\\/li>\\n<li>Tweak: Removed API Key option in Behance Feed widget.<\\/li>\\n<li>Fixed: List layout width issue in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Fixed: Multi Scroll widget console error with some themes.<\\/li>\\n<li>Fixed: Horizontal Scroll widget issues on browser window resize.<\\/li>\\n<li>Fixed: Tabs widget spacing issues on small screens.<\\/li>\\n<li>Fixed: Default padding given to content in Content Toggle widget.<\\/li>\\n<li>Fixed: Widgets Badge White Labeling option not working.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type null<\\/code> when Navigation Arrows option is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added WPML Compatibility for Table widget.<\\/li>\\n<li>Fixed: Bounce image issue in Parallax section addon.<\\/li>\\n<li>Fixed: Font Awesome icons not showing in social feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.3 <\\/h4>\\n<ul>\\n<li>Tweak: Alt attribute is now reading from Media library for images in Image Layers widget.<\\/li>\\n<li>Tweak: Unnecessary code removed for better performance.<\\/li>\\n<\\/ul>\\n<h4> 2.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Editor\\/Template Content Type option in Unfold widget.<\\/li>\\n<li>Tweak: Added Interactive option for tooltips in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added File Source (URL\\/File Upload) option in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Images Alt attribute not added in multi-layered Parallax add-on.<\\/li>\\n<li>Fixed: Images stretch issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Handle not moving in RTL sites issue in Image Comparison widget.<\\/li>\\n<li>Fixed: Responsive controls for section background not applied on Parallax add-on.<\\/li>\\n<li>Fixed: Custom Data table not pulling data after the file URL is changed in Table widget.<\\/li>\\n<li>Fixed: Instagram video not showing in RTL sites in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added new skin Cards in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Tweak: Added Maximum Words Number option for image caption in Instagram Feed widget.<\\/li>\\n<li>Fixed: Icon Color option not applied on SVGs in Tabs widget.<\\/li>\\n<li>Fixed: Place\\/Page avatar alignment issue on Twenty Twenty theme in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Icon Spacing option not working on RTL sites in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Icon Spacing option not working when Icon Position is set to After in Magic Section widget.<\\/li>\\n<li>Fixed: Freehand design option not working in Image Layers, Hotspots and Parallax section add-on after Elementor 3.0.0.<\\/li>\\n<li>Fixed: Page update button is disabled after using Freehand position\\/resize feature.<\\/li>\\n<\\/ul>\\n<h4> 2.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.0.0.<\\/li>\\n<li>Fixed: Particles add-on appears below section in RTL sites issue.<\\/li>\\n<li>Fixed: Undefined \'open_graph_story\' in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Icon Size option not working with SVG icons in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.8 <\\/h4>\\n<ul>\\n<li>Tweak: Add different color to each dataset value in bar Chart widget.<\\/li>\\n<li>Fixed: WhatsApp Chat widget group option not working on mobile devices.<\\/li>\\n<li>Fixed: Hotspots Horizontal Position option not working for RTL sites in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility issues with WordPress 5.5.<\\/li>\\n<\\/ul>\\n<h4> 2.0.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added Change Colors As Gradient option in Background Transition widget.<\\/li>\\n<li>Tweak: API Version updated for Facebook Reviews\\/Feed widgets.<\\/li>\\n<li>Fixed: Filter by Tags option letter case sensitive in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option for remote CSV files in Table widget.<\\/li>\\n<li>Tweak: Added Filter by Tags option in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: Instagram deprecated API replaced with Facebook API in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Color options for feed links in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Tweak: Added Background Color, Margin and Padding option for readmore link in Twitter\\/Facebook Feed widgets.<\\/li>\\n<li>Fixed: Widgets with entrance animations not showing on tablet\\/mobile devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Instagram Feed widget now supports Instagram videos.<\\/li>\\n<li>Tweak: Added RTL Mode option in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added Image icon option in Tabs widget.<\\/li>\\n<li>Tweak: Added Carousel Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: Added Change Readmore text option in social reviews widgets.<\\/li>\\n<li>Tweak: Added Render Type option in Lottie Animations section add-on.<\\/li>\\n<li>Tweak: Added Speed option in Flip Box widget.<\\/li>\\n<li>Fixed: Facebook Feed widget date not showing in Safari.<\\/li>\\n<li>Fixed: Social reviews carousel issue in RTL sites.<\\/li>\\n<li>Fixed: Vertical Image Comparison widget not working when label option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.3 <\\/h4>\\n<ul>\\n<li>Fixed: Section add-on and some widgets not working since v2.0.2<\\/li>\\n<\\/ul>\\n<h4> 2.0.2 <\\/h4>\\n<ul>\\n<li>Fixed: Image Layers scroll effects not working since v2.0.0<\\/li>\\n<li>Fixed: Premium Lottie section add-on editor overloading issue.<\\/li>\\n<li>Fixed: WhatsApp button not working on iOS mobile devices.<\\/li>\\n<\\/ul>\\n<h4> 2.0.1 <\\/h4>\\n<ul>\\n<li>Fixed: Freehand positioning conflict in Lottie Animations section add-on.<\\/li>\\n<li>Fixed: Entrance animation duplicate issue in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.0.0 <\\/h4>\\n<ul>\\n<li>New: Introducing Lottie Animations Integration for all the widgets including icon options.<\\/li>\\n<li>New: Added Premium Lottie Animations Section Add-on.<\\/li>\\n<li>Tweak: Added Overlay Background option to Alert Box widget.<\\/li>\\n<li>Tweak: Added Default Tab Index option to Tabs widget.<\\/li>\\n<li>Tweak: Added Border Radius option for button in Content Switcher widget.<\\/li>\\n<li>Tweak: Added Show\\/hide layers on different devices option in Parallax Add-on multi layers.<\\/li>\\n<li>Tweak: Added Floating Effects in Image Hotspots and Preview Window widgets.<\\/li>\\n<li>Fixed: Horizontal Scroll not scrolling below last slide on Snappy effect.<\\/li>\\n<li>Fixed: Widgets masonry layout issues on the editor on Chrome browser.<\\/li>\\n<li>Fixed: Table widget responsive option not working on tablets.<\\/li>\\n<li>Fixed: Instagram Feed new API not working for logged out users.<\\/li>\\n<li>Fixed: Instagram login button not working when Facebook Reviews widget is disabled.<\\/li>\\n<li>Fixed: Conflict with Pinpoint Booking System Plugin shortcodes.<\\/li>\\n<li>Fixed: Multi Scroll widget Left\\/Right Section Width option override previous widgets.<\\/li>\\n<li>Fixed: PHP error <code>Trying to access array offer on value of type bool<\\/code> in \\/white-label\\/admin.php.<\\/li>\\n<li>Fixed: Console error <code>jQuery is not defined<\\/code> in Image Hotspots widget.<\\/li>\\n<li>Fixed: Compatibility errors with PHP v7.0<\\/li>\\n<\\/ul>\\n<h4> 1.9.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added new API options for Instagram Feed widget.<\\/li>\\n<li>Fixed: Horizontal Scroll widget not working on RTL sites.<\\/li>\\n<li>Fixed: Opacity floating effect now working in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Hover Text\\/Icon Color option for Trigger Button in Magic Section widget.<\\/li>\\n<li>Tweak: Added Opacity to Float Effects in Image Layers widget.<\\/li>\\n<li>Tweak: Change "Read More" link text option added in Facebook\\/Twitter Feed widgets.<\\/li>\\n<li>Tweak: Added <code>Mouse Tilt<\\/code> option in Icon Box widget.<\\/li>\\n<li>Tweak: Get \'alt\' attribute for images in iHover widget.<\\/li>\\n<li>Fixed: Dynamic links not working for some elements.<\\/li>\\n<li>Fixed: Warning <code>Trying to access array offset on value of type bool<\\/code> in section add-ons.<\\/li>\\n<\\/ul>\\n<h4> 1.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for dynamic fields in all social media widgets.<\\/li>\\n<li>Fixed: Scrolling issues in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error <code>ReferenceError: module is not defined<\\/code><\\/li>\\n<\\/ul>\\n<h4> 1.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Animated Gradient section add-on.<\\/li>\\n<li>Tweak: Added Chinese to Language option for Facebook Messenger Chat widget.<\\/li>\\n<li>Tweak: Added <code>Whole Box Link<\\/code> option in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Load Chart on Scroll\\/Page Load<\\/code> option in Charts widget.<\\/li>\\n<li>Tweak: Added <code>Animation Duration<\\/code> option in Charts widget.<\\/li>\\n<li>Fixed: Filters by rating not working properly when review rating is not set in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Improved <code>Filter By Language<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Fixed: Spacings not applied on tooltips templates in Image Hotspots widget.<\\/li>\\n<li>Fixed: Colors applied on <code>Whole Box Link<\\/code> in iHover widget.<\\/li>\\n<li>Fixed: Rating Schema in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Pagination<\\/code> options in Table widget.<\\/li>\\n<li>Tweak: Added <code>Carousel<\\/code> options in Twitter Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.6 <\\/h4>\\n<ul>\\n<li>Tweak: Now, you can remove all header cells in Table widget.<\\/li>\\n<li>Tweak: Added <code>Hover Text Animation<\\/code> switcher option in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added new effects for Ken Burns add-on.<\\/li>\\n<li>Tweak: Added <code>Reverse Direction<\\/code> for mousemove parallax in Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Link<\\/code> option for header cells in Table widget.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working in Ken Burns section add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Padding<\\/code> option for container in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Blend Mode<\\/code> option to iHover, Image Hotspots and Image Layers widgets.<\\/li>\\n<li>Tweak: Added <code>Filter by Tags<\\/code> option to Instagram Feed widget.<\\/li>\\n<li>Fixed: Lightbox not working in Instagram Feed widget.<\\/li>\\n<li>Fixed: Console errors on IE due to Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.8.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Floating Effects<\\/code> to Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Zoom In\\/Out<\\/code> option for each layer in Ken Burns add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added four new effects to Flip Box widget.<\\/li>\\n<li>Tweak: 3D flip effect animation enhanced in Flip Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Now you can set different style to each hotspot item in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added link option for Button in Alert Box widget.<\\/li>\\n<li>Tweak: Added Hover Background Color option Alert Box widget.<\\/li>\\n<li>Fixed: Not all ratings are pulled in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added Spinner styling option for loading spinner in Instagram Feed widget.<\\/li>\\n<li>Fixed: <code>$<\\/code> is not defined in Facebook Reviews and Feed widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Button<\\/code> option to iHover widget.<\\/li>\\n<li>Tweak: Added <code>Hide Plugin Row Meta<\\/code> and <code>Hide Plugin Changelog Link<\\/code> to plugin White Labeling options.<\\/li>\\n<li>Fixed: Background Transition widget not working with <code>RGB<\\/code> colors.<\\/li>\\n<li>Fixed: Console errors with invalid sections CSS IDs in Background Transition widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>CSS Filter<\\/code> for normal\\/hover state in Image Hotspots widget.<\\/li>\\n<li>Fixed: Grey line appears by default in Image Layers widget.<\\/li>\\n<li>Fixed: Even Layout not working with Carousel option enabled in all Reviews widgets.<\\/li>\\n<li>Fixed: Carousel slides not appearing on RTL sites in all Reviews widgets.<\\/li>\\n<li>Fixed: SVG icons size option not working in all widgets.<\\/li>\\n<li>Fixed: Link title and icon are not aligned in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Background Transition widget improved.<\\/li>\\n<li>Fixed: Caching is not applied on place data in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Nested Premium Tabs not appearing.<\\/li>\\n<li>Fixed: Active Tab box shadow option not applied on the same selector in normal\\/hover in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option <code>Reload Reviews Once Every<\\/code> in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.7.3 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed widget not working on IE browsers.<\\/li>\\n<\\/ul>\\n<h4> 1.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Render First Row As<\\/code> option in Table widget.<\\/li>\\n<li>Fixed: Flipbox widget <code>Whole Box<\\/code> link option is not working.<\\/li>\\n<li>Fixed: Default icon is not working in iHover widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.1 <\\/h4>\\n<ul>\\n<li>New: Added Color Transition widget.<\\/li>\\n<li>Tweak: Get Instagram feed by Access Token only.<\\/li>\\n<li>Tweak: Added dynamic field support for CSV file in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.7.0 <\\/h4>\\n<ul>\\n<li>Fixed: Instagram Feed loading spinner does not appear on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Hover Color<\\/code> option for title\\/icon in Tabs widget.<\\/li>\\n<li>Fixed: Active tab Margin\\/Padding issue in Tabs widget.<\\/li>\\n<li>Fixed: Vertical Tabs widget alignment issue.<\\/li>\\n<li>Fixed: Security bugs fixed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Schema Support<\\/code> option for all Reviews widgets.<\\/li>\\n<li>Tweak: Font Awesome 5 compatibility for all widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.6.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Minimum Value<\\/code> option in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Line Width<\\/code> option for grid lines in Charts widget.<\\/li>\\n<li>Tweak: Added transition for Image Accordion overlay color.<\\/li>\\n<li>Fixed: Parallax section add-on does not work on frontend pages.<\\/li>\\n<\\/ul>\\n<h4> 1.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load assets files for section add-ons only when needed to improve performance.<\\/li>\\n<li>Tweak: Added <code>Step Size<\\/code> option for Radar type Charts.<\\/li>\\n<li>Fixed: Tabs nav container changed to div to prevent styling issues.<\\/li>\\n<\\/ul>\\n<h4> 1.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Reviews Word Length<\\/code> option does not work for non-latin characters in all reviews widgets.<\\/li>\\n<li>Fixed: <code>Notice: Undefined variable: tool_tips_image_url<\\/code> in Preview Window widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Alignment<\\/code> option in iHover widget.<\\/li>\\n<li>Fixed: <code>Border Color<\\/code> option missing for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<li>Fixed: Bottom positioned Magic Section appears after page load.<\\/li>\\n<\\/ul>\\n<h4> 1.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Feed widget for easier feed pull.<\\/li>\\n<li>Fixed: <code>Maximum Value<\\/code> option added to Radar chat type in Charts widget.<\\/li>\\n<li>Fixed: <code>Carousel Arrows Position<\\/code> option shows when <code>Autoplay<\\/code> option is enabled in Yelp Reviews widget.<\\/li>\\n<li>Fixed: Loader spinner not showing on the preview page in Facebook\\/Twitter Feed.<\\/li>\\n<\\/ul>\\n<h4> 1.6.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>RTL Mode<\\/code> option for Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<li>Fixed: <code>Transition Speed<\\/code> option not working for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Image Layers <code>Freehand<\\/code> reposition not working if page contains Premium Carousel widget.<\\/li>\\n<\\/ul>\\n<h4> 1.6.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Review Length<\\/code> option to Facebook Reviews widget.<\\/li>\\n<li>Fixed: Images pixelated when size is increased in Facebook Reviews widget.<\\/li>\\n<li>Fixed: Messenger Chat icon not showing on mobile devices.<\\/li>\\n<li>Fixed: Cells alignment issue with multi-line text in Table widget.<\\/li>\\n<li>Fixed: Blank line below Instagram images for some themes.<\\/li>\\n<\\/ul>\\n<h4> 1.5.9 <\\/h4>\\n<ul>\\n<li>New: Added Yelp Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Facebook Login<\\/code> Button to Premium Facebook Reviews widget for easier reviews pull.<\\/li>\\n<li>Tweak: Added <code>Review Length<\\/code> option in Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Responsive Controls<\\/code> for Premium Particles section add-on.<\\/li>\\n<li>Tweak: Added <code>Table Layout<\\/code> option in Premium Table widget.<\\/li>\\n<li>Fixed: Divider and text in Premium Divider widget are not centered in some themes.<\\/li>\\n<li>Fixed: <code>Button Size<\\/code> in Unfold widget not applied on the front-end.<\\/li>\\n<li>Fixed: Back side <code>Link<\\/code> unclickable on Microsoft Edge in Flip Box widget.<\\/li>\\n<li>Fixed: Twitter\\/Facebook Feed time elapsed Singular\\/Plural issue.<\\/li>\\n<li>Fixed: Clipped reviewer profile picture in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.8 <\\/h4>\\n<ul>\\n<li>New: Added Image Accordion widget.<\\/li>\\n<li>Fixed: Title\\/Icon are not horizontally centered in styles 3,4 in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.7 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Read More<\\/code> button redirects to post instead of page in Facebook Feed widget.<\\/li>\\n<li>Fixed: Carousel arrows styling only works on the editor page in Google\\/Facebook Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Theme<\\/code> option for lightbox in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option in Facebook Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Fade Speed<\\/code> option for Ken Burns section add-on.<\\/li>\\n<li>Fixed: Posts` images don\'t appear in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Reviews date doesn\'t appear with <code>Place Info<\\/code> option disabled.<\\/li>\\n<li>Fixed: Right templates shift to left by <code>1px<\\/code> in Multi Scroll widget.<\\/li>\\n<li>Fixed: Facebook Feed widget doesn\'t work with APIs v3.3.<\\/li>\\n<\\/ul>\\n<h4> 1.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core refactored to improve performance.<\\/li>\\n<\\/ul>\\n<h4> 1.5.3 <\\/h4>\\n<ul>\\n<li>Fixed: Charts animation doesn\'t work when height option is set.<\\/li>\\n<li>Fixed: <code>Tabs Background<\\/code> overrides lists background for <code>Style 3<\\/code> in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.2 <\\/h4>\\n<ul>\\n<li>Fixed: <code>Dynamic Content<\\/code> doesn\'t work when <code>ACF Field<\\/code> is selected in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: <code>Tilt Mouse Interactivity<\\/code> doesn\'t work on IE for Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.5.0 <\\/h4>\\n<ul>\\n<li>Fixed: Image Comparison broken on IE with Section Vertical Parallax enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Outer Background Color<\\/code> option for container in Preview Window widget.<\\/li>\\n<li>Fixed: Magic Section content appears until page is loaded.<\\/li>\\n<li>Fixed: Image Comparison broken on IE with Image Layers scroll effects enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.4.8 <\\/h4>\\n<ul>\\n<li>Tweak: <code>WPML Compatibility<\\/code> for all widgets.<\\/li>\\n<li>Fixed: License deactivation issues.<\\/li>\\n<li>Fixed: Google reCaptcha doesn\'t work after v1.4.8<\\/li>\\n<li>Fixed: Particles are stretched on small screens.<\\/li>\\n<li>Fixed: Add-ons don\'t load with <code>MyListing<\\/code> theme.<\\/li>\\n<\\/ul>\\n<h4> 1.4.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Stretch Image<\\/code> option for background image in Image Hotspots widget.<\\/li>\\n<li>Fixed: Console error <code>UniversalTilt undefined<\\/code> on IE browser with Image Layers widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for Instagram widget.<\\/li>\\n<li>Fixed: <code>Invalid Character on line 3361<\\/code> after v1.3.5<\\/li>\\n<\\/ul>\\n<h4> 1.4.5 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Scroll Effects<\\/code> for images in Image Layers widget.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning, resizing features for layers in Image Layers widget and Multi Layer Parallax.<\\/li>\\n<li>Tweak: Added <code>Freehand<\\/code> postioning feature for Image Hotspots widget.<\\/li>\\n<li>Tweak: Added <code>Date Format<\\/code> option for Google Reviews widget.<\\/li>\\n<li>Tweak: Added <code>Dynamic Field<\\/code> support for all <code>URL<\\/code> fields.<\\/li>\\n<li>Fixed: Content Switcher widget button issue when browse back page button is clicked.<\\/li>\\n<li>Fixed: <code>Save Settings<\\/code> button doesn\'t work in White Labeling Dashboard submenu.<\\/li>\\n<li><strong>Important: This update includes deep enhancements for Image Hotspots, Image Layers widgets and Parallax Add-on. So, please review your existing pages.<\\/strong><\\/li>\\n<\\/ul>\\n<h4> 1.4.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Data Separator<\\/code> optiuon for CSV files in Table widget.<\\/li>\\n<li>Fixed: Layout issues on Microsoft IE browser.<\\/li>\\n<li>Fixed: <code>Notice: Undefined index: premium_parallax_android_support<\\/code> , <code>premium_parallax_ios_support<\\/code> in Parallax add-on.<\\/li>\\n<\\/ul>\\n<h4> 1.4.3 <\\/h4>\\n<ul>\\n<li>Tweak: Prevent adding inline styles\\/scripts for Section add-ons.<\\/li>\\n<li>Tweak: Changed Particles Add-on <code>JSON<\\/code> code area from <code>TEXTAREA<\\/code> to <code>CODE<\\/code><\\/li>\\n<li>Tweak: Ability to change <code>Live Search<\\/code> and <code>Show Records<\\/code> strings in Table widget.<\\/li>\\n<li>Tweak: Wait images to load before triggering <code>Masonry<\\/code> layout in Faceook Feed widget.<\\/li>\\n<li>Fixed: Cells align right issue on Google Chrome in Table widget.<\\/li>\\n<li>Fixed: Premium Divider issues with <code>Elementor Custom Positioning<\\/code> option.<\\/li>\\n<\\/ul>\\n<h4> 1.4.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Records<\\/code> option in Table widget.<\\/li>\\n<li>Tweak: Added <code>Blur On Hover<\\/code> effect in Table widget.<\\/li>\\n<li>Tweak: Added <code>responsive controls<\\/code> for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Text Color<\\/code> option for Search field in Table widget.<\\/li>\\n<li>Tweak: Added <code>Settings<\\/code> to plugin action links on <code>Plugins<\\/code> page.<\\/li>\\n<\\/ul>\\n<h4> 1.4.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Left\\/Right Section Width<\\/code> option to control width ratio in Multi Scroll widget.<\\/li>\\n<li>Tweak: Added <code>Show Caption<\\/code> option to show photo caption in Instagram widget.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> options group for hover state in Instagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.4.0 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Twitter Feed does not work.<\\/li>\\n<\\/ul>\\n<h4> 1.3.9 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Parallax background position, repeat and size inherit from Elementor responsive background options.<\\/li>\\n<li>Tweak: Added responsive controls for <code>Arrow Size<\\/code> option in Premium Facebook\\/Google Reviews widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images for trigger and preview images in Preview Image widget.<\\/li>\\n<li>Tweak: Code refactor to enhance plugin performance speed.<\\/li>\\n<\\/ul>\\n<h4> 1.3.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Number of Columns<\\/code> option in Premium Facebook\\/Google Review and Facebook\\/Twitter widgets.<\\/li>\\n<li>Tweak: Added <code>CSS Filters<\\/code> option for images in Premium Behance\\/Instagram Feed and iHover widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.3.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added responsive controls for <code>Images per Row<\\/code> option in Premium Instagram widget.<\\/li>\\n<li>Tweak: Added <code>Widgets Badge<\\/code> option to white labeling to change widgets` icons badge text.<\\/li>\\n<li>Fixed: Enable Parallax on Android\\/iOS does not work for Parallax section add-on.<\\/li>\\n<li>Fixed: Different images height when <code>Masonry<\\/code> option is disabled in Premium Intagram widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.6 <\\/h4>\\n<ul>\\n<li>Fixed: Warning: require_once(\\/premium-addons-pro-includes\\/deps\\/json.php): failed to open stream: No such file or directory.<\\/li>\\n<li>Fixed: Images order when <code>Masonry<\\/code> option is disabled in Premium Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.5 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Facebook, Twitter and Instagram elements to improve plugin performance.<\\/li>\\n<li>Tweak: Added <code>Infinite<\\/code> option for single image in Ken Burns add-on.<\\/li>\\n<li>Fixed: Set Tabs content to Full Width issue.<\\/li>\\n<li>Fixed: Posts overlapping when masonry option enabled in Premium Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.4 <\\/h4>\\n<ul>\\n<li>Tweak: JS enhancements in Charts, Facebook\\/Google Reviews, Image layers, Multi Scroll , and Tabs elements to improve plugin performance.<\\/li>\\n<li>Tweak: Dynamic data support for <code>Image<\\/code> in Premium Divider widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.3 <\\/h4>\\n<ul>\\n<li>Tweak: Dynamic data support in Premium Ken Burns add-on.<\\/li>\\n<li>Fixed: Image Hotspots widget issue on preview page.<\\/li>\\n<\\/ul>\\n<h4> 1.3.2 <\\/h4>\\n<ul>\\n<li>Fixed: Pointer cursor for cells with <code>Link<\\/code> option disabled in Premium Table widget.<\\/li>\\n<li>Fixed: overlapping issue when iHover widget <code>Link<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Tabs widget layout issue on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 1.3.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Border Width<\\/code> option for each dataset in Premium Charts widget.<\\/li>\\n<li>Fixed: <code>Warning: Creating default object from empty value<\\/code> in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.3.0 <\\/h4>\\n<ul>\\n<li>Tweak: Unnecessary <code>esc_html()<\\/code> function removed.<\\/li>\\n<li>Tweak: Unnecessary conditions removed to enhance editor page loading speed.<\\/li>\\n<\\/ul>\\n<h4> 1.2.9 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Second Fill Color<\\/code> option to create gradients in Line, Bar and Horizontal Bar charts.<\\/li>\\n<li>Tweak: Unnecessary functions removed from Facebook Feed, Charts, Behance and Image Comparison widgets to enhance performance.<\\/li>\\n<\\/ul>\\n<h4> 1.2.8 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files loaded only when required to enhance plugin performance.<\\/li>\\n<li>Tweak: Show label next to value on Pie\\/Doughnut Premium Chart hover.<\\/li>\\n<\\/ul>\\n<h4> 1.2.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added <code>Show Values on Chart<\\/code> option to Pie\\/Doughnut chart in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added language option to Premium Messenger Chat widget.<\\/li>\\n<li>Fixed: <code>View Details<\\/code> link appears for Premium Add-ons for Elementor with White Labeling enabled.<\\/li>\\n<\\/ul>\\n<h4> 1.2.5 <\\/h4>\\n<ul>\\n<li>Tweak: Formatting Y-Axis labels numbers in Premium Charts widget.<\\/li>\\n<li>Tweak: Ken Burns can now be used with only one image.<\\/li>\\n<li>Fixed: Charts not visible when inserted in Elementor Accordion widget.<\\/li>\\n<li>Fixed: CSV files don\'t appear in Media in Premium Tables widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Overlay Color option to Premium Ken Burns section add-on.<\\/li>\\n<li>Fixed: <code>Detected usage of deprecated noAndroid<\\/code> with Premium Parallax section add-on.<\\/li>\\n<li>Fixed: Premium Messenger Chat not working after Facebook latest Apps update.<\\/li>\\n<\\/ul>\\n<h4> 1.2.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added vertical tabs sections width option in Premium Tabs widget.<\\/li>\\n<li>Tweak: Added Filter by language option in Premium Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added arrow size and padding options to carousel arrows in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Dynamic data support in Premium Charts widget.<\\/li>\\n<li>Tweak: Shortcodes support using text editor in Premium Content Switcher widget.<\\/li>\\n<li>Fixed: Charts issue when inserted inside Premium Modal Box widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.1 <\\/h4>\\n<ul>\\n<li>Fixed: Projects with grid images in Premium Behance widget.<\\/li>\\n<\\/ul>\\n<h4> 1.2.0 <\\/h4>\\n<ul>\\n<li>Tweak: Added Column Width option in Premium Charts widget.<\\/li>\\n<li>Tweak: Added Carousel Autoplay speed option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Tweak: Added Carousel Arrows position option in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Carousel responsive issues in Premium Facebook\\/Google reviews widget.<\\/li>\\n<li>Fixed: Reviews issue when no stars is returned with review.<\\/li>\\n<\\/ul>\\n<h4> 1.1.9 <\\/h4>\\n<ul>\\n<li>Tweak: Hide specific sections on mobiles\\/tables option added to Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.8 <\\/h4>\\n<ul>\\n<li>Fixed: Sections order on mobile\\/tablets in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.7 <\\/h4>\\n<ul>\\n<li>Fixed: Responsive issues in Premium Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.6 <\\/h4>\\n<ul>\\n<li>New: Added Multi Scroll widget.<\\/li>\\n<li>Tweak: Added Margin Option for Magic Section widget in active case.<\\/li>\\n<li>Fixed: Google Reviews unloaded place image.<\\/li>\\n<li>Fixed: Tabs background\\/arrow color issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.5 <\\/h4>\\n<ul>\\n<li>Tweak: Premium Table widget performance enhanced.<\\/li>\\n<li>Tweak: Added Dynamic Images option for all widgets.<\\/li>\\n<li>Tweak: Added Dynamic place id option for Premium Google Reviews widget.<\\/li>\\n<li>Tweak: Added Carousel option for Premium Facebook\\/Google reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 1.1.4 <\\/h4>\\n<ul>\\n<li>Fixed: Premium Tabs conflict issue.<\\/li>\\n<li>Fixed: Facebook\\/Twitter Feed read more issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.3 <\\/h4>\\n<ul>\\n<li>Fixed: Facebook Feed widget conflict issue.<\\/li>\\n<\\/ul>\\n<h4> 1.1.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added convert values to percentage in Premium Charts widget.<\\/li>\\n<li>Fixed: Call to a member function get_error_message() on array after license activation.<\\/li>\\n<\\/ul>\\n<h4> 1.1.1 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancement for faster performance.<\\/li>\\n<li>Tweak: Premium Divider widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Flip Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Icon Box widget performance enhanced.<\\/li>\\n<li>Tweak: Premium Image Layers widget performance enhanced.<\\/li>\\n<li>Tweak: Premium iHover widget performance enhanced.<\\/li>\\n<\\/ul>\\n<h4> 1.1.0 <\\/h4>\\n<ul>\\n<li>Fixed: Tabs issue on IE browser.<\\/li>\\n<li>Fixed: Group Control issue in Premium Facebook\\/Twitter widgets.<\\/li>\\n<\\/ul>\\n<h4> 1.0.9 <\\/h4>\\n<ul>\\n<li>Fixed: Warning "Invalid argument supplied for foreach() in \\/premium-addons-pro\\/widgets\\/premium-tables.php on line 1567".<\\/li>\\n<\\/ul>\\n<h4> 1.0.8 <\\/h4>\\n<ul>\\n<li>Fixed: License not Valid after trying to activate license.<\\/li>\\n<\\/ul>\\n<h4> 1.0.7 <\\/h4>\\n<ul>\\n<li>New: Added WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.6 <\\/h4>\\n<ul>\\n<li>Fixed: Image size issue in Premium Parallax addon.<\\/li>\\n<li>Fixed: Transparent images grey background issue.<\\/li>\\n<li>Fixed: Invisible charts issue.<\\/li>\\n<\\/ul>\\n<h4> 1.0.5 <\\/h4>\\n<ul>\\n<li>Tweak: App ID and App secret are changed to Access Token in Facebook Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.4 <\\/h4>\\n<ul>\\n<li>Tweak: Animations starts on scrolling in Premium Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 1.0.3 <\\/h4>\\n<ul>\\n<li>New: Added Facebook Feed element.<\\/li>\\n<\\/ul>\\n<h4> 1.0.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Background Size\\/Position options in Premium Section Parallax.<\\/li>\\n<li>Fixed: Instagram Feed grid issue when Masonry is disabled.<\\/li>\\n<li>Fixed: Fatal error: Can\'t use function return value in write context for PHP versions below 5.5<\\/li>\\n<\\/ul>\\n<h4> 1.0.1 <\\/h4>\\n<ul>\\n<li>Tweak: Added URLs option to each dataset in Premium Charts widget.<\\/li>\\n<li>Tweak: Added image fill option in Premium Ken Burns.<\\/li>\\n<\\/ul>\\n<h4> 1.0.0 <\\/h4>\\n<ul>\\n<li>Initial stable release.<\\/li>\\n<\\/ul>\"],\"installation\":[\"<h4> Minimum Requirements <\\/h4>\\n<ul>\\n<li>WordPress 4.5 or greater<\\/li>\\n<li>PHP version 5.4 or greater<\\/li>\\n<li>MySQL version 5.0 or greater<\\/li>\\n<\\/ul>\\n<h4> Installation Instructions <\\/h4>\\n<ul>\\n<li>First make sure that Elementor Page Builder and Premium Addons for Elementor are installed, As this plugin works only with both of them.<\\/li>\\n<li>Download the plugin then Upload it to the plugin folder: \\/wp-content\\/plugins\\/ or install it through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \\u2018Plugins\\u2019 screen in WordPress<\\/li>\\n<li>You can find Premium Addons Elements under the category \\u201cPremium Addons\\u201d on your Elementor element\\/widget list.<\\/li>\\n<\\/ul>\"],\"plugin\":\"premium-addons-pro\\/premium-addons-pro-for-elementor.php\",\"id\":\"premium-addons-pro\\/premium-addons-pro-for-elementor.php\"}\";}','no'),(80519,'pa_review_notice','1','yes'),(80521,'papro_license_key','d5d46824d2e7aa8e629e5089e9113533','yes'),(80522,'papro_license_status','valid','yes'),(80523,'edd_sl_c4ceb4c67ed1253e934ce770d0b2a9e7','a:2:{s:7:\"timeout\";i:1785117694;s:5:\"value\";s:86499:\"{\"name\":\"Premium Addons Pro\",\"new_version\":\"2.9.62\",\"stable_version\":\"2.9.62\",\"sections\":{\"description\":\"<p>This plugin is an extension to Premium Addons for Elementor Plugin that includes Pro Elementor widgets and Addons for Elementor Page Builder. Visit <a href=\\\"https:\\/\\/www.premiumaddons.com\\/\\\">Premium Addons Website<\\/a> to check widgets and addons demos.<\\/p>\\n<p>Premium Addons PRO plugin\\u2019s widgets are cross browser compatible and also fully responsive, Your website will rock on all browsers as well as tables and mobile devices.<\\/p>\\n<p>When using Premium Addons\\u2019 widgets you will notice that it has more customization options than any other widget in other plugin.<\\/p>\\n<p>Premium Addons PRO can be used only as a complement of Elementor page builder plugin as it\\u2019s not a standalone plugin.<\\/p>\\n<h3>Features<\\/h3>\\n<ul>\\n<li>Fully Customizable Elements.<\\/li>\\n<li>Options panel for enabling desired elements only for faster performance.<\\/li>\\n<li>Free Support through online forums.<\\/li>\\n<\\/ul>\\n<h3>Available Elements<\\/h3>\\n<ol>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">Premium Alert Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/animated-section-gradients-for-elementor-page-builder\\/\\\">Premium Animated Container Gradient<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/behance-feed-widget-for-elementor-page-builder\\/\\\">Premium Behance Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-charts-widget\\/\\\">Premium Charts<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-content-toggle-widget\\/\\\">Premium Content Toggle<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/dual-header-widget-for-elementor-page-builder\\/\\\">Premium Divider<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-feed-widget-for-elementor-page-builder-2\\/\\\">Premium Facebook Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-reviews-widget-for-elementor-page-builder\\/\\\">Premium Facebook Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">Premium Flip Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/google-reviews-for-elementor-page-builder\\/\\\">Premium Google Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/icon-box-widget-for-elementor-page-builder\\/\\\">Premium Icon Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ihover-widget-for-elementor-page-builder\\/\\\">Premium iHover<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-image-accordion-widget\\/\\\">Premium Image Accordion<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-comparison-widget-for-elementor-page-builder\\/\\\">Premium Image Comparison<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-hotspots-widget-for-elementor-page-builder\\/\\\">Premium Image Hotspots<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-layers-widget-for-elementor-page-builder\\/\\\">Premium Image Layers<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/instagram-feed-widget-for-elementor-page-builder\\/\\\">Premium Instagram Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ken-burns-section-addon-for-elementor-page-builder\\/\\\">Premium Ken Burns<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/magic-section-widget-for-elementor-page-builder\\/\\\">Premium Magic Section<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">Premium Multi Scroll<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/parallax-section-addon-for-elementor-page-builder\\/\\\">Premium Parallax<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/particles-section-addon-for-elementor-page-builder\\/\\\">Premium Particles<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/preview-window-widget-for-elementor-page-builder\\/\\\">Premium Preview Window<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/table-widget-for-elementor-page-builder\\/\\\">Premium Tables<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/twitter-feed-widget-for-elementor-page-builder\\/\\\">Premium Twitter Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/tabs-widget-for-elementor-page-builder-2\\/\\\">Premium Tabs<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/unfold-widget-for-elementor-page-builder\\/\\\">Premium Unfold<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/whatsapp-widget-for-elementor-page-builder\\/\\\">Premium WhatsApp Chat<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-yelp-reviews-widget\\/\\\">Premium Yelp Reviews<\\/a><\\/li>\\n<\\/ol>\",\"changelog\":\"<h4> 2.9.62 <\\/h4>\\n<ul>\\n<li>Tweak: Minor improvements in Global Badge addon for better usability.<\\/li>\\n<\\/ul>\\n<h4> 2.9.61 <\\/h4>\\n<ul>\\n<li>New: Added CSS Selector option in Global Badge addon to display badges on custom elements.<\\/li>\\n<li>New: Added Display Per Item option in Global Badge addon for listing widgets.<\\/li>\\n<li>New: Added Title Vertical Alignment option in Icon Box widget.<\\/li>\\n<li>Tweak: Added Overflow option in Icon Box widget for better compatibility with Global Badge addon.<\\/li>\\n<li>Tweak: Added Border Radius option for Ribbon style badge in Global Badge addon.<\\/li>\\n<li>Tweak: Added a waiting time notice in Instagram Feed widget.<\\/li>\\n<li>Tweak: Improved content labels in Content Toggle widget.<\\/li>\\n<li>Tweak: Lowered the minimum value of the Size control in Content Toggle widget.<\\/li>\\n<li>Fixed: Badge banner top position in Global Badge addon.<\\/li>\\n<li>Fixed: Vertical offset not working on all badges in Global Badge addon.<\\/li>\\n<li>Fixed: Text decoration not inheriting text color in Global Badge addon.<\\/li>\\n<li>Fixed: \\\"undefined\\\" text shown when Image URL is empty in Global Badge addon.<\\/li>\\n<li>Fixed: Animated Gradient option applied to all child badges in Global Badge addon.<\\/li>\\n<li>Fixed: Per-item badges not working with Load More, Pagination and Load on Scroll options.<\\/li>\\n<li>Fixed: Z-index not working on custom CSS selector badges in Global Badge addon.<\\/li>\\n<li>Fixed: Conflict between Global Badge addon and Pricing Table widget Lottie icon.<\\/li>\\n<li>Fixed: Button alignment not working when position is set to outside in Unfold widget.<\\/li>\\n<li>Fixed: Magic Scroll not working with widgets inside Elementor V4 Flexbox container.<\\/li>\\n<li>Fixed: Content height not working on nested content in Content Toggle widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.60 <\\/h4>\\n<ul>\\n<li>New: Content Toggle widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-content-toggle-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.9.59 <\\/h4>\\n<ul>\\n<li>Tweak: Added Box Shadow control for images in Image Accordion.<\\/li>\\n<li>Fixed: Border Radius not applied on Flipped style Tabs widget.<\\/li>\\n<li>Fixed: Default width not applied on Bookmark type badge.<\\/li>\\n<\\/ul>\\n<h4> 2.9.58 <\\/h4>\\n<ul>\\n<li>Tweak: Added new presets for Global Badge addon.<\\/li>\\n<li>Tweak: Added Load More button in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Lightbox compatibility with videos in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added alt text attribute for images in Instagram Feed widget.<\\/li>\\n<li>Fixed: Back icon size control not working in Icon Box widget.<\\/li>\\n<li>Fixed: Margin not applied correctly on mobile in Tabs widget.<\\/li>\\n<li>Fixed: Navigation from other pages not working in Tabs widget.<\\/li>\\n<li>Fixed: Elements styling broken in editor on first-time activation.<\\/li>\\n<li>Fixed: Icon Position control not working with SVG icons in Icon Box widget.<\\/li>\\n<li>Fixed: Duplicate initialization of Behance Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.57 <\\/h4>\\n<ul>\\n<li>Tweak: Added Get Reviews by Language option in Yelp Reviews widget.<\\/li>\\n<li>Tweak: Core improved for better performance and loading speed.<\\/li>\\n<li>Fixed: Stripe badge not showing in RTL mode.<\\/li>\\n<li>Fixed: Team Members widget not working inside Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.56 <\\/h4>\\n<ul>\\n<li>Tweak: Added Container ID option in Image Accordion, Off Canvas, Alert Box and Tabs widgets to get slides from containers on the same page for better usability.<\\/li>\\n<li>Tweak: Added Hover Color and Background Color for navigation arrows in social reviews widget.<\\/li>\\n<li>Tweak: Border radius option added in Divider widget.<\\/li>\\n<li>Tweak: Added Image Fit control for icon in Icon Box widget.<\\/li>\\n<li>Tweak: Improved RTL compatibility in Smart Post Listing widget.<\\/li>\\n<li>Tweak: Improved compatibility between Unfold and Tabs widgets.<\\/li>\\n<li>Fixed: Jittering issues with Snappy effect in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.55 <\\/h4>\\n<ul>\\n<li>New: Animated Gradient and Ken Burns addons are now applicable on widgets.<\\/li>\\n<li>Tweak: Opacity Scroll effect in Horizontal Scroll widget improved.<\\/li>\\n<li>Fixed: Blob not removed after disabling Animated Blob addon switcher.<\\/li>\\n<\\/ul>\\n<h4> 2.9.54 <\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility between Dynamic Assets and Elementor Elements Cache.<\\/li>\\n<li>Fixed: Arrow position when Accordion option is enabled in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.53 <\\/h4>\\n<ul>\\n<li>Tweak: Facebook and Behance Feed widgets improved.<\\/li>\\n<li>Tweak: Core improved for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.9.52 <\\/h4>\\n<ul>\\n<li>Tweak: Added Suffix option in Charts widget to add text after value on hover.<\\/li>\\n<li>Tweak: Core improved for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.9.51 <\\/h4>\\n<ul>\\n<li>Tweak: API endpoint usage improved in Behance Feed widget.<\\/li>\\n<li>Fixed: Horizontal Scroll issues after scene ends.<\\/li>\\n<\\/ul>\\n<h4> 2.9.50 <\\/h4>\\n<ul>\\n<li>New: Added Animated Gradient option to the badge text in Badge Global addon.<\\/li>\\n<li>Tweak: Improved Font Size and Color effects in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.49 <\\/h4>\\n<ul>\\n<li>Tweak: Added Clipped Background option in Global Badge addon.<\\/li>\\n<li>Tweak: Added \\\"p\\\" and \\\"span\\\" options for HTML Tag control in Divider widget.<\\/li>\\n<li>Fixed: Image Layers widget not showing when Container Direction is set to row.<\\/li>\\n<li>Fixed: Text is showing in multiple lines in Divider widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.48 <\\/h4>\\n<ul>\\n<li>New: Load JS libraries only when needed to improve loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.9.47 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error in some widgets after v2.9.46.<\\/li>\\n<\\/ul>\\n<h4> 2.9.46 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements in social reviews widgets for better performance and faster loading speed.<\\/li>\\n<li>Tweak: Improved accessibility in all widgets.<\\/li>\\n<li>Fixed: Jittering issue in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Console JS error when delay option is empty in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: CSS Selector option not working in Custom Mouse Cursor addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.45 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements in all widgets for better performance and faster loading speed.<\\/li>\\n<li>Fixed: RTL Mode option not working correctly in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.44 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements in Global Badge and Custom Mouse Cursor addons for better performance and faster loading speed.<\\/li>\\n<li>Tweak: Added Videos Behavior option in Instagram Feed widget.<\\/li>\\n<li>Fixed: Multiple placeholder images are inserted in Media when a template is imported.<\\/li>\\n<\\/ul>\\n<h4> 2.9.43 <\\/h4>\\n<ul>\\n<li>Tweak: Improve Background Transition option in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Horizontal Scroll widget not working correctly on RTL sites.<\\/li>\\n<li>Fixed: Console error in Tabs widget.<\\/li>\\n<li>Fixed: Rating Schema not working in Google Reviews widget.<\\/li>\\n<li>Fixed: Compatibility issues with WPML plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.9.42 <\\/h4>\\n<ul>\\n<li>Tweak: Added Change Color on Hover in Charts widget.<\\/li>\\n<li>Tweak: Added Liquid Glass effect option in Custom Mouse Cursor addon.<\\/li>\\n<li>Tweak: Added Moving background option in Tabs widget Style 1.<\\/li>\\n<li>Tweak: Added button to filter pre-made blocks by widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.41 <\\/h4>\\n<ul>\\n<li>Tweak: Custom Mouse Cursor addon controls rearranged for better UX.<\\/li>\\n<li>Tweak: Entrance Animation improved in Image Layers widget.<\\/li>\\n<li>Tweak: Plugin size minimized for faster installation.<\\/li>\\n<\\/ul>\\n<h4> 2.9.40 <\\/h4>\\n<ul>\\n<li>Tweak: Added Color option for switcher in inactive state in Content Toggle.<\\/li>\\n<li>Fixed: Entrance Animation option not working in Image Layers widget.<\\/li>\\n<li>Fixed: Arrow position issue in Image Compare widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.39 <\\/h4>\\n<ul>\\n<li>Fixed: Plugin settings dashboard page not loading in some cases.<\\/li>\\n<li>Fixed: Put Sections Next to Each Other not working with Elementor Sections in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Arrow Pointer not showing when Accordion option is enabled in Tabs widget.<\\/li>\\n<li>Fixed: PHP warnings when global addons are enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.9.38 <\\/h4>\\n<ul>\\n<li>Tweak: Unfold widget not working correctly with Elementor Gallery widget.<\\/li>\\n<li>Fixed: Disable Horizontal Scroll on specific devices option not working.<\\/li>\\n<li>Fixed: Console error in editor page for a not found CSS file.<\\/li>\\n<\\/ul>\\n<h4> 2.9.37 <\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility with RTL sites.<\\/li>\\n<li>Tweak: Plugin size decreased by improving Dynamic CSS generating.<\\/li>\\n<li>Fixed: Push\\/Slide effects not working on RTL in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.36 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error in Google Reviews widget after v2.9.35.<\\/li>\\n<\\/ul>\\n<h4> 2.9.35 <\\/h4>\\n<ul>\\n<li>Tweak: Improved Twitter Feed to use Bearer Token.<\\/li>\\n<li>Tweak: RTL Mode option improved in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Close Off Canvas when escape keyboard button is hit.<\\/li>\\n<li>Fixed: PHP warning in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.34 <\\/h4>\\n<ul>\\n<li>Tweak: Added Counting Effect in Woo Mini Cart widget.<\\/li>\\n<li>Tweak: Added Coupon Form in Woo Mini Cart widget.<\\/li>\\n<li>Tweak: Added Free Shipping progress bar in Woo Mini Cart widget.<\\/li>\\n<li>Tweak: Show date in current site language in all Social Feed\\/Reviews widgets.<\\/li>\\n<li>Tweak: Added Shape option for navigation dots in Multi Scroll widget.<\\/li>\\n<li>Tweak: Code improvements for better performance and loading speed.<\\/li>\\n<li>Fixed: Instagram Access Token is not automatically renewed.<\\/li>\\n<li>Fixed: Icon Position option not working correctly for body cells in Table widget.<\\/li>\\n<li>Fixed: PHP warning when Rating Schema option is enabled in Google Reviews widget.<\\/li>\\n<li>Fixed: PHP warning when background image is not set in Parallax addon.<\\/li>\\n<li>Fixed: Off Canvas content not showing correctly when set to Text Editor.<\\/li>\\n<\\/ul>\\n<h4> 2.9.33 <\\/h4>\\n<ul>\\n<li>Tweak: Added Delay option in Lottie Background addon.<\\/li>\\n<li>Tweak: Code improvements for better performance.<\\/li>\\n<li>Tweak: Google Reviews widget loading speed improved.<\\/li>\\n<li>Tweak: Install free version directly without redirection to another page.<\\/li>\\n<li>Fixed: Free-hand design not working in Image Hotspots and Image Layers widgets.<\\/li>\\n<li>Fixed: Read more text not changing in Facebook Feed widget.<\\/li>\\n<li>Fixed: SVG Code option not working in Site Logo widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.32 <\\/h4>\\n<ul>\\n<li>Tweak: Compatibility with Google Places API (New) in Google Reviews widget.<\\/li>\\n<li>Tweak: JS files separated for better performance.<\\/li>\\n<li>Tweak: Added Refresh Layout button in Horizontal Scroll and Image Layers.<\\/li>\\n<li>Fixed: Put Columns\\/Containers Next to Each Other option not working in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Content not showing when Ken Burns addon is enabled.<\\/li>\\n<li>Fixed: Blob addon is not working on inner containers while in editor.<\\/li>\\n<li>Fixed: On Page Load trigger not working in Off Canvas widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.31 <\\/h4>\\n<ul>\\n<li>Tweak: Apply Icon size control on image icon in Icon Box widget.<\\/li>\\n<li>Fixed: Size control for Lottie Background addon not working on editor.<\\/li>\\n<li>Fixed: Instagram access token not generated.<\\/li>\\n<\\/ul>\\n<h4> 2.9.30 <\\/h4>\\n<ul>\\n<li>Tweak: Added \\\"On Page Load\\\" trigger in Off Canvas widget.<\\/li>\\n<li>Tweak: Core improved for better editor loading.<\\/li>\\n<li>Fixed: Navigate to Multi Scroll sides using elements not working.<\\/li>\\n<\\/ul>\\n<h4> 2.9.29 <\\/h4>\\n<ul>\\n<li>Fixed: Tabs widget not activating the correct tab on page load.<\\/li>\\n<li>Fixed: Hover effects not working in Smart Post Listing when featured image is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.9.28 <\\/h4>\\n<ul>\\n<li>Fixed: Off-Canvas widget not working correctly after v2.9.27<\\/li>\\n<li>Fixed: Image dimensions issue in Site Logo widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.27 <\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility with Optimize Markup Elementor feature.<\\/li>\\n<li>Tweak: SVG Draw Icon option improved for better loading speed.<\\/li>\\n<li>Fixed: Controls for global addons not being added in correct tabs.<\\/li>\\n<\\/ul>\\n<h4> 2.9.26 <\\/h4>\\n<ul>\\n<li>Fixed: Layout issues with Fixed Content option in Multi Scroll widget.<\\/li>\\n<li>Fixed: Lottie animation icons not working correctly in Icon Box widget.<\\/li>\\n<li>Fixed: Global badge adds a spacing while in editor.<\\/li>\\n<\\/ul>\\n<h4> 2.9.25 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancements to improve plugin performance.<\\/li>\\n<li>Fixed: Table not showing data from CSV files.<\\/li>\\n<li>Fixed: Global Cursor SVG icon style not working.<\\/li>\\n<\\/ul>\\n<h4> 2.9.24 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancements to improve plugin performance.<\\/li>\\n<li>Tweak: Added No Cache option in Table widget.<\\/li>\\n<li>Fixed: Issues when Blog and Smart Post Listing widgets are added in one page.<\\/li>\\n<\\/ul>\\n<h4> 2.9.23 <\\/h4>\\n<ul>\\n<li>Deprecated: Facebook Messenger Chat widget as it has been deprecated by Facebook.<\\/li>\\n<\\/ul>\\n<h4> 2.9.22 <\\/h4>\\n<ul>\\n<li>Fixed: Background Transition widget is not working after Elementor 3.24.0.<\\/li>\\n<\\/ul>\\n<h4> 2.9.21 <\\/h4>\\n<ul>\\n<li>Tweak: Pause videos in Tabs widget on switching tabs.<\\/li>\\n<li>Fixed: Conflict with Elementor v3.24.0.<\\/li>\\n<li>Fixed: Elementor entrance animations not working with Infinite Scroll option in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.20 <\\/h4>\\n<ul>\\n<li>Fixed: Background Transition widget not working when Scroll Up background is not set.<\\/li>\\n<li>Fixed: Scroll effects in Image Layers not working inside Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Number of Columns not working on mobile devices in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.19 <\\/h4>\\n<ul>\\n<li>Tweak: Use IntersectionObserver API instead of waypoints.js to improve performance.<\\/li>\\n<li>Fixed: Scroll effects in Image Layers widget not working when added with Magic Scroll on same page.<\\/li>\\n<li>Fixed: Icon Color not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.18 <\\/h4>\\n<ul>\\n<li>Fixed: Entrance animations in Image Layers widget not working within Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Close icon not showing when logged out in Alert Box widget.<\\/li>\\n<li>Fixed: PHP warning in Google Reviews widget.<\\/li>\\n<li>Fixed: Instagram Feed layout broken while on editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.9.17 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Tabs widget not working in some cases.<\\/li>\\n<li>Fixed: PHP warnings on customizer page when Particles or Custom Mouse Cursor addons are enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.9.16 <\\/h4>\\n<ul>\\n<li>Tweak: Added HTML Tag option for text in Image Layers widget.<\\/li>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Smart Post Listing conflict with Elementor Flexbox Containers.<\\/li>\\n<li>Fixed: PHP warning in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.9.15 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Tweak: Added Z-index option for Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: PHP warnings in Yelp Reviews and Hover Box widgets.<\\/li>\\n<li>Fixed: Icon Color option not working correctly in some cases in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Console error thrown by Global Mouse Cursor addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.14 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Tweak: Improved compatibility between Horizontal and Magic Scroll elements.<\\/li>\\n<li>Fixed: Flickering issue in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.13 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Off-canvas widget layout broken on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.9.12 <\\/h4>\\n<ul>\\n<li>New: Magic Section widget rebuilt. It\'s now Off-Canvas - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-off-canvas-widget\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Fixed Content Template option in Multi Scroll widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Icon hover styling options not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.11 <\\/h4>\\n<ul>\\n<li>New: Added new hover effects to all the buttons all over the plugin - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-button-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Alert Box widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Social icons not showing in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.10 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to apply Particles addon on whole page through Elementor page settings.<\\/li>\\n<li>Tweak: Added responsive controls to Display option in Content Toggle widget.<\\/li>\\n<li>Fixed: Disable Snappy Effect on Touch Devices in Horizontal Scroll widget not working.<\\/li>\\n<li>Fixed: Flickering issue with Image Sequence effect in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.9 <\\/h4>\\n<ul>\\n<li>Tweak: Divider widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/divider-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Option to Disable Scroll on Accordion Item Click added in in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide Horizontal Scroll widget slides on desktop devices.<\\/li>\\n<li>Fixed: Unnecessary HTML markup rendered in the table widget.<\\/li>\\n<li>Fixed: Feed is duplicated in Facebook and Behance Feed widgets.<\\/li>\\n<li>Fixed: Facebook and Behance Feed widgets not working on the frontend.<\\/li>\\n<\\/ul>\\n<h4> 2.9.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added SVG Code option in Site Logo widget.<\\/li>\\n<li>Tweak: Gold API error messages handled in News Ticker widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Option to enable US numbers sorting in Table widget.<\\/li>\\n<li>Tweak: Compatibility between Hide Slide On option in Multi Scroll widget and Elementor custom breakpoints.<\\/li>\\n<\\/ul>\\n<h4> 2.9.5 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error when Premium Addons Pro is activated without the free version.<\\/li>\\n<li>Fixed: Masonry effect not working correctly on editor page in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation Element Selector option in Multi Scroll to be used to navigate to Multi Scroll slides.<\\/li>\\n<li>Fixed: Ratings values between .7 and .9 are rendered as half star in Social Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.9.3 <\\/h4>\\n<ul>\\n<li>Fixed: PHP Error when Image Accordion widget is used.<\\/li>\\n<li>Fixed: Elementor asks to run Safe Mode with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Alternative Gold API key option in News Ticker widget.<\\/li>\\n<li>Tweak: Added Load More option in Smart Post Listing widget.<\\/li>\\n<li>Tweak: Added more styling controls in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Smart Post Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-smart-post-listing-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Show Alt text for the images in Ken Burns addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.27 <\\/h4>\\n<ul>\\n<li>Fixed: Twitter Feed widget not working.<\\/li>\\n<\\/ul>\\n<h4> 2.8.26 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Numbers showing on hover not formatted in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.25 <\\/h4>\\n<ul>\\n<li>Tweak: Removed Twitter Feed credentials section.<\\/li>\\n<\\/ul>\\n<h4> 2.8.24 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom position options for tooltips in Image Hotspots widget.<\\/li>\\n<li>Fixed: Multi Scroll widget not working when elements with entrance animations used in it.<\\/li>\\n<li>Fixed: Twitter Feed widget not working in some cases.<\\/li>\\n<li>Fixed: Image Comparison widget handle not working on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.8.23 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching options in Facebook and Behance Feed widgets.<\\/li>\\n<li>Tweak: Multi Scroll widget improved to trigger entrance animations on slide change.<\\/li>\\n<li>Fixed: Button showing in back side in 3D Hover Box widget.<\\/li>\\n<li>Fixed: Horizontal Scroll issues on mobile devices.<\\/li>\\n<li>Fixed: Hide Empty Reviews option not working correctly in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.22 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom size unit for range controls in some widgets.<\\/li>\\n<li>Tweak: Load posts only if they have body text in Facebook Feed widget.<\\/li>\\n<li>Fixed: Load Chart On option not working in Charts widget.<\\/li>\\n<li>Fixed: Fatal error in Tabs widget when an image icon with empty image is added.<\\/li>\\n<\\/ul>\\n<h4> 2.8.21 <\\/h4>\\n<ul>\\n<li>New: Added Magnet Effect in Custom Mouse Cursor addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Magic Scroll addon performance improved.<\\/li>\\n<\\/ul>\\n<h4> 2.8.20 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files size minimized for better performance.<\\/li>\\n<li>Fixed: Custom link attributes not working in Icon Box widget.<\\/li>\\n<li>Fixed: Console error in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.19 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to load Magic Scroll addon on page load, not when the section is reached.<\\/li>\\n<li>Fixed: Image Comparison widget not working when used inside Tabs widget.<\\/li>\\n<li>Fixed: Lock Page Scroll option in Magic Scroll addon causing a blank area while scrolling on mobile devices.<\\/li>\\n<li>Fixed: PHP warning in Parallax addon when no layers are added.<\\/li>\\n<li>Fixed: Console error with Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.18 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Shadow and Box Shadow scroll effects in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added Sort Reviews by date option in Google Reviews widget.<\\/li>\\n<li>Tweak: Show\\/hide images by hashtags in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.17 <\\/h4>\\n<ul>\\n<li>Tweak: Sticky effect behavior improved in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added option to trigger entrance animations once for Snappy scroll in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Sticky effect not working on the editor page in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.16 <\\/h4>\\n<ul>\\n<li>Fixed: Draw SVG not working on the editor page with multiple SVGs in Magic Scroll addon.<\\/li>\\n<li>Fixed: Transition is added to Icon Box widget when used with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.15 <\\/h4>\\n<ul>\\n<li>Fixed: Elements with entrance animation flash in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Icons not showing in some controls.<\\/li>\\n<\\/ul>\\n<h4> 2.8.14 <\\/h4>\\n<ul>\\n<li>New: Added Magic Scroll addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-magic-scroll-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.13 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.8.0<\\/li>\\n<li>Fixed: Ken Burns container addon not working with recent Elementor versions.<\\/li>\\n<\\/ul>\\n<h4> 2.8.12 <\\/h4>\\n<ul>\\n<li>New: Added Site Logo widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-site-logo-widget\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.11 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option in Instagram Feed widget to improve the feed performance and loading speed.<\\/li>\\n<li>Tweak: Added Close On Click Outside option in Magic Section widget.<\\/li>\\n<li>Fixed: Icon styling not applied properly on SVG icons in Divider widget.<\\/li>\\n<li>Fixed: Mouse tilt option not working since Premium Addons for Elementor v4.9.35.<\\/li>\\n<li>Fixed: Feed is not showing if Posts\\/Account option value is larger than the posts returned by Facebook.<\\/li>\\n<li>Fixed: Alignment option not working properly for multi-line values in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.10 <\\/h4>\\n<ul>\\n<li>New: Added Random Badges option in Mega Menu widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-mega-menu-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: PHP warnings in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.9 <\\/h4>\\n<ul>\\n<li>Fixed: Console error when SVG Draw option is disabled for Parallax addon.<\\/li>\\n<li>Fixed: SVG Draw option not working for Font Awesome icons in Icon Box widget.<\\/li>\\n<li>Fixed: Applying global background colors not working in Magic Section widget.<\\/li>\\n<li>Fixed: Icon color applied on Lottie animation in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Behance Feed widget now loads feed on scroll, not on page load.<\\/li>\\n<li>Fixed: PHP warning after v2.8.7.<\\/li>\\n<\\/ul>\\n<h4> 2.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Make sure Custom Mouse Cursor addon JS files are loaded only if the addon is used on a page.<\\/li>\\n<li>Fixed: Navigation Arrows\\/Dots not working properly on touch devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.6 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error due to Image Accordion widget since v2.8.4.<\\/li>\\n<\\/ul>\\n<h4> 2.8.5 <\\/h4>\\n<ul>\\n<li>Fixed: Icons in Icon Box widget always disappear if Draw SVG option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.8.4 <\\/h4>\\n<ul>\\n<li>New: Added Draw Icon option in all widgets that has Icon option in them.<\\/li>\\n<li>Tweak: Added Horizontal\\/Vertical Alignment options for multi-layers in Parallax addon.<\\/li>\\n<li>Fixed: Conflict between Custom Mouse Cursor addon and WP Rocket Defer JS files option.<\\/li>\\n<\\/ul>\\n<h4> 2.8.3 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.7.0.<\\/li>\\n<li>Fixed: Freehand Positioning feature not working when the device mode is changed in the editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Facebook Feed widget styling improved for RTL sites.<\\/li>\\n<li>Fixed: Conflict with Elementor Pro templates.<\\/li>\\n<li>Fixed: Even layout not working with Carousel Infinite Autoplay in social reviews widgets.<\\/li>\\n<li>Fixed: Carousel Navigation Arrows color\\/size controls not working in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.1 <\\/h4>\\n<ul>\\n<li>Fixed: PHP warning since v2.8.0<\\/li>\\n<\\/ul>\\n<h4> 2.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Apply Custom Mouse Cursor on full page or the entire website - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added responsive controls to Number of Columns option in Behance Feed widget.<\\/li>\\n<li>Fixed: Carousel Tabs option applied on nested tabs.<\\/li>\\n<li>Fixed: Unnecessary Elementor placeholder images added to the Media Library after importing templates.<\\/li>\\n<li>Fixed: Multi Scroll widget not working with Elementor custom breakpoints.<\\/li>\\n<li>Fixed: Ken Burns addon not showing images properly on small screens.<\\/li>\\n<li>Fixed: Hover Box widget not working properly on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Add responsive controls for image control in Ken Burns container addon.<\\/li>\\n<li>Fixed: Horizontal\\/Vertical Offset option not working for social icon in all Social Reviews widgets.<\\/li>\\n<li>Fixed: Horizontal Offset and z-index options not working for Fixed Content template in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Load Custom Mouse Cursor addon when the element is visible on viewport to improve performance and page loading speed.<\\/li>\\n<li>Tweak: Added Cover Image size option in Behance Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Add Mask Image option in Image Layers widget.<\\/li>\\n<li>Tweak: Add Render As SVG\\/Canvas option for Lottie Animation icons in Hover Box widget.<\\/li>\\n<li>Tweak: HTML markup optimized for Image Hotspots and Twitter Feed widgets for better performance.<\\/li>\\n<li>Fixed: Accordion Tabs option not working in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.5 <\\/h4>\\n<ul>\\n<li>New: Added URL String, Shortcode and WooCommerce Products in Cart options in Display Conditions.<\\/li>\\n<li>Tweak: HTML markup optimized for Hover Box, Image Accordion, Instagram Feed, Tabs, Unfold widgets for better performance.<\\/li>\\n<li>Tweak: Added Disable Floating Effects on Safari option in widgets have floating effects.<\\/li>\\n<li>Tweak: Trigger Particles and Badge addons JS code when visible on viewport to improve page loading speed.<\\/li>\\n<li>Tweak: Added compatibility Charts and Horizontal Scroll widgets.<\\/li>\\n<li>Fixed: Change Colors As Gradient option not working in Background Transition widget.<\\/li>\\n<li>Fixed: Profile Header image not showing properly on small devices in Twitter Feed widget.<\\/li>\\n<li>Fixed: Right Side Template option not showing in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility between Badge Global Addon and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Horizontal Scroll jittering issue on touch devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.3 <\\/h4>\\n<ul>\\n<li>New: Added Create\\/Edit Live Templates feature in all widgets that support Elementor Templates.<\\/li>\\n<\\/ul>\\n<h4> 2.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<li>Fixed: Button Trigger Size option not working on frontend in Magic Section widget.<\\/li>\\n<li>Fixed: Alignment issue in Icon Box widget when description is short.<\\/li>\\n<li>Fixed: Invalid CSS added in the editor when Badge Addon is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.7.1 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error with some PHP versions after v2.7.0<\\/li>\\n<\\/ul>\\n<h4> 2.7.0 <\\/h4>\\n<ul>\\n<li>New: Added Premium Badge global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-badge-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: HTML markup optimized for Table widget for better performance.<\\/li>\\n<li>Tweak: Added Icon Color and Text Color\\/Typography options for each repeater cell in Table widget.<\\/li>\\n<li>Fixed: Hover Color and Padding options not working for Read More link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.8 <\\/h4>\\n<ul>\\n<li>New: Added five new skins in Elementor WooCommerce Products Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-woocommerce-products\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added compatibility between section\\/column addons and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Widgets code refactored to improve performance and loading speed.<\\/li>\\n<li>Tweak: Added Hover Box Shadow option in Lottie Animation container addon.<\\/li>\\n<li>Fixed: PHP warning when Follow Delay option value is not set in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Image with Size option set to custom not rendered in Image Layers and Icon Box widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.6.7 <\\/h4>\\n<ul>\\n<li>New: Added Custom Mouse Cursor global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-addon\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Auto Change Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: HTML markup for images in Icon Box widget.<\\/li>\\n<li>Tweak: Make sure images in Image Layers and Tabs widgets are lazyloaded to improve loading speed.<\\/li>\\n<li>Fixed: Container addons not working on editor when used inside widgets using Elementor templates.<\\/li>\\n<\\/ul>\\n<h4> 2.6.6 <\\/h4>\\n<ul>\\n<li>Fixed: Box shadow and Background Color options overridden by default values in CSS in Preview Window widget.<\\/li>\\n<li>Fixed: Charts widget not working in some cases inside Tabs widget.<\\/li>\\n<li>Fixed: Animated Gradient and Blob Generator addons not working in Tabs widget.<\\/li>\\n<li>Fixed: Ken Burns addon Infinite option always disabled when the editor page is reloaded.<\\/li>\\n<\\/ul>\\n<h4> 2.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load the main CSS file only when required.<\\/li>\\n<li>Fixed: Tabs widget not working properly with some themes.<\\/li>\\n<li>Fixed: Compatibility between Carousel option in Social Reviews widgets and RTL sites.<\\/li>\\n<li>Fixed: Keyboard Scrolling still works even when the control is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.5.0.<\\/li>\\n<\\/ul>\\n<h4> 2.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added options to control Scroll Offset for each section individually in Color Transition widget.<\\/li>\\n<li>Tweak: Javascript loading method improved for Animated Gradient, Particles container addons for better performance.<\\/li>\\n<li>Fixed: Styling options not working for SVG icons in Magic Section widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added WooCommerce Total Amount In Cart and Current Product Stock options in Display Conditions feature.<\\/li>\\n<li>Fixed: Console error when videos are inserted in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fixed: Undefined variable $dir_class in Image Layers widget when Text option is used.<\\/li>\\n<li>Fixed: Button Size option not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.0 <\\/h4>\\n<ul>\\n<li>New: Added Animated Blob Generator container addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-animated-blob-generator\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Radar Style option in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added div, p and span HTML tag options for heading in Hover Box widget.<\\/li>\\n<li>Fixed: Default icon size changed in Hover Box widget.<\\/li>\\n<li>Fixed: Background Color not changing when multiple Background Transition widgets are used on the same page.<\\/li>\\n<\\/ul>\\n<h4> 2.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Background is not changed on scroll up in Background Transition widget.<\\/li>\\n<li>Fixed: Nested tabs styling overwrite issue in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Tabs widget rebuilt for better usability and editing experience.<\\/li>\\n<li>Tweak: Control number of carousel slides to show in Instagram Feed widget.<\\/li>\\n<li>Tweak: Prevent Background Transition widget from changing color when up\\/down backgrounds are the same.<\\/li>\\n<li>Fixed: Line height not working for Business\\/Place Name, Reviewer Name and Review Text in Social Reviews widgets.<\\/li>\\n<li>Fixed: Entrance Animations not working on for the first in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Tabs widget not working when shortcodes are used in tabs content.<\\/li>\\n<\\/ul>\\n<h4> 2.5.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Heroes Flying-Left effect in iHover widget.<\\/li>\\n<li>Tweak: Remove any duplicate content when Accordion Tabs option is enabled in Tabs widget.<\\/li>\\n<li>Tweak: Added Tab ID option in Tabs widget.<\\/li>\\n<li>Fixed: Animation issues for Flash Rotation, Flip Door, and Magic Door effects in iHover widget.<\\/li>\\n<li>Fixed: Charts not working on the editor page on Chrome browser.<\\/li>\\n<li>Fixed: Color option not applied on links in Table widget when CSV file is used.<\\/li>\\n<\\/ul>\\n<h4> 2.5.2 <\\/h4>\\n<ul>\\n<li>Tweak: Save all the plugin settings on change without need to click \\\"Save Settings\\\" button.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.4.<\\/li>\\n<li>Fixed: Snappy scroll stability issues in Horizontal Scroll issues.<\\/li>\\n<li>Fixed: Compatibility issues between Elementor custom breakpoints and Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: iHover widget code refactored for faster editing speed..<\\/li>\\n<li>Tweak: Added Image Hover Effect in Image Layers widget.<\\/li>\\n<li>Tweak: Added compatibility between Multiscroll widget and sticky headers.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Premium Particles not working on some devices in editor page.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Content is not fully rendered issue in Unfold widget.<\\/li>\\n<li>Fixed: Removed Unnecessary requests made in Instagram Feed widget.<\\/li>\\n<li>Fixed: Hide Slide On and Disable Horizontal Scroll On options not working together in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Carousel not working in Facebook Feed widget when <code>Only Show Admin Posts<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Fold Height option not working when set to <code>0<\\/code> in Unfold widget.<\\/li>\\n<li>Fixed: Console error in Multi Scroll widget.<\\/li>\\n<li>Fixed: Admin notices not showing when Premium Addons for Elementor is not installed.<\\/li>\\n<\\/ul>\\n<h4> 2.5.0 <\\/h4>\\n<ul>\\n<li>Tweak: JS code refactored for better performance and faster editing speed.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.2.<\\/li>\\n<li>Fixed: Emojis not showing in Twitter Feed widget.<\\/li>\\n<li>Fixed: Slides overlapping issue on touch devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Image Hotspots colors not working in editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.4.9 <\\/h4>\\n<p>…<\\/p>\",\"installation\":\"<ul>\\n<li>First make sure that Elementor Page Builder and Premium Addons for Elementor are installed, As this plugin works only with both of them.<\\/li>\\n<li>Download the plugin then Upload it to the plugin folder: \\/wp-content\\/plugins\\/ or install it through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \\u2018Plugins\\u2019 screen in WordPress<\\/li>\\n<li>You can find Premium Addons Elements under the category \\u201cPremium Addons\\u201d on your Elementor element\\/widget list.<\\/li>\\n<\\/ul>\"},\"license_check\":\"\",\"msg\":\"\",\"homepage\":\"https:\\/\\/premiumaddons.com\",\"package\":\"https:\\/\\/my.leap13.com\\/edd-sl\\/package_download\\/MTc4NTIwNDA5NDpkNWQ0NjgyNGQyZTdhYThlNjI5ZTUwODllOTExMzUzMzozNjE6ZDg4NzQ0YWY0NDZjMjQ4N2FhYjhiNGExMDM4NTZiMDA6aHR0cHNALy9zb2xzY3VscHRpbmcuY29tOjA=\",\"icons\":{\"1x\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/2024\\/12\\/premium-addons-logo-128x128.png\",\"2x\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/2024\\/12\\/premium-addons-logo-256x256.png\"},\"banners\":{\"high\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2018\\/10\\/premium-addons-pro-plugin-banner-hd.jpg\",\"low\":\"https:\\/\\/my.leap13.com\\/wp-content\\/uploads\\/edd\\/2018\\/10\\/premium-addons-pro-plugin-banner-ld.jpg\"},\"slug\":\"premium-addons-pro-for-elementor\",\"url\":\"https:\\/\\/my.leap13.com\\/downloads\\/premium-addons-pro-for-elementor\\/?changelog=1\",\"last_updated\":\"2026-06-30 07:07:41\",\"download_link\":\"https:\\/\\/my.leap13.com\\/edd-sl\\/package_download\\/MTc4NTIwNDA5NDpkNWQ0NjgyNGQyZTdhYThlNjI5ZTUwODllOTExMzUzMzozNjE6ZDg4NzQ0YWY0NDZjMjQ4N2FhYjhiNGExMDM4NTZiMDA6aHR0cHNALy9zb2xzY3VscHRpbmcuY29tOjA=\",\"upgrade_notice\":\"\",\"stable_tag\":\"2.9.62\",\"license\":\"GPL v3.0\",\"tested\":\"7.0\",\"description\":[\"<p>This plugin is an extension to Premium Addons for Elementor Plugin that includes Pro Elementor widgets and Addons for Elementor Page Builder. Visit <a href=\\\"https:\\/\\/www.premiumaddons.com\\/\\\">Premium Addons Website<\\/a> to check widgets and addons demos.<\\/p>\\n<p>Premium Addons PRO plugin\\u2019s widgets are cross browser compatible and also fully responsive, Your website will rock on all browsers as well as tables and mobile devices.<\\/p>\\n<p>When using Premium Addons\\u2019 widgets you will notice that it has more customization options than any other widget in other plugin.<\\/p>\\n<p>Premium Addons PRO can be used only as a complement of Elementor page builder plugin as it\\u2019s not a standalone plugin.<\\/p>\\n<h3>Features<\\/h3>\\n<ul>\\n<li>Fully Customizable Elements.<\\/li>\\n<li>Options panel for enabling desired elements only for faster performance.<\\/li>\\n<li>Free Support through online forums.<\\/li>\\n<\\/ul>\\n<h3>Available Elements<\\/h3>\\n<ol>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">Premium Alert Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/animated-section-gradients-for-elementor-page-builder\\/\\\">Premium Animated Container Gradient<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/behance-feed-widget-for-elementor-page-builder\\/\\\">Premium Behance Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-charts-widget\\/\\\">Premium Charts<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-content-toggle-widget\\/\\\">Premium Content Toggle<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/dual-header-widget-for-elementor-page-builder\\/\\\">Premium Divider<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-feed-widget-for-elementor-page-builder-2\\/\\\">Premium Facebook Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/facebook-reviews-widget-for-elementor-page-builder\\/\\\">Premium Facebook Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/flip-box-widget-for-elementor-page-builder\\/\\\">Premium Flip Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/google-reviews-for-elementor-page-builder\\/\\\">Premium Google Reviews<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/icon-box-widget-for-elementor-page-builder\\/\\\">Premium Icon Box<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ihover-widget-for-elementor-page-builder\\/\\\">Premium iHover<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-image-accordion-widget\\/\\\">Premium Image Accordion<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-comparison-widget-for-elementor-page-builder\\/\\\">Premium Image Comparison<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-hotspots-widget-for-elementor-page-builder\\/\\\">Premium Image Hotspots<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/image-layers-widget-for-elementor-page-builder\\/\\\">Premium Image Layers<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/instagram-feed-widget-for-elementor-page-builder\\/\\\">Premium Instagram Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/ken-burns-section-addon-for-elementor-page-builder\\/\\\">Premium Ken Burns<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/magic-section-widget-for-elementor-page-builder\\/\\\">Premium Magic Section<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">Premium Multi Scroll<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/parallax-section-addon-for-elementor-page-builder\\/\\\">Premium Parallax<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/particles-section-addon-for-elementor-page-builder\\/\\\">Premium Particles<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/preview-window-widget-for-elementor-page-builder\\/\\\">Premium Preview Window<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/table-widget-for-elementor-page-builder\\/\\\">Premium Tables<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/twitter-feed-widget-for-elementor-page-builder\\/\\\">Premium Twitter Feed<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/tabs-widget-for-elementor-page-builder-2\\/\\\">Premium Tabs<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/unfold-widget-for-elementor-page-builder\\/\\\">Premium Unfold<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/whatsapp-widget-for-elementor-page-builder\\/\\\">Premium WhatsApp Chat<\\/a><\\/li>\\n<li><a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-yelp-reviews-widget\\/\\\">Premium Yelp Reviews<\\/a><\\/li>\\n<\\/ol>\"],\"changelog\":[\"<h4> 2.9.62 <\\/h4>\\n<ul>\\n<li>Tweak: Minor improvements in Global Badge addon for better usability.<\\/li>\\n<\\/ul>\\n<h4> 2.9.61 <\\/h4>\\n<ul>\\n<li>New: Added CSS Selector option in Global Badge addon to display badges on custom elements.<\\/li>\\n<li>New: Added Display Per Item option in Global Badge addon for listing widgets.<\\/li>\\n<li>New: Added Title Vertical Alignment option in Icon Box widget.<\\/li>\\n<li>Tweak: Added Overflow option in Icon Box widget for better compatibility with Global Badge addon.<\\/li>\\n<li>Tweak: Added Border Radius option for Ribbon style badge in Global Badge addon.<\\/li>\\n<li>Tweak: Added a waiting time notice in Instagram Feed widget.<\\/li>\\n<li>Tweak: Improved content labels in Content Toggle widget.<\\/li>\\n<li>Tweak: Lowered the minimum value of the Size control in Content Toggle widget.<\\/li>\\n<li>Fixed: Badge banner top position in Global Badge addon.<\\/li>\\n<li>Fixed: Vertical offset not working on all badges in Global Badge addon.<\\/li>\\n<li>Fixed: Text decoration not inheriting text color in Global Badge addon.<\\/li>\\n<li>Fixed: \\\"undefined\\\" text shown when Image URL is empty in Global Badge addon.<\\/li>\\n<li>Fixed: Animated Gradient option applied to all child badges in Global Badge addon.<\\/li>\\n<li>Fixed: Per-item badges not working with Load More, Pagination and Load on Scroll options.<\\/li>\\n<li>Fixed: Z-index not working on custom CSS selector badges in Global Badge addon.<\\/li>\\n<li>Fixed: Conflict between Global Badge addon and Pricing Table widget Lottie icon.<\\/li>\\n<li>Fixed: Button alignment not working when position is set to outside in Unfold widget.<\\/li>\\n<li>Fixed: Magic Scroll not working with widgets inside Elementor V4 Flexbox container.<\\/li>\\n<li>Fixed: Content height not working on nested content in Content Toggle widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.60 <\\/h4>\\n<ul>\\n<li>New: Content Toggle widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-content-toggle-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.9.59 <\\/h4>\\n<ul>\\n<li>Tweak: Added Box Shadow control for images in Image Accordion.<\\/li>\\n<li>Fixed: Border Radius not applied on Flipped style Tabs widget.<\\/li>\\n<li>Fixed: Default width not applied on Bookmark type badge.<\\/li>\\n<\\/ul>\\n<h4> 2.9.58 <\\/h4>\\n<ul>\\n<li>Tweak: Added new presets for Global Badge addon.<\\/li>\\n<li>Tweak: Added Load More button in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added Lightbox compatibility with videos in Instagram Feed widget.<\\/li>\\n<li>Tweak: Added alt text attribute for images in Instagram Feed widget.<\\/li>\\n<li>Fixed: Back icon size control not working in Icon Box widget.<\\/li>\\n<li>Fixed: Margin not applied correctly on mobile in Tabs widget.<\\/li>\\n<li>Fixed: Navigation from other pages not working in Tabs widget.<\\/li>\\n<li>Fixed: Elements styling broken in editor on first-time activation.<\\/li>\\n<li>Fixed: Icon Position control not working with SVG icons in Icon Box widget.<\\/li>\\n<li>Fixed: Duplicate initialization of Behance Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.57 <\\/h4>\\n<ul>\\n<li>Tweak: Added Get Reviews by Language option in Yelp Reviews widget.<\\/li>\\n<li>Tweak: Core improved for better performance and loading speed.<\\/li>\\n<li>Fixed: Stripe badge not showing in RTL mode.<\\/li>\\n<li>Fixed: Team Members widget not working inside Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.56 <\\/h4>\\n<ul>\\n<li>Tweak: Added Container ID option in Image Accordion, Off Canvas, Alert Box and Tabs widgets to get slides from containers on the same page for better usability.<\\/li>\\n<li>Tweak: Added Hover Color and Background Color for navigation arrows in social reviews widget.<\\/li>\\n<li>Tweak: Border radius option added in Divider widget.<\\/li>\\n<li>Tweak: Added Image Fit control for icon in Icon Box widget.<\\/li>\\n<li>Tweak: Improved RTL compatibility in Smart Post Listing widget.<\\/li>\\n<li>Tweak: Improved compatibility between Unfold and Tabs widgets.<\\/li>\\n<li>Fixed: Jittering issues with Snappy effect in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.55 <\\/h4>\\n<ul>\\n<li>New: Animated Gradient and Ken Burns addons are now applicable on widgets.<\\/li>\\n<li>Tweak: Opacity Scroll effect in Horizontal Scroll widget improved.<\\/li>\\n<li>Fixed: Blob not removed after disabling Animated Blob addon switcher.<\\/li>\\n<\\/ul>\\n<h4> 2.9.54 <\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility between Dynamic Assets and Elementor Elements Cache.<\\/li>\\n<li>Fixed: Arrow position when Accordion option is enabled in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.53 <\\/h4>\\n<ul>\\n<li>Tweak: Facebook and Behance Feed widgets improved.<\\/li>\\n<li>Tweak: Core improved for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.9.52 <\\/h4>\\n<ul>\\n<li>Tweak: Added Suffix option in Charts widget to add text after value on hover.<\\/li>\\n<li>Tweak: Core improved for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.9.51 <\\/h4>\\n<ul>\\n<li>Tweak: API endpoint usage improved in Behance Feed widget.<\\/li>\\n<li>Fixed: Horizontal Scroll issues after scene ends.<\\/li>\\n<\\/ul>\\n<h4> 2.9.50 <\\/h4>\\n<ul>\\n<li>New: Added Animated Gradient option to the badge text in Badge Global addon.<\\/li>\\n<li>Tweak: Improved Font Size and Color effects in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.49 <\\/h4>\\n<ul>\\n<li>Tweak: Added Clipped Background option in Global Badge addon.<\\/li>\\n<li>Tweak: Added \\\"p\\\" and \\\"span\\\" options for HTML Tag control in Divider widget.<\\/li>\\n<li>Fixed: Image Layers widget not showing when Container Direction is set to row.<\\/li>\\n<li>Fixed: Text is showing in multiple lines in Divider widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.48 <\\/h4>\\n<ul>\\n<li>New: Load JS libraries only when needed to improve loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.9.47 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error in some widgets after v2.9.46.<\\/li>\\n<\\/ul>\\n<h4> 2.9.46 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements in social reviews widgets for better performance and faster loading speed.<\\/li>\\n<li>Tweak: Improved accessibility in all widgets.<\\/li>\\n<li>Fixed: Jittering issue in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Console JS error when delay option is empty in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: CSS Selector option not working in Custom Mouse Cursor addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.45 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements in all widgets for better performance and faster loading speed.<\\/li>\\n<li>Fixed: RTL Mode option not working correctly in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.44 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements in Global Badge and Custom Mouse Cursor addons for better performance and faster loading speed.<\\/li>\\n<li>Tweak: Added Videos Behavior option in Instagram Feed widget.<\\/li>\\n<li>Fixed: Multiple placeholder images are inserted in Media when a template is imported.<\\/li>\\n<\\/ul>\\n<h4> 2.9.43 <\\/h4>\\n<ul>\\n<li>Tweak: Improve Background Transition option in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Horizontal Scroll widget not working correctly on RTL sites.<\\/li>\\n<li>Fixed: Console error in Tabs widget.<\\/li>\\n<li>Fixed: Rating Schema not working in Google Reviews widget.<\\/li>\\n<li>Fixed: Compatibility issues with WPML plugin.<\\/li>\\n<\\/ul>\\n<h4> 2.9.42 <\\/h4>\\n<ul>\\n<li>Tweak: Added Change Color on Hover in Charts widget.<\\/li>\\n<li>Tweak: Added Liquid Glass effect option in Custom Mouse Cursor addon.<\\/li>\\n<li>Tweak: Added Moving background option in Tabs widget Style 1.<\\/li>\\n<li>Tweak: Added button to filter pre-made blocks by widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.41 <\\/h4>\\n<ul>\\n<li>Tweak: Custom Mouse Cursor addon controls rearranged for better UX.<\\/li>\\n<li>Tweak: Entrance Animation improved in Image Layers widget.<\\/li>\\n<li>Tweak: Plugin size minimized for faster installation.<\\/li>\\n<\\/ul>\\n<h4> 2.9.40 <\\/h4>\\n<ul>\\n<li>Tweak: Added Color option for switcher in inactive state in Content Toggle.<\\/li>\\n<li>Fixed: Entrance Animation option not working in Image Layers widget.<\\/li>\\n<li>Fixed: Arrow position issue in Image Compare widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.39 <\\/h4>\\n<ul>\\n<li>Fixed: Plugin settings dashboard page not loading in some cases.<\\/li>\\n<li>Fixed: Put Sections Next to Each Other not working with Elementor Sections in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Arrow Pointer not showing when Accordion option is enabled in Tabs widget.<\\/li>\\n<li>Fixed: PHP warnings when global addons are enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.9.38 <\\/h4>\\n<ul>\\n<li>Tweak: Unfold widget not working correctly with Elementor Gallery widget.<\\/li>\\n<li>Fixed: Disable Horizontal Scroll on specific devices option not working.<\\/li>\\n<li>Fixed: Console error in editor page for a not found CSS file.<\\/li>\\n<\\/ul>\\n<h4> 2.9.37 <\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility with RTL sites.<\\/li>\\n<li>Tweak: Plugin size decreased by improving Dynamic CSS generating.<\\/li>\\n<li>Fixed: Push\\/Slide effects not working on RTL in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.36 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error in Google Reviews widget after v2.9.35.<\\/li>\\n<\\/ul>\\n<h4> 2.9.35 <\\/h4>\\n<ul>\\n<li>Tweak: Improved Twitter Feed to use Bearer Token.<\\/li>\\n<li>Tweak: RTL Mode option improved in Horizontal Scroll widget.<\\/li>\\n<li>Tweak: Close Off Canvas when escape keyboard button is hit.<\\/li>\\n<li>Fixed: PHP warning in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.34 <\\/h4>\\n<ul>\\n<li>Tweak: Added Counting Effect in Woo Mini Cart widget.<\\/li>\\n<li>Tweak: Added Coupon Form in Woo Mini Cart widget.<\\/li>\\n<li>Tweak: Added Free Shipping progress bar in Woo Mini Cart widget.<\\/li>\\n<li>Tweak: Show date in current site language in all Social Feed\\/Reviews widgets.<\\/li>\\n<li>Tweak: Added Shape option for navigation dots in Multi Scroll widget.<\\/li>\\n<li>Tweak: Code improvements for better performance and loading speed.<\\/li>\\n<li>Fixed: Instagram Access Token is not automatically renewed.<\\/li>\\n<li>Fixed: Icon Position option not working correctly for body cells in Table widget.<\\/li>\\n<li>Fixed: PHP warning when Rating Schema option is enabled in Google Reviews widget.<\\/li>\\n<li>Fixed: PHP warning when background image is not set in Parallax addon.<\\/li>\\n<li>Fixed: Off Canvas content not showing correctly when set to Text Editor.<\\/li>\\n<\\/ul>\\n<h4> 2.9.33 <\\/h4>\\n<ul>\\n<li>Tweak: Added Delay option in Lottie Background addon.<\\/li>\\n<li>Tweak: Code improvements for better performance.<\\/li>\\n<li>Tweak: Google Reviews widget loading speed improved.<\\/li>\\n<li>Tweak: Install free version directly without redirection to another page.<\\/li>\\n<li>Fixed: Free-hand design not working in Image Hotspots and Image Layers widgets.<\\/li>\\n<li>Fixed: Read more text not changing in Facebook Feed widget.<\\/li>\\n<li>Fixed: SVG Code option not working in Site Logo widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.32 <\\/h4>\\n<ul>\\n<li>Tweak: Compatibility with Google Places API (New) in Google Reviews widget.<\\/li>\\n<li>Tweak: JS files separated for better performance.<\\/li>\\n<li>Tweak: Added Refresh Layout button in Horizontal Scroll and Image Layers.<\\/li>\\n<li>Fixed: Put Columns\\/Containers Next to Each Other option not working in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Content not showing when Ken Burns addon is enabled.<\\/li>\\n<li>Fixed: Blob addon is not working on inner containers while in editor.<\\/li>\\n<li>Fixed: On Page Load trigger not working in Off Canvas widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.31 <\\/h4>\\n<ul>\\n<li>Tweak: Apply Icon size control on image icon in Icon Box widget.<\\/li>\\n<li>Fixed: Size control for Lottie Background addon not working on editor.<\\/li>\\n<li>Fixed: Instagram access token not generated.<\\/li>\\n<\\/ul>\\n<h4> 2.9.30 <\\/h4>\\n<ul>\\n<li>Tweak: Added \\\"On Page Load\\\" trigger in Off Canvas widget.<\\/li>\\n<li>Tweak: Core improved for better editor loading.<\\/li>\\n<li>Fixed: Navigate to Multi Scroll sides using elements not working.<\\/li>\\n<\\/ul>\\n<h4> 2.9.29 <\\/h4>\\n<ul>\\n<li>Fixed: Tabs widget not activating the correct tab on page load.<\\/li>\\n<li>Fixed: Hover effects not working in Smart Post Listing when featured image is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.9.28 <\\/h4>\\n<ul>\\n<li>Fixed: Off-Canvas widget not working correctly after v2.9.27<\\/li>\\n<li>Fixed: Image dimensions issue in Site Logo widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.27 <\\/h4>\\n<ul>\\n<li>Tweak: Improved compatibility with Optimize Markup Elementor feature.<\\/li>\\n<li>Tweak: SVG Draw Icon option improved for better loading speed.<\\/li>\\n<li>Fixed: Controls for global addons not being added in correct tabs.<\\/li>\\n<\\/ul>\\n<h4> 2.9.26 <\\/h4>\\n<ul>\\n<li>Fixed: Layout issues with Fixed Content option in Multi Scroll widget.<\\/li>\\n<li>Fixed: Lottie animation icons not working correctly in Icon Box widget.<\\/li>\\n<li>Fixed: Global badge adds a spacing while in editor.<\\/li>\\n<\\/ul>\\n<h4> 2.9.25 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancements to improve plugin performance.<\\/li>\\n<li>Fixed: Table not showing data from CSV files.<\\/li>\\n<li>Fixed: Global Cursor SVG icon style not working.<\\/li>\\n<\\/ul>\\n<h4> 2.9.24 <\\/h4>\\n<ul>\\n<li>Tweak: Plugin core enhancements to improve plugin performance.<\\/li>\\n<li>Tweak: Added No Cache option in Table widget.<\\/li>\\n<li>Fixed: Issues when Blog and Smart Post Listing widgets are added in one page.<\\/li>\\n<\\/ul>\\n<h4> 2.9.23 <\\/h4>\\n<ul>\\n<li>Deprecated: Facebook Messenger Chat widget as it has been deprecated by Facebook.<\\/li>\\n<\\/ul>\\n<h4> 2.9.22 <\\/h4>\\n<ul>\\n<li>Fixed: Background Transition widget is not working after Elementor 3.24.0.<\\/li>\\n<\\/ul>\\n<h4> 2.9.21 <\\/h4>\\n<ul>\\n<li>Tweak: Pause videos in Tabs widget on switching tabs.<\\/li>\\n<li>Fixed: Conflict with Elementor v3.24.0.<\\/li>\\n<li>Fixed: Elementor entrance animations not working with Infinite Scroll option in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.20 <\\/h4>\\n<ul>\\n<li>Fixed: Background Transition widget not working when Scroll Up background is not set.<\\/li>\\n<li>Fixed: Scroll effects in Image Layers not working inside Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Number of Columns not working on mobile devices in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.19 <\\/h4>\\n<ul>\\n<li>Tweak: Use IntersectionObserver API instead of waypoints.js to improve performance.<\\/li>\\n<li>Fixed: Scroll effects in Image Layers widget not working when added with Magic Scroll on same page.<\\/li>\\n<li>Fixed: Icon Color not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.18 <\\/h4>\\n<ul>\\n<li>Fixed: Entrance animations in Image Layers widget not working within Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Close icon not showing when logged out in Alert Box widget.<\\/li>\\n<li>Fixed: PHP warning in Google Reviews widget.<\\/li>\\n<li>Fixed: Instagram Feed layout broken while on editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.9.17 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Tabs widget not working in some cases.<\\/li>\\n<li>Fixed: PHP warnings on customizer page when Particles or Custom Mouse Cursor addons are enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.9.16 <\\/h4>\\n<ul>\\n<li>Tweak: Added HTML Tag option for text in Image Layers widget.<\\/li>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Smart Post Listing conflict with Elementor Flexbox Containers.<\\/li>\\n<li>Fixed: PHP warning in Facebook, Google and Yelp Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.9.15 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Tweak: Added Z-index option for Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: PHP warnings in Yelp Reviews and Hover Box widgets.<\\/li>\\n<li>Fixed: Icon Color option not working correctly in some cases in WhatsApp Chat widget.<\\/li>\\n<li>Fixed: Console error thrown by Global Mouse Cursor addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.14 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Tweak: Improved compatibility between Horizontal and Magic Scroll elements.<\\/li>\\n<li>Fixed: Flickering issue in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.13 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<li>Fixed: Off-canvas widget layout broken on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.9.12 <\\/h4>\\n<ul>\\n<li>New: Magic Section widget rebuilt. It\'s now Off-Canvas - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-off-canvas-widget\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Fixed Content Template option in Multi Scroll widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/multi-scroll-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Icon hover styling options not working in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.11 <\\/h4>\\n<ul>\\n<li>New: Added new hover effects to all the buttons all over the plugin - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-button-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Alert Box widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/alert-box-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Social icons not showing in Image Hotspots widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.10 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to apply Particles addon on whole page through Elementor page settings.<\\/li>\\n<li>Tweak: Added responsive controls to Display option in Content Toggle widget.<\\/li>\\n<li>Fixed: Disable Snappy Effect on Touch Devices in Horizontal Scroll widget not working.<\\/li>\\n<li>Fixed: Flickering issue with Image Sequence effect in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.9 <\\/h4>\\n<ul>\\n<li>Tweak: Divider widget rebuilt - <a href=\\\"https:\\/\\/premiumaddons.com\\/divider-widget-for-elementor-page-builder\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Option to Disable Scroll on Accordion Item Click added in in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.8 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to hide Horizontal Scroll widget slides on desktop devices.<\\/li>\\n<li>Fixed: Unnecessary HTML markup rendered in the table widget.<\\/li>\\n<li>Fixed: Feed is duplicated in Facebook and Behance Feed widgets.<\\/li>\\n<li>Fixed: Facebook and Behance Feed widgets not working on the frontend.<\\/li>\\n<\\/ul>\\n<h4> 2.9.7 <\\/h4>\\n<ul>\\n<li>Tweak: Added SVG Code option in Site Logo widget.<\\/li>\\n<li>Tweak: Gold API error messages handled in News Ticker widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.6 <\\/h4>\\n<ul>\\n<li>Tweak: Added Option to enable US numbers sorting in Table widget.<\\/li>\\n<li>Tweak: Compatibility between Hide Slide On option in Multi Scroll widget and Elementor custom breakpoints.<\\/li>\\n<\\/ul>\\n<h4> 2.9.5 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error when Premium Addons Pro is activated without the free version.<\\/li>\\n<li>Fixed: Masonry effect not working correctly on editor page in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added Custom Navigation Element Selector option in Multi Scroll to be used to navigate to Multi Scroll slides.<\\/li>\\n<li>Fixed: Ratings values between .7 and .9 are rendered as half star in Social Reviews widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.9.3 <\\/h4>\\n<ul>\\n<li>Fixed: PHP Error when Image Accordion widget is used.<\\/li>\\n<li>Fixed: Elementor asks to run Safe Mode with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.9.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added Alternative Gold API key option in News Ticker widget.<\\/li>\\n<li>Tweak: Added Load More option in Smart Post Listing widget.<\\/li>\\n<li>Tweak: Added more styling controls in Smart Post Listing widget.<\\/li>\\n<\\/ul>\\n<h4> 2.9.1 <\\/h4>\\n<ul>\\n<li>Tweak: Code improved for better performance and security.<\\/li>\\n<\\/ul>\\n<h4> 2.9.0 <\\/h4>\\n<ul>\\n<li>New: Added Smart Post Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-smart-post-listing-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Show Alt text for the images in Ken Burns addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.27 <\\/h4>\\n<ul>\\n<li>Fixed: Twitter Feed widget not working.<\\/li>\\n<\\/ul>\\n<h4> 2.8.26 <\\/h4>\\n<ul>\\n<li>Tweak: Code refactored for better performance and security.<\\/li>\\n<li>Fixed: Numbers showing on hover not formatted in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.25 <\\/h4>\\n<ul>\\n<li>Tweak: Removed Twitter Feed credentials section.<\\/li>\\n<\\/ul>\\n<h4> 2.8.24 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom position options for tooltips in Image Hotspots widget.<\\/li>\\n<li>Fixed: Multi Scroll widget not working when elements with entrance animations used in it.<\\/li>\\n<li>Fixed: Twitter Feed widget not working in some cases.<\\/li>\\n<li>Fixed: Image Comparison widget handle not working on RTL sites.<\\/li>\\n<\\/ul>\\n<h4> 2.8.23 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching options in Facebook and Behance Feed widgets.<\\/li>\\n<li>Tweak: Multi Scroll widget improved to trigger entrance animations on slide change.<\\/li>\\n<li>Fixed: Button showing in back side in 3D Hover Box widget.<\\/li>\\n<li>Fixed: Horizontal Scroll issues on mobile devices.<\\/li>\\n<li>Fixed: Hide Empty Reviews option not working correctly in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.22 <\\/h4>\\n<ul>\\n<li>Tweak: Added custom size unit for range controls in some widgets.<\\/li>\\n<li>Tweak: Load posts only if they have body text in Facebook Feed widget.<\\/li>\\n<li>Fixed: Load Chart On option not working in Charts widget.<\\/li>\\n<li>Fixed: Fatal error in Tabs widget when an image icon with empty image is added.<\\/li>\\n<\\/ul>\\n<h4> 2.8.21 <\\/h4>\\n<ul>\\n<li>New: Added Magnet Effect in Custom Mouse Cursor addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Magic Scroll addon performance improved.<\\/li>\\n<\\/ul>\\n<h4> 2.8.20 <\\/h4>\\n<ul>\\n<li>Tweak: CSS files size minimized for better performance.<\\/li>\\n<li>Fixed: Custom link attributes not working in Icon Box widget.<\\/li>\\n<li>Fixed: Console error in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.19 <\\/h4>\\n<ul>\\n<li>Tweak: Added option to load Magic Scroll addon on page load, not when the section is reached.<\\/li>\\n<li>Fixed: Image Comparison widget not working when used inside Tabs widget.<\\/li>\\n<li>Fixed: Lock Page Scroll option in Magic Scroll addon causing a blank area while scrolling on mobile devices.<\\/li>\\n<li>Fixed: PHP warning in Parallax addon when no layers are added.<\\/li>\\n<li>Fixed: Console error with Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.18 <\\/h4>\\n<ul>\\n<li>Tweak: Added Text Shadow and Box Shadow scroll effects in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added Sort Reviews by date option in Google Reviews widget.<\\/li>\\n<li>Tweak: Show\\/hide images by hashtags in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.17 <\\/h4>\\n<ul>\\n<li>Tweak: Sticky effect behavior improved in Magic Scroll addon.<\\/li>\\n<li>Tweak: Added option to trigger entrance animations once for Snappy scroll in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Sticky effect not working on the editor page in Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.16 <\\/h4>\\n<ul>\\n<li>Fixed: Draw SVG not working on the editor page with multiple SVGs in Magic Scroll addon.<\\/li>\\n<li>Fixed: Transition is added to Icon Box widget when used with Magic Scroll addon.<\\/li>\\n<\\/ul>\\n<h4> 2.8.15 <\\/h4>\\n<ul>\\n<li>Fixed: Elements with entrance animation flash in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Icons not showing in some controls.<\\/li>\\n<\\/ul>\\n<h4> 2.8.14 <\\/h4>\\n<ul>\\n<li>New: Added Magic Scroll addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-magic-scroll-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.13 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.8.0<\\/li>\\n<li>Fixed: Ken Burns container addon not working with recent Elementor versions.<\\/li>\\n<\\/ul>\\n<h4> 2.8.12 <\\/h4>\\n<ul>\\n<li>New: Added Site Logo widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-site-logo-widget\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.8.11 <\\/h4>\\n<ul>\\n<li>Tweak: Added caching option in Instagram Feed widget to improve the feed performance and loading speed.<\\/li>\\n<li>Tweak: Added Close On Click Outside option in Magic Section widget.<\\/li>\\n<li>Fixed: Icon styling not applied properly on SVG icons in Divider widget.<\\/li>\\n<li>Fixed: Mouse tilt option not working since Premium Addons for Elementor v4.9.35.<\\/li>\\n<li>Fixed: Feed is not showing if Posts\\/Account option value is larger than the posts returned by Facebook.<\\/li>\\n<li>Fixed: Alignment option not working properly for multi-line values in Table widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.10 <\\/h4>\\n<ul>\\n<li>New: Added Random Badges option in Mega Menu widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-mega-menu-widget\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: PHP warnings in Google Reviews widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.9 <\\/h4>\\n<ul>\\n<li>Fixed: Console error when SVG Draw option is disabled for Parallax addon.<\\/li>\\n<li>Fixed: SVG Draw option not working for Font Awesome icons in Icon Box widget.<\\/li>\\n<li>Fixed: Applying global background colors not working in Magic Section widget.<\\/li>\\n<li>Fixed: Icon color applied on Lottie animation in Hover Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.8 <\\/h4>\\n<ul>\\n<li>Tweak: Behance Feed widget now loads feed on scroll, not on page load.<\\/li>\\n<li>Fixed: PHP warning after v2.8.7.<\\/li>\\n<\\/ul>\\n<h4> 2.8.7 <\\/h4>\\n<ul>\\n<li>Tweak: Make sure Custom Mouse Cursor addon JS files are loaded only if the addon is used on a page.<\\/li>\\n<li>Fixed: Navigation Arrows\\/Dots not working properly on touch devices in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.6 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error due to Image Accordion widget since v2.8.4.<\\/li>\\n<\\/ul>\\n<h4> 2.8.5 <\\/h4>\\n<ul>\\n<li>Fixed: Icons in Icon Box widget always disappear if Draw SVG option is disabled.<\\/li>\\n<\\/ul>\\n<h4> 2.8.4 <\\/h4>\\n<ul>\\n<li>New: Added Draw Icon option in all widgets that has Icon option in them.<\\/li>\\n<li>Tweak: Added Horizontal\\/Vertical Alignment options for multi-layers in Parallax addon.<\\/li>\\n<li>Fixed: Conflict between Custom Mouse Cursor addon and WP Rocket Defer JS files option.<\\/li>\\n<\\/ul>\\n<h4> 2.8.3 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.7.0.<\\/li>\\n<li>Fixed: Freehand Positioning feature not working when the device mode is changed in the editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.8.2 <\\/h4>\\n<ul>\\n<li>Tweak: Facebook Feed widget styling improved for RTL sites.<\\/li>\\n<li>Fixed: Conflict with Elementor Pro templates.<\\/li>\\n<li>Fixed: Even layout not working with Carousel Infinite Autoplay in social reviews widgets.<\\/li>\\n<li>Fixed: Carousel Navigation Arrows color\\/size controls not working in Instagram Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.8.1 <\\/h4>\\n<ul>\\n<li>Fixed: PHP warning since v2.8.0<\\/li>\\n<\\/ul>\\n<h4> 2.8.0 <\\/h4>\\n<ul>\\n<li>Tweak: Apply Custom Mouse Cursor on full page or the entire website - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added responsive controls to Number of Columns option in Behance Feed widget.<\\/li>\\n<li>Fixed: Carousel Tabs option applied on nested tabs.<\\/li>\\n<li>Fixed: Unnecessary Elementor placeholder images added to the Media Library after importing templates.<\\/li>\\n<li>Fixed: Multi Scroll widget not working with Elementor custom breakpoints.<\\/li>\\n<li>Fixed: Ken Burns addon not showing images properly on small screens.<\\/li>\\n<li>Fixed: Hover Box widget not working properly on iOS devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.9 <\\/h4>\\n<ul>\\n<li>Tweak: Add responsive controls for image control in Ken Burns container addon.<\\/li>\\n<li>Fixed: Horizontal\\/Vertical Offset option not working for social icon in all Social Reviews widgets.<\\/li>\\n<li>Fixed: Horizontal Offset and z-index options not working for Fixed Content template in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Console error in Charts widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.8 <\\/h4>\\n<ul>\\n<li>Tweak: Code improvements for better performance and loading speed.<\\/li>\\n<\\/ul>\\n<h4> 2.7.7 <\\/h4>\\n<ul>\\n<li>Tweak: Load Custom Mouse Cursor addon when the element is visible on viewport to improve performance and page loading speed.<\\/li>\\n<li>Tweak: Added Cover Image size option in Behance Feed widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.6 <\\/h4>\\n<ul>\\n<li>Tweak: Add Mask Image option in Image Layers widget.<\\/li>\\n<li>Tweak: Add Render As SVG\\/Canvas option for Lottie Animation icons in Hover Box widget.<\\/li>\\n<li>Tweak: HTML markup optimized for Image Hotspots and Twitter Feed widgets for better performance.<\\/li>\\n<li>Fixed: Accordion Tabs option not working in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.5 <\\/h4>\\n<ul>\\n<li>New: Added URL String, Shortcode and WooCommerce Products in Cart options in Display Conditions.<\\/li>\\n<li>Tweak: HTML markup optimized for Hover Box, Image Accordion, Instagram Feed, Tabs, Unfold widgets for better performance.<\\/li>\\n<li>Tweak: Added Disable Floating Effects on Safari option in widgets have floating effects.<\\/li>\\n<li>Tweak: Trigger Particles and Badge addons JS code when visible on viewport to improve page loading speed.<\\/li>\\n<li>Tweak: Added compatibility Charts and Horizontal Scroll widgets.<\\/li>\\n<li>Fixed: Change Colors As Gradient option not working in Background Transition widget.<\\/li>\\n<li>Fixed: Profile Header image not showing properly on small devices in Twitter Feed widget.<\\/li>\\n<li>Fixed: Right Side Template option not showing in Multi Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.7.4 <\\/h4>\\n<ul>\\n<li>Tweak: Added compatibility between Badge Global Addon and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Fixed: Horizontal Scroll jittering issue on touch devices.<\\/li>\\n<\\/ul>\\n<h4> 2.7.3 <\\/h4>\\n<ul>\\n<li>New: Added Create\\/Edit Live Templates feature in all widgets that support Elementor Templates.<\\/li>\\n<\\/ul>\\n<h4> 2.7.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added support for future features compatibility<\\/li>\\n<li>Fixed: Button Trigger Size option not working on frontend in Magic Section widget.<\\/li>\\n<li>Fixed: Alignment issue in Icon Box widget when description is short.<\\/li>\\n<li>Fixed: Invalid CSS added in the editor when Badge Addon is enabled.<\\/li>\\n<\\/ul>\\n<h4> 2.7.1 <\\/h4>\\n<ul>\\n<li>Fixed: Fatal error with some PHP versions after v2.7.0<\\/li>\\n<\\/ul>\\n<h4> 2.7.0 <\\/h4>\\n<ul>\\n<li>New: Added Premium Badge global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-badge-global-addon\\/\\\">here<\\/a>.<\\/li>\\n<\\/ul>\\n<h4> 2.6.9 <\\/h4>\\n<ul>\\n<li>Tweak: HTML markup optimized for Table widget for better performance.<\\/li>\\n<li>Tweak: Added Icon Color and Text Color\\/Typography options for each repeater cell in Table widget.<\\/li>\\n<li>Fixed: Hover Color and Padding options not working for Read More link in Icon Box widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.8 <\\/h4>\\n<ul>\\n<li>New: Added five new skins in Elementor WooCommerce Products Listing widget - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-woocommerce-products\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added compatibility between section\\/column addons and Elementor Container element - <a href=\\\"https:\\/\\/elementor.com\\/help\\/container-element\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Widgets code refactored to improve performance and loading speed.<\\/li>\\n<li>Tweak: Added Hover Box Shadow option in Lottie Animation container addon.<\\/li>\\n<li>Fixed: PHP warning when Follow Delay option value is not set in Custom Mouse Cursor addon.<\\/li>\\n<li>Fixed: Image with Size option set to custom not rendered in Image Layers and Icon Box widgets.<\\/li>\\n<\\/ul>\\n<h4> 2.6.7 <\\/h4>\\n<ul>\\n<li>New: Added Custom Mouse Cursor global addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-custom-mouse-cursor-global-addon\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Auto Change Tabs option in Tabs widget.<\\/li>\\n<li>Tweak: HTML markup for images in Icon Box widget.<\\/li>\\n<li>Tweak: Make sure images in Image Layers and Tabs widgets are lazyloaded to improve loading speed.<\\/li>\\n<li>Fixed: Container addons not working on editor when used inside widgets using Elementor templates.<\\/li>\\n<\\/ul>\\n<h4> 2.6.6 <\\/h4>\\n<ul>\\n<li>Fixed: Box shadow and Background Color options overridden by default values in CSS in Preview Window widget.<\\/li>\\n<li>Fixed: Charts widget not working in some cases inside Tabs widget.<\\/li>\\n<li>Fixed: Animated Gradient and Blob Generator addons not working in Tabs widget.<\\/li>\\n<li>Fixed: Ken Burns addon Infinite option always disabled when the editor page is reloaded.<\\/li>\\n<\\/ul>\\n<h4> 2.6.5 <\\/h4>\\n<ul>\\n<li>Tweak: Load the main CSS file only when required.<\\/li>\\n<li>Fixed: Tabs widget not working properly with some themes.<\\/li>\\n<li>Fixed: Compatibility between Carousel option in Social Reviews widgets and RTL sites.<\\/li>\\n<li>Fixed: Keyboard Scrolling still works even when the control is disabled in Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.4 <\\/h4>\\n<ul>\\n<li>Fixed: Compatibility issues with Elementor v3.5.0.<\\/li>\\n<\\/ul>\\n<h4> 2.6.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added options to control Scroll Offset for each section individually in Color Transition widget.<\\/li>\\n<li>Tweak: Javascript loading method improved for Animated Gradient, Particles container addons for better performance.<\\/li>\\n<li>Fixed: Styling options not working for SVG icons in Magic Section widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.2 <\\/h4>\\n<ul>\\n<li>Tweak: Added WooCommerce Total Amount In Cart and Current Product Stock options in Display Conditions feature.<\\/li>\\n<li>Fixed: Console error when videos are inserted in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.1 <\\/h4>\\n<ul>\\n<li>Fixed: Undefined variable $dir_class in Image Layers widget when Text option is used.<\\/li>\\n<li>Fixed: Button Size option not working in WhatsApp Chat widget.<\\/li>\\n<\\/ul>\\n<h4> 2.6.0 <\\/h4>\\n<ul>\\n<li>New: Added Animated Blob Generator container addon - <a href=\\\"https:\\/\\/premiumaddons.com\\/elementor-animated-blob-generator\\/\\\">here<\\/a>.<\\/li>\\n<li>Tweak: Added Radar Style option in Image Hotspots widget.<\\/li>\\n<li>Tweak: Added div, p and span HTML tag options for heading in Hover Box widget.<\\/li>\\n<li>Fixed: Default icon size changed in Hover Box widget.<\\/li>\\n<li>Fixed: Background Color not changing when multiple Background Transition widgets are used on the same page.<\\/li>\\n<\\/ul>\\n<h4> 2.5.5 <\\/h4>\\n<ul>\\n<li>Fixed: Background is not changed on scroll up in Background Transition widget.<\\/li>\\n<li>Fixed: Nested tabs styling overwrite issue in Tabs widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.4 <\\/h4>\\n<ul>\\n<li>Tweak: Tabs widget rebuilt for better usability and editing experience.<\\/li>\\n<li>Tweak: Control number of carousel slides to show in Instagram Feed widget.<\\/li>\\n<li>Tweak: Prevent Background Transition widget from changing color when up\\/down backgrounds are the same.<\\/li>\\n<li>Fixed: Line height not working for Business\\/Place Name, Reviewer Name and Review Text in Social Reviews widgets.<\\/li>\\n<li>Fixed: Entrance Animations not working on for the first in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Tabs widget not working when shortcodes are used in tabs content.<\\/li>\\n<\\/ul>\\n<h4> 2.5.3 <\\/h4>\\n<ul>\\n<li>Tweak: Added Heroes Flying-Left effect in iHover widget.<\\/li>\\n<li>Tweak: Remove any duplicate content when Accordion Tabs option is enabled in Tabs widget.<\\/li>\\n<li>Tweak: Added Tab ID option in Tabs widget.<\\/li>\\n<li>Fixed: Animation issues for Flash Rotation, Flip Door, and Magic Door effects in iHover widget.<\\/li>\\n<li>Fixed: Charts not working on the editor page on Chrome browser.<\\/li>\\n<li>Fixed: Color option not applied on links in Table widget when CSV file is used.<\\/li>\\n<\\/ul>\\n<h4> 2.5.2 <\\/h4>\\n<ul>\\n<li>Tweak: Save all the plugin settings on change without need to click \\\"Save Settings\\\" button.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.4.<\\/li>\\n<li>Fixed: Snappy scroll stability issues in Horizontal Scroll issues.<\\/li>\\n<li>Fixed: Compatibility issues between Elementor custom breakpoints and Horizontal Scroll widget.<\\/li>\\n<\\/ul>\\n<h4> 2.5.1 <\\/h4>\\n<ul>\\n<li>Tweak: iHover widget code refactored for faster editing speed..<\\/li>\\n<li>Tweak: Added Image Hover Effect in Image Layers widget.<\\/li>\\n<li>Tweak: Added compatibility between Multiscroll widget and sticky headers.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Premium Particles not working on some devices in editor page.<\\/li>\\n<li>Fixed: Premium Parallax not working for Elementor columns.<\\/li>\\n<li>Fixed: Content is not fully rendered issue in Unfold widget.<\\/li>\\n<li>Fixed: Removed Unnecessary requests made in Instagram Feed widget.<\\/li>\\n<li>Fixed: Hide Slide On and Disable Horizontal Scroll On options not working together in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Carousel not working in Facebook Feed widget when <code>Only Show Admin Posts<\\/code> option is enabled.<\\/li>\\n<li>Fixed: Fold Height option not working when set to <code>0<\\/code> in Unfold widget.<\\/li>\\n<li>Fixed: Console error in Multi Scroll widget.<\\/li>\\n<li>Fixed: Admin notices not showing when Premium Addons for Elementor is not installed.<\\/li>\\n<\\/ul>\\n<h4> 2.5.0 <\\/h4>\\n<ul>\\n<li>Tweak: JS code refactored for better performance and faster editing speed.<\\/li>\\n<li>Tweak: Compatibility with Elementor v3.4.2.<\\/li>\\n<li>Fixed: Emojis not showing in Twitter Feed widget.<\\/li>\\n<li>Fixed: Slides overlapping issue on touch devices in Horizontal Scroll widget.<\\/li>\\n<li>Fixed: Image Hotspots colors not working in editor page.<\\/li>\\n<\\/ul>\\n<h4> 2.4.9 <\\/h4>\\n<p>…<\\/p>\"],\"installation\":[\"<ul>\\n<li>First make sure that Elementor Page Builder and Premium Addons for Elementor are installed, As this plugin works only with both of them.<\\/li>\\n<li>Download the plugin then Upload it to the plugin folder: \\/wp-content\\/plugins\\/ or install it through the WordPress plugins screen directly.<\\/li>\\n<li>Activate the plugin through the \\u2018Plugins\\u2019 screen in WordPress<\\/li>\\n<li>You can find Premium Addons Elements under the category \\u201cPremium Addons\\u201d on your Elementor element\\/widget list.<\\/li>\\n<\\/ul>\"],\"plugin\":\"premium-addons-pro\\/premium-addons-pro-for-elementor.php\",\"id\":\"premium-addons-pro\\/premium-addons-pro-for-elementor.php\"}\";}','off'),(80525,'eael_setup_wizard','complete','yes'),(80526,'eael_save_settings','a:88:{s:14:\"img-comparison\";i:1;s:17:\"instagram-gallery\";i:1;s:17:\"interactive-promo\";i:1;s:8:\"lightbox\";i:1;s:10:\"post-block\";i:1;s:18:\"testimonial-slider\";i:1;s:14:\"static-product\";i:1;s:14:\"adv-google-map\";i:1;s:13:\"flip-carousel\";i:1;s:17:\"interactive-cards\";i:1;s:16:\"content-timeline\";i:1;s:21:\"twitter-feed-carousel\";i:1;s:22:\"dynamic-filter-gallery\";i:1;s:9:\"post-list\";i:1;s:6:\"toggle\";i:1;s:9:\"mailchimp\";i:1;s:7:\"divider\";i:1;s:10:\"price-menu\";i:1;s:14:\"image-hotspots\";i:1;s:19:\"one-page-navigation\";i:1;s:7:\"counter\";i:1;s:13:\"post-carousel\";i:1;s:20:\"team-member-carousel\";i:1;s:13:\"logo-carousel\";i:1;s:17:\"protected-content\";i:1;s:9:\"offcanvas\";i:1;s:13:\"advanced-menu\";i:1;s:14:\"image-scroller\";i:1;s:19:\"learn-dash-elements\";i:1;s:15:\"woo-collections\";i:1;s:19:\"dismissible-section\";i:1;s:16:\"section-parallax\";i:1;s:17:\"section-particles\";i:1;s:20:\"eael-tooltip-section\";i:1;s:9:\"post-grid\";s:0:\"\";s:13:\"post-timeline\";s:0:\"\";s:10:\"fancy-text\";i:1;s:12:\"creative-btn\";i:1;s:10:\"count-down\";i:1;s:12:\"team-members\";i:1;s:12:\"testimonials\";i:1;s:8:\"info-box\";i:1;s:8:\"flip-box\";i:1;s:14:\"call-to-action\";i:1;s:11:\"dual-header\";i:1;s:11:\"price-table\";i:1;s:12:\"twitter-feed\";s:0:\"\";s:13:\"facebook-feed\";s:0:\"\";s:19:\"advanced-data-table\";s:0:\"\";s:10:\"data-table\";i:1;s:14:\"filter-gallery\";i:1;s:15:\"image-accordion\";i:1;s:14:\"content-ticker\";i:1;s:7:\"tooltip\";i:1;s:13:\"adv-accordion\";i:1;s:8:\"adv-tabs\";i:1;s:12:\"progress-bar\";i:1;s:12:\"feature-list\";i:1;s:12:\"product-grid\";s:0:\"\";s:14:\"contact-form-7\";s:0:\"\";s:7:\"weforms\";s:0:\"\";s:10:\"ninja-form\";s:0:\"\";s:9:\"formstack\";s:0:\"\";s:12:\"gravity-form\";s:0:\"\";s:12:\"caldera-form\";s:0:\"\";s:7:\"wpforms\";s:0:\"\";s:10:\"fluentform\";s:0:\"\";s:8:\"typeform\";s:0:\"\";s:24:\"betterdocs-category-grid\";s:0:\"\";s:23:\"betterdocs-category-box\";s:0:\"\";s:22:\"betterdocs-search-form\";s:0:\"\";s:12:\"sticky-video\";i:1;s:14:\"event-calendar\";s:0:\"\";s:10:\"embedpress\";i:1;s:24:\"crowdfundly-organization\";i:1;s:24:\"crowdfundly-all-campaign\";i:1;s:27:\"crowdfundly-single-campaign\";i:1;s:12:\"woo-checkout\";s:0:\"\";s:8:\"woo-cart\";s:0:\"\";s:14:\"login-register\";s:0:\"\";s:18:\"woocommerce-review\";i:1;s:11:\"career-page\";i:1;s:19:\"woo-product-compare\";s:0:\"\";s:20:\"woo-product-carousel\";s:0:\"\";s:11:\"simple-menu\";i:1;s:19:\"woo-product-gallery\";s:0:\"\";s:18:\"interactive-circle\";s:0:\"\";s:14:\"better-payment\";i:1;}','yes'),(80527,'wpdeveloper_plugins_data','a:1:{s:25:\"essential_adons_elementor\";a:3:{s:16:\"notice_will_show\";a:2:{s:6:\"opt_in\";i:1647199598;s:6:\"review\";i:1647761198;}s:4:\"time\";i:1647199598;s:7:\"version\";s:6:\"5.0.10\";}}','yes'),(80528,'eael_version','6.5.9','yes'),(80529,'wpins_allow_tracking','a:1:{s:25:\"essential_adons_elementor\";s:25:\"essential_adons_elementor\";}','yes'),(80530,'wpins_essential_adons_elementor_site_id','d60c3fffca10ba523129','yes'),(80531,'wpins_essential_adons_elementor_original_url','https://solsculpting.com','yes'),(80532,'wpins_essential_adons_elementor_d60c3fffca10ba523129','a:23:{s:11:\"plugin_slug\";s:25:\"essential_adons_elementor\";s:3:\"url\";s:24:\"https://solsculpting.com\";s:9:\"site_name\";s:12:\"SolSculpting\";s:12:\"site_version\";s:5:\"5.9.2\";s:13:\"site_language\";s:5:\"en-US\";s:7:\"charset\";s:5:\"UTF-8\";s:13:\"wpins_version\";s:5:\"3.0.3\";s:11:\"php_version\";s:6:\"7.4.26\";s:9:\"multisite\";b:0;s:13:\"file_location\";s:129:\"/nas/content/live/solsculptinstg/wp-content/plugins/essential-addons-for-elementor-lite/includes/Classes/Plugin_Usage_Tracker.php\";s:5:\"email\";s:23:\"bblackerby424@gmail.com\";s:16:\"marketing_method\";b:1;s:6:\"server\";s:6:\"Apache\";s:14:\"active_plugins\";a:12:{i:0;s:47:\"better-search-replace/better-search-replace.php\";i:1;s:33:\"classic-editor/classic-editor.php\";i:2;s:35:\"classic-widgets/classic-widgets.php\";i:3;s:31:\"elementor-pro/elementor-pro.php\";i:4;s:23:\"elementor/elementor.php\";i:5;s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";i:6;s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";i:7;s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";i:8;s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";i:9;s:25:\"sucuri-scanner/sucuri.php\";i:10;s:31:\"tracking-code-manager/index.php\";i:11;s:24:\"wordpress-seo/wp-seo.php\";}s:16:\"inactive_plugins\";a:1:{i:6;s:29:\"gravityforms/gravityforms.php\";}s:14:\"text_direction\";s:3:\"LTR\";s:6:\"plugin\";s:30:\"Essential Addons for Elementor\";s:7:\"version\";s:6:\"5.0.10\";s:6:\"status\";s:6:\"Active\";s:5:\"theme\";s:15:\"Hello Elementor\";s:13:\"theme_version\";s:5:\"2.5.0\";s:7:\"country\";s:13:\"United States\";s:7:\"item_id\";s:20:\"760e8569757fa16992d8\";}','yes'),(80533,'wpins_last_track_time','a:1:{s:25:\"essential_adons_elementor\";i:1647199655;}','yes'),(80534,'eael_editor_updated_at','1674586305','yes'),(80535,'eael_global_settings','a:1:{s:22:\"eael_ext_scroll_to_top\";a:0:{}}','yes'),(80536,'pa_edit_time','1674586305','yes'),(80541,'eael_pro_version','5.8.17','yes'),(80542,'essential-addons-elementor-license-key','bbdca005b1c9c470ae04e00ab8daa60d','yes'),(80543,'essential-addons-elementor-license-status','valid','yes'),(80546,'temp_count','a:11:{s:18:\"Blog Post Template\";s:18:\"Blog Post Template\";s:16:\"COntact Form USE\";s:16:\"COntact Form USE\";s:12:\"New Form USE\";s:12:\"New Form USE\";s:12:\"Testimonials\";s:12:\"Testimonials\";s:22:\"Discounts Sign up Form\";s:22:\"Discounts Sign up Form\";s:24:\"We\'ve Done The Work Hero\";s:24:\"We\'ve Done The Work Hero\";s:20:\"Icon Box Information\";s:20:\"Icon Box Information\";s:20:\"No Obligation Banner\";s:20:\"No Obligation Banner\";s:19:\"SolSculpting Footer\";s:19:\"SolSculpting Footer\";s:19:\"SolSculpting Header\";s:19:\"SolSculpting Header\";s:11:\"Default Kit\";s:11:\"Default Kit\";}','yes'),(80547,'edd_sl_2e52a1b124b4e07385192dd659390e8c','a:2:{s:7:\"timeout\";i:1785117695;s:5:\"value\";s:2373:\"{\"name\":\"Essential Addons for Elementor Pro\",\"new_version\":\"7.0.2\",\"stable_version\":\"7.0.2\",\"sections\":{\"description\":\"<p>Enhance <strong><a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/elementor\\/\\\" rel=\\\"ugc\\\">Elementor<\\/a><\\/strong> page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.<\\/p>\\n\",\"changelog\":\"<p>See <a href=\\\"https:\\/\\/essential-addons.com\\/changelog\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Changelog<\\/a> for details.<\\/p>\\n\"},\"license_check\":\"\",\"msg\":\"\",\"homepage\":\"https:\\/\\/essential-addons.com\\/\",\"package\":\"https:\\/\\/api.wpdeveloper.com\\/edd-sl\\/package_download\\/MTc4NTI2NTI5NTpiYmRjYTAwNWIxYzljNDcwYWUwNGUwMGFiOGRhYTYwZDo0MzcyOjg5NmRjYjM0MjNkOTJhOWE1Njc4NjE3MzJiZDAwNThiOmh0dHBzQC8vc29sc2N1bHB0aW5nLmNvbTow\",\"icons\":\"a:2:{s:2:\\\"1x\\\";s:89:\\\"https:\\/\\/store.assets.wpdeveloper.com\\/2024\\/08\\/9743a1d7-essential-addons-logo-2-128x128.png\\\";s:2:\\\"2x\\\";s:89:\\\"https:\\/\\/store.assets.wpdeveloper.com\\/2024\\/08\\/9743a1d7-essential-addons-logo-2-256x256.png\\\";}\",\"banners\":{\"high\":\"https:\\/\\/store.assets.wpdeveloper.com\\/2025\\/07\\/e04d35a1-ea-org-banner-1544-x-500-1.png\",\"low\":\"https:\\/\\/store.assets.wpdeveloper.com\\/2025\\/07\\/50bab75e-ea-org-banner-772-x-250.png\"},\"slug\":\"essential_adons_elementor\",\"url\":\"https:\\/\\/api.wpdeveloper.com\\/downloads\\/essential-addons-elementor\\/?changelog=1\",\"last_updated\":\"2026-07-24 09:03:31\",\"download_link\":\"https:\\/\\/api.wpdeveloper.com\\/edd-sl\\/package_download\\/MTc4NTI2NTI5NTpiYmRjYTAwNWIxYzljNDcwYWUwNGUwMGFiOGRhYTYwZDo0MzcyOjg5NmRjYjM0MjNkOTJhOWE1Njc4NjE3MzJiZDAwNThiOmh0dHBzQC8vc29sc2N1bHB0aW5nLmNvbTow\",\"upgrade_notice\":\"\",\"description\":[\"<p>Enhance <strong><a href=\\\"https:\\/\\/wordpress.org\\/plugins\\/elementor\\/\\\" rel=\\\"ugc\\\">Elementor<\\/a><\\/strong> page building experience with 100+ creative elements and extensions. Add powers to your website builder using our easy-to-use Elementor widgets and ready Elementor templates, which were designed to make your next WordPress website design easier and prettier than ever before.<\\/p>\\n\"],\"changelog\":[\"<p>See <a href=\\\"https:\\/\\/essential-addons.com\\/changelog\\/\\\" target=\\\"_blank\\\" rel=\\\"noopener\\\">Changelog<\\/a> for details.<\\/p>\\n\"]}\";}','off'),(80549,'pa_elements_ecb89d2b5','a:0:{}','no'),(80550,'pa_edit_ecb89d2b5','1647274519','no'),(80554,'wpe_cache_last_cleared','2022-10-20 23:36:12','yes'),(80555,'pa_elements_edf4dc6e5','a:0:{}','no'),(80556,'pa_edit_edf4dc6e5','1674586305','no'),(80560,'pa_elements_b10532a90','a:0:{}','no'),(80561,'pa_edit_b10532a90','1674586305','no'),(80565,'pa_elements_3b2b87d7b','a:0:{}','no'),(80566,'pa_edit_3b2b87d7b','1670027518','no'),(80570,'elementor_library_category_children','a:0:{}','yes'),(80573,'pa_elements_b4dbedf00','a:0:{}','no'),(80574,'pa_edit_b4dbedf00','1647285489','no'),(80578,'pa_elements_050a3f5dc','a:0:{}','no'),(80579,'pa_edit_050a3f5dc','1674586305','no'),(80586,'pa_elements_369ea1a56','a:0:{}','no'),(80587,'pa_edit_369ea1a56','1674586305','no'),(80592,'pa_elements_62e770277','a:0:{}','no'),(80593,'pa_edit_62e770277','1674586305','no'),(80608,'pa_elements_0086e7163','a:0:{}','no'),(80609,'pa_edit_0086e7163','1674586305','no'),(80623,'bunnycdn','a:8:{s:13:\"advanced_edit\";i:1;s:9:\"pull_zone\";s:12:\"solsculpting\";s:15:\"cdn_domain_name\";s:22:\"solsculpting.b-cdn.net\";s:8:\"excluded\";s:4:\".php\";s:11:\"directories\";s:22:\"wp-content,wp-includes\";s:8:\"site_url\";s:24:\"https://solsculpting.com\";s:13:\"disable_admin\";i:1;s:7:\"api_key\";s:72:\"5ae12138-c1c8-47d8-bafd-f51c9bff7c4112de42d6-48ea-4454-9afc-ecddad87fc87\";}','yes'),(80709,'_elementor_settings_update_time','1647396135','yes'),(80710,'elementor_cpt_support','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(80711,'elementor_disable_color_schemes','','yes'),(80712,'elementor_disable_typography_schemes','','yes'),(80713,'elementor_notice','','yes'),(80714,'elementor_google_maps_api_key','','yes'),(80715,'elementor_pro_recaptcha_site_key','6LcYMeQeAAAAAHsqWZAe_Czydf8uJxVMpA28DjTH','yes'),(80716,'elementor_pro_recaptcha_secret_key','6LcYMeQeAAAAAAd2DYNg-B1wFLSkEN4E_wPef6dj','yes'),(80717,'elementor_pro_recaptcha_v3_site_key','6LfoMeQeAAAAALcBGr3ufsCuk6OD5NIpph6PbX0c','yes'),(80718,'elementor_pro_recaptcha_v3_secret_key','6LfoMeQeAAAAAEVnQ7ft5QYjqG5PUXgaHd_63gSO','yes'),(80719,'elementor_pro_recaptcha_v3_threshold','0.5','yes'),(80720,'elementor_pro_facebook_app_id','','yes'),(80721,'elementor_pro_mailchimp_api_key','','yes'),(80722,'elementor_validate_api_data','','yes'),(80723,'elementor_pro_drip_api_token','','yes'),(80724,'elementor_pro_activecampaign_api_key','','yes'),(80725,'elementor_pro_activecampaign_api_url','','yes'),(80726,'elementor_pro_getresponse_api_key','','yes'),(80727,'elementor_pro_convertkit_api_key','','yes'),(80728,'elementor_pro_mailerlite_api_key','','yes'),(80729,'elementor_typekit-kit-id','','yes'),(80730,'elementor_font_awesome_pro_kit_id','','yes'),(80731,'elementor_css_print_method','external','yes'),(80732,'elementor_editor_break_lines','','yes'),(80733,'elementor_unfiltered_files_upload','','yes'),(80734,'elementor_font_display','auto','yes'),(80735,'elementor_load_fa4_shim','','yes'),(80738,'elementor_experiment-e_font_icon_svg','default','yes'),(80739,'elementor_experiment-e_import_export','default','yes'),(80740,'elementor_experiment-additional_custom_breakpoints','default','yes'),(80741,'elementor_experiment-e_hidden_wordpress_widgets','default','yes'),(80742,'elementor_experiment-favorite-widgets','default','yes'),(80745,'elementor_experiment-a11y_improvements','default','yes'),(80746,'elementor_experiment-theme_builder_v2','default','yes'),(80747,'elementor_experiment-hello-theme-header-footer','default','yes'),(80748,'elementor_experiment-landing-pages','default','yes'),(80749,'elementor_experiment-elements-color-picker','default','yes'),(80750,'elementor_experiment-admin-top-bar','default','yes'),(80794,'TCM_Snippet_2','a:36:{s:6:\"active\";i:1;s:9:\"trackMode\";i:0;s:9:\"trackPage\";i:0;s:2:\"id\";i:2;s:4:\"name\";s:21:\"GSC Verification Code\";s:4:\"code\";s:94:\"<meta name=\"google-site-verification\" content=\"8UxJ8CY8HrKlHt8I5V3CJaG2W6bHEgdbR2r2l5Vu1c0\" />\";s:5:\"order\";s:4:\"1000\";s:8:\"position\";i:0;s:23:\"includeEverywhereActive\";i:1;s:23:\"includeCategoriesActive\";i:0;s:17:\"includeTagsActive\";i:0;s:22:\"exceptCategoriesActive\";i:0;s:16:\"exceptTagsActive\";i:0;s:10:\"deviceType\";a:1:{i:0;s:3:\"all\";}s:30:\"includePostsOfType_page_Active\";i:0;s:23:\"includePostsOfType_page\";a:1:{i:0;s:2:\"-1\";}s:29:\"exceptPostsOfType_page_Active\";i:0;s:30:\"includePostsOfType_post_Active\";i:0;s:23:\"includePostsOfType_post\";a:1:{i:0;s:2:\"-1\";}s:29:\"exceptPostsOfType_post_Active\";i:0;s:10:\"codesCount\";i:1;s:17:\"includeCategories\";a:0:{}s:11:\"includeTags\";a:0:{}s:16:\"exceptCategories\";a:0:{}s:10:\"exceptTags\";a:0:{}s:22:\"exceptPostsOfType_page\";a:0:{}s:22:\"exceptPostsOfType_post\";a:0:{}s:21:\"CTC_10002_ProductsIds\";a:0:{}s:23:\"CTC_10002_CategoriesIds\";a:0:{}s:17:\"CTC_10002_TagsIds\";a:0:{}s:21:\"CTC_10001_ProductsIds\";a:0:{}s:23:\"CTC_10001_CategoriesIds\";a:0:{}s:17:\"CTC_10001_TagsIds\";a:0:{}s:21:\"CTC_10003_ProductsIds\";a:0:{}s:23:\"CTC_10003_CategoriesIds\";a:0:{}s:17:\"CTC_10003_TagsIds\";a:0:{}}','yes'),(80849,'redirection_options','a:33:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"80637f236d1df98c62c98fb7d3af2998\";s:12:\"monitor_post\";i:0;s:13:\"monitor_types\";a:0:{}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"headers\";a:0:{}s:8:\"database\";s:3:\"4.2\";s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";i:0;s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:0;s:13:\"flag_trailing\";b:0;s:10:\"flag_regex\";b:0;s:16:\"log_redirections\";i:0;s:8:\"log_404s\";i:0;}','yes'),(81793,'pa_elements_41b58cfbd','a:0:{}','no'),(81794,'pa_edit_41b58cfbd','1674586305','off'),(87648,'elementor_events_db_version','1.0.0','no'),(87666,'rewrite_rules','a:121:{s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:16:\"custom-css-js/?$\";s:33:\"index.php?post_type=custom-css-js\";s:46:\"custom-css-js/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=custom-css-js&feed=$matches[1]\";s:41:\"custom-css-js/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_type=custom-css-js&feed=$matches[1]\";s:33:\"custom-css-js/page/([0-9]{1,})/?$\";s:51:\"index.php?post_type=custom-css-js&paged=$matches[1]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:41:\"custom-css-js/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:51:\"custom-css-js/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:71:\"custom-css-js/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"custom-css-js/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:66:\"custom-css-js/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:47:\"custom-css-js/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:30:\"custom-css-js/([^/]+)/embed/?$\";s:61:\"index.php?post_type=custom-css-js&name=$matches[1]&embed=true\";s:34:\"custom-css-js/([^/]+)/trackback/?$\";s:55:\"index.php?post_type=custom-css-js&name=$matches[1]&tb=1\";s:54:\"custom-css-js/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&feed=$matches[2]\";s:49:\"custom-css-js/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&feed=$matches[2]\";s:42:\"custom-css-js/([^/]+)/page/?([0-9]{1,})/?$\";s:68:\"index.php?post_type=custom-css-js&name=$matches[1]&paged=$matches[2]\";s:49:\"custom-css-js/([^/]+)/comment-page-([0-9]{1,})/?$\";s:68:\"index.php?post_type=custom-css-js&name=$matches[1]&cpage=$matches[2]\";s:38:\"custom-css-js/([^/]+)(?:/([0-9]+))?/?$\";s:67:\"index.php?post_type=custom-css-js&name=$matches[1]&page=$matches[2]\";s:30:\"custom-css-js/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:40:\"custom-css-js/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:60:\"custom-css-js/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"custom-css-js/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:55:\"custom-css-js/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:36:\"custom-css-js/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:12:\"sitemap\\.xml\";s:23:\"index.php?sitemap=index\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:41:\"index.php?&page_id=3644&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(105621,'nav_menu_notice','1','yes'),(108260,'bsr_data','a:8:{s:13:\"select_tables\";a:73:{i:0;s:37:\"wp_3vvbhvqwjb_actionscheduler_actions\";i:1;s:36:\"wp_3vvbhvqwjb_actionscheduler_claims\";i:2;s:36:\"wp_3vvbhvqwjb_actionscheduler_groups\";i:3;s:34:\"wp_3vvbhvqwjb_actionscheduler_logs\";i:4;s:25:\"wp_3vvbhvqwjb_commentmeta\";i:5;s:22:\"wp_3vvbhvqwjb_comments\";i:6;s:22:\"wp_3vvbhvqwjb_e_events\";i:7;s:27:\"wp_3vvbhvqwjb_e_submissions\";i:8;s:39:\"wp_3vvbhvqwjb_e_submissions_actions_log\";i:9;s:34:\"wp_3vvbhvqwjb_e_submissions_values\";i:10;s:25:\"wp_3vvbhvqwjb_layerslider\";i:11;s:35:\"wp_3vvbhvqwjb_layerslider_revisions\";i:12;s:19:\"wp_3vvbhvqwjb_links\";i:13;s:21:\"wp_3vvbhvqwjb_options\";i:14;s:22:\"wp_3vvbhvqwjb_postmeta\";i:15;s:19:\"wp_3vvbhvqwjb_posts\";i:16;s:29:\"wp_3vvbhvqwjb_redirection_404\";i:17;s:32:\"wp_3vvbhvqwjb_redirection_groups\";i:18;s:31:\"wp_3vvbhvqwjb_redirection_items\";i:19;s:30:\"wp_3vvbhvqwjb_redirection_logs\";i:20;s:32:\"wp_3vvbhvqwjb_term_relationships\";i:21;s:27:\"wp_3vvbhvqwjb_term_taxonomy\";i:22;s:22:\"wp_3vvbhvqwjb_termmeta\";i:23;s:19:\"wp_3vvbhvqwjb_terms\";i:24;s:22:\"wp_3vvbhvqwjb_usermeta\";i:25;s:19:\"wp_3vvbhvqwjb_users\";i:26;s:35:\"wp_3vvbhvqwjb_wc_admin_note_actions\";i:27;s:28:\"wp_3vvbhvqwjb_wc_admin_notes\";i:28;s:32:\"wp_3vvbhvqwjb_wc_category_lookup\";i:29;s:32:\"wp_3vvbhvqwjb_wc_customer_lookup\";i:30;s:29:\"wp_3vvbhvqwjb_wc_download_log\";i:31;s:36:\"wp_3vvbhvqwjb_wc_order_coupon_lookup\";i:32;s:37:\"wp_3vvbhvqwjb_wc_order_product_lookup\";i:33;s:28:\"wp_3vvbhvqwjb_wc_order_stats\";i:34;s:33:\"wp_3vvbhvqwjb_wc_order_tax_lookup\";i:35;s:42:\"wp_3vvbhvqwjb_wc_product_attributes_lookup\";i:36;s:36:\"wp_3vvbhvqwjb_wc_product_meta_lookup\";i:37;s:28:\"wp_3vvbhvqwjb_wc_rate_limits\";i:38;s:31:\"wp_3vvbhvqwjb_wc_reserved_stock\";i:39;s:33:\"wp_3vvbhvqwjb_wc_tax_rate_classes\";i:40;s:25:\"wp_3vvbhvqwjb_wc_webhooks\";i:41;s:34:\"wp_3vvbhvqwjb_woocommerce_api_keys\";i:42;s:46:\"wp_3vvbhvqwjb_woocommerce_attribute_taxonomies\";i:43;s:58:\"wp_3vvbhvqwjb_woocommerce_downloadable_product_permissions\";i:44;s:29:\"wp_3vvbhvqwjb_woocommerce_log\";i:45;s:40:\"wp_3vvbhvqwjb_woocommerce_order_itemmeta\";i:46;s:37:\"wp_3vvbhvqwjb_woocommerce_order_items\";i:47;s:43:\"wp_3vvbhvqwjb_woocommerce_payment_tokenmeta\";i:48;s:40:\"wp_3vvbhvqwjb_woocommerce_payment_tokens\";i:49;s:34:\"wp_3vvbhvqwjb_woocommerce_sessions\";i:50;s:49:\"wp_3vvbhvqwjb_woocommerce_shipping_zone_locations\";i:51;s:47:\"wp_3vvbhvqwjb_woocommerce_shipping_zone_methods\";i:52;s:40:\"wp_3vvbhvqwjb_woocommerce_shipping_zones\";i:53;s:44:\"wp_3vvbhvqwjb_woocommerce_tax_rate_locations\";i:54;s:35:\"wp_3vvbhvqwjb_woocommerce_tax_rates\";i:55;s:29:\"wp_3vvbhvqwjb_yoast_indexable\";i:56;s:39:\"wp_3vvbhvqwjb_yoast_indexable_hierarchy\";i:57;s:30:\"wp_3vvbhvqwjb_yoast_migrations\";i:58;s:32:\"wp_3vvbhvqwjb_yoast_primary_term\";i:59;s:29:\"wp_3vvbhvqwjb_yoast_seo_links\";i:60;s:28:\"wp_3vvbhvqwjb_yoast_seo_meta\";i:61;s:14:\"wp_commentmeta\";i:62;s:11:\"wp_comments\";i:63;s:8:\"wp_links\";i:64;s:10:\"wp_options\";i:65;s:11:\"wp_postmeta\";i:66;s:8:\"wp_posts\";i:67;s:21:\"wp_term_relationships\";i:68;s:16:\"wp_term_taxonomy\";i:69;s:11:\"wp_termmeta\";i:70;s:8:\"wp_terms\";i:71;s:11:\"wp_usermeta\";i:72;s:8:\"wp_users\";}s:16:\"case_insensitive\";s:3:\"off\";s:13:\"replace_guids\";s:3:\"off\";s:7:\"dry_run\";s:3:\"off\";s:10:\"search_for\";s:12:\"707-345-6102\";s:12:\"replace_with\";s:12:\"707-804-9536\";s:15:\"completed_pages\";i:48;s:11:\"total_pages\";i:73;}','yes'),(114228,'user_count','52','off'),(123817,'elementor_notes_db_version','5','yes'),(123821,'eael_reduce_op_table_data','1','yes'),(124018,'site_logo_notice','1','yes'),(133100,'fm_key','H1R38gmFEWbJZ5Itzyk9rcoaQ','yes'),(133103,'filemanager_email_verified_6','yes','yes'),(133108,'rsssl_port_check_2082','fail','no'),(133109,'rsssl_port_check_8443','fail','no'),(133110,'rsssl_port_check_2222','fail','off'),(133111,'rsssl_options','a:9:{s:12:\"site_has_ssl\";s:1:\"1\";s:11:\"ssl_enabled\";b:1;s:19:\"mixed_content_fixer\";b:1;s:8:\"redirect\";s:11:\"wp_redirect\";s:20:\"do_not_edit_htaccess\";b:0;s:19:\"dismiss_all_notices\";b:0;s:31:\"switch_mixed_content_fixer_hook\";b:0;s:19:\"review_notice_shown\";s:1:\"1\";s:24:\"send_notifications_email\";i:1;}','yes'),(133112,'rsssl_show_onboarding','1','no'),(133126,'rsssl_6_notice_dismissed','1','no'),(133127,'rsssl_upgraded_to_6_dismissed','1','no'),(133141,'rsssl_onboarding_dismissed','1','no'),(143950,'wp_calendar_block_has_published_posts','1','yes'),(143952,'category_children','a:0:{}','yes'),(143966,'pa_elements_33c3a68c8','a:0:{}','no'),(143967,'pa_edit_33c3a68c8','1674586305','no'),(154809,'pa_elements_','a:0:{}','no'),(154810,'pa_edit_','1674586305','no'),(184635,'wp_attachment_pages_enabled','1','yes'),(191184,'rsssl_previous_version','9.5.5','off'),(191186,'_elementor_pro_license_v2_data_fallback','a:2:{s:7:\"timeout\";i:1785185816;s:5:\"value\";s:41:\"{\"success\":false,\"error\":\"site_inactive\"}\";}','off'),(191187,'_elementor_pro_license_v2_data','a:2:{s:7:\"timeout\";i:1785142616;s:5:\"value\";s:41:\"{\"success\":false,\"error\":\"site_inactive\"}\";}','off'),(191193,'elementor_pro_install_history','a:2:{s:5:\"3.7.7\";i:1717022844;s:6:\"3.21.8\";i:1717022845;}','yes'),(191197,'rsssl_wp_version_detected','found','no'),(191198,'elementor_1_elementor_pro_updater_batch_4407eeb72a44fe0bdbbc72ce','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:34:\"ElementorPro\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','no'),(191221,'ai1wm_updater','a:1:{s:43:\"all-in-one-wp-migration-unlimited-extension\";a:13:{s:4:\"name\";s:19:\"Unlimited Extension\";s:4:\"slug\";s:19:\"unlimited-extension\";s:8:\"homepage\";s:51:\"https://servmask.com/extensions/unlimited-extension\";s:13:\"download_link\";s:29:\"https://servmask.com/purchase\";s:7:\"version\";s:4:\"2.86\";s:6:\"author\";s:8:\"ServMask\";s:15:\"author_homepage\";s:20:\"https://servmask.com\";s:8:\"sections\";a:2:{s:11:\"description\";s:266:\"<ul class=\"description\"><li>Remove upload limits</li><li>Use on any number of websites that you own</li><li>Restore backup from server</li><li>Reset Hub: Reset tools for efficient site management new</li><li>WP CLI commands included</li><li>Premium support</li></ul>\";s:9:\"changelog\";s:505:\"<h4>2.86</h4>\n\n<ul>\n<li>Added <code>--exclude-files</code> option to the WP-CLI backup command</li>\n</ul>\n\n<h4>2.85</h4>\n\n<ul>\n<li>Fixed stored XSS vulnerability in the backups path setting</li>\n<li>Fixed Restore button failing on the backups page</li>\n</ul>\n\n<h4>2.84</h4>\n\n<ul>\n<li>Added permission check for the settings admin action to improve security</li>\n</ul>\n\n<h4>2.83</h4>\n\n<ul>\n<li>Dependency updates</li>\n</ul>\n\n<h4>2.82</h4>\n\n<ul>\n<li>Added option to compress the archive on export</li>\n</ul>\";}s:7:\"banners\";a:2:{s:3:\"low\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/05c43e34-a515-4bb0-a039-2e20aa9b446a/img/products/unlimited-extension-772x250.png\";s:4:\"high\";s:120:\"https://d1zsuv05404qm1.cloudfront.net/05c43e34-a515-4bb0-a039-2e20aa9b446a/img/products/unlimited-extension-1544x500.png\";}s:5:\"icons\";a:3:{s:2:\"1x\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/05c43e34-a515-4bb0-a039-2e20aa9b446a/img/products/unlimited-extension-128x128.png\";s:2:\"2x\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/05c43e34-a515-4bb0-a039-2e20aa9b446a/img/products/unlimited-extension-256x256.png\";s:7:\"default\";s:119:\"https://d1zsuv05404qm1.cloudfront.net/05c43e34-a515-4bb0-a039-2e20aa9b446a/img/products/unlimited-extension-256x256.png\";}s:6:\"rating\";i:99;s:11:\"num_ratings\";i:509;s:10:\"downloaded\";i:50188;}}','yes'),(191225,'ai1wm_secret_key','lWpQsfZLIsAl','yes'),(191226,'ai1wm_backups_labels','a:0:{}','yes'),(191227,'ai1wm_sites_links','a:0:{}','yes'),(191228,'ai1wm_backups_path','/storage/v12552/solsculpting/public_html/wp-content/ai1wm-backups','yes'),(191229,'ai1wmue_plugin_key','467437d2-35c0-41f1-b8e7-2b657efb466e','yes'),(191230,'ai1wm_status','a:3:{s:4:\"type\";s:4:\"done\";s:5:\"title\";s:41:\"Your site has been imported successfully!\";s:7:\"message\";s:377:\"» <a class=\"ai1wm-no-underline\" href=\"https://solsculpting.com/wp-admin/options-permalink.php#submit\" target=\"_blank\">Save permalinks structure</a>. (opens a new window)<br />» <a class=\"ai1wm-no-underline\" href=\"https://wordpress.org/support/view/plugin-reviews/all-in-one-wp-migration?rate=5#postform\" target=\"_blank\">Optionally, review the plugin</a>. (opens a new window)\";}','yes'),(191231,'swift_performance_plugin_organizer','a:0:{}','yes'),(191232,'jetpack_active_modules','a:0:{}','yes'),(191238,'wp_cli_login','{\"endpoint\":\"2ddc4c94\",\"version\":\"^1.2\"}','yes'),(191242,'_site_transient_ai1wm_last_check_for_updates','1785106892','off'),(191289,'_transient_health-check-site-status-result','{\"good\":14,\"recommended\":9,\"critical\":4}','yes'),(191335,'auto_core_update_notified','a:4:{s:4:\"type\";s:4:\"fail\";s:5:\"email\";s:24:\"hello@saramichelleds.com\";s:7:\"version\";s:5:\"6.9.4\";s:9:\"timestamp\";i:1773690594;}','off'); INSERT INTO `wp_options` VALUES (194362,'rsssl_404_cache','a:223:{s:58:\"94.156.69.124, 94.156.69.124, 94.156.69.124, 94.156.69.124\";a:1:{i:0;i:1722344652;}s:62:\"139.59.100.234, 139.59.100.234, 139.59.100.234, 139.59.100.234\";a:2:{i:0;i:1722351078;i:1;i:1722351081;}s:54:\"45.76.238.47, 45.76.238.47, 45.76.238.47, 45.76.238.47\";a:5:{i:4;i:1722374688;i:5;i:1722374689;i:6;i:1722374690;i:7;i:1722374691;i:8;i:1722374692;}s:50:\"45.92.229.6, 45.92.229.6, 45.92.229.6, 45.92.229.6\";a:1:{i:0;i:1722383672;}s:58:\"74.249.99.249, 74.249.99.249, 74.249.99.249, 74.249.99.249\";a:1:{i:0;i:1722411023;}s:62:\"43.135.178.208, 43.135.178.208, 43.135.178.208, 43.135.178.208\";a:1:{i:2;i:1724226436;}s:54:\"140.82.50.67, 140.82.50.67, 140.82.50.67, 140.82.50.67\";a:4:{i:5;i:1722454347;i:6;i:1722454348;i:7;i:1722454349;i:8;i:1722454351;}s:66:\"103.173.227.246, 103.173.227.246, 103.173.227.246, 103.173.227.246\";a:3:{i:10;i:1722457066;i:11;i:1722457068;i:12;i:1722457070;}s:62:\"172.69.150.120, 172.69.150.120, 172.69.150.120, 172.69.150.120\";a:1:{i:0;i:1722482797;}s:58:\"91.92.247.168, 91.92.247.168, 91.92.247.168, 91.92.247.168\";a:2:{i:15;i:1724231005;i:16;i:1724231008;}s:58:\"45.148.10.142, 45.148.10.142, 45.148.10.142, 45.148.10.142\";a:1:{i:2;i:1723423298;}s:62:\"172.245.210.14, 172.245.210.14, 172.245.210.14, 172.245.210.14\";a:3:{i:1;i:1722529916;i:2;i:1722529918;i:3;i:1722529920;}s:54:\"66.42.113.59, 66.42.113.59, 66.42.113.59, 66.42.113.59\";a:5:{i:4;i:1722543928;i:5;i:1722543929;i:6;i:1722543930;i:7;i:1722543931;i:8;i:1722543932;}s:54:\"54.91.13.246, 54.91.13.246, 54.91.13.246, 54.91.13.246\";a:1:{i:0;i:1722564165;}s:66:\"188.166.251.171, 188.166.251.171, 188.166.251.171, 188.166.251.171\";a:1:{i:0;i:1722567363;}s:58:\"172.71.246.54, 172.71.246.54, 172.71.246.54, 172.71.246.54\";a:1:{i:1;i:1723266371;}s:58:\"57.154.64.166, 57.154.64.166, 57.154.64.166, 57.154.64.166\";a:1:{i:0;i:1722581168;}s:58:\"156.67.110.51, 156.67.110.51, 156.67.110.51, 156.67.110.51\";a:4:{i:8;i:1723024828;i:9;i:1723024828;i:10;i:1723024830;i:11;i:1723024830;}s:66:\"104.156.230.168, 104.156.230.168, 104.156.230.168, 104.156.230.168\";a:4:{i:5;i:1722626061;i:6;i:1722626062;i:7;i:1722626063;i:8;i:1722626064;}s:58:\"84.46.242.255, 84.46.242.255, 84.46.242.255, 84.46.242.255\";a:1:{i:1;i:1722817689;}s:54:\"66.249.82.13, 66.249.82.13, 66.249.82.13, 66.249.82.13\";a:1:{i:0;i:1722639062;}s:58:\"43.153.53.152, 43.153.53.152, 43.153.53.152, 43.153.53.152\";a:1:{i:11;i:1725147820;}s:58:\"45.148.10.206, 45.148.10.206, 45.148.10.206, 45.148.10.206\";a:1:{i:3;i:1723050294;}s:58:\"68.219.232.14, 68.219.232.14, 68.219.232.14, 68.219.232.14\";a:1:{i:10;i:1722664883;}s:58:\"209.126.80.63, 209.126.80.63, 209.126.80.63, 209.126.80.63\";a:1:{i:0;i:1722692812;}s:58:\"94.156.69.122, 94.156.69.122, 94.156.69.122, 94.156.69.122\";a:1:{i:2;i:1722701822;}s:50:\"185.16.38.9, 185.16.38.9, 185.16.38.9, 185.16.38.9\";a:1:{i:0;i:1722747164;}s:58:\"172.69.109.86, 172.69.109.86, 172.69.109.86, 172.69.109.86\";a:1:{i:0;i:1722768950;}s:58:\"45.79.214.215, 45.79.214.215, 45.79.214.215, 45.79.214.215\";a:5:{i:4;i:1722775605;i:5;i:1722775606;i:6;i:1722775607;i:7;i:1722775608;i:8;i:1722775609;}s:62:\"109.239.61.208, 109.239.61.208, 109.239.61.208, 109.239.61.208\";a:2:{i:0;i:1722775595;i:1;i:1722775597;}s:58:\"45.148.10.241, 45.148.10.241, 45.148.10.241, 45.148.10.241\";a:1:{i:1;i:1722886793;}s:58:\"64.237.48.188, 64.237.48.188, 64.237.48.188, 64.237.48.188\";a:4:{i:5;i:1722796577;i:6;i:1722796579;i:7;i:1722796580;i:8;i:1722796581;}s:62:\"172.172.49.183, 172.172.49.183, 172.172.49.183, 172.172.49.183\";a:4:{i:6;i:1722810353;i:7;i:1722810354;i:8;i:1722810356;i:9;i:1722810357;}s:54:\"62.72.42.181, 62.72.42.181, 62.72.42.181, 62.72.42.181\";a:4:{i:0;i:1722829872;i:1;i:1722829875;i:2;i:1722829875;i:3;i:1722829876;}s:54:\"45.148.10.75, 45.148.10.75, 45.148.10.75, 45.148.10.75\";a:1:{i:1;i:1724626922;}s:58:\"36.70.228.124, 36.70.228.124, 36.70.228.124, 36.70.228.124\";a:1:{i:1;i:1722988998;}s:62:\"52.178.204.127, 52.178.204.127, 52.178.204.127, 52.178.204.127\";a:1:{i:0;i:1722908611;}s:54:\"91.92.255.30, 91.92.255.30, 91.92.255.30, 91.92.255.30\";a:1:{i:0;i:1722913852;}s:58:\"172.70.85.213, 172.70.85.213, 172.70.85.213, 172.70.85.213\";a:1:{i:0;i:1722925934;}s:58:\"109.169.10.10, 109.169.10.10, 109.169.10.10, 109.169.10.10\";a:1:{i:0;i:1722955671;}s:58:\"66.55.159.142, 66.55.159.142, 66.55.159.142, 66.55.159.142\";a:4:{i:5;i:1722967932;i:6;i:1722967934;i:7;i:1722967935;i:8;i:1722967936;}s:62:\"76.149.101.118, 76.149.101.118, 76.149.101.118, 76.149.101.118\";a:1:{i:5;i:1723746669;}s:54:\"178.20.42.84, 178.20.42.84, 178.20.42.84, 178.20.42.84\";a:1:{i:0;i:1722991585;}s:50:\"45.63.70.79, 45.63.70.79, 45.63.70.79, 45.63.70.79\";a:4:{i:5;i:1723057607;i:6;i:1723057608;i:7;i:1723057610;i:8;i:1723057611;}s:66:\"162.158.159.187, 162.158.159.187, 162.158.159.187, 162.158.159.187\";a:1:{i:0;i:1723095104;}s:62:\"144.202.35.234, 144.202.35.234, 144.202.35.234, 144.202.35.234\";a:4:{i:5;i:1723151912;i:6;i:1723151913;i:7;i:1723151915;i:8;i:1723151916;}s:58:\"45.142.179.50, 45.142.179.50, 45.142.179.50, 45.142.179.50\";a:1:{i:0;i:1723161665;}s:62:\"78.153.140.224, 78.153.140.224, 78.153.140.224, 78.153.140.224\";a:2:{i:12;i:1725777626;i:13;i:1725777628;}s:58:\"15.188.75.237, 15.188.75.237, 15.188.75.237, 15.188.75.237\";a:2:{i:5;i:1723238899;i:6;i:1723238902;}s:58:\"144.202.45.80, 144.202.45.80, 144.202.45.80, 144.202.45.80\";a:8:{i:0;i:1723242753;i:1;i:1723242753;i:2;i:1723242753;i:3;i:1723242753;i:4;i:1723242753;i:5;i:1723242753;i:6;i:1723242753;i:7;i:1723242753;}s:66:\"207.231.104.140, 207.231.104.140, 207.231.104.140, 207.231.104.140\";a:1:{i:0;i:1723254850;}s:62:\"104.243.41.214, 104.243.41.214, 104.243.41.214, 104.243.41.214\";a:1:{i:0;i:1723336039;}s:54:\"91.92.254.94, 91.92.254.94, 91.92.254.94, 91.92.254.94\";a:1:{i:0;i:1723348719;}s:66:\"103.102.228.163, 103.102.228.163, 103.102.228.163, 103.102.228.163\";a:1:{i:2;i:1723382545;}s:66:\"162.158.110.217, 162.158.110.217, 162.158.110.217, 162.158.110.217\";a:1:{i:0;i:1723425238;}s:66:\"185.215.164.107, 185.215.164.107, 185.215.164.107, 185.215.164.107\";a:4:{i:4;i:1723476725;i:5;i:1723476725;i:6;i:1723476726;i:7;i:1723476728;}s:50:\"51.178.1.52, 51.178.1.52, 51.178.1.52, 51.178.1.52\";a:1:{i:0;i:1723500018;}s:62:\"94.232.247.194, 94.232.247.194, 94.232.247.194, 94.232.247.194\";a:1:{i:0;i:1723506316;}s:66:\"103.150.197.217, 103.150.197.217, 103.150.197.217, 103.150.197.217\";a:2:{i:74;i:1723534140;i:75;i:1723534142;}s:66:\"209.250.250.194, 209.250.250.194, 209.250.250.194, 209.250.250.194\";a:7:{i:0;i:1723563723;i:1;i:1723563723;i:2;i:1723563723;i:3;i:1723563724;i:4;i:1723563724;i:5;i:1723563725;i:6;i:1723563726;}s:62:\"193.26.115.202, 193.26.115.202, 193.26.115.202, 193.26.115.202\";a:3:{i:3;i:1724068066;i:4;i:1724068066;i:5;i:1724068066;}s:58:\"107.189.30.66, 107.189.30.66, 107.189.30.66, 107.189.30.66\";a:1:{i:0;i:1723569175;}s:66:\"144.126.136.157, 144.126.136.157, 144.126.136.157, 144.126.136.157\";a:1:{i:0;i:1723575113;}s:58:\"64.23.164.131, 64.23.164.131, 64.23.164.131, 64.23.164.131\";a:1:{i:3;i:1724405383;}s:62:\"108.162.242.60, 108.162.242.60, 108.162.242.60, 108.162.242.60\";a:1:{i:0;i:1723597085;}s:66:\"193.233.233.120, 193.233.233.120, 193.233.233.120, 193.233.233.120\";a:5:{i:30;i:1723611131;i:31;i:1723611132;i:32;i:1723611132;i:33;i:1723611134;i:34;i:1723611135;}s:54:\"91.92.254.82, 91.92.254.82, 91.92.254.82, 91.92.254.82\";a:1:{i:1;i:1724229072;}s:58:\"31.220.83.200, 31.220.83.200, 31.220.83.200, 31.220.83.200\";a:1:{i:0;i:1723643688;}s:62:\"195.178.110.35, 195.178.110.35, 195.178.110.35, 195.178.110.35\";a:1:{i:1;i:1724589034;}s:58:\"66.135.17.191, 66.135.17.191, 66.135.17.191, 66.135.17.191\";a:7:{i:0;i:1723654347;i:1;i:1723654347;i:2;i:1723654347;i:3;i:1723654347;i:4;i:1723654347;i:5;i:1723654347;i:6;i:1723654347;}s:54:\"157.55.39.56, 157.55.39.56, 157.55.39.56, 157.55.39.56\";a:1:{i:0;i:1723657021;}s:58:\"104.197.79.18, 104.197.79.18, 104.197.79.18, 104.197.79.18\";a:2:{i:0;i:1723662535;i:1;i:1723662536;}s:62:\"78.153.140.223, 78.153.140.223, 78.153.140.223, 78.153.140.223\";a:1:{i:0;i:1723674448;}s:62:\"172.68.193.142, 172.68.193.142, 172.68.193.142, 172.68.193.142\";a:1:{i:0;i:1723771662;}s:58:\"52.47.201.113, 52.47.201.113, 52.47.201.113, 52.47.201.113\";a:1:{i:0;i:1723775401;}s:62:\"78.153.140.222, 78.153.140.222, 78.153.140.222, 78.153.140.222\";a:3:{i:13;i:1723778412;i:14;i:1723778414;i:15;i:1723778416;}s:54:\"157.55.39.10, 157.55.39.10, 157.55.39.10, 157.55.39.10\";a:1:{i:0;i:1723798531;}s:58:\"34.45.115.144, 34.45.115.144, 34.45.115.144, 34.45.115.144\";a:2:{i:1;i:1723905345;i:2;i:1723905346;}s:62:\"64.227.147.137, 64.227.147.137, 64.227.147.137, 64.227.147.137\";a:1:{i:0;i:1723811758;}s:58:\"128.90.174.39, 128.90.174.39, 128.90.174.39, 128.90.174.39\";a:2:{i:1;i:1723813111;i:2;i:1723813114;}s:58:\"68.183.61.180, 68.183.61.180, 68.183.61.180, 68.183.61.180\";a:9:{i:0;i:1723837040;i:1;i:1723837040;i:2;i:1723837040;i:3;i:1723837041;i:4;i:1723837041;i:5;i:1723837041;i:6;i:1723837041;i:7;i:1723837041;i:8;i:1723837041;}s:58:\"194.26.192.35, 194.26.192.35, 194.26.192.35, 194.26.192.35\";a:1:{i:0;i:1723837049;}s:54:\"194.38.20.13, 194.38.20.13, 194.38.20.13, 194.38.20.13\";a:1:{i:1;i:1723946515;}s:54:\"20.2.113.153, 20.2.113.153, 20.2.113.153, 20.2.113.153\";a:1:{i:0;i:1723853909;}s:66:\"217.160.142.200, 217.160.142.200, 217.160.142.200, 217.160.142.200\";a:1:{i:0;i:1723883513;}s:54:\"157.55.39.53, 157.55.39.53, 157.55.39.53, 157.55.39.53\";a:1:{i:0;i:1723903862;}s:62:\"52.164.218.143, 52.164.218.143, 52.164.218.143, 52.164.218.143\";a:4:{i:6;i:1723909440;i:7;i:1723909442;i:8;i:1723909443;i:9;i:1723909444;}s:58:\"152.42.208.79, 152.42.208.79, 152.42.208.79, 152.42.208.79\";a:1:{i:1;i:1723917355;}s:50:\"13.79.91.95, 13.79.91.95, 13.79.91.95, 13.79.91.95\";a:3:{i:20;i:1725372558;i:21;i:1725372558;i:22;i:1725372562;}s:58:\"172.70.110.49, 172.70.110.49, 172.70.110.49, 172.70.110.49\";a:1:{i:0;i:1723943446;}s:50:\"84.239.12.7, 84.239.12.7, 84.239.12.7, 84.239.12.7\";a:1:{i:0;i:1723950128;}s:62:\"207.148.11.246, 207.148.11.246, 207.148.11.246, 207.148.11.246\";a:8:{i:1;i:1723994276;i:2;i:1723994277;i:3;i:1723994277;i:4;i:1723994278;i:5;i:1723994278;i:6;i:1723994279;i:7;i:1723994279;i:8;i:1723994280;}s:62:\"43.157.251.231, 43.157.251.231, 43.157.251.231, 43.157.251.231\";a:1:{i:1;i:1725122358;}s:54:\"37.114.63.35, 37.114.63.35, 37.114.63.35, 37.114.63.35\";a:1:{i:0;i:1724001385;}s:58:\"13.38.103.110, 13.38.103.110, 13.38.103.110, 13.38.103.110\";a:2:{i:5;i:1724050042;i:6;i:1724050044;}s:54:\"13.74.113.25, 13.74.113.25, 13.74.113.25, 13.74.113.25\";a:1:{i:8;i:1725754293;}s:58:\"52.164.126.59, 52.164.126.59, 52.164.126.59, 52.164.126.59\";a:1:{i:14;i:1724073616;}s:58:\"40.77.167.243, 40.77.167.243, 40.77.167.243, 40.77.167.243\";a:1:{i:0;i:1724083355;}s:54:\"45.63.108.31, 45.63.108.31, 45.63.108.31, 45.63.108.31\";a:9:{i:0;i:1724106015;i:1;i:1724106015;i:2;i:1724106016;i:3;i:1724106016;i:4;i:1724106016;i:5;i:1724106016;i:6;i:1724106016;i:7;i:1724106016;i:8;i:1724106016;}s:54:\"107.189.3.97, 107.189.3.97, 107.189.3.97, 107.189.3.97\";a:1:{i:0;i:1724107392;}s:58:\"52.164.126.26, 52.164.126.26, 52.164.126.26, 52.164.126.26\";a:1:{i:14;i:1724113296;}s:62:\"172.71.103.202, 172.71.103.202, 172.71.103.202, 172.71.103.202\";a:1:{i:0;i:1724115557;}s:58:\"13.74.114.127, 13.74.114.127, 13.74.114.127, 13.74.114.127\";a:1:{i:13;i:1724152124;}s:54:\"8.137.80.243, 8.137.80.243, 8.137.80.243, 8.137.80.243\";a:1:{i:0;i:1724160859;}s:58:\"85.204.70.116, 85.204.70.116, 85.204.70.116, 85.204.70.116\";a:1:{i:0;i:1724175706;}s:54:\"66.94.99.229, 66.94.99.229, 66.94.99.229, 66.94.99.229\";a:2:{i:0;i:1724176132;i:1;i:1724176132;}s:62:\"95.217.165.152, 95.217.165.152, 95.217.165.152, 95.217.165.152\";a:7:{i:10;i:1724176137;i:11;i:1724176137;i:12;i:1724176138;i:13;i:1724176138;i:14;i:1724176139;i:15;i:1724176140;i:16;i:1724176141;}s:58:\"159.65.84.119, 159.65.84.119, 159.65.84.119, 159.65.84.119\";a:5:{i:5;i:1724176140;i:6;i:1724176141;i:7;i:1724176142;i:8;i:1724176143;i:9;i:1724176144;}s:54:\"41.89.92.166, 41.89.92.166, 41.89.92.166, 41.89.92.166\";a:3:{i:7;i:1724176159;i:8;i:1724176160;i:9;i:1724176162;}s:58:\"107.191.45.96, 107.191.45.96, 107.191.45.96, 107.191.45.96\";a:4:{i:0;i:1724185659;i:1;i:1724185659;i:2;i:1724185659;i:3;i:1724185659;}s:54:\"70.35.202.61, 70.35.202.61, 70.35.202.61, 70.35.202.61\";a:1:{i:45;i:1724213229;}s:62:\"103.200.23.149, 103.200.23.149, 103.200.23.149, 103.200.23.149\";a:1:{i:0;i:1724224430;}s:58:\"45.66.231.169, 45.66.231.169, 45.66.231.169, 45.66.231.169\";a:1:{i:0;i:1724247354;}s:54:\"73.66.133.56, 73.66.133.56, 73.66.133.56, 73.66.133.56\";a:1:{i:0;i:1724258593;}s:62:\"167.71.232.222, 167.71.232.222, 167.71.232.222, 167.71.232.222\";a:1:{i:0;i:1724260723;}s:62:\"155.138.255.55, 155.138.255.55, 155.138.255.55, 155.138.255.55\";a:9:{i:0;i:1724268535;i:1;i:1724268535;i:2;i:1724268535;i:3;i:1724268535;i:4;i:1724268535;i:5;i:1724268535;i:6;i:1724268535;i:7;i:1724268536;i:8;i:1724268536;}s:54:\"13.38.100.70, 13.38.100.70, 13.38.100.70, 13.38.100.70\";a:2:{i:5;i:1724276474;i:6;i:1724276477;}s:62:\"162.158.86.235, 162.158.86.235, 162.158.86.235, 162.158.86.235\";a:1:{i:0;i:1724289629;}s:58:\"103.24.219.86, 103.24.219.86, 103.24.219.86, 103.24.219.86\";a:1:{i:0;i:1724292888;}s:58:\"85.192.41.110, 85.192.41.110, 85.192.41.110, 85.192.41.110\";a:1:{i:0;i:1724295916;}s:62:\"52.167.144.136, 52.167.144.136, 52.167.144.136, 52.167.144.136\";a:1:{i:0;i:1724317021;}s:58:\"104.244.79.27, 104.244.79.27, 104.244.79.27, 104.244.79.27\";a:1:{i:1;i:1724419448;}s:66:\"144.126.135.200, 144.126.135.200, 144.126.135.200, 144.126.135.200\";a:1:{i:0;i:1724378200;}s:66:\"205.185.126.124, 205.185.126.124, 205.185.126.124, 205.185.126.124\";a:1:{i:0;i:1724398306;}s:58:\"95.179.146.22, 95.179.146.22, 95.179.146.22, 95.179.146.22\";a:8:{i:0;i:1724438277;i:1;i:1724438277;i:2;i:1724438278;i:3;i:1724438278;i:4;i:1724438279;i:5;i:1724438280;i:6;i:1724438280;i:7;i:1724438281;}s:54:\"35.229.67.34, 35.229.67.34, 35.229.67.34, 35.229.67.34\";a:1:{i:4;i:1724441774;}s:54:\"34.23.49.176, 34.23.49.176, 34.23.49.176, 34.23.49.176\";a:1:{i:1;i:1724458411;}s:62:\"162.158.110.77, 162.158.110.77, 162.158.110.77, 162.158.110.77\";a:1:{i:0;i:1724459924;}s:58:\"95.154.200.38, 95.154.200.38, 95.154.200.38, 95.154.200.38\";a:1:{i:0;i:1724477752;}s:62:\"119.42.145.178, 119.42.145.178, 119.42.145.178, 119.42.145.178\";a:2:{i:0;i:1724502942;i:1;i:1724502945;}s:58:\"159.65.180.20, 159.65.180.20, 159.65.180.20, 159.65.180.20\";a:9:{i:0;i:1724538260;i:1;i:1724538261;i:2;i:1724538261;i:3;i:1724538261;i:4;i:1724538261;i:5;i:1724538261;i:6;i:1724538262;i:7;i:1724538262;i:8;i:1724538262;}s:54:\"52.66.255.42, 52.66.255.42, 52.66.255.42, 52.66.255.42\";a:1:{i:0;i:1724551886;}s:62:\"35.181.168.112, 35.181.168.112, 35.181.168.112, 35.181.168.112\";a:2:{i:5;i:1724571031;i:6;i:1724571034;}s:58:\"52.169.67.157, 52.169.67.157, 52.169.67.157, 52.169.67.157\";a:7:{i:3;i:1724622757;i:4;i:1724622758;i:5;i:1724622758;i:6;i:1724622758;i:7;i:1724622759;i:8;i:1724622759;i:9;i:1724622759;}s:58:\"140.82.58.187, 140.82.58.187, 140.82.58.187, 140.82.58.187\";a:7:{i:0;i:1724626035;i:1;i:1724626035;i:2;i:1724626035;i:3;i:1724626036;i:4;i:1724626037;i:5;i:1724626037;i:6;i:1724626038;}s:58:\"172.70.90.176, 172.70.90.176, 172.70.90.176, 172.70.90.176\";a:1:{i:0;i:1724632493;}s:62:\"35.180.139.183, 35.180.139.183, 35.180.139.183, 35.180.139.183\";a:4:{i:10;i:1724670780;i:11;i:1724670781;i:12;i:1724670783;i:13;i:1724670784;}s:58:\"43.134.173.99, 43.134.173.99, 43.134.173.99, 43.134.173.99\";a:1:{i:1;i:1725032508;}s:62:\"159.223.53.199, 159.223.53.199, 159.223.53.199, 159.223.53.199\";a:1:{i:10;i:1724664035;}s:62:\"141.164.41.166, 141.164.41.166, 141.164.41.166, 141.164.41.166\";a:4:{i:5;i:1724703204;i:6;i:1724703205;i:7;i:1724703206;i:8;i:1724703208;}s:50:\"35.225.73.6, 35.225.73.6, 35.225.73.6, 35.225.73.6\";a:2:{i:0;i:1724737223;i:1;i:1724737225;}s:54:\"79.110.62.58, 79.110.62.58, 79.110.62.58, 79.110.62.58\";a:2:{i:160;i:1724755950;i:161;i:1724755954;}s:62:\"144.202.79.193, 144.202.79.193, 144.202.79.193, 144.202.79.193\";a:9:{i:0;i:1724795951;i:1;i:1724795951;i:2;i:1724795951;i:3;i:1724795951;i:4;i:1724795951;i:5;i:1724795951;i:6;i:1724795951;i:7;i:1724795951;i:8;i:1724795951;}s:66:\"162.158.154.229, 162.158.154.229, 162.158.154.229, 162.158.154.229\";a:1:{i:0;i:1724805590;}s:58:\"37.60.251.240, 37.60.251.240, 37.60.251.240, 37.60.251.240\";a:2:{i:8;i:1724857640;i:9;i:1724857643;}s:66:\"162.218.220.220, 162.218.220.220, 162.218.220.220, 162.218.220.220\";a:5:{i:0;i:1724860080;i:1;i:1724860081;i:2;i:1724860082;i:3;i:1724860084;i:4;i:1724860084;}s:50:\"13.39.19.34, 13.39.19.34, 13.39.19.34, 13.39.19.34\";a:1:{i:6;i:1724875360;}s:62:\"34.148.211.211, 34.148.211.211, 34.148.211.211, 34.148.211.211\";a:1:{i:4;i:1724889423;}s:58:\"195.3.223.154, 195.3.223.154, 195.3.223.154, 195.3.223.154\";a:1:{i:1;i:1725507011;}s:54:\"185.16.38.68, 185.16.38.68, 185.16.38.68, 185.16.38.68\";a:1:{i:1;i:1725578241;}s:62:\"15.236.144.177, 15.236.144.177, 15.236.144.177, 15.236.144.177\";a:1:{i:0;i:1724932556;}s:62:\"172.68.195.168, 172.68.195.168, 172.68.195.168, 172.68.195.168\";a:1:{i:0;i:1724977720;}s:58:\"52.164.217.30, 52.164.217.30, 52.164.217.30, 52.164.217.30\";a:7:{i:3;i:1724998872;i:4;i:1724998873;i:5;i:1724998873;i:6;i:1724998873;i:7;i:1724998873;i:8;i:1724998874;i:9;i:1724998874;}s:54:\"45.66.231.34, 45.66.231.34, 45.66.231.34, 45.66.231.34\";a:1:{i:0;i:1724999224;}s:58:\"52.164.240.11, 52.164.240.11, 52.164.240.11, 52.164.240.11\";a:1:{i:0;i:1725010495;}s:62:\"52.164.231.122, 52.164.231.122, 52.164.231.122, 52.164.231.122\";a:1:{i:10;i:1725663898;}s:58:\"52.169.127.62, 52.169.127.62, 52.169.127.62, 52.169.127.62\";a:1:{i:1;i:1725073188;}s:62:\"52.169.127.120, 52.169.127.120, 52.169.127.120, 52.169.127.120\";a:1:{i:0;i:1725074461;}s:58:\"91.92.244.250, 91.92.244.250, 91.92.244.250, 91.92.244.250\";a:1:{i:0;i:1725078504;}s:66:\"185.245.182.158, 185.245.182.158, 185.245.182.158, 185.245.182.158\";a:4:{i:0;i:1725094513;i:1;i:1725094514;i:2;i:1725094515;i:3;i:1725094515;}s:54:\"13.74.98.230, 13.74.98.230, 13.74.98.230, 13.74.98.230\";a:7:{i:3;i:1725108558;i:4;i:1725108559;i:5;i:1725108559;i:6;i:1725108559;i:7;i:1725108559;i:8;i:1725108560;i:9;i:1725108560;}s:62:\"52.138.204.139, 52.138.204.139, 52.138.204.139, 52.138.204.139\";a:2:{i:4;i:1725125189;i:5;i:1725125192;}s:50:\"13.79.91.69, 13.79.91.69, 13.79.91.69, 13.79.91.69\";a:1:{i:3;i:1725126119;}s:54:\"13.79.91.132, 13.79.91.132, 13.79.91.132, 13.79.91.132\";a:1:{i:0;i:1725129443;}s:54:\"13.74.98.172, 13.74.98.172, 13.74.98.172, 13.74.98.172\";a:1:{i:7;i:1725365972;}s:62:\"172.70.230.194, 172.70.230.194, 172.70.230.194, 172.70.230.194\";a:1:{i:0;i:1725151497;}s:50:\"13.74.255.0, 13.74.255.0, 13.74.255.0, 13.74.255.0\";a:1:{i:1;i:1725168203;}s:62:\"195.178.110.21, 195.178.110.21, 195.178.110.21, 195.178.110.21\";a:1:{i:1;i:1725540263;}s:66:\"216.173.119.185, 216.173.119.185, 216.173.119.185, 216.173.119.185\";a:1:{i:2;i:1725192347;}s:58:\"50.114.115.47, 50.114.115.47, 50.114.115.47, 50.114.115.47\";a:1:{i:0;i:1725196084;}s:58:\"103.31.83.123, 103.31.83.123, 103.31.83.123, 103.31.83.123\";a:1:{i:0;i:1725198794;}s:62:\"18.191.198.128, 18.191.198.128, 18.191.198.128, 18.191.198.128\";a:4:{i:5;i:1725201650;i:6;i:1725201651;i:7;i:1725201651;i:8;i:1725201653;}s:66:\"104.247.184.226, 104.247.184.226, 104.247.184.226, 104.247.184.226\";a:3:{i:1;i:1725214964;i:2;i:1725214965;i:3;i:1725214967;}s:58:\"120.55.95.157, 120.55.95.157, 120.55.95.157, 120.55.95.157\";a:1:{i:0;i:1725219200;}s:62:\"54.247.210.190, 54.247.210.190, 54.247.210.190, 54.247.210.190\";a:1:{i:0;i:1725229803;}s:62:\"52.164.231.119, 52.164.231.119, 52.164.231.119, 52.164.231.119\";a:7:{i:3;i:1725238541;i:4;i:1725238542;i:5;i:1725238542;i:6;i:1725238542;i:7;i:1725238543;i:8;i:1725238543;i:9;i:1725238543;}s:62:\"182.92.123.233, 182.92.123.233, 182.92.123.233, 182.92.123.233\";a:1:{i:3;i:1725243776;}s:58:\"94.156.67.199, 94.156.67.199, 94.156.67.199, 94.156.67.199\";a:4:{i:0;i:1725244311;i:1;i:1725244312;i:2;i:1725244313;i:3;i:1725244313;}s:62:\"162.158.86.189, 162.158.86.189, 162.158.86.189, 162.158.86.189\";a:1:{i:0;i:1725246080;}s:62:\"52.138.205.109, 52.138.205.109, 52.138.205.109, 52.138.205.109\";a:1:{i:7;i:1725255640;}s:58:\"13.79.229.201, 13.79.229.201, 13.79.229.201, 13.79.229.201\";a:1:{i:4;i:1725257415;}s:58:\"89.110.87.170, 89.110.87.170, 89.110.87.170, 89.110.87.170\";a:1:{i:0;i:1725270331;}s:62:\"15.237.118.182, 15.237.118.182, 15.237.118.182, 15.237.118.182\";a:2:{i:5;i:1725270789;i:6;i:1725270791;}s:54:\"13.38.76.122, 13.38.76.122, 13.38.76.122, 13.38.76.122\";a:5:{i:34;i:1725274627;i:35;i:1725274628;i:36;i:1725274629;i:37;i:1725274630;i:38;i:1725274631;}s:54:\"3.250.94.198, 3.250.94.198, 3.250.94.198, 3.250.94.198\";a:1:{i:0;i:1725279941;}s:62:\"158.247.227.26, 158.247.227.26, 158.247.227.26, 158.247.227.26\";a:6:{i:3;i:1725300066;i:4;i:1725300067;i:5;i:1725300068;i:6;i:1725300068;i:7;i:1725300069;i:8;i:1725300070;}s:62:\"86.105.212.160, 86.105.212.160, 86.105.212.160, 86.105.212.160\";a:1:{i:0;i:1725306641;}s:62:\"35.231.182.221, 35.231.182.221, 35.231.182.221, 35.231.182.221\";a:1:{i:1;i:1725321784;}s:54:\"34.139.46.52, 34.139.46.52, 34.139.46.52, 34.139.46.52\";a:1:{i:2;i:1725325706;}s:62:\"78.153.140.218, 78.153.140.218, 78.153.140.218, 78.153.140.218\";a:3:{i:11;i:1725368205;i:12;i:1725368207;i:13;i:1725368208;}s:58:\"94.156.66.165, 94.156.66.165, 94.156.66.165, 94.156.66.165\";a:4:{i:0;i:1725380047;i:1;i:1725380047;i:2;i:1725380049;i:3;i:1725380050;}s:62:\"207.246.64.114, 207.246.64.114, 207.246.64.114, 207.246.64.114\";a:9:{i:0;i:1725380827;i:1;i:1725380827;i:2;i:1725380827;i:3;i:1725380827;i:4;i:1725380827;i:5;i:1725380827;i:6;i:1725380827;i:7;i:1725380827;i:8;i:1725380827;}s:62:\"52.169.204.203, 52.169.204.203, 52.169.204.203, 52.169.204.203\";a:1:{i:1;i:1725406227;}s:58:\"52.169.199.15, 52.169.199.15, 52.169.199.15, 52.169.199.15\";a:1:{i:1;i:1725407310;}s:62:\"172.70.160.141, 172.70.160.141, 172.70.160.141, 172.70.160.141\";a:1:{i:0;i:1725409558;}s:58:\"3.249.138.188, 3.249.138.188, 3.249.138.188, 3.249.138.188\";a:1:{i:0;i:1725424038;}s:54:\"194.59.31.17, 194.59.31.17, 194.59.31.17, 194.59.31.17\";a:1:{i:0;i:1725430785;}s:58:\"119.42.145.98, 119.42.145.98, 119.42.145.98, 119.42.145.98\";a:1:{i:0;i:1725448503;}s:62:\"116.213.38.218, 116.213.38.218, 116.213.38.218, 116.213.38.218\";a:1:{i:0;i:1725449021;}s:58:\"35.187.91.193, 35.187.91.193, 35.187.91.193, 35.187.91.193\";a:1:{i:0;i:1725470756;}s:62:\"92.204.139.118, 92.204.139.118, 92.204.139.118, 92.204.139.118\";a:1:{i:0;i:1725482966;}s:62:\"159.223.81.147, 159.223.81.147, 159.223.81.147, 159.223.81.147\";a:1:{i:10;i:1725485961;}s:54:\"64.233.173.6, 64.233.173.6, 64.233.173.6, 64.233.173.6\";a:1:{i:0;i:1725539598;}s:62:\"107.151.182.54, 107.151.182.54, 107.151.182.54, 107.151.182.54\";a:1:{i:0;i:1725550729;}s:54:\"64.176.187.5, 64.176.187.5, 64.176.187.5, 64.176.187.5\";a:9:{i:0;i:1725562790;i:1;i:1725562790;i:2;i:1725562791;i:3;i:1725562791;i:4;i:1725562792;i:5;i:1725562792;i:6;i:1725562793;i:7;i:1725562793;i:8;i:1725562794;}s:66:\"162.158.159.222, 162.158.159.222, 162.158.159.222, 162.158.159.222\";a:1:{i:0;i:1725582736;}s:66:\"143.110.212.248, 143.110.212.248, 143.110.212.248, 143.110.212.248\";a:1:{i:0;i:1725583403;}s:58:\"3.218.143.214, 3.218.143.214, 3.218.143.214, 3.218.143.214\";a:1:{i:0;i:1725605116;}s:58:\"139.84.143.47, 139.84.143.47, 139.84.143.47, 139.84.143.47\";a:4:{i:5;i:1725655452;i:6;i:1725655454;i:7;i:1725655455;i:8;i:1725655456;}s:50:\"23.27.48.46, 23.27.48.46, 23.27.48.46, 23.27.48.46\";a:1:{i:0;i:1725681954;}s:54:\"45.15.159.12, 45.15.159.12, 45.15.159.12, 45.15.159.12\";a:3:{i:34;i:1725697327;i:35;i:1725697329;i:36;i:1725697331;}s:54:\"109.169.10.8, 109.169.10.8, 109.169.10.8, 109.169.10.8\";a:1:{i:0;i:1725710891;}s:54:\"40.69.22.175, 40.69.22.175, 40.69.22.175, 40.69.22.175\";a:1:{i:8;i:1725718043;}s:58:\"172.71.172.63, 172.71.172.63, 172.71.172.63, 172.71.172.63\";a:1:{i:0;i:1725755048;}s:58:\"91.92.251.218, 91.92.251.218, 91.92.251.218, 91.92.251.218\";a:1:{i:2;i:1725759811;}s:54:\"13.74.61.213, 13.74.61.213, 13.74.61.213, 13.74.61.213\";a:1:{i:8;i:1725767990;}s:58:\"91.92.255.145, 91.92.255.145, 91.92.255.145, 91.92.255.145\";a:1:{i:0;i:1725802001;}s:58:\"138.199.60.36, 138.199.60.36, 138.199.60.36, 138.199.60.36\";a:1:{i:10;i:1725818535;}s:58:\"40.113.88.139, 40.113.88.139, 40.113.88.139, 40.113.88.139\";a:1:{i:11;i:1725843249;}s:58:\"207.246.75.33, 207.246.75.33, 207.246.75.33, 207.246.75.33\";a:7:{i:0;i:1725831503;i:1;i:1725831503;i:2;i:1725831503;i:3;i:1725831503;i:4;i:1725831503;i:5;i:1725831503;i:6;i:1725831503;}s:58:\"52.169.220.93, 52.169.220.93, 52.169.220.93, 52.169.220.93\";a:1:{i:4;i:1725833490;}s:54:\"13.38.25.202, 13.38.25.202, 13.38.25.202, 13.38.25.202\";a:2:{i:5;i:1725856200;i:6;i:1725856203;}s:58:\"62.133.60.134, 62.133.60.134, 62.133.60.134, 62.133.60.134\";a:10:{i:12;i:1725868597;i:13;i:1725868597;i:14;i:1725868598;i:15;i:1725868599;i:16;i:1725868599;i:17;i:1725868599;i:18;i:1725868600;i:19;i:1725868600;i:20;i:1725868601;i:21;i:1725868601;}}','off'),(196707,'using_application_passwords','1','off'),(196715,'_site_transient_wp_plugin_dependencies_plugin_data','a:0:{}','off'),(196732,'ccj__activation_time','1768046497','auto'),(196733,'ccj__version','3.51.3','auto'),(196736,'custom-css-js-tree','a:1:{s:25:\"frontend-html-footer-both\";a:2:{i:0;s:9:\"3828.html\";i:1;s:9:\"3827.html\";}}','auto'),(201219,'rsssl_main_key','z78h2ry9SjarzBUyJUDL4GL3Qv8nwv7VHidsCzGw3mOnczN9s1GE5hvh74QEKjO7','off'),(201220,'rsssl_encryption_keys_set','1','off'),(201224,'rsssl_upgrade_le_key','1','off'),(204675,'rsssl_404_notice_shown','1','off'),(213804,'_elementor_global_css','a:6:{s:4:\"time\";i:1729092119;s:5:\"fonts\";a:0:{}s:5:\"icons\";a:0:{}s:20:\"dynamic_elements_ids\";a:0:{}s:6:\"status\";s:4:\"file\";i:0;b:0;}','auto'),(216726,'eael_show_reset_password_on_form_submit_726','1','off'),(217039,'elementor_checklist','{\"last_opened_timestamp\":-1,\"first_closed_checklist_in_editor\":false,\"is_popup_minimized\":false,\"steps\":{\"add_logo\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"set_fonts_and_colors\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"create_pages\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"setup_header\":{\"is_marked_completed\":false,\"is_immutable_completed\":false},\"assign_homepage\":{\"is_marked_completed\":false,\"is_immutable_completed\":false}},\"editor_visit_count\":0,\"should_open_in_editor\":false}','auto'),(217228,'eael_show_reset_password_on_form_submit_761','1','off'),(218310,'eael_show_reset_password_on_form_submit_933','1','off'),(218735,'eael_show_reset_password_on_form_submit_397','1','off'),(218846,'eael_show_reset_password_on_form_submit_380','1','off'),(219378,'rsssl_reset_fix','1','off'),(219738,'eael_show_reset_password_on_form_submit_897','1','off'),(220272,'eael_show_reset_password_on_form_submit_290','1','off'),(221886,'_transient_wp_styles_for_blocks','a:2:{s:4:\"hash\";s:32:\"4ad6ed4956ef7f814db220c22a123393\";s:6:\"blocks\";a:6:{s:11:\"core/button\";s:0:\"\";s:14:\"core/site-logo\";s:0:\"\";s:18:\"core/post-template\";s:120:\":where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}\";s:18:\"core/term-template\";s:120:\":where(.wp-block-term-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-term-template.is-layout-grid){gap: 1.25em;}\";s:12:\"core/columns\";s:102:\":where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}\";s:14:\"core/pullquote\";s:69:\":root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}\";}}','on'),(222438,'eael_show_reset_password_on_form_submit_773','1','off'),(222440,'eael_show_reset_password_on_form_submit_240','1','off'),(223551,'eael_show_reset_password_on_form_submit_841','1','off'),(223553,'eael_show_reset_password_on_form_submit_237','1','off'),(226572,'eael_show_reset_password_on_form_submit_202','1','off'),(226574,'eael_show_reset_password_on_form_submit_206','1','off'),(226576,'eael_show_reset_password_on_form_submit_370','1','off'),(228157,'eael_show_reset_password_on_form_submit_989','1','off'),(228158,'eael_show_reset_password_on_form_submit_352','1','off'),(229366,'eael_show_reset_password_on_form_submit_132','1','off'),(229367,'eael_show_reset_password_on_form_submit_662','1','off'),(230441,'eael_show_reset_password_on_form_submit_109','1','off'),(230443,'eael_show_reset_password_on_form_submit_522','1','off'),(232053,'eael_show_reset_password_on_form_submit_180','1','off'),(232258,'eael_show_reset_password_on_form_submit_405','1','off'),(232259,'eael_show_reset_password_on_form_submit_495','1','off'),(233669,'eael_show_reset_password_on_form_submit_542','1','off'),(233670,'eael_show_reset_password_on_form_submit_533','1','off'),(235771,'eael_show_reset_password_on_form_submit_906','1','off'),(235994,'eael_show_reset_password_on_form_submit_612','1','off'),(236825,'eael_show_reset_password_on_form_submit_630','1','off'),(236826,'eael_show_reset_password_on_form_submit_621','1','off'),(242314,'elementor_controls_usage','a:5:{s:11:\"single-post\";a:11:{s:7:\"heading\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:1;s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:6;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:6;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:6;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:2:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:6;}s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:6:\"layout\";a:3:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:16:\"content_position\";i:2;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:14:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:32:\"background_motion_fx_scale_range\";i:1;s:38:\"background_motion_fx_mouseTrack_effect\";i:1;s:21:\"background_video_link\";i:1;s:22:\"background_video_start\";i:1;s:20:\"background_video_end\";i:1;s:17:\"background_repeat\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;s:15:\"background_ypos\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:25:\"shape_divider_bottom_flip\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:18:\"theme-post-excerpt\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}s:7:\"content\";a:2:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}s:15:\"section_content\";a:1:{s:7:\"excerpt\";i:1;}}}}s:9:\"post-info\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:4:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;s:10:\"icon_align\";i:1;s:13:\"divider_style\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:5:{s:11:\"text_indent\";i:1;s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"_section_border\";a:1:{s:13:\"_border_color\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:18:\"theme-post-content\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}s:7:\"content\";a:1:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}}}s:13:\"share-buttons\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:23:\"section_buttons_content\";a:6:{s:13:\"share_buttons\";i:1;s:14:\"columns_mobile\";i:1;s:4:\"view\";i:1;s:9:\"alignment\";i:1;s:5:\"shape\";i:1;s:16:\"alignment_mobile\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_buttons_style\";a:5:{s:7:\"row_gap\";i:1;s:11:\"button_size\";i:1;s:9:\"icon_size\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}s:22:\"section_premium_cursor\";a:1:{s:13:\"pa_cursor_img\";i:1;}}}}s:5:\"posts\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"classic_columns\";i:1;s:22:\"classic_posts_per_page\";i:1;s:17:\"classic_thumbnail\";i:1;s:18:\"classic_item_ratio\";i:1;s:17:\"classic_title_tag\";i:1;s:20:\"classic_show_excerpt\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_show_read_more\";i:1;s:22:\"classic_columns_tablet\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:2:{s:29:\"classic_section_design_layout\";a:3:{s:18:\"classic_column_gap\";i:1;s:15:\"classic_row_gap\";i:1;s:22:\"classic_row_gap_mobile\";i:1;}s:30:\"classic_section_design_content\";a:6:{s:35:\"classic_title_typography_typography\";i:1;s:36:\"classic_title_typography_font_family\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:36:\"classic_title_typography_font_weight\";i:1;s:36:\"classic_title_typography_line_height\";i:1;s:39:\"classic_title_typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:18:\"wp-widget-archives\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}s:7:\"content\";a:1:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}}}}s:7:\"section\";a:8:{s:7:\"heading\";a:2:{s:5:\"count\";i:8;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:8;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:8;s:11:\"title_color\";i:8;s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:7;s:22:\"typography_font_weight\";i:8;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:8;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:4:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:3;s:10:\"input_size\";i:3;s:11:\"show_labels\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:3;s:13:\"email_subject\";i:3;s:10:\"email_from\";i:3;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:3;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:3;s:13:\"error_message\";i:3;s:15:\"invalid_message\";i:3;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:3;s:11:\"button_size\";i:2;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:2;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:2;s:22:\"webhooks_advanced_data\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:3;s:7:\"row_gap\";i:3;s:11:\"label_color\";i:2;s:10:\"html_color\";i:2;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:3;s:27:\"field_typography_typography\";i:3;s:28:\"field_typography_font_family\";i:3;s:26:\"field_typography_font_size\";i:3;s:28:\"field_typography_font_weight\";i:3;s:22:\"field_background_color\";i:3;s:18:\"field_border_color\";i:3;s:18:\"field_border_width\";i:3;}s:20:\"section_button_style\";a:6:{s:20:\"button_border_border\";i:3;s:19:\"button_border_width\";i:3;s:23:\"button_background_color\";i:3;s:32:\"previous_button_background_color\";i:3;s:19:\"button_text_padding\";i:2;s:20:\"button_border_radius\";i:1;}s:22:\"section_messages_style\";a:2:{s:21:\"success_message_color\";i:1;s:19:\"error_message_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:3;s:23:\"_element_vertical_align\";i:3;s:8:\"_padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:3;s:23:\"_transform_skew_popover\";i:3;s:23:\"_transform_skewX_effect\";i:3;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:4;s:10:\"text_color\";i:7;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:7;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:10;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:10;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:10;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:4:{s:6:\"height\";i:4;s:13:\"custom_height\";i:3;s:6:\"layout\";i:2;s:3:\"gap\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:4;s:18:\"eael_parallax_type\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:7:{s:21:\"background_background\";i:6;s:16:\"background_image\";i:4;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:37:\"background_motion_fx_translateY_speed\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:4;s:24:\"background_overlay_color\";i:4;s:26:\"background_overlay_opacity\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:7;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:6;s:6:\"margin\";i:3;}}}}s:11:\"testimonial\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:2;s:17:\"testimonial_image\";i:2;s:16:\"testimonial_name\";i:2;s:15:\"testimonial_job\";i:2;s:21:\"testimonial_alignment\";i:2;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:2;s:30:\"content_typography_font_family\";i:2;s:28:\"content_typography_font_size\";i:2;s:30:\"content_typography_font_weight\";i:2;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:2;s:26:\"job_typography_font_family\";i:2;s:26:\"job_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:3;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"link\";i:2;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:22:\"typography_font_weight\";i:2;s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}}}}}s:7:\"wp-page\";a:12:{s:7:\"heading\";a:2:{s:5:\"count\";i:30;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:30;s:11:\"header_size\";i:6;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:5:\"align\";i:12;s:11:\"title_color\";i:30;s:21:\"typography_typography\";i:30;s:22:\"typography_font_family\";i:30;s:20:\"typography_font_size\";i:27;s:22:\"typography_font_weight\";i:30;s:28:\"text_stroke_text_stroke_type\";i:8;s:23:\"text_stroke_text_stroke\";i:5;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:30;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:30;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:32;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:32;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:9;s:10:\"text_color\";i:19;s:21:\"typography_typography\";i:27;s:22:\"typography_font_family\";i:27;s:20:\"typography_font_size\";i:27;s:22:\"typography_font_weight\";i:27;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:32;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:32;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:15;s:8:\"_padding\";i:5;}}}}s:7:\"divider\";a:2:{s:5:\"count\";i:9;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:9;s:5:\"align\";i:3;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:3;s:6:\"weight\";i:9;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:9;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:9;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:59;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:59;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:59;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:59;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:8;s:7:\"padding\";i:11;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:4;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:35;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:14:\"section_layout\";a:3:{s:6:\"height\";i:5;s:13:\"custom_height\";i:3;s:6:\"layout\";i:4;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:2;s:18:\"eael_parallax_type\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:18;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:19;s:16:\"background_image\";i:5;s:19:\"background_position\";i:2;s:17:\"background_repeat\";i:2;s:15:\"background_size\";i:2;s:16:\"background_color\";i:13;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:5;s:24:\"background_overlay_color\";i:5;s:26:\"background_overlay_opacity\";i:3;}}s:8:\"advanced\";a:4:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:35;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:35;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:30;s:6:\"margin\";i:8;}s:19:\"_section_responsive\";a:4:{s:20:\"reverse_order_mobile\";i:1;s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:4:\"form\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:2;s:11:\"form_fields\";i:2;s:10:\"input_size\";i:2;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:2;s:13:\"email_subject\";i:2;s:10:\"email_from\";i:2;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:2;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:2;s:13:\"error_message\";i:2;s:15:\"invalid_message\";i:2;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:2;s:11:\"button_size\";i:2;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:2;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:2;s:22:\"webhooks_advanced_data\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:2;s:7:\"row_gap\";i:2;s:11:\"label_color\";i:2;s:10:\"html_color\";i:2;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:2;s:27:\"field_typography_typography\";i:2;s:28:\"field_typography_font_family\";i:2;s:26:\"field_typography_font_size\";i:2;s:28:\"field_typography_font_weight\";i:2;s:22:\"field_background_color\";i:2;s:18:\"field_border_color\";i:2;s:18:\"field_border_width\";i:2;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:2;s:19:\"button_border_width\";i:2;s:23:\"button_background_color\";i:2;s:32:\"previous_button_background_color\";i:2;s:19:\"button_text_padding\";i:2;}s:22:\"section_messages_style\";a:2:{s:21:\"success_message_color\";i:2;s:19:\"error_message_color\";i:2;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:2;s:23:\"_element_vertical_align\";i:2;s:8:\"_padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:2;s:23:\"_transform_skew_popover\";i:2;s:23:\"_transform_skewX_effect\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:5:\"image\";a:2:{s:5:\"count\";i:12;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:12;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:12;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:12;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_radius\";i:1;s:5:\"space\";i:2;s:6:\"height\";i:2;s:5:\"align\";i:1;}}}}s:6:\"button\";a:2:{s:5:\"count\";i:7;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:7;s:4:\"size\";i:6;s:4:\"link\";i:7;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:17:\"button_text_color\";i:7;s:16:\"background_color\";i:7;s:13:\"border_border\";i:2;s:12:\"border_color\";i:2;s:5:\"align\";i:6;s:21:\"typography_typography\";i:6;s:22:\"typography_font_family\";i:6;s:22:\"typography_font_weight\";i:6;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;s:34:\"button_background_hover_background\";i:2;s:31:\"button_background_hover_color_b\";i:2;s:38:\"button_background_hover_gradient_angle\";i:2;s:12:\"align_mobile\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:7;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:7;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:5:\"video\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:2:{s:10:\"video_type\";i:2;s:9:\"vimeo_url\";i:2;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:2;s:13:\"image_overlay\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:11:\"testimonial\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:4;s:17:\"testimonial_image\";i:4;s:16:\"testimonial_name\";i:4;s:15:\"testimonial_job\";i:4;s:21:\"testimonial_alignment\";i:4;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:4;s:30:\"content_typography_font_family\";i:4;s:28:\"content_typography_font_size\";i:4;s:30:\"content_typography_font_weight\";i:4;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:4;s:26:\"job_typography_font_family\";i:4;s:26:\"job_typography_font_weight\";i:4;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:9:\"icon-list\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:14:\"media-carousel\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}s:26:\"section_additional_options\";a:2:{s:11:\"show_arrows\";i:1;s:10:\"pagination\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_navigation\";a:1:{s:11:\"arrows_size\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}s:6:\"footer\";a:5:{s:5:\"image\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:5;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:5;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:3:{s:4:\"menu\";i:1;s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:7:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:15:\"color_menu_item\";i:1;s:16:\"nav_menu_divider\";i:1;s:22:\"nav_menu_divider_color\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}s:6:\"header\";a:4:{s:5:\"image\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:7:\"link_to\";i:2;s:4:\"link\";i:2;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:2;s:5:\"width\";i:2;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:6:\"column\";a:2:{s:5:\"count\";i:4;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:8:\"nav-menu\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:9:{s:11:\"align_items\";i:2;s:14:\"animation_line\";i:2;s:14:\"animation_text\";i:2;s:12:\"toggle_align\";i:1;s:6:\"layout\";i:2;s:7:\"pointer\";i:2;s:10:\"full_width\";i:2;s:10:\"text_align\";i:2;s:4:\"menu\";i:2;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:6:{s:15:\"color_menu_item\";i:2;s:21:\"color_menu_item_hover\";i:2;s:29:\"pointer_color_menu_item_hover\";i:2;s:26:\"menu_typography_typography\";i:2;s:25:\"menu_typography_font_size\";i:2;s:13:\"pointer_width\";i:2;}s:22:\"section_style_dropdown\";a:9:{s:19:\"color_dropdown_item\";i:2;s:30:\"background_color_dropdown_item\";i:2;s:25:\"color_dropdown_item_hover\";i:2;s:36:\"background_color_dropdown_item_hover\";i:2;s:30:\"dropdown_typography_typography\";i:2;s:29:\"dropdown_typography_font_size\";i:2;s:30:\"padding_vertical_dropdown_item\";i:2;s:21:\"dropdown_top_distance\";i:2;s:22:\"dropdown_divider_color\";i:2;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:2;s:18:\"toggle_color_hover\";i:2;s:11:\"toggle_size\";i:2;s:19:\"toggle_border_width\";i:2;s:20:\"toggle_border_radius\";i:2;s:23:\"toggle_background_color\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:7:\"section\";a:2:{s:5:\"count\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:2;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:2;s:6:\"layout\";i:2;s:6:\"height\";i:2;s:8:\"html_tag\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}}}','off'),(242315,'elementor_1_elementor_updater_batch_a9508dd02781b5ce5cb4c6560d99','a:1:{i:0;a:1:{s:8:\"callback\";a:2:{i:0;s:31:\"Elementor\\Core\\Upgrade\\Upgrades\";i:1;s:16:\"_on_each_version\";}}}','off'),(242938,'elementor_landing_pages_activation','0','auto'),(255303,'eael_show_reset_password_on_form_submit_226','1','off'),(259191,'wpseo_llmstxt','a:7:{s:23:\"llms_txt_selection_mode\";s:4:\"auto\";s:13:\"about_us_page\";i:0;s:12:\"contact_page\";i:0;s:10:\"terms_page\";i:0;s:19:\"privacy_policy_page\";i:0;s:9:\"shop_page\";i:0;s:20:\"other_included_pages\";a:0:{}}','auto'),(259827,'_elementor_element_cache_unique_id','4a229f647d9ec2f178c892738ab6158e','auto'),(262025,'_transient_jetpack_autoloader_plugin_paths','a:1:{i:0;s:40:\"{{WP_PLUGIN_DIR}}/really-simple-ssl/core\";}','on'),(262035,'ccj-custom_codes_for_block_editor','1','auto'),(263414,'eael_show_reset_password_on_form_submit_1','1','off'),(264185,'eael_show_reset_password_on_form_submit_167','1','off'),(264370,'eael_show_reset_password_on_form_submit_746','1','off'),(264527,'_transient_wp_core_block_css_files','a:2:{s:7:\"version\";s:5:\"6.9.1\";s:5:\"files\";a:584:{i:0;s:31:\"accordion-heading/style-rtl.css\";i:1;s:35:\"accordion-heading/style-rtl.min.css\";i:2;s:27:\"accordion-heading/style.css\";i:3;s:31:\"accordion-heading/style.min.css\";i:4;s:28:\"accordion-item/style-rtl.css\";i:5;s:32:\"accordion-item/style-rtl.min.css\";i:6;s:24:\"accordion-item/style.css\";i:7;s:28:\"accordion-item/style.min.css\";i:8;s:29:\"accordion-panel/style-rtl.css\";i:9;s:33:\"accordion-panel/style-rtl.min.css\";i:10;s:25:\"accordion-panel/style.css\";i:11;s:29:\"accordion-panel/style.min.css\";i:12;s:23:\"accordion/style-rtl.css\";i:13;s:27:\"accordion/style-rtl.min.css\";i:14;s:19:\"accordion/style.css\";i:15;s:23:\"accordion/style.min.css\";i:16;s:23:\"archives/editor-rtl.css\";i:17;s:27:\"archives/editor-rtl.min.css\";i:18;s:19:\"archives/editor.css\";i:19;s:23:\"archives/editor.min.css\";i:20;s:22:\"archives/style-rtl.css\";i:21;s:26:\"archives/style-rtl.min.css\";i:22;s:18:\"archives/style.css\";i:23;s:22:\"archives/style.min.css\";i:24;s:20:\"audio/editor-rtl.css\";i:25;s:24:\"audio/editor-rtl.min.css\";i:26;s:16:\"audio/editor.css\";i:27;s:20:\"audio/editor.min.css\";i:28;s:19:\"audio/style-rtl.css\";i:29;s:23:\"audio/style-rtl.min.css\";i:30;s:15:\"audio/style.css\";i:31;s:19:\"audio/style.min.css\";i:32;s:19:\"audio/theme-rtl.css\";i:33;s:23:\"audio/theme-rtl.min.css\";i:34;s:15:\"audio/theme.css\";i:35;s:19:\"audio/theme.min.css\";i:36;s:21:\"avatar/editor-rtl.css\";i:37;s:25:\"avatar/editor-rtl.min.css\";i:38;s:17:\"avatar/editor.css\";i:39;s:21:\"avatar/editor.min.css\";i:40;s:20:\"avatar/style-rtl.css\";i:41;s:24:\"avatar/style-rtl.min.css\";i:42;s:16:\"avatar/style.css\";i:43;s:20:\"avatar/style.min.css\";i:44;s:21:\"button/editor-rtl.css\";i:45;s:25:\"button/editor-rtl.min.css\";i:46;s:17:\"button/editor.css\";i:47;s:21:\"button/editor.min.css\";i:48;s:20:\"button/style-rtl.css\";i:49;s:24:\"button/style-rtl.min.css\";i:50;s:16:\"button/style.css\";i:51;s:20:\"button/style.min.css\";i:52;s:22:\"buttons/editor-rtl.css\";i:53;s:26:\"buttons/editor-rtl.min.css\";i:54;s:18:\"buttons/editor.css\";i:55;s:22:\"buttons/editor.min.css\";i:56;s:21:\"buttons/style-rtl.css\";i:57;s:25:\"buttons/style-rtl.min.css\";i:58;s:17:\"buttons/style.css\";i:59;s:21:\"buttons/style.min.css\";i:60;s:22:\"calendar/style-rtl.css\";i:61;s:26:\"calendar/style-rtl.min.css\";i:62;s:18:\"calendar/style.css\";i:63;s:22:\"calendar/style.min.css\";i:64;s:25:\"categories/editor-rtl.css\";i:65;s:29:\"categories/editor-rtl.min.css\";i:66;s:21:\"categories/editor.css\";i:67;s:25:\"categories/editor.min.css\";i:68;s:24:\"categories/style-rtl.css\";i:69;s:28:\"categories/style-rtl.min.css\";i:70;s:20:\"categories/style.css\";i:71;s:24:\"categories/style.min.css\";i:72;s:19:\"code/editor-rtl.css\";i:73;s:23:\"code/editor-rtl.min.css\";i:74;s:15:\"code/editor.css\";i:75;s:19:\"code/editor.min.css\";i:76;s:18:\"code/style-rtl.css\";i:77;s:22:\"code/style-rtl.min.css\";i:78;s:14:\"code/style.css\";i:79;s:18:\"code/style.min.css\";i:80;s:18:\"code/theme-rtl.css\";i:81;s:22:\"code/theme-rtl.min.css\";i:82;s:14:\"code/theme.css\";i:83;s:18:\"code/theme.min.css\";i:84;s:22:\"columns/editor-rtl.css\";i:85;s:26:\"columns/editor-rtl.min.css\";i:86;s:18:\"columns/editor.css\";i:87;s:22:\"columns/editor.min.css\";i:88;s:21:\"columns/style-rtl.css\";i:89;s:25:\"columns/style-rtl.min.css\";i:90;s:17:\"columns/style.css\";i:91;s:21:\"columns/style.min.css\";i:92;s:33:\"comment-author-name/style-rtl.css\";i:93;s:37:\"comment-author-name/style-rtl.min.css\";i:94;s:29:\"comment-author-name/style.css\";i:95;s:33:\"comment-author-name/style.min.css\";i:96;s:29:\"comment-content/style-rtl.css\";i:97;s:33:\"comment-content/style-rtl.min.css\";i:98;s:25:\"comment-content/style.css\";i:99;s:29:\"comment-content/style.min.css\";i:100;s:26:\"comment-date/style-rtl.css\";i:101;s:30:\"comment-date/style-rtl.min.css\";i:102;s:22:\"comment-date/style.css\";i:103;s:26:\"comment-date/style.min.css\";i:104;s:31:\"comment-edit-link/style-rtl.css\";i:105;s:35:\"comment-edit-link/style-rtl.min.css\";i:106;s:27:\"comment-edit-link/style.css\";i:107;s:31:\"comment-edit-link/style.min.css\";i:108;s:32:\"comment-reply-link/style-rtl.css\";i:109;s:36:\"comment-reply-link/style-rtl.min.css\";i:110;s:28:\"comment-reply-link/style.css\";i:111;s:32:\"comment-reply-link/style.min.css\";i:112;s:30:\"comment-template/style-rtl.css\";i:113;s:34:\"comment-template/style-rtl.min.css\";i:114;s:26:\"comment-template/style.css\";i:115;s:30:\"comment-template/style.min.css\";i:116;s:42:\"comments-pagination-numbers/editor-rtl.css\";i:117;s:46:\"comments-pagination-numbers/editor-rtl.min.css\";i:118;s:38:\"comments-pagination-numbers/editor.css\";i:119;s:42:\"comments-pagination-numbers/editor.min.css\";i:120;s:34:\"comments-pagination/editor-rtl.css\";i:121;s:38:\"comments-pagination/editor-rtl.min.css\";i:122;s:30:\"comments-pagination/editor.css\";i:123;s:34:\"comments-pagination/editor.min.css\";i:124;s:33:\"comments-pagination/style-rtl.css\";i:125;s:37:\"comments-pagination/style-rtl.min.css\";i:126;s:29:\"comments-pagination/style.css\";i:127;s:33:\"comments-pagination/style.min.css\";i:128;s:29:\"comments-title/editor-rtl.css\";i:129;s:33:\"comments-title/editor-rtl.min.css\";i:130;s:25:\"comments-title/editor.css\";i:131;s:29:\"comments-title/editor.min.css\";i:132;s:23:\"comments/editor-rtl.css\";i:133;s:27:\"comments/editor-rtl.min.css\";i:134;s:19:\"comments/editor.css\";i:135;s:23:\"comments/editor.min.css\";i:136;s:22:\"comments/style-rtl.css\";i:137;s:26:\"comments/style-rtl.min.css\";i:138;s:18:\"comments/style.css\";i:139;s:22:\"comments/style.min.css\";i:140;s:20:\"cover/editor-rtl.css\";i:141;s:24:\"cover/editor-rtl.min.css\";i:142;s:16:\"cover/editor.css\";i:143;s:20:\"cover/editor.min.css\";i:144;s:19:\"cover/style-rtl.css\";i:145;s:23:\"cover/style-rtl.min.css\";i:146;s:15:\"cover/style.css\";i:147;s:19:\"cover/style.min.css\";i:148;s:22:\"details/editor-rtl.css\";i:149;s:26:\"details/editor-rtl.min.css\";i:150;s:18:\"details/editor.css\";i:151;s:22:\"details/editor.min.css\";i:152;s:21:\"details/style-rtl.css\";i:153;s:25:\"details/style-rtl.min.css\";i:154;s:17:\"details/style.css\";i:155;s:21:\"details/style.min.css\";i:156;s:20:\"embed/editor-rtl.css\";i:157;s:24:\"embed/editor-rtl.min.css\";i:158;s:16:\"embed/editor.css\";i:159;s:20:\"embed/editor.min.css\";i:160;s:19:\"embed/style-rtl.css\";i:161;s:23:\"embed/style-rtl.min.css\";i:162;s:15:\"embed/style.css\";i:163;s:19:\"embed/style.min.css\";i:164;s:19:\"embed/theme-rtl.css\";i:165;s:23:\"embed/theme-rtl.min.css\";i:166;s:15:\"embed/theme.css\";i:167;s:19:\"embed/theme.min.css\";i:168;s:19:\"file/editor-rtl.css\";i:169;s:23:\"file/editor-rtl.min.css\";i:170;s:15:\"file/editor.css\";i:171;s:19:\"file/editor.min.css\";i:172;s:18:\"file/style-rtl.css\";i:173;s:22:\"file/style-rtl.min.css\";i:174;s:14:\"file/style.css\";i:175;s:18:\"file/style.min.css\";i:176;s:23:\"footnotes/style-rtl.css\";i:177;s:27:\"footnotes/style-rtl.min.css\";i:178;s:19:\"footnotes/style.css\";i:179;s:23:\"footnotes/style.min.css\";i:180;s:23:\"freeform/editor-rtl.css\";i:181;s:27:\"freeform/editor-rtl.min.css\";i:182;s:19:\"freeform/editor.css\";i:183;s:23:\"freeform/editor.min.css\";i:184;s:22:\"gallery/editor-rtl.css\";i:185;s:26:\"gallery/editor-rtl.min.css\";i:186;s:18:\"gallery/editor.css\";i:187;s:22:\"gallery/editor.min.css\";i:188;s:21:\"gallery/style-rtl.css\";i:189;s:25:\"gallery/style-rtl.min.css\";i:190;s:17:\"gallery/style.css\";i:191;s:21:\"gallery/style.min.css\";i:192;s:21:\"gallery/theme-rtl.css\";i:193;s:25:\"gallery/theme-rtl.min.css\";i:194;s:17:\"gallery/theme.css\";i:195;s:21:\"gallery/theme.min.css\";i:196;s:20:\"group/editor-rtl.css\";i:197;s:24:\"group/editor-rtl.min.css\";i:198;s:16:\"group/editor.css\";i:199;s:20:\"group/editor.min.css\";i:200;s:19:\"group/style-rtl.css\";i:201;s:23:\"group/style-rtl.min.css\";i:202;s:15:\"group/style.css\";i:203;s:19:\"group/style.min.css\";i:204;s:19:\"group/theme-rtl.css\";i:205;s:23:\"group/theme-rtl.min.css\";i:206;s:15:\"group/theme.css\";i:207;s:19:\"group/theme.min.css\";i:208;s:21:\"heading/style-rtl.css\";i:209;s:25:\"heading/style-rtl.min.css\";i:210;s:17:\"heading/style.css\";i:211;s:21:\"heading/style.min.css\";i:212;s:19:\"html/editor-rtl.css\";i:213;s:23:\"html/editor-rtl.min.css\";i:214;s:15:\"html/editor.css\";i:215;s:19:\"html/editor.min.css\";i:216;s:20:\"image/editor-rtl.css\";i:217;s:24:\"image/editor-rtl.min.css\";i:218;s:16:\"image/editor.css\";i:219;s:20:\"image/editor.min.css\";i:220;s:19:\"image/style-rtl.css\";i:221;s:23:\"image/style-rtl.min.css\";i:222;s:15:\"image/style.css\";i:223;s:19:\"image/style.min.css\";i:224;s:19:\"image/theme-rtl.css\";i:225;s:23:\"image/theme-rtl.min.css\";i:226;s:15:\"image/theme.css\";i:227;s:19:\"image/theme.min.css\";i:228;s:29:\"latest-comments/style-rtl.css\";i:229;s:33:\"latest-comments/style-rtl.min.css\";i:230;s:25:\"latest-comments/style.css\";i:231;s:29:\"latest-comments/style.min.css\";i:232;s:27:\"latest-posts/editor-rtl.css\";i:233;s:31:\"latest-posts/editor-rtl.min.css\";i:234;s:23:\"latest-posts/editor.css\";i:235;s:27:\"latest-posts/editor.min.css\";i:236;s:26:\"latest-posts/style-rtl.css\";i:237;s:30:\"latest-posts/style-rtl.min.css\";i:238;s:22:\"latest-posts/style.css\";i:239;s:26:\"latest-posts/style.min.css\";i:240;s:18:\"list/style-rtl.css\";i:241;s:22:\"list/style-rtl.min.css\";i:242;s:14:\"list/style.css\";i:243;s:18:\"list/style.min.css\";i:244;s:22:\"loginout/style-rtl.css\";i:245;s:26:\"loginout/style-rtl.min.css\";i:246;s:18:\"loginout/style.css\";i:247;s:22:\"loginout/style.min.css\";i:248;s:19:\"math/editor-rtl.css\";i:249;s:23:\"math/editor-rtl.min.css\";i:250;s:15:\"math/editor.css\";i:251;s:19:\"math/editor.min.css\";i:252;s:18:\"math/style-rtl.css\";i:253;s:22:\"math/style-rtl.min.css\";i:254;s:14:\"math/style.css\";i:255;s:18:\"math/style.min.css\";i:256;s:25:\"media-text/editor-rtl.css\";i:257;s:29:\"media-text/editor-rtl.min.css\";i:258;s:21:\"media-text/editor.css\";i:259;s:25:\"media-text/editor.min.css\";i:260;s:24:\"media-text/style-rtl.css\";i:261;s:28:\"media-text/style-rtl.min.css\";i:262;s:20:\"media-text/style.css\";i:263;s:24:\"media-text/style.min.css\";i:264;s:19:\"more/editor-rtl.css\";i:265;s:23:\"more/editor-rtl.min.css\";i:266;s:15:\"more/editor.css\";i:267;s:19:\"more/editor.min.css\";i:268;s:30:\"navigation-link/editor-rtl.css\";i:269;s:34:\"navigation-link/editor-rtl.min.css\";i:270;s:26:\"navigation-link/editor.css\";i:271;s:30:\"navigation-link/editor.min.css\";i:272;s:29:\"navigation-link/style-rtl.css\";i:273;s:33:\"navigation-link/style-rtl.min.css\";i:274;s:25:\"navigation-link/style.css\";i:275;s:29:\"navigation-link/style.min.css\";i:276;s:33:\"navigation-submenu/editor-rtl.css\";i:277;s:37:\"navigation-submenu/editor-rtl.min.css\";i:278;s:29:\"navigation-submenu/editor.css\";i:279;s:33:\"navigation-submenu/editor.min.css\";i:280;s:25:\"navigation/editor-rtl.css\";i:281;s:29:\"navigation/editor-rtl.min.css\";i:282;s:21:\"navigation/editor.css\";i:283;s:25:\"navigation/editor.min.css\";i:284;s:24:\"navigation/style-rtl.css\";i:285;s:28:\"navigation/style-rtl.min.css\";i:286;s:20:\"navigation/style.css\";i:287;s:24:\"navigation/style.min.css\";i:288;s:23:\"nextpage/editor-rtl.css\";i:289;s:27:\"nextpage/editor-rtl.min.css\";i:290;s:19:\"nextpage/editor.css\";i:291;s:23:\"nextpage/editor.min.css\";i:292;s:24:\"page-list/editor-rtl.css\";i:293;s:28:\"page-list/editor-rtl.min.css\";i:294;s:20:\"page-list/editor.css\";i:295;s:24:\"page-list/editor.min.css\";i:296;s:23:\"page-list/style-rtl.css\";i:297;s:27:\"page-list/style-rtl.min.css\";i:298;s:19:\"page-list/style.css\";i:299;s:23:\"page-list/style.min.css\";i:300;s:24:\"paragraph/editor-rtl.css\";i:301;s:28:\"paragraph/editor-rtl.min.css\";i:302;s:20:\"paragraph/editor.css\";i:303;s:24:\"paragraph/editor.min.css\";i:304;s:23:\"paragraph/style-rtl.css\";i:305;s:27:\"paragraph/style-rtl.min.css\";i:306;s:19:\"paragraph/style.css\";i:307;s:23:\"paragraph/style.min.css\";i:308;s:35:\"post-author-biography/style-rtl.css\";i:309;s:39:\"post-author-biography/style-rtl.min.css\";i:310;s:31:\"post-author-biography/style.css\";i:311;s:35:\"post-author-biography/style.min.css\";i:312;s:30:\"post-author-name/style-rtl.css\";i:313;s:34:\"post-author-name/style-rtl.min.css\";i:314;s:26:\"post-author-name/style.css\";i:315;s:30:\"post-author-name/style.min.css\";i:316;s:25:\"post-author/style-rtl.css\";i:317;s:29:\"post-author/style-rtl.min.css\";i:318;s:21:\"post-author/style.css\";i:319;s:25:\"post-author/style.min.css\";i:320;s:33:\"post-comments-count/style-rtl.css\";i:321;s:37:\"post-comments-count/style-rtl.min.css\";i:322;s:29:\"post-comments-count/style.css\";i:323;s:33:\"post-comments-count/style.min.css\";i:324;s:33:\"post-comments-form/editor-rtl.css\";i:325;s:37:\"post-comments-form/editor-rtl.min.css\";i:326;s:29:\"post-comments-form/editor.css\";i:327;s:33:\"post-comments-form/editor.min.css\";i:328;s:32:\"post-comments-form/style-rtl.css\";i:329;s:36:\"post-comments-form/style-rtl.min.css\";i:330;s:28:\"post-comments-form/style.css\";i:331;s:32:\"post-comments-form/style.min.css\";i:332;s:32:\"post-comments-link/style-rtl.css\";i:333;s:36:\"post-comments-link/style-rtl.min.css\";i:334;s:28:\"post-comments-link/style.css\";i:335;s:32:\"post-comments-link/style.min.css\";i:336;s:26:\"post-content/style-rtl.css\";i:337;s:30:\"post-content/style-rtl.min.css\";i:338;s:22:\"post-content/style.css\";i:339;s:26:\"post-content/style.min.css\";i:340;s:23:\"post-date/style-rtl.css\";i:341;s:27:\"post-date/style-rtl.min.css\";i:342;s:19:\"post-date/style.css\";i:343;s:23:\"post-date/style.min.css\";i:344;s:27:\"post-excerpt/editor-rtl.css\";i:345;s:31:\"post-excerpt/editor-rtl.min.css\";i:346;s:23:\"post-excerpt/editor.css\";i:347;s:27:\"post-excerpt/editor.min.css\";i:348;s:26:\"post-excerpt/style-rtl.css\";i:349;s:30:\"post-excerpt/style-rtl.min.css\";i:350;s:22:\"post-excerpt/style.css\";i:351;s:26:\"post-excerpt/style.min.css\";i:352;s:34:\"post-featured-image/editor-rtl.css\";i:353;s:38:\"post-featured-image/editor-rtl.min.css\";i:354;s:30:\"post-featured-image/editor.css\";i:355;s:34:\"post-featured-image/editor.min.css\";i:356;s:33:\"post-featured-image/style-rtl.css\";i:357;s:37:\"post-featured-image/style-rtl.min.css\";i:358;s:29:\"post-featured-image/style.css\";i:359;s:33:\"post-featured-image/style.min.css\";i:360;s:34:\"post-navigation-link/style-rtl.css\";i:361;s:38:\"post-navigation-link/style-rtl.min.css\";i:362;s:30:\"post-navigation-link/style.css\";i:363;s:34:\"post-navigation-link/style.min.css\";i:364;s:27:\"post-template/style-rtl.css\";i:365;s:31:\"post-template/style-rtl.min.css\";i:366;s:23:\"post-template/style.css\";i:367;s:27:\"post-template/style.min.css\";i:368;s:24:\"post-terms/style-rtl.css\";i:369;s:28:\"post-terms/style-rtl.min.css\";i:370;s:20:\"post-terms/style.css\";i:371;s:24:\"post-terms/style.min.css\";i:372;s:31:\"post-time-to-read/style-rtl.css\";i:373;s:35:\"post-time-to-read/style-rtl.min.css\";i:374;s:27:\"post-time-to-read/style.css\";i:375;s:31:\"post-time-to-read/style.min.css\";i:376;s:24:\"post-title/style-rtl.css\";i:377;s:28:\"post-title/style-rtl.min.css\";i:378;s:20:\"post-title/style.css\";i:379;s:24:\"post-title/style.min.css\";i:380;s:26:\"preformatted/style-rtl.css\";i:381;s:30:\"preformatted/style-rtl.min.css\";i:382;s:22:\"preformatted/style.css\";i:383;s:26:\"preformatted/style.min.css\";i:384;s:24:\"pullquote/editor-rtl.css\";i:385;s:28:\"pullquote/editor-rtl.min.css\";i:386;s:20:\"pullquote/editor.css\";i:387;s:24:\"pullquote/editor.min.css\";i:388;s:23:\"pullquote/style-rtl.css\";i:389;s:27:\"pullquote/style-rtl.min.css\";i:390;s:19:\"pullquote/style.css\";i:391;s:23:\"pullquote/style.min.css\";i:392;s:23:\"pullquote/theme-rtl.css\";i:393;s:27:\"pullquote/theme-rtl.min.css\";i:394;s:19:\"pullquote/theme.css\";i:395;s:23:\"pullquote/theme.min.css\";i:396;s:39:\"query-pagination-numbers/editor-rtl.css\";i:397;s:43:\"query-pagination-numbers/editor-rtl.min.css\";i:398;s:35:\"query-pagination-numbers/editor.css\";i:399;s:39:\"query-pagination-numbers/editor.min.css\";i:400;s:31:\"query-pagination/editor-rtl.css\";i:401;s:35:\"query-pagination/editor-rtl.min.css\";i:402;s:27:\"query-pagination/editor.css\";i:403;s:31:\"query-pagination/editor.min.css\";i:404;s:30:\"query-pagination/style-rtl.css\";i:405;s:34:\"query-pagination/style-rtl.min.css\";i:406;s:26:\"query-pagination/style.css\";i:407;s:30:\"query-pagination/style.min.css\";i:408;s:25:\"query-title/style-rtl.css\";i:409;s:29:\"query-title/style-rtl.min.css\";i:410;s:21:\"query-title/style.css\";i:411;s:25:\"query-title/style.min.css\";i:412;s:25:\"query-total/style-rtl.css\";i:413;s:29:\"query-total/style-rtl.min.css\";i:414;s:21:\"query-total/style.css\";i:415;s:25:\"query-total/style.min.css\";i:416;s:20:\"query/editor-rtl.css\";i:417;s:24:\"query/editor-rtl.min.css\";i:418;s:16:\"query/editor.css\";i:419;s:20:\"query/editor.min.css\";i:420;s:19:\"quote/style-rtl.css\";i:421;s:23:\"quote/style-rtl.min.css\";i:422;s:15:\"quote/style.css\";i:423;s:19:\"quote/style.min.css\";i:424;s:19:\"quote/theme-rtl.css\";i:425;s:23:\"quote/theme-rtl.min.css\";i:426;s:15:\"quote/theme.css\";i:427;s:19:\"quote/theme.min.css\";i:428;s:23:\"read-more/style-rtl.css\";i:429;s:27:\"read-more/style-rtl.min.css\";i:430;s:19:\"read-more/style.css\";i:431;s:23:\"read-more/style.min.css\";i:432;s:18:\"rss/editor-rtl.css\";i:433;s:22:\"rss/editor-rtl.min.css\";i:434;s:14:\"rss/editor.css\";i:435;s:18:\"rss/editor.min.css\";i:436;s:17:\"rss/style-rtl.css\";i:437;s:21:\"rss/style-rtl.min.css\";i:438;s:13:\"rss/style.css\";i:439;s:17:\"rss/style.min.css\";i:440;s:21:\"search/editor-rtl.css\";i:441;s:25:\"search/editor-rtl.min.css\";i:442;s:17:\"search/editor.css\";i:443;s:21:\"search/editor.min.css\";i:444;s:20:\"search/style-rtl.css\";i:445;s:24:\"search/style-rtl.min.css\";i:446;s:16:\"search/style.css\";i:447;s:20:\"search/style.min.css\";i:448;s:20:\"search/theme-rtl.css\";i:449;s:24:\"search/theme-rtl.min.css\";i:450;s:16:\"search/theme.css\";i:451;s:20:\"search/theme.min.css\";i:452;s:24:\"separator/editor-rtl.css\";i:453;s:28:\"separator/editor-rtl.min.css\";i:454;s:20:\"separator/editor.css\";i:455;s:24:\"separator/editor.min.css\";i:456;s:23:\"separator/style-rtl.css\";i:457;s:27:\"separator/style-rtl.min.css\";i:458;s:19:\"separator/style.css\";i:459;s:23:\"separator/style.min.css\";i:460;s:23:\"separator/theme-rtl.css\";i:461;s:27:\"separator/theme-rtl.min.css\";i:462;s:19:\"separator/theme.css\";i:463;s:23:\"separator/theme.min.css\";i:464;s:24:\"shortcode/editor-rtl.css\";i:465;s:28:\"shortcode/editor-rtl.min.css\";i:466;s:20:\"shortcode/editor.css\";i:467;s:24:\"shortcode/editor.min.css\";i:468;s:24:\"site-logo/editor-rtl.css\";i:469;s:28:\"site-logo/editor-rtl.min.css\";i:470;s:20:\"site-logo/editor.css\";i:471;s:24:\"site-logo/editor.min.css\";i:472;s:23:\"site-logo/style-rtl.css\";i:473;s:27:\"site-logo/style-rtl.min.css\";i:474;s:19:\"site-logo/style.css\";i:475;s:23:\"site-logo/style.min.css\";i:476;s:27:\"site-tagline/editor-rtl.css\";i:477;s:31:\"site-tagline/editor-rtl.min.css\";i:478;s:23:\"site-tagline/editor.css\";i:479;s:27:\"site-tagline/editor.min.css\";i:480;s:26:\"site-tagline/style-rtl.css\";i:481;s:30:\"site-tagline/style-rtl.min.css\";i:482;s:22:\"site-tagline/style.css\";i:483;s:26:\"site-tagline/style.min.css\";i:484;s:25:\"site-title/editor-rtl.css\";i:485;s:29:\"site-title/editor-rtl.min.css\";i:486;s:21:\"site-title/editor.css\";i:487;s:25:\"site-title/editor.min.css\";i:488;s:24:\"site-title/style-rtl.css\";i:489;s:28:\"site-title/style-rtl.min.css\";i:490;s:20:\"site-title/style.css\";i:491;s:24:\"site-title/style.min.css\";i:492;s:26:\"social-link/editor-rtl.css\";i:493;s:30:\"social-link/editor-rtl.min.css\";i:494;s:22:\"social-link/editor.css\";i:495;s:26:\"social-link/editor.min.css\";i:496;s:27:\"social-links/editor-rtl.css\";i:497;s:31:\"social-links/editor-rtl.min.css\";i:498;s:23:\"social-links/editor.css\";i:499;s:27:\"social-links/editor.min.css\";i:500;s:26:\"social-links/style-rtl.css\";i:501;s:30:\"social-links/style-rtl.min.css\";i:502;s:22:\"social-links/style.css\";i:503;s:26:\"social-links/style.min.css\";i:504;s:21:\"spacer/editor-rtl.css\";i:505;s:25:\"spacer/editor-rtl.min.css\";i:506;s:17:\"spacer/editor.css\";i:507;s:21:\"spacer/editor.min.css\";i:508;s:20:\"spacer/style-rtl.css\";i:509;s:24:\"spacer/style-rtl.min.css\";i:510;s:16:\"spacer/style.css\";i:511;s:20:\"spacer/style.min.css\";i:512;s:20:\"table/editor-rtl.css\";i:513;s:24:\"table/editor-rtl.min.css\";i:514;s:16:\"table/editor.css\";i:515;s:20:\"table/editor.min.css\";i:516;s:19:\"table/style-rtl.css\";i:517;s:23:\"table/style-rtl.min.css\";i:518;s:15:\"table/style.css\";i:519;s:19:\"table/style.min.css\";i:520;s:19:\"table/theme-rtl.css\";i:521;s:23:\"table/theme-rtl.min.css\";i:522;s:15:\"table/theme.css\";i:523;s:19:\"table/theme.min.css\";i:524;s:24:\"tag-cloud/editor-rtl.css\";i:525;s:28:\"tag-cloud/editor-rtl.min.css\";i:526;s:20:\"tag-cloud/editor.css\";i:527;s:24:\"tag-cloud/editor.min.css\";i:528;s:23:\"tag-cloud/style-rtl.css\";i:529;s:27:\"tag-cloud/style-rtl.min.css\";i:530;s:19:\"tag-cloud/style.css\";i:531;s:23:\"tag-cloud/style.min.css\";i:532;s:28:\"template-part/editor-rtl.css\";i:533;s:32:\"template-part/editor-rtl.min.css\";i:534;s:24:\"template-part/editor.css\";i:535;s:28:\"template-part/editor.min.css\";i:536;s:27:\"template-part/theme-rtl.css\";i:537;s:31:\"template-part/theme-rtl.min.css\";i:538;s:23:\"template-part/theme.css\";i:539;s:27:\"template-part/theme.min.css\";i:540;s:24:\"term-count/style-rtl.css\";i:541;s:28:\"term-count/style-rtl.min.css\";i:542;s:20:\"term-count/style.css\";i:543;s:24:\"term-count/style.min.css\";i:544;s:30:\"term-description/style-rtl.css\";i:545;s:34:\"term-description/style-rtl.min.css\";i:546;s:26:\"term-description/style.css\";i:547;s:30:\"term-description/style.min.css\";i:548;s:23:\"term-name/style-rtl.css\";i:549;s:27:\"term-name/style-rtl.min.css\";i:550;s:19:\"term-name/style.css\";i:551;s:23:\"term-name/style.min.css\";i:552;s:28:\"term-template/editor-rtl.css\";i:553;s:32:\"term-template/editor-rtl.min.css\";i:554;s:24:\"term-template/editor.css\";i:555;s:28:\"term-template/editor.min.css\";i:556;s:27:\"term-template/style-rtl.css\";i:557;s:31:\"term-template/style-rtl.min.css\";i:558;s:23:\"term-template/style.css\";i:559;s:27:\"term-template/style.min.css\";i:560;s:27:\"text-columns/editor-rtl.css\";i:561;s:31:\"text-columns/editor-rtl.min.css\";i:562;s:23:\"text-columns/editor.css\";i:563;s:27:\"text-columns/editor.min.css\";i:564;s:26:\"text-columns/style-rtl.css\";i:565;s:30:\"text-columns/style-rtl.min.css\";i:566;s:22:\"text-columns/style.css\";i:567;s:26:\"text-columns/style.min.css\";i:568;s:19:\"verse/style-rtl.css\";i:569;s:23:\"verse/style-rtl.min.css\";i:570;s:15:\"verse/style.css\";i:571;s:19:\"verse/style.min.css\";i:572;s:20:\"video/editor-rtl.css\";i:573;s:24:\"video/editor-rtl.min.css\";i:574;s:16:\"video/editor.css\";i:575;s:20:\"video/editor.min.css\";i:576;s:19:\"video/style-rtl.css\";i:577;s:23:\"video/style-rtl.min.css\";i:578;s:15:\"video/style.css\";i:579;s:19:\"video/style.min.css\";i:580;s:19:\"video/theme-rtl.css\";i:581;s:23:\"video/theme-rtl.min.css\";i:582;s:15:\"video/theme.css\";i:583;s:19:\"video/theme.min.css\";}}','on'),(267954,'wp_notes_notify','1','on'),(268873,'wpseo_tracking_only','a:2:{s:25:\"task_list_first_opened_on\";s:0:\"\";s:22:\"task_first_actioned_on\";s:0:\"\";}','auto'),(270083,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:3:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-7.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-7.0.2.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-7.0.2-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-7.0.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"7.0.2\";s:7:\"version\";s:5:\"7.0.2\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-7.0.2.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-7.0.2.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-7.0.2-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-7.0.2-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"7.0.2\";s:7:\"version\";s:5:\"7.0.2\";s:11:\"php_version\";s:3:\"7.4\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:51:\"https://downloads.w.org/release/wordpress-6.9.5.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:51:\"https://downloads.w.org/release/wordpress-6.9.5.zip\";s:10:\"no_content\";s:62:\"https://downloads.w.org/release/wordpress-6.9.5-no-content.zip\";s:11:\"new_bundled\";s:63:\"https://downloads.w.org/release/wordpress-6.9.5-new-bundled.zip\";s:7:\"partial\";s:61:\"https://downloads.w.org/release/wordpress-6.9.5-partial-1.zip\";s:8:\"rollback\";s:62:\"https://downloads.w.org/release/wordpress-6.9.5-rollback-1.zip\";}s:7:\"current\";s:5:\"6.9.5\";s:7:\"version\";s:5:\"6.9.5\";s:11:\"php_version\";s:6:\"7.2.24\";s:13:\"mysql_version\";s:5:\"5.5.5\";s:11:\"new_bundled\";s:3:\"6.7\";s:15:\"partial_version\";s:5:\"6.9.1\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1785384915;s:15:\"version_checked\";s:5:\"6.9.1\";s:12:\"translations\";a:0:{}}','off'),(273388,'auto_core_update_failed','a:6:{s:9:\"attempted\";s:5:\"6.9.4\";s:7:\"current\";s:5:\"6.9.1\";s:10:\"error_code\";s:32:\"copy_failed_for_update_core_file\";s:10:\"error_data\";s:33:\"wp-admin/includes/update-core.php\";s:9:\"timestamp\";i:1773690594;s:5:\"retry\";b:0;}','off'),(274546,'_transient_doing_cron','1785398880.8803260326385498046875','on'),(277988,'_transient_timeout_rsssl_testpage','1778485040','off'),(277989,'_transient_rsssl_testpage','not-valid','off'),(277990,'_transient_timeout_rsssl_code_execution_allowed_status','1778485041','off'),(277991,'_transient_rsssl_code_execution_allowed_status','not-allowed','off'),(277992,'_transient_timeout_rsssl_directory_indexing_status','1778485041','off'),(277993,'_transient_rsssl_directory_indexing_status','forbidden','off'),(277994,'_transient_timeout_rsssl_admin_users','1778402241','off'),(277995,'_transient_rsssl_admin_users','a:8:{i:0;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"2\";s:10:\"user_login\";s:10:\"bblackerby\";s:9:\"user_pass\";s:63:\"$wp$2y$10$R7C075psmR5khnLLaf.xsuubecPkAWAeZ0nCNirzBZ0/9KPJP4Qeu\";s:13:\"user_nicename\";s:10:\"bblackerby\";s:10:\"user_email\";s:23:\"bblackerby424@gmail.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-05-15 17:31:10\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:15:\"Brice Blackerby\";}s:2:\"ID\";i:2;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:1;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"4\";s:10:\"user_login\";s:13:\"EnfoldSupport\";s:9:\"user_pass\";s:34:\"$P$BUtDuXTqqlDB7NkSi6iISJ0k6vr.hH1\";s:13:\"user_nicename\";s:13:\"enfoldsupport\";s:10:\"user_email\";s:23:\"itmphotobooth@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-06-15 16:57:31\";s:19:\"user_activation_key\";s:45:\"1592240253:$P$Be9TXnLLCreXOlcOjKI.SlP8Yb5IS71\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"EnfoldSupport\";}s:2:\"ID\";i:4;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:2;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"7\";s:10:\"user_login\";s:14:\"forte_bernardo\";s:9:\"user_pass\";s:34:\"$P$Br8M8ec00AiILPM60q3JTmCiGEzbYl/\";s:13:\"user_nicename\";s:14:\"forte_bernardo\";s:10:\"user_email\";s:20:\"bernardo@forte.agecy\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2023-03-22 04:43:19\";s:19:\"user_activation_key\";s:45:\"1679460200:$P$Ba7789qqrcUfjiI9TTvA3doBecd3Le0\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:8:\"Bernardo\";}s:2:\"ID\";i:7;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:3;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"5\";s:10:\"user_login\";s:8:\"rev_jess\";s:9:\"user_pass\";s:34:\"$P$BpDlpKQUuHP8V6sSF/Ihn.7hBEyQ5u.\";s:13:\"user_nicename\";s:8:\"rev_jess\";s:10:\"user_email\";s:26:\"jessica@revel8ionmedia.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-03-13 21:14:08\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:16:\"Jessica `Eddowes\";}s:2:\"ID\";i:5;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:4;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"3\";s:10:\"user_login\";s:12:\"SolSculpting\";s:9:\"user_pass\";s:34:\"$P$BowO2ofl7HZ1etN7rU/B8EzVPYc41Z/\";s:13:\"user_nicename\";s:13:\"solvibrantpro\";s:10:\"user_email\";s:19:\"smcdesigns@live.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-05-15 18:22:53\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"SolSculpting\";}s:2:\"ID\";i:3;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:5;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"1\";s:10:\"user_login\";s:10:\"solvibrant\";s:9:\"user_pass\";s:34:\"$P$BNKJ0Ww/TNLPclTGSRqAmqp30OzbTp0\";s:13:\"user_nicename\";s:10:\"solvibrant\";s:10:\"user_email\";s:24:\"hello@saramichelleds.com\";s:8:\"user_url\";s:24:\"https://solsculpting.com\";s:15:\"user_registered\";s:19:\"2020-05-13 02:52:28\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:10:\"solvibrant\";}s:2:\"ID\";i:1;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:6;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"6\";s:10:\"user_login\";s:13:\"techinfostack\";s:9:\"user_pass\";s:34:\"$P$BIc7872i15CI.TpeUXxNn7B467IIb/0\";s:13:\"user_nicename\";s:13:\"techinfostack\";s:10:\"user_email\";s:23:\"techinfostack@gmail.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2022-10-20 14:36:23\";s:19:\"user_activation_key\";s:45:\"1666276584:$P$BPkjd7p3DvIEswU95QOQk5QzFCoSEV/\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"techinfostack\";}s:2:\"ID\";i:6;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}i:7;O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:2:\"10\";s:10:\"user_login\";s:20:\"wp_update-1723206021\";s:9:\"user_pass\";s:34:\"$P$B1Azn03mmiq/vIE./wrafr2/xXW5Vd.\";s:13:\"user_nicename\";s:20:\"wp_update-1723206021\";s:10:\"user_email\";s:0:\"\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"1979-01-01 00:00:00\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:20:\"wp_update-1723206021\";}s:2:\"ID\";i:10;s:4:\"caps\";a:1:{s:13:\"administrator\";s:1:\"1\";}s:7:\"cap_key\";s:15:\"wp_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:128:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:15:\"manage_security\";b:1;s:15:\"edit_custom_css\";b:1;s:15:\"read_custom_css\";b:1;s:17:\"delete_custom_css\";b:1;s:16:\"edit_custom_csss\";b:1;s:23:\"edit_others_custom_csss\";b:1;s:19:\"publish_custom_csss\";b:1;s:18:\"delete_custom_csss\";b:1;s:28:\"delete_published_custom_csss\";b:1;s:25:\"delete_others_custom_csss\";b:1;s:26:\"edit_published_custom_csss\";b:1;s:13:\"administrator\";s:1:\"1\";}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}}','off'),(277996,'_transient_timeout_rsssl_certinfo','1778485041','off'),(277997,'_transient_rsssl_certinfo','a:16:{s:4:\"name\";s:20:\"/CN=solsculpting.com\";s:7:\"subject\";a:1:{s:2:\"CN\";s:16:\"solsculpting.com\";}s:4:\"hash\";s:8:\"d911bf1c\";s:6:\"issuer\";a:3:{s:1:\"C\";s:2:\"US\";s:1:\"O\";s:13:\"Let\'s Encrypt\";s:2:\"CN\";s:2:\"E7\";}s:7:\"version\";i:2;s:12:\"serialNumber\";s:38:\"0x06CCE27977177A8F7607C3EFDEA0CBE27FD7\";s:15:\"serialNumberHex\";s:36:\"06CCE27977177A8F7607C3EFDEA0CBE27FD7\";s:9:\"validFrom\";s:13:\"260406162729Z\";s:7:\"validTo\";s:13:\"260705162728Z\";s:16:\"validFrom_time_t\";i:1775492849;s:14:\"validTo_time_t\";i:1783268848;s:15:\"signatureTypeSN\";s:17:\"ecdsa-with-SHA384\";s:15:\"signatureTypeLN\";s:17:\"ecdsa-with-SHA384\";s:16:\"signatureTypeNID\";i:795;s:8:\"purposes\";a:9:{i:1;a:3:{i:0;b:0;i:1;b:0;i:2;s:9:\"sslclient\";}i:2;a:3:{i:0;b:1;i:1;b:0;i:2;s:9:\"sslserver\";}i:3;a:3:{i:0;b:0;i:1;b:0;i:2;s:11:\"nssslserver\";}i:4;a:3:{i:0;b:0;i:1;b:0;i:2;s:9:\"smimesign\";}i:5;a:3:{i:0;b:0;i:1;b:0;i:2;s:12:\"smimeencrypt\";}i:6;a:3:{i:0;b:0;i:1;b:0;i:2;s:7:\"crlsign\";}i:7;a:3:{i:0;b:1;i:1;b:1;i:2;s:3:\"any\";}i:8;a:3:{i:0;b:1;i:1;b:0;i:2;s:10:\"ocsphelper\";}i:9;a:3:{i:0;b:0;i:1;b:0;i:2;s:13:\"timestampsign\";}}s:10:\"extensions\";a:10:{s:8:\"keyUsage\";s:17:\"Digital Signature\";s:16:\"extendedKeyUsage\";s:29:\"TLS Web Server Authentication\";s:16:\"basicConstraints\";s:8:\"CA:FALSE\";s:20:\"subjectKeyIdentifier\";s:59:\"C9:05:F8:0E:C8:73:AD:1B:34:60:CC:0B:B2:F0:2D:C9:ED:D9:DF:A1\";s:22:\"authorityKeyIdentifier\";s:66:\"keyid:AE:48:9E:DC:87:1D:44:A0:6F:DA:A2:E5:60:74:04:78:C2:9C:00:80\n\";s:19:\"authorityInfoAccess\";s:40:\"CA Issuers - URI:http://e7.i.lencr.org/\n\";s:14:\"subjectAltName\";s:20:\"DNS:solsculpting.com\";s:19:\"certificatePolicies\";s:23:\"Policy: 2.23.140.1.2.1\n\";s:21:\"crlDistributionPoints\";s:47:\"\nFull Name:\n URI:http://e7.c.lencr.org/88.crl\n\";s:15:\"ct_precert_scts\";s:1180:\"Signed Certificate Timestamp:\n Version : v1 (0x0)\n Log ID : C2:31:7E:57:45:19:A3:45:EE:7F:38:DE:B2:90:41:EB:\n C7:C2:21:5A:22:BF:7F:D5:B5:AD:76:9A:D9:0E:52:CD\n Timestamp : Apr 6 17:25:59.516 2026 GMT\n Extensions: none\n Signature : ecdsa-with-SHA256\n 30:45:02:21:00:B5:D8:6F:F3:26:7F:D7:07:09:D8:F4:\n 34:F4:47:C3:50:98:55:02:A1:36:F9:5F:6B:C1:83:C8:\n 6E:4F:67:B6:56:02:20:66:AA:26:56:2B:86:E4:CE:61:\n 0D:0D:1E:3F:DE:97:0B:71:16:48:14:A3:2B:61:3A:67:\n 4D:AE:A1:03:D0:F2:12\nSigned Certificate Timestamp:\n Version : v1 (0x0)\n Log ID : A8:26:CB:E3:0A:C6:35:12:46:53:3F:E0:65:F1:4F:19:\n D9:6E:19:08:13:C4:1D:D9:6D:79:00:B3:12:3C:55:27\n Timestamp : Apr 6 17:26:00.497 2026 GMT\n Extensions: 00:00:05:00:05:D8:6C:A7\n Signature : ecdsa-with-SHA256\n 30:45:02:20:11:20:F5:80:2C:C7:98:0E:57:79:29:75:\n AA:46:C2:45:A7:EB:F0:AE:F2:51:81:A3:93:83:D3:25:\n 14:9B:B3:BD:02:21:00:BA:A3:E7:F8:33:44:97:E0:62:\n DF:76:91:7D:88:92:6A:A3:17:16:1E:90:25:2A:C5:8F:\n 47:D0:D8:78:B1:36:8D\";}}','off'),(277998,'_transient_timeout_rsssl_mixed_content_fixer_detected','1778399242','off'),(277999,'_transient_rsssl_mixed_content_fixer_detected','found','off'),(278000,'_transient_timeout_rsssl_can_use_curl_headers_check','1779003442','off'),(278001,'_transient_rsssl_can_use_curl_headers_check','a:1:{i:0;s:16:\"X-XSS protection\";}','off'),(278002,'_transient_timeout_rsssl_admin_user_count','1778402242','off'),(278003,'_transient_rsssl_admin_user_count','0','off'),(278019,'_site_transient_timeout_browser_50041963ae561cfabe9225edff35b18f','1779003447','off'),(278020,'_site_transient_browser_50041963ae561cfabe9225edff35b18f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"132.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(278030,'_site_transient_timeout_community-events-357df78476a979b3a366014dea768a33','1778441892','off'),(278031,'_site_transient_community-events-357df78476a979b3a366014dea768a33','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:10:\"3.81.117.0\";}s:6:\"events\";a:5:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"WordPress Casual Discussion and Troubleshooting\";s:3:\"url\";s:60:\"https://www.meetup.com/wordpress-frederick/events/314093090/\";s:6:\"meetup\";s:19:\"WordPress Frederick\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-frederick/\";s:4:\"date\";s:19:\"2026-05-09 10:00:00\";s:8:\"end_date\";s:19:\"2026-05-09 12:00:00\";s:20:\"start_unix_timestamp\";i:1778335200;s:18:\"end_unix_timestamp\";i:1778342400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Frederick, MD, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.391956;s:9:\"longitude\";d:-77.409400000000005;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:73:\"All Levels: Basic Accessibility Workshop Actually Fixing Your Sites Today\";s:3:\"url\";s:70:\"https://www.meetup.com/the-baltimore-wordpress-group/events/314581027/\";s:6:\"meetup\";s:29:\"The Baltimore WordPress Group\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/the-baltimore-wordpress-group/\";s:4:\"date\";s:19:\"2026-05-21 11:00:00\";s:8:\"end_date\";s:19:\"2026-05-21 12:00:00\";s:20:\"start_unix_timestamp\";i:1779375600;s:18:\"end_unix_timestamp\";i:1779379200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.310000000000002;s:9:\"longitude\";d:-76.579999999999998;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"WordPress Casual Discussion and Troubleshooting\";s:3:\"url\";s:60:\"https://www.meetup.com/wordpress-frederick/events/314701559/\";s:6:\"meetup\";s:19:\"WordPress Frederick\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-frederick/\";s:4:\"date\";s:19:\"2026-05-27 18:00:00\";s:8:\"end_date\";s:19:\"2026-05-27 20:00:00\";s:20:\"start_unix_timestamp\";i:1779919200;s:18:\"end_unix_timestamp\";i:1779926400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Frederick, MD, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:39.412930000000003;s:9:\"longitude\";d:-77.412009999999995;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"WordPress Casual Discussion and Troubleshooting\";s:3:\"url\";s:60:\"https://www.meetup.com/wordpress-frederick/events/314093114/\";s:6:\"meetup\";s:19:\"WordPress Frederick\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-frederick/\";s:4:\"date\";s:19:\"2026-06-13 10:00:00\";s:8:\"end_date\";s:19:\"2026-06-13 12:00:00\";s:20:\"start_unix_timestamp\";i:1781359200;s:18:\"end_unix_timestamp\";i:1781366400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Frederick, MD, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.391956;s:9:\"longitude\";d:-77.409400000000005;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"All Levels: Online Ask Me Anything WordPress!\";s:3:\"url\";s:70:\"https://www.meetup.com/the-baltimore-wordpress-group/events/314580872/\";s:6:\"meetup\";s:29:\"The Baltimore WordPress Group\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/the-baltimore-wordpress-group/\";s:4:\"date\";s:19:\"2026-09-08 11:00:00\";s:8:\"end_date\";s:19:\"2026-09-08 12:00:00\";s:20:\"start_unix_timestamp\";i:1788879600;s:18:\"end_unix_timestamp\";i:1788883200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.310000000000002;s:9:\"longitude\";d:-76.579999999999998;}}}}','off'),(278034,'_site_transient_timeout_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1785405193','off'),(278035,'_site_transient_feed_mod_9bbd59226dc36b9b26cd43f15694c5c3','1785361993','off'),(278038,'_site_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1785405193','off'),(278039,'_site_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9','1785361993','off'),(278042,'can_compress_scripts','0','on'),(278410,'_transient_timeout_essential-addons-elementor-license_data','1786558906','off'),(278411,'_transient_essential-addons-elementor-license_data','O:8:\"stdClass\":5:{s:7:\"success\";b:1;s:7:\"license\";s:5:\"valid\";s:7:\"item_id\";i:4372;s:9:\"item_name\";s:30:\"Essential Addons for Elementor\";s:11:\"license_key\";s:32:\"bbdca**********************aa60d\";}','off'),(278824,'eael_show_reset_password_on_form_submit_eael1','1','off'),(278825,'eael_resetpassword_error_eael1','\"Invalid user name found!\"','off'),(280752,'_site_transient_timeout_browser_96ca87cd51327c68aefb68e7bf7a8737','1781713172','off'),(280753,'_site_transient_browser_96ca87cd51327c68aefb68e7bf7a8737','a:10:{s:4:\"name\";s:17:\"Internet Explorer\";s:7:\"version\";s:4:\"11.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:68:\"https://support.microsoft.com/help/17621/internet-explorer-downloads\";s:7:\"img_src\";s:39:\"http://s.w.org/images/browsers/ie.png?1\";s:11:\"img_src_ssl\";s:40:\"https://s.w.org/images/browsers/ie.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:1;s:6:\"mobile\";b:0;}','off'),(280766,'_site_transient_timeout_browser_eda8d8a99d1200fd6d13ec0a4b5a6b34','1781714391','off'),(280767,'_site_transient_browser_eda8d8a99d1200fd6d13ec0a4b5a6b34','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"122.0.0.0\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(280930,'eael_show_reset_password_on_form_submit_eael-widget','1','off'),(280931,'eael_resetpassword_error_eael-widget','\"Invalid user name found!\"','off'),(284191,'_site_transient_timeout_browser_11868452804c8a2bb86650b580125ff5','1785276627','off'),(284192,'_site_transient_browser_11868452804c8a2bb86650b580125ff5','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:5:\"134.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284195,'_transient_timeout_pa_stories_4.11.67','1785276628','off'),(284196,'_transient_pa_stories_4.11.67','a:2:{s:7:\"banners\";a:1:{i:0;a:4:{s:3:\"end\";i:1769644800;s:5:\"image\";s:76:\"https://premiumaddons.com/wp-content/uploads/2025/12/christmas-sale-2025.jpg\";s:11:\"description\";s:40:\"SAVE UP TO 30% OFF ON PREMIUM ADDONS PRO\";s:4:\"link\";s:41:\"https://premiumaddons.com/christmas-sale/\";}}s:5:\"posts\";a:3:{i:0;a:2:{s:5:\"title\";s:19:\"The Power of Diving\";s:4:\"link\";s:48:\"https://premiumaddons.com/the-power-of-diving-2/\";}i:1;a:2:{s:5:\"title\";s:26:\"The Secret of Modern Homes\";s:4:\"link\";s:53:\"https://premiumaddons.com/the-secret-of-modern-homes/\";}i:2;a:2:{s:5:\"title\";s:20:\"Advices From Surfers\";s:4:\"link\";s:49:\"https://premiumaddons.com/advices-from-surfers-2/\";}}}','off'),(284240,'_site_transient_timeout_browser_5d9a37c6a96acca914609d0251644dda','1785308708','off'),(284241,'_site_transient_browser_5d9a37c6a96acca914609d0251644dda','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"58.0.3029.110\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284330,'_site_transient_timeout_browser_0e3c1d553071f45ae73c51aa46fc11d8','1785345889','off'),(284331,'_site_transient_browser_0e3c1d553071f45ae73c51aa46fc11d8','a:10:{s:4:\"name\";s:7:\"unknown\";s:7:\"version\";s:0:\"\";s:8:\"platform\";s:0:\"\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284507,'edd_sl_failed_http_7838117baf19d8c92e668c95a04a2642','1784835329','auto'),(284531,'_site_transient_timeout_browser_8e253f85246590342756399a57054cb8','1785439344','off'),(284532,'_site_transient_browser_8e253f85246590342756399a57054cb8','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"144.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284535,'_site_transient_timeout_community-events-ceab36558d3a89e06a4534faf2fef655','1784877770','off'),(284536,'_site_transient_community-events-ceab36558d3a89e06a4534faf2fef655','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"125.164.233.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:44:\"WordPress Campus Connect Perpus Soetta Tegal\";s:3:\"url\";s:62:\"https://events.wordpress.org/campusconnect/2026/perpus-soetta/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-09 00:00:00\";s:8:\"end_date\";s:19:\"2026-08-09 00:00:00\";s:20:\"start_unix_timestamp\";i:1786208400;s:18:\"end_unix_timestamp\";i:1786208400;s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Tegal Regency, Indonesia\";s:7:\"country\";s:2:\"ID\";s:8:\"latitude\";d:-6.9735405000000004;s:9:\"longitude\";d:109.1399535;}}}}','off'),(284558,'_site_transient_timeout_browser_f51bb482c660d0eeadd1f058058a2b35','1785441289','off'),(284559,'_site_transient_browser_f51bb482c660d0eeadd1f058058a2b35','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"131.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284574,'_site_transient_timeout_browser_c33c588009b95570bda142ca18d363d2','1785449047','off'),(284575,'_site_transient_browser_c33c588009b95570bda142ca18d363d2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"150.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284649,'_site_transient_timeout_browser_c7e7172c7781b034963ef5178f1479dd','1785500305','off'),(284650,'_site_transient_browser_c7e7172c7781b034963ef5178f1479dd','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"93.0.4577.63\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284658,'_site_transient_timeout_browser_51c3eb628f6820263cb797f830be91a3','1785500499','off'),(284659,'_site_transient_browser_51c3eb628f6820263cb797f830be91a3','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"91.0.4472.124\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284666,'_site_transient_timeout_browser_483ab62a78402672f6bc3ee1c634fa04','1785500808','off'),(284667,'_site_transient_browser_483ab62a78402672f6bc3ee1c634fa04','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"91.0.4472.124\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284678,'_site_transient_timeout_browser_8ce5d965e9087150e4d28968de355826','1785501258','off'),(284679,'_site_transient_browser_8ce5d965e9087150e4d28968de355826','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"14.0.3\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284748,'_site_transient_timeout_browser_4796ac1e41609a3bd5e4bf137f2c4b20','1785529137','off'),(284749,'_site_transient_browser_4796ac1e41609a3bd5e4bf137f2c4b20','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"150.0.0.0\";s:8:\"platform\";s:7:\"Android\";s:10:\"update_url\";s:0:\"\";s:7:\"img_src\";s:0:\"\";s:11:\"img_src_ssl\";s:0:\"\";s:15:\"current_version\";s:0:\"\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:1;}','off'),(284752,'_site_transient_timeout_community-events-dc10845c650385483224058c85e7ac06','1784967546','off'),(284753,'_site_transient_community-events-dc10845c650385483224058c85e7ac06','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"182.253.194.0\";}s:6:\"events\";a:3:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:54:\"Di Balik Layar WordPress: Ruang Kolaborasi Tanpa Batas\";s:3:\"url\";s:65:\"https://www.meetup.com/bandung-wordpress-meetup/events/315806203/\";s:6:\"meetup\";s:24:\"Bandung WordPress Meetup\";s:10:\"meetup_url\";s:48:\"https://www.meetup.com/bandung-wordpress-meetup/\";s:4:\"date\";s:19:\"2026-07-29 16:00:00\";s:8:\"end_date\";s:19:\"2026-07-29 19:00:00\";s:20:\"start_unix_timestamp\";i:1785315600;s:18:\"end_unix_timestamp\";i:1785326400;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Bandung, Indonesia\";s:7:\"country\";s:2:\"id\";s:8:\"latitude\";d:-6.934933;s:9:\"longitude\";d:107.635994;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:51:\"WPBKS #4 : Digital Marketing With WordPress Batch 1\";s:3:\"url\";s:64:\"https://www.meetup.com/bekasi-wordpress-meetup/events/315690415/\";s:6:\"meetup\";s:23:\"Bekasi WordPress Meetup\";s:10:\"meetup_url\";s:47:\"https://www.meetup.com/Bekasi-WordPress-Meetup/\";s:4:\"date\";s:19:\"2026-08-08 13:00:00\";s:8:\"end_date\";s:19:\"2026-08-08 15:00:00\";s:20:\"start_unix_timestamp\";i:1786168800;s:18:\"end_unix_timestamp\";i:1786176000;s:8:\"location\";a:4:{s:8:\"location\";s:17:\"Bekasi, Indonesia\";s:7:\"country\";s:2:\"id\";s:8:\"latitude\";d:-6.3151359999999999;s:9:\"longitude\";d:107.1641;}}i:2;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:44:\"WordPress Campus Connect Perpus Soetta Tegal\";s:3:\"url\";s:62:\"https://events.wordpress.org/campusconnect/2026/perpus-soetta/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-09 00:00:00\";s:8:\"end_date\";s:19:\"2026-08-09 00:00:00\";s:20:\"start_unix_timestamp\";i:1786208400;s:18:\"end_unix_timestamp\";i:1786208400;s:8:\"location\";a:4:{s:8:\"location\";s:24:\"Tegal Regency, Indonesia\";s:7:\"country\";s:2:\"ID\";s:8:\"latitude\";d:-6.9735405000000004;s:9:\"longitude\";d:109.1399535;}}}}','off'),(284760,'_transient_timeout_filemanager_cancel_lk_popup_28','1787516383','off'),(284761,'_transient_filemanager_cancel_lk_popup_28','filemanager_cancel_lk_popup_28','off'),(284762,'filemanager_email_verified_28','yes','auto'),(284900,'_site_transient_timeout_browser_a1dac97d8b31290e02f31edd15a729fb','1785599072','off'),(284901,'_site_transient_browser_a1dac97d8b31290e02f31edd15a729fb','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"94.0.4606.71\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(284934,'_site_transient_timeout_browser_4f09e01c83d69100c363c33aecfef9f8','1785613118','off'),(284935,'_site_transient_browser_4f09e01c83d69100c363c33aecfef9f8','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"122.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285020,'_site_transient_timeout_browser_f8c36120b998735f8271f67046cbadb8','1785660765','off'),(285021,'_site_transient_browser_f8c36120b998735f8271f67046cbadb8','a:10:{s:4:\"name\";s:7:\"Firefox\";s:7:\"version\";s:4:\"45.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:32:\"https://www.mozilla.org/firefox/\";s:7:\"img_src\";s:44:\"http://s.w.org/images/browsers/firefox.png?1\";s:11:\"img_src_ssl\";s:45:\"https://s.w.org/images/browsers/firefox.png?1\";s:15:\"current_version\";s:2:\"56\";s:7:\"upgrade\";b:1;s:8:\"insecure\";b:1;s:6:\"mobile\";b:0;}','off'),(285081,'_transient_timeout_wpseo_total_unindexed_post_type_archives','1785167074','off'),(285082,'_transient_wpseo_total_unindexed_post_type_archives','0','off'),(285083,'_transient_timeout_wpseo_total_unindexed_general_items','1785167074','off'),(285084,'_transient_wpseo_total_unindexed_general_items','0','off'),(285085,'_transient_timeout_wpseo_unindexed_post_link_count','1785167074','off'),(285086,'_transient_wpseo_unindexed_post_link_count','0','off'),(285087,'_transient_timeout_wpseo_unindexed_term_link_count','1785167074','off'),(285088,'_transient_wpseo_unindexed_term_link_count','0','off'),(285099,'_site_transient_timeout_browser_172fa1e3a570972a9523880f0431118d','1785688212','off'),(285100,'_site_transient_browser_172fa1e3a570972a9523880f0431118d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"94.0.4606.71\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285109,'_site_transient_timeout_browser_eb277c0a28e753100637861d95faa1a6','1785691158','off'),(285110,'_site_transient_browser_eb277c0a28e753100637861d95faa1a6','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:4:\"14.1\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285111,'_site_transient_timeout_browser_1828ef36c08335e35e3b7f5cad3ba7b5','1785691530','off'),(285112,'_site_transient_browser_1828ef36c08335e35e3b7f5cad3ba7b5','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"14.0.3\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285137,'_site_transient_timeout_browser_be3419a8b5757aa334d087cf317c2456','1785697488','off'),(285138,'_site_transient_browser_be3419a8b5757aa334d087cf317c2456','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"92.0.4515.131\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285151,'_site_transient_timeout_browser_0007020eccfb5abbbd21ec4b0787764b','1785699169','off'),(285152,'_site_transient_browser_0007020eccfb5abbbd21ec4b0787764b','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"14.1.2\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285169,'_transient_timeout_elementor_remote_info_api_data_3.35.0','1785159331','off'),(285170,'_transient_elementor_remote_info_api_data_3.35.0','a:4:{s:9:\"timestamp\";s:10:\"1785115076\";s:14:\"upgrade_notice\";a:3:{s:7:\"version\";s:5:\"2.0.0\";s:7:\"message\";s:0:\"\";s:11:\"update_link\";s:0:\"\";}s:11:\"pro_widgets\";a:82:{i:0;a:4:{s:4:\"name\";s:6:\"search\";s:5:\"title\";s:6:\"Search\";s:4:\"icon\";s:17:\"eicon-site-search\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:1;a:4:{s:4:\"name\";s:5:\"posts\";s:5:\"title\";s:5:\"Posts\";s:4:\"icon\";s:15:\"eicon-post-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:2;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-2\";s:5:\"title\";s:7:\"Classic\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:3;a:4:{s:4:\"name\";s:9:\"portfolio\";s:5:\"title\";s:9:\"Portfolio\";s:4:\"icon\";s:18:\"eicon-gallery-grid\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:4;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-3\";s:5:\"title\";s:8:\"Showcase\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:5;a:4:{s:4:\"name\";s:9:\"mega-menu\";s:5:\"title\";s:4:\"Menu\";s:4:\"icon\";s:15:\"eicon-mega-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:6;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-4\";s:5:\"title\";s:5:\"Links\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:7;a:4:{s:4:\"name\";s:4:\"form\";s:5:\"title\";s:4:\"Form\";s:4:\"icon\";s:21:\"eicon-form-horizontal\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:8;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-5\";s:5:\"title\";s:8:\"Services\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:9;a:4:{s:4:\"name\";s:9:\"loop-grid\";s:5:\"title\";s:9:\"Loop Grid\";s:4:\"icon\";s:18:\"eicon-loop-builder\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:10;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-6\";s:5:\"title\";s:13:\"Portfolio Bio\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:11;a:4:{s:4:\"name\";s:13:\"loop-carousel\";s:5:\"title\";s:13:\"Loop Carousel\";s:4:\"icon\";s:19:\"eicon-carousel-loop\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:12;a:4:{s:4:\"name\";s:17:\"link-in-bio-var-7\";s:5:\"title\";s:13:\"Business Card\";s:4:\"icon\";s:19:\"eicon-site-identity\";s:10:\"categories\";s:15:\"[\"link-in-bio\"]\";}i:13;a:4:{s:4:\"name\";s:7:\"gallery\";s:5:\"title\";s:7:\"Gallery\";s:4:\"icon\";s:23:\"eicon-gallery-justified\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:14;a:4:{s:4:\"name\";s:17:\"animated-headline\";s:5:\"title\";s:17:\"Animated Headline\";s:4:\"icon\";s:23:\"eicon-animated-headline\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:15;a:4:{s:4:\"name\";s:10:\"price-list\";s:5:\"title\";s:10:\"Price List\";s:4:\"icon\";s:16:\"eicon-price-list\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:16;a:4:{s:4:\"name\";s:11:\"price-table\";s:5:\"title\";s:11:\"Price Table\";s:4:\"icon\";s:17:\"eicon-price-table\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:17;a:4:{s:4:\"name\";s:8:\"flip-box\";s:5:\"title\";s:8:\"Flip Box\";s:4:\"icon\";s:14:\"eicon-flip-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:18;a:4:{s:4:\"name\";s:14:\"call-to-action\";s:5:\"title\";s:14:\"Call to Action\";s:4:\"icon\";s:20:\"eicon-image-rollover\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:19;a:4:{s:4:\"name\";s:14:\"media-carousel\";s:5:\"title\";s:14:\"Media Carousel\";s:4:\"icon\";s:20:\"eicon-media-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:20;a:4:{s:4:\"name\";s:15:\"nested-carousel\";s:5:\"title\";s:8:\"Carousel\";s:4:\"icon\";s:21:\"eicon-nested-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:21;a:4:{s:4:\"name\";s:10:\"off-canvas\";s:5:\"title\";s:10:\"Off-Canvas\";s:4:\"icon\";s:16:\"eicon-off-canvas\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:22;a:4:{s:4:\"name\";s:9:\"countdown\";s:5:\"title\";s:9:\"Countdown\";s:4:\"icon\";s:15:\"eicon-countdown\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:23;a:4:{s:4:\"name\";s:13:\"share-buttons\";s:5:\"title\";s:13:\"Share Buttons\";s:4:\"icon\";s:11:\"eicon-share\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:24;a:4:{s:4:\"name\";s:10:\"blockquote\";s:5:\"title\";s:10:\"Blockquote\";s:4:\"icon\";s:16:\"eicon-blockquote\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:25;a:4:{s:4:\"name\";s:6:\"lottie\";s:5:\"title\";s:6:\"Lottie\";s:4:\"icon\";s:12:\"eicon-lottie\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:26;a:4:{s:4:\"name\";s:7:\"hotspot\";s:5:\"title\";s:7:\"Hotspot\";s:4:\"icon\";s:19:\"eicon-image-hotspot\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:27;a:4:{s:4:\"name\";s:13:\"paypal-button\";s:5:\"title\";s:13:\"PayPal Button\";s:4:\"icon\";s:19:\"eicon-paypal-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:28;a:4:{s:4:\"name\";s:14:\"code-highlight\";s:5:\"title\";s:14:\"Code Highlight\";s:4:\"icon\";s:20:\"eicon-code-highlight\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:29;a:4:{s:4:\"name\";s:14:\"video-playlist\";s:5:\"title\";s:14:\"Video Playlist\";s:4:\"icon\";s:20:\"eicon-video-playlist\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:30;a:4:{s:4:\"name\";s:8:\"template\";s:5:\"title\";s:8:\"Template\";s:4:\"icon\";s:19:\"eicon-document-file\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:31;a:4:{s:4:\"name\";s:13:\"stripe-button\";s:5:\"title\";s:13:\"Stripe Button\";s:4:\"icon\";s:19:\"eicon-stripe-button\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:32;a:4:{s:4:\"name\";s:16:\"progress-tracker\";s:5:\"title\";s:16:\"Progress Tracker\";s:4:\"icon\";s:22:\"eicon-progress-tracker\";s:10:\"categories\";s:40:\"[\"pro-elements\",\"theme-elements-single\"]\";}i:33;a:4:{s:4:\"name\";s:8:\"nav-menu\";s:5:\"title\";s:8:\"Nav Menu\";s:4:\"icon\";s:14:\"eicon-nav-menu\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:34;a:4:{s:4:\"name\";s:17:\"table-of-contents\";s:5:\"title\";s:17:\"Table of Contents\";s:4:\"icon\";s:23:\"eicon-table-of-contents\";s:10:\"categories\";s:33:\"[\"pro-elements\",\"theme-elements\"]\";}i:35;a:4:{s:4:\"name\";s:5:\"login\";s:5:\"title\";s:5:\"Login\";s:4:\"icon\";s:15:\"eicon-lock-user\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:36;a:4:{s:4:\"name\";s:6:\"slides\";s:5:\"title\";s:6:\"Slides\";s:4:\"icon\";s:12:\"eicon-slides\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:37;a:4:{s:4:\"name\";s:20:\"testimonial-carousel\";s:5:\"title\";s:20:\"Testimonial Carousel\";s:4:\"icon\";s:26:\"eicon-testimonial-carousel\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:38;a:4:{s:4:\"name\";s:7:\"reviews\";s:5:\"title\";s:7:\"Reviews\";s:4:\"icon\";s:12:\"eicon-review\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:39;a:4:{s:4:\"name\";s:15:\"facebook-button\";s:5:\"title\";s:15:\"Facebook Button\";s:4:\"icon\";s:23:\"eicon-facebook-like-box\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:40;a:4:{s:4:\"name\";s:17:\"facebook-comments\";s:5:\"title\";s:17:\"Facebook Comments\";s:4:\"icon\";s:23:\"eicon-facebook-comments\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:41;a:4:{s:4:\"name\";s:14:\"facebook-embed\";s:5:\"title\";s:14:\"Facebook Embed\";s:4:\"icon\";s:14:\"eicon-fb-embed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:42;a:4:{s:4:\"name\";s:13:\"facebook-page\";s:5:\"title\";s:13:\"Facebook Page\";s:4:\"icon\";s:13:\"eicon-fb-feed\";s:10:\"categories\";s:16:\"[\"pro-elements\"]\";}i:43;a:4:{s:4:\"name\";s:15:\"theme-site-logo\";s:5:\"title\";s:9:\"Site Logo\";s:4:\"icon\";s:15:\"eicon-site-logo\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:44;a:4:{s:4:\"name\";s:16:\"theme-site-title\";s:5:\"title\";s:10:\"Site Title\";s:4:\"icon\";s:16:\"eicon-site-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:45;a:4:{s:4:\"name\";s:16:\"theme-page-title\";s:5:\"title\";s:10:\"Page Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:46;a:4:{s:4:\"name\";s:16:\"theme-post-title\";s:5:\"title\";s:10:\"Post Title\";s:4:\"icon\";s:16:\"eicon-post-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:47;a:4:{s:4:\"name\";s:18:\"theme-post-excerpt\";s:5:\"title\";s:12:\"Post Excerpt\";s:4:\"icon\";s:18:\"eicon-post-excerpt\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:48;a:4:{s:4:\"name\";s:25:\"theme-post-featured-image\";s:5:\"title\";s:14:\"Featured Image\";s:4:\"icon\";s:20:\"eicon-featured-image\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:49;a:4:{s:4:\"name\";s:19:\"theme-archive-title\";s:5:\"title\";s:13:\"Archive Title\";s:4:\"icon\";s:19:\"eicon-archive-title\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:50;a:4:{s:4:\"name\";s:13:\"archive-posts\";s:5:\"title\";s:13:\"Archive Posts\";s:4:\"icon\";s:19:\"eicon-archive-posts\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:51;a:4:{s:4:\"name\";s:10:\"author-box\";s:5:\"title\";s:10:\"Author Box\";s:4:\"icon\";s:12:\"eicon-person\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:52;a:4:{s:4:\"name\";s:13:\"post-comments\";s:5:\"title\";s:13:\"Post Comments\";s:4:\"icon\";s:14:\"eicon-comments\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:53;a:4:{s:4:\"name\";s:15:\"post-navigation\";s:5:\"title\";s:15:\"Post Navigation\";s:4:\"icon\";s:21:\"eicon-post-navigation\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:54;a:4:{s:4:\"name\";s:9:\"post-info\";s:5:\"title\";s:9:\"Post Info\";s:4:\"icon\";s:15:\"eicon-post-info\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:55;a:4:{s:4:\"name\";s:7:\"sitemap\";s:5:\"title\";s:7:\"Sitemap\";s:4:\"icon\";s:13:\"eicon-sitemap\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:56;a:4:{s:4:\"name\";s:11:\"breadcrumbs\";s:5:\"title\";s:11:\"Breadcrumbs\";s:4:\"icon\";s:11:\"eicon-yoast\";s:10:\"categories\";s:18:\"[\"theme-elements\"]\";}i:57;a:4:{s:4:\"name\";s:21:\"woocommerce-menu-cart\";s:5:\"title\";s:9:\"Menu Cart\";s:4:\"icon\";s:10:\"eicon-cart\";s:10:\"categories\";s:41:\"[\"theme-elements\",\"woocommerce-elements\"]\";}i:58;a:4:{s:4:\"name\";s:19:\"wc-archive-products\";s:5:\"title\";s:16:\"Archive Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:59;a:4:{s:4:\"name\";s:31:\"woocommerce-archive-description\";s:5:\"title\";s:19:\"Archive Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:60;a:4:{s:4:\"name\";s:20:\"woocommerce-products\";s:5:\"title\";s:8:\"Products\";s:4:\"icon\";s:14:\"eicon-products\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:61;a:4:{s:4:\"name\";s:22:\"woocommerce-breadcrumb\";s:5:\"title\";s:23:\"WooCommerce Breadcrumbs\";s:4:\"icon\";s:25:\"eicon-product-breadcrumbs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:62;a:4:{s:4:\"name\";s:14:\"wc-add-to-cart\";s:5:\"title\";s:18:\"Custom Add To Cart\";s:4:\"icon\";s:17:\"eicon-woocommerce\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:63;a:4:{s:4:\"name\";s:11:\"wc-elements\";s:5:\"title\";s:17:\"WooCommerce Pages\";s:4:\"icon\";s:19:\"eicon-product-pages\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:64;a:4:{s:4:\"name\";s:13:\"wc-categories\";s:5:\"title\";s:18:\"Product Categories\";s:4:\"icon\";s:24:\"eicon-product-categories\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:65;a:4:{s:4:\"name\";s:25:\"woocommerce-product-title\";s:5:\"title\";s:13:\"Product Title\";s:4:\"icon\";s:19:\"eicon-product-title\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:66;a:4:{s:4:\"name\";s:26:\"woocommerce-product-images\";s:5:\"title\";s:14:\"Product Images\";s:4:\"icon\";s:20:\"eicon-product-images\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:67;a:4:{s:4:\"name\";s:25:\"woocommerce-product-price\";s:5:\"title\";s:13:\"Product Price\";s:4:\"icon\";s:19:\"eicon-product-price\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:68;a:4:{s:4:\"name\";s:31:\"woocommerce-product-add-to-cart\";s:5:\"title\";s:11:\"Add To Cart\";s:4:\"icon\";s:25:\"eicon-product-add-to-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:69;a:4:{s:4:\"name\";s:26:\"woocommerce-product-rating\";s:5:\"title\";s:14:\"Product Rating\";s:4:\"icon\";s:20:\"eicon-product-rating\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:70;a:4:{s:4:\"name\";s:25:\"woocommerce-product-stock\";s:5:\"title\";s:13:\"Product Stock\";s:4:\"icon\";s:19:\"eicon-product-stock\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:71;a:4:{s:4:\"name\";s:24:\"woocommerce-product-meta\";s:5:\"title\";s:12:\"Product Meta\";s:4:\"icon\";s:18:\"eicon-product-meta\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:72;a:4:{s:4:\"name\";s:37:\"woocommerce-product-short-description\";s:5:\"title\";s:17:\"Short Description\";s:4:\"icon\";s:25:\"eicon-product-description\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:73;a:4:{s:4:\"name\";s:29:\"woocommerce-product-data-tabs\";s:5:\"title\";s:17:\"Product Data Tabs\";s:4:\"icon\";s:18:\"eicon-product-tabs\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:74;a:4:{s:4:\"name\";s:42:\"woocommerce-product-additional-information\";s:5:\"title\";s:22:\"Additional Information\";s:4:\"icon\";s:19:\" eicon-product-info\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:75;a:4:{s:4:\"name\";s:27:\"woocommerce-product-related\";s:5:\"title\";s:15:\"Product Related\";s:4:\"icon\";s:21:\"eicon-product-related\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:76;a:4:{s:4:\"name\";s:26:\"woocommerce-product-upsell\";s:5:\"title\";s:7:\"Upsells\";s:4:\"icon\";s:20:\"eicon-product-upsell\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:77;a:4:{s:4:\"name\";s:25:\"woocommerce-checkout-page\";s:5:\"title\";s:8:\"Checkout\";s:4:\"icon\";s:14:\"eicon-checkout\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:78;a:4:{s:4:\"name\";s:16:\"woocommerce-cart\";s:5:\"title\";s:4:\"Cart\";s:4:\"icon\";s:14:\"eicon-woo-cart\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:79;a:4:{s:4:\"name\";s:22:\"woocommerce-my-account\";s:5:\"title\";s:10:\"My Account\";s:4:\"icon\";s:16:\"eicon-my-account\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:80;a:4:{s:4:\"name\";s:28:\"woocommerce-purchase-summary\";s:5:\"title\";s:16:\"Purchase Summary\";s:4:\"icon\";s:22:\"eicon-purchase-summary\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}i:81;a:4:{s:4:\"name\";s:19:\"woocommerce-notices\";s:5:\"title\";s:19:\"WooCommerce Notices\";s:4:\"icon\";s:25:\"eicon-woocommerce-notices\";s:10:\"categories\";s:24:\"[\"woocommerce-elements\"]\";}}s:17:\"canary_deployment\";a:2:{s:11:\"plugin_info\";a:11:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"3.6.0\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.3.6.0.zip\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.png?rev=1427768\";s:2:\"1x\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";s:3:\"svg\";s:54:\"https://ps.w.org/elementor/assets/icon.svg?rev=1426809\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=1475479\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=1475479\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:10:\"conditions\";a:0:{}}}','off'),(285193,'_site_transient_timeout_community-events-d75aa0d0febccda926f7a9edec1be6fb','1785150080','off'),(285194,'_site_transient_community-events-d75aa0d0febccda926f7a9edec1be6fb','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:12:\"147.135.76.0\";}s:6:\"events\";a:4:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://us.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-16 09:00:00\";s:8:\"end_date\";s:19:\"2026-08-19 17:00:00\";s:20:\"start_unix_timestamp\";i:1786896000;s:18:\"end_unix_timestamp\";i:1787184000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Phoenix, Arizona\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.448377100000002;s:9:\"longitude\";d:-112.0740373;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"WordPress Casual Discussion and Troubleshooting\";s:3:\"url\";s:60:\"https://www.meetup.com/wordpress-frederick/events/315585483/\";s:6:\"meetup\";s:19:\"WordPress Frederick\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-frederick/\";s:4:\"date\";s:19:\"2026-08-08 10:00:00\";s:8:\"end_date\";s:19:\"2026-08-08 12:00:00\";s:20:\"start_unix_timestamp\";i:1786197600;s:18:\"end_unix_timestamp\";i:1786204800;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Frederick, MD, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.391956;s:9:\"longitude\";d:-77.409400000000005;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:45:\"All Levels: Online Ask Me Anything WordPress!\";s:3:\"url\";s:70:\"https://www.meetup.com/the-baltimore-wordpress-group/events/314580872/\";s:6:\"meetup\";s:29:\"The Baltimore WordPress Group\";s:10:\"meetup_url\";s:53:\"https://www.meetup.com/the-baltimore-wordpress-group/\";s:4:\"date\";s:19:\"2026-09-08 11:00:00\";s:8:\"end_date\";s:19:\"2026-09-08 12:00:00\";s:20:\"start_unix_timestamp\";i:1788879600;s:18:\"end_unix_timestamp\";i:1788883200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.310000000000002;s:9:\"longitude\";d:-76.579999999999998;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:47:\"WordPress Casual Discussion and Troubleshooting\";s:3:\"url\";s:60:\"https://www.meetup.com/wordpress-frederick/events/315585487/\";s:6:\"meetup\";s:19:\"WordPress Frederick\";s:10:\"meetup_url\";s:43:\"https://www.meetup.com/wordpress-frederick/\";s:4:\"date\";s:19:\"2026-09-12 10:00:00\";s:8:\"end_date\";s:19:\"2026-09-12 12:00:00\";s:20:\"start_unix_timestamp\";i:1789221600;s:18:\"end_unix_timestamp\";i:1789228800;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Frederick, MD, USA\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:39.391956;s:9:\"longitude\";d:-77.409400000000005;}}}}','off'),(285222,'_transient_timeout_sucuriscan_online_users','1785117898','off'),(285223,'_transient_sucuriscan_online_users','a:7:{i:0;a:6:{s:7:\"user_id\";i:25;s:10:\"user_login\";s:15:\"Nx_f5c8f58c606b\";s:10:\"user_email\";s:26:\"Nx_f5c8f58c606b@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-23 21:46:36\";s:13:\"last_activity\";i:1785114006;s:11:\"remote_addr\";s:14:\"161.118.221.78\";}i:1;a:6:{s:7:\"user_id\";i:16;s:10:\"user_login\";s:15:\"Nx_6adca1dd0a8a\";s:10:\"user_email\";s:26:\"Nx_6adca1dd0a8a@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-22 17:23:37\";s:13:\"last_activity\";i:1785114012;s:11:\"remote_addr\";s:14:\"161.118.221.78\";}i:2;a:6:{s:7:\"user_id\";i:22;s:10:\"user_login\";s:15:\"Nx_7af781d5fe75\";s:10:\"user_email\";s:26:\"Nx_7af781d5fe75@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-23 09:16:16\";s:13:\"last_activity\";i:1785114129;s:11:\"remote_addr\";s:14:\"161.118.221.78\";}i:3;a:6:{s:7:\"user_id\";i:26;s:10:\"user_login\";s:15:\"Nx_78cc6e4726c9\";s:10:\"user_email\";s:26:\"Nx_78cc6e4726c9@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-24 10:19:29\";s:13:\"last_activity\";i:1785114252;s:11:\"remote_addr\";s:15:\"103.161.183.129\";}i:4;a:6:{s:7:\"user_id\";i:26;s:10:\"user_login\";s:15:\"Nx_78cc6e4726c9\";s:10:\"user_email\";s:26:\"Nx_78cc6e4726c9@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-24 10:19:29\";s:13:\"last_activity\";i:1785114310;s:11:\"remote_addr\";s:14:\"161.118.221.78\";}i:5;a:6:{s:7:\"user_id\";i:21;s:10:\"user_login\";s:15:\"Nx_0e6d71ab998f\";s:10:\"user_email\";s:26:\"Nx_0e6d71ab998f@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-23 07:09:28\";s:13:\"last_activity\";i:1785114488;s:11:\"remote_addr\";s:14:\"161.118.221.78\";}i:6;a:6:{s:7:\"user_id\";i:21;s:10:\"user_login\";s:15:\"Nx_0e6d71ab998f\";s:10:\"user_email\";s:26:\"Nx_0e6d71ab998f@nx.invalid\";s:15:\"user_registered\";s:19:\"2026-07-23 07:09:28\";s:13:\"last_activity\";i:1785116098;s:11:\"remote_addr\";s:12:\"46.203.52.11\";}}','off'),(285231,'_site_transient_timeout_browser_7eb58c7166c36d2a167da3ac5db9e9b2','1785718814','off'),(285232,'_site_transient_browser_7eb58c7166c36d2a167da3ac5db9e9b2','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"92.0.4515.131\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285256,'_site_transient_timeout_browser_c40c0ac1b3cea8496393bd6215fd05ed','1785719112','off'),(285257,'_site_transient_browser_c40c0ac1b3cea8496393bd6215fd05ed','a:10:{s:4:\"name\";s:6:\"Safari\";s:7:\"version\";s:6:\"14.1.1\";s:8:\"platform\";s:9:\"Macintosh\";s:10:\"update_url\";s:29:\"https://www.apple.com/safari/\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/safari.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/safari.png?1\";s:15:\"current_version\";s:2:\"11\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285270,'_transient_timeout_wpseo_total_unindexed_posts_limited','1785117001','off'),(285271,'_transient_wpseo_total_unindexed_posts_limited','0','off'),(285272,'_transient_timeout_wpseo_total_unindexed_terms_limited','1785117001','off'),(285273,'_transient_wpseo_total_unindexed_terms_limited','0','off'),(285274,'_site_transient_timeout_browser_7c73ef5b8d3235ae0606f2e84e457ff5','1785720901','off'),(285275,'_site_transient_browser_7c73ef5b8d3235ae0606f2e84e457ff5','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"145.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285276,'wpseo_llms_txt_content_hash','','auto'),(285305,'_wp_user_id','38','auto'),(285310,'_site_transient_timeout_community-events-ca92dd86781eb1f115f6b76882e08e30','1785181339','off'),(285311,'_site_transient_community-events-ca92dd86781eb1f115f6b76882e08e30','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"174.128.251.0\";}s:6:\"events\";a:1:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://us.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-16 09:00:00\";s:8:\"end_date\";s:19:\"2026-08-19 17:00:00\";s:20:\"start_unix_timestamp\";i:1786896000;s:18:\"end_unix_timestamp\";i:1787184000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Phoenix, Arizona\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.448377100000002;s:9:\"longitude\";d:-112.0740373;}}}}','off'),(285312,'_transient_timeout_filemanager_cancel_lk_popup_37','1787730182','off'),(285313,'_transient_filemanager_cancel_lk_popup_37','filemanager_cancel_lk_popup_37','off'),(285314,'filemanager_email_verified_37','yes','auto'),(285373,'_site_transient_timeout_browser_01ce9715248b2dd890ed41da84d2de45','1785811610','off'),(285374,'_site_transient_browser_01ce9715248b2dd890ed41da84d2de45','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"131.0.6778.86\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285390,'_site_transient_timeout_community-events-8085894b9a7b603dc71792dc67a35705','1785262594','off'),(285391,'_site_transient_community-events-8085894b9a7b603dc71792dc67a35705','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:11:\"198.2.228.0\";}s:6:\"events\";a:6:{i:0;a:10:{s:4:\"type\";s:8:\"wordcamp\";s:5:\"title\";s:11:\"WordCamp US\";s:3:\"url\";s:29:\"https://us.wordcamp.org/2026/\";s:6:\"meetup\";s:0:\"\";s:10:\"meetup_url\";s:0:\"\";s:4:\"date\";s:19:\"2026-08-16 09:00:00\";s:8:\"end_date\";s:19:\"2026-08-19 17:00:00\";s:20:\"start_unix_timestamp\";i:1786896000;s:18:\"end_unix_timestamp\";i:1787184000;s:8:\"location\";a:4:{s:8:\"location\";s:16:\"Phoenix, Arizona\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:33.448377100000002;s:9:\"longitude\";d:-112.0740373;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:76:\"Creating a Digital Accessibility Program in Higher Education: Jesse Loesberg\";s:3:\"url\";s:77:\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/314973335/\";s:6:\"meetup\";s:30:\"WordPress Accessibility Meetup\";s:10:\"meetup_url\";s:60:\"https://www.meetup.com/wordpress-accessibility-meetup-group/\";s:4:\"date\";s:19:\"2026-08-06 08:00:00\";s:8:\"end_date\";s:19:\"2026-08-06 09:30:00\";s:20:\"start_unix_timestamp\";i:1786028400;s:18:\"end_unix_timestamp\";i:1786033800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.75;s:9:\"longitude\";d:-122.42;}}i:2;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:74:\"Accessibility Testing: What Automated Tools Will NEVER Catch: Tanveer Khan\";s:3:\"url\";s:77:\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/315760132/\";s:6:\"meetup\";s:30:\"WordPress Accessibility Meetup\";s:10:\"meetup_url\";s:60:\"https://www.meetup.com/wordpress-accessibility-meetup-group/\";s:4:\"date\";s:19:\"2026-08-18 08:00:00\";s:8:\"end_date\";s:19:\"2026-08-18 09:00:00\";s:20:\"start_unix_timestamp\";i:1787065200;s:18:\"end_unix_timestamp\";i:1787068800;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.75;s:9:\"longitude\";d:-122.42;}}i:3;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:30:\"How to Learn WCAG: Cam Coulter\";s:3:\"url\";s:77:\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/315761155/\";s:6:\"meetup\";s:30:\"WordPress Accessibility Meetup\";s:10:\"meetup_url\";s:60:\"https://www.meetup.com/wordpress-accessibility-meetup-group/\";s:4:\"date\";s:19:\"2026-09-03 08:00:00\";s:8:\"end_date\";s:19:\"2026-09-03 09:30:00\";s:20:\"start_unix_timestamp\";i:1788447600;s:18:\"end_unix_timestamp\";i:1788453000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.75;s:9:\"longitude\";d:-122.42;}}i:4;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:62:\"WordPress Accessibility Meetup - First Thursday Morning (U.S.)\";s:3:\"url\";s:77:\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/315774741/\";s:6:\"meetup\";s:30:\"WordPress Accessibility Meetup\";s:10:\"meetup_url\";s:60:\"https://www.meetup.com/wordpress-accessibility-meetup-group/\";s:4:\"date\";s:19:\"2026-10-01 08:00:00\";s:8:\"end_date\";s:19:\"2026-10-01 09:30:00\";s:20:\"start_unix_timestamp\";i:1790866800;s:18:\"end_unix_timestamp\";i:1790872200;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.75;s:9:\"longitude\";d:-122.42;}}i:5;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:62:\"WordPress Accessibility Meetup - First Thursday Morning (U.S.)\";s:3:\"url\";s:77:\"https://www.meetup.com/wordpress-accessibility-meetup-group/events/314088201/\";s:6:\"meetup\";s:30:\"WordPress Accessibility Meetup\";s:10:\"meetup_url\";s:60:\"https://www.meetup.com/wordpress-accessibility-meetup-group/\";s:4:\"date\";s:19:\"2027-04-01 08:00:00\";s:8:\"end_date\";s:19:\"2027-04-01 09:30:00\";s:20:\"start_unix_timestamp\";i:1806591600;s:18:\"end_unix_timestamp\";i:1806597000;s:8:\"location\";a:4:{s:8:\"location\";s:6:\"Online\";s:7:\"country\";s:2:\"US\";s:8:\"latitude\";d:37.75;s:9:\"longitude\";d:-122.42;}}}}','off'),(285398,'_transient_timeout_filemanager_cancel_lk_popup_14','1787811966','off'),(285399,'_transient_filemanager_cancel_lk_popup_14','filemanager_cancel_lk_popup_14','off'),(285400,'filemanager_email_verified_14','yes','auto'),(285413,'_site_transient_timeout_browser_87532f5c229247f5166d216fad1d829f','1785837101','off'),(285414,'_site_transient_browser_87532f5c229247f5166d216fad1d829f','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"90.0.4430.85\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285415,'_site_transient_timeout_browser_d9c544d0aaddfd20c051a0811f2f382d','1785837103','off'),(285416,'_site_transient_browser_d9c544d0aaddfd20c051a0811f2f382d','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"112.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285424,'_site_transient_timeout_browser_9c1ce27f08b16479d2e17743062b28ed','1785837315','off'),(285425,'_site_transient_browser_9c1ce27f08b16479d2e17743062b28ed','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"120.0.0.0\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285444,'_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a','1785250032','off'),(285445,'_site_transient_poptags_40cd750bba9870f18aada2478b24840a','O:8:\"stdClass\":100:{s:11:\"woocommerce\";a:3:{s:4:\"name\";s:11:\"woocommerce\";s:4:\"slug\";s:11:\"woocommerce\";s:5:\"count\";i:10418;}s:6:\"widget\";a:3:{s:4:\"name\";s:6:\"widget\";s:4:\"slug\";s:6:\"widget\";s:5:\"count\";i:5090;}s:3:\"seo\";a:3:{s:4:\"name\";s:3:\"seo\";s:4:\"slug\";s:3:\"seo\";s:5:\"count\";i:3030;}s:5:\"admin\";a:3:{s:4:\"name\";s:5:\"admin\";s:4:\"slug\";s:5:\"admin\";s:5:\"count\";i:2933;}s:4:\"post\";a:3:{s:4:\"name\";s:4:\"post\";s:4:\"slug\";s:4:\"post\";s:5:\"count\";i:2797;}s:9:\"shortcode\";a:3:{s:4:\"name\";s:9:\"shortcode\";s:4:\"slug\";s:9:\"shortcode\";s:5:\"count\";i:2338;}s:5:\"posts\";a:3:{s:4:\"name\";s:5:\"posts\";s:4:\"slug\";s:5:\"posts\";s:5:\"count\";i:2216;}s:8:\"comments\";a:3:{s:4:\"name\";s:8:\"comments\";s:4:\"slug\";s:8:\"comments\";s:5:\"count\";i:2020;}s:2:\"ai\";a:3:{s:4:\"name\";s:2:\"AI\";s:4:\"slug\";s:2:\"ai\";s:5:\"count\";i:1910;}s:9:\"ecommerce\";a:3:{s:4:\"name\";s:9:\"ecommerce\";s:4:\"slug\";s:9:\"ecommerce\";s:5:\"count\";i:1890;}s:8:\"security\";a:3:{s:4:\"name\";s:8:\"security\";s:4:\"slug\";s:8:\"security\";s:5:\"count\";i:1842;}s:6:\"images\";a:3:{s:4:\"name\";s:6:\"images\";s:4:\"slug\";s:6:\"images\";s:5:\"count\";i:1775;}s:5:\"email\";a:3:{s:4:\"name\";s:5:\"email\";s:4:\"slug\";s:5:\"email\";s:5:\"count\";i:1665;}s:5:\"image\";a:3:{s:4:\"name\";s:5:\"image\";s:4:\"slug\";s:5:\"image\";s:5:\"count\";i:1643;}s:6:\"google\";a:3:{s:4:\"name\";s:6:\"google\";s:4:\"slug\";s:6:\"google\";s:5:\"count\";i:1569;}s:8:\"facebook\";a:3:{s:4:\"name\";s:8:\"facebook\";s:4:\"slug\";s:8:\"facebook\";s:5:\"count\";i:1524;}s:7:\"twitter\";a:3:{s:4:\"name\";s:7:\"twitter\";s:4:\"slug\";s:7:\"twitter\";s:5:\"count\";i:1514;}s:7:\"gallery\";a:3:{s:4:\"name\";s:7:\"gallery\";s:4:\"slug\";s:7:\"gallery\";s:5:\"count\";i:1460;}s:9:\"analytics\";a:3:{s:4:\"name\";s:9:\"analytics\";s:4:\"slug\";s:9:\"analytics\";s:5:\"count\";i:1400;}s:9:\"gutenberg\";a:3:{s:4:\"name\";s:9:\"gutenberg\";s:4:\"slug\";s:9:\"gutenberg\";s:5:\"count\";i:1399;}s:5:\"login\";a:3:{s:4:\"name\";s:5:\"login\";s:4:\"slug\";s:5:\"login\";s:5:\"count\";i:1398;}s:9:\"elementor\";a:3:{s:4:\"name\";s:9:\"elementor\";s:4:\"slug\";s:9:\"elementor\";s:5:\"count\";i:1360;}s:7:\"sidebar\";a:3:{s:4:\"name\";s:7:\"sidebar\";s:4:\"slug\";s:7:\"sidebar\";s:5:\"count\";i:1329;}s:6:\"social\";a:3:{s:4:\"name\";s:6:\"social\";s:4:\"slug\";s:6:\"social\";s:5:\"count\";i:1205;}s:5:\"block\";a:3:{s:4:\"name\";s:5:\"block\";s:4:\"slug\";s:5:\"block\";s:5:\"count\";i:1182;}s:7:\"content\";a:3:{s:4:\"name\";s:7:\"content\";s:4:\"slug\";s:7:\"content\";s:5:\"count\";i:1173;}s:7:\"payment\";a:3:{s:4:\"name\";s:7:\"payment\";s:4:\"slug\";s:7:\"payment\";s:5:\"count\";i:1170;}s:15:\"payment-gateway\";a:3:{s:4:\"name\";s:15:\"payment gateway\";s:4:\"slug\";s:15:\"payment-gateway\";s:5:\"count\";i:1160;}s:4:\"page\";a:3:{s:4:\"name\";s:4:\"page\";s:4:\"slug\";s:4:\"page\";s:5:\"count\";i:1156;}s:5:\"video\";a:3:{s:4:\"name\";s:5:\"video\";s:4:\"slug\";s:5:\"video\";s:5:\"count\";i:1134;}s:11:\"performance\";a:3:{s:4:\"name\";s:11:\"performance\";s:4:\"slug\";s:11:\"performance\";s:5:\"count\";i:1069;}s:7:\"widgets\";a:3:{s:4:\"name\";s:7:\"widgets\";s:4:\"slug\";s:7:\"widgets\";s:5:\"count\";i:1058;}s:10:\"e-commerce\";a:3:{s:4:\"name\";s:10:\"e-commerce\";s:4:\"slug\";s:10:\"e-commerce\";s:5:\"count\";i:1048;}s:5:\"media\";a:3:{s:4:\"name\";s:5:\"media\";s:4:\"slug\";s:5:\"media\";s:5:\"count\";i:1046;}s:6:\"slider\";a:3:{s:4:\"name\";s:6:\"slider\";s:4:\"slug\";s:6:\"slider\";s:5:\"count\";i:1020;}s:4:\"spam\";a:3:{s:4:\"name\";s:4:\"spam\";s:4:\"slug\";s:4:\"spam\";s:5:\"count\";i:993;}s:5:\"links\";a:3:{s:4:\"name\";s:5:\"links\";s:4:\"slug\";s:5:\"links\";s:5:\"count\";i:970;}s:12:\"contact-form\";a:3:{s:4:\"name\";s:12:\"contact form\";s:4:\"slug\";s:12:\"contact-form\";s:5:\"count\";i:956;}s:4:\"form\";a:3:{s:4:\"name\";s:4:\"form\";s:4:\"slug\";s:4:\"form\";s:5:\"count\";i:945;}s:6:\"search\";a:3:{s:4:\"name\";s:6:\"search\";s:4:\"slug\";s:6:\"search\";s:5:\"count\";i:942;}s:6:\"editor\";a:3:{s:4:\"name\";s:6:\"editor\";s:4:\"slug\";s:6:\"editor\";s:5:\"count\";i:879;}s:4:\"chat\";a:3:{s:4:\"name\";s:4:\"chat\";s:4:\"slug\";s:4:\"chat\";s:5:\"count\";i:874;}s:5:\"embed\";a:3:{s:4:\"name\";s:5:\"embed\";s:4:\"slug\";s:5:\"embed\";s:5:\"count\";i:852;}s:8:\"shipping\";a:3:{s:4:\"name\";s:8:\"shipping\";s:4:\"slug\";s:8:\"shipping\";s:5:\"count\";i:831;}s:14:\"contact-form-7\";a:3:{s:4:\"name\";s:14:\"contact form 7\";s:4:\"slug\";s:14:\"contact-form-7\";s:5:\"count\";i:822;}s:7:\"chatbot\";a:3:{s:4:\"name\";s:7:\"chatbot\";s:4:\"slug\";s:7:\"chatbot\";s:5:\"count\";i:818;}s:4:\"menu\";a:3:{s:4:\"name\";s:4:\"menu\";s:4:\"slug\";s:4:\"menu\";s:5:\"count\";i:813;}s:3:\"rss\";a:3:{s:4:\"name\";s:3:\"rss\";s:4:\"slug\";s:3:\"rss\";s:5:\"count\";i:806;}s:10:\"buddypress\";a:3:{s:4:\"name\";s:10:\"buddypress\";s:4:\"slug\";s:10:\"buddypress\";s:5:\"count\";i:787;}s:3:\"api\";a:3:{s:4:\"name\";s:3:\"api\";s:4:\"slug\";s:3:\"api\";s:5:\"count\";i:775;}s:8:\"checkout\";a:3:{s:4:\"name\";s:8:\"checkout\";s:4:\"slug\";s:8:\"checkout\";s:5:\"count\";i:773;}s:5:\"forms\";a:3:{s:4:\"name\";s:5:\"forms\";s:4:\"slug\";s:5:\"forms\";s:5:\"count\";i:769;}s:5:\"pages\";a:3:{s:4:\"name\";s:5:\"pages\";s:4:\"slug\";s:5:\"pages\";s:5:\"count\";i:765;}s:9:\"dashboard\";a:3:{s:4:\"name\";s:9:\"dashboard\";s:4:\"slug\";s:9:\"dashboard\";s:5:\"count\";i:763;}s:4:\"feed\";a:3:{s:4:\"name\";s:4:\"feed\";s:4:\"slug\";s:4:\"feed\";s:5:\"count\";i:754;}s:9:\"marketing\";a:3:{s:4:\"name\";s:9:\"marketing\";s:4:\"slug\";s:9:\"marketing\";s:5:\"count\";i:754;}s:4:\"ajax\";a:3:{s:4:\"name\";s:4:\"ajax\";s:4:\"slug\";s:4:\"ajax\";s:5:\"count\";i:732;}s:9:\"affiliate\";a:3:{s:4:\"name\";s:9:\"affiliate\";s:4:\"slug\";s:9:\"affiliate\";s:5:\"count\";i:716;}s:7:\"youtube\";a:3:{s:4:\"name\";s:7:\"youtube\";s:4:\"slug\";s:7:\"youtube\";s:5:\"count\";i:716;}s:8:\"category\";a:3:{s:4:\"name\";s:8:\"category\";s:4:\"slug\";s:8:\"category\";s:5:\"count\";i:715;}s:8:\"calendar\";a:3:{s:4:\"name\";s:8:\"calendar\";s:4:\"slug\";s:8:\"calendar\";s:5:\"count\";i:705;}s:10:\"responsive\";a:3:{s:4:\"name\";s:10:\"responsive\";s:4:\"slug\";s:10:\"responsive\";s:5:\"count\";i:695;}s:6:\"blocks\";a:3:{s:4:\"name\";s:6:\"blocks\";s:4:\"slug\";s:6:\"blocks\";s:5:\"count\";i:695;}s:8:\"payments\";a:3:{s:4:\"name\";s:8:\"payments\";s:4:\"slug\";s:8:\"payments\";s:5:\"count\";i:693;}s:6:\"events\";a:3:{s:4:\"name\";s:6:\"events\";s:4:\"slug\";s:6:\"events\";s:5:\"count\";i:691;}s:5:\"popup\";a:3:{s:4:\"name\";s:5:\"popup\";s:4:\"slug\";s:5:\"popup\";s:5:\"count\";i:685;}s:10:\"automation\";a:3:{s:4:\"name\";s:10:\"automation\";s:4:\"slug\";s:10:\"automation\";s:5:\"count\";i:678;}s:6:\"jquery\";a:3:{s:4:\"name\";s:6:\"jquery\";s:4:\"slug\";s:6:\"jquery\";s:5:\"count\";i:664;}s:3:\"css\";a:3:{s:4:\"name\";s:3:\"css\";s:4:\"slug\";s:3:\"css\";s:5:\"count\";i:654;}s:7:\"contact\";a:3:{s:4:\"name\";s:7:\"contact\";s:4:\"slug\";s:7:\"contact\";s:5:\"count\";i:652;}s:8:\"tracking\";a:3:{s:4:\"name\";s:8:\"tracking\";s:4:\"slug\";s:8:\"tracking\";s:5:\"count\";i:630;}s:5:\"share\";a:3:{s:4:\"name\";s:5:\"share\";s:4:\"slug\";s:5:\"share\";s:5:\"count\";i:628;}s:4:\"link\";a:3:{s:4:\"name\";s:4:\"link\";s:4:\"slug\";s:4:\"link\";s:5:\"count\";i:624;}s:9:\"live-chat\";a:3:{s:4:\"name\";s:9:\"live chat\";s:4:\"slug\";s:9:\"live-chat\";s:5:\"count\";i:624;}s:3:\"ads\";a:3:{s:4:\"name\";s:3:\"ads\";s:4:\"slug\";s:3:\"ads\";s:5:\"count\";i:621;}s:10:\"javascript\";a:3:{s:4:\"name\";s:10:\"javascript\";s:4:\"slug\";s:10:\"javascript\";s:5:\"count\";i:616;}s:10:\"newsletter\";a:3:{s:4:\"name\";s:10:\"newsletter\";s:4:\"slug\";s:10:\"newsletter\";s:5:\"count\";i:601;}s:10:\"categories\";a:3:{s:4:\"name\";s:10:\"categories\";s:4:\"slug\";s:10:\"categories\";s:5:\"count\";i:593;}s:7:\"booking\";a:3:{s:4:\"name\";s:7:\"booking\";s:4:\"slug\";s:7:\"booking\";s:5:\"count\";i:587;}s:5:\"theme\";a:3:{s:4:\"name\";s:5:\"theme\";s:4:\"slug\";s:5:\"theme\";s:5:\"count\";i:587;}s:4:\"gdpr\";a:3:{s:4:\"name\";s:4:\"GDPR\";s:4:\"slug\";s:4:\"gdpr\";s:5:\"count\";i:583;}s:6:\"button\";a:3:{s:4:\"name\";s:6:\"button\";s:4:\"slug\";s:6:\"button\";s:5:\"count\";i:578;}s:6:\"custom\";a:3:{s:4:\"name\";s:6:\"custom\";s:4:\"slug\";s:6:\"custom\";s:5:\"count\";i:575;}s:10:\"navigation\";a:3:{s:4:\"name\";s:10:\"navigation\";s:4:\"slug\";s:10:\"navigation\";s:5:\"count\";i:572;}s:7:\"comment\";a:3:{s:4:\"name\";s:7:\"comment\";s:4:\"slug\";s:7:\"comment\";s:5:\"count\";i:571;}s:12:\"social-media\";a:3:{s:4:\"name\";s:12:\"social media\";s:4:\"slug\";s:12:\"social-media\";s:5:\"count\";i:571;}s:6:\"import\";a:3:{s:4:\"name\";s:6:\"import\";s:4:\"slug\";s:6:\"import\";s:5:\"count\";i:564;}s:5:\"users\";a:3:{s:4:\"name\";s:5:\"users\";s:4:\"slug\";s:5:\"users\";s:5:\"count\";i:553;}s:8:\"redirect\";a:3:{s:4:\"name\";s:8:\"redirect\";s:4:\"slug\";s:8:\"redirect\";s:5:\"count\";i:549;}s:4:\"tags\";a:3:{s:4:\"name\";s:4:\"tags\";s:4:\"slug\";s:4:\"tags\";s:5:\"count\";i:548;}s:4:\"user\";a:3:{s:4:\"name\";s:4:\"user\";s:4:\"slug\";s:4:\"user\";s:5:\"count\";i:542;}s:6:\"mobile\";a:3:{s:4:\"name\";s:6:\"mobile\";s:4:\"slug\";s:6:\"mobile\";s:5:\"count\";i:537;}s:7:\"gateway\";a:3:{s:4:\"name\";s:7:\"gateway\";s:4:\"slug\";s:7:\"gateway\";s:5:\"count\";i:534;}s:5:\"cache\";a:3:{s:4:\"name\";s:5:\"cache\";s:4:\"slug\";s:5:\"cache\";s:5:\"count\";i:532;}s:13:\"accessibility\";a:3:{s:4:\"name\";s:13:\"accessibility\";s:4:\"slug\";s:13:\"accessibility\";s:5:\"count\";i:532;}s:10:\"statistics\";a:3:{s:4:\"name\";s:10:\"statistics\";s:4:\"slug\";s:10:\"statistics\";s:5:\"count\";i:523;}s:12:\"notification\";a:3:{s:4:\"name\";s:12:\"notification\";s:4:\"slug\";s:12:\"notification\";s:5:\"count\";i:513;}s:8:\"products\";a:3:{s:4:\"name\";s:8:\"products\";s:4:\"slug\";s:8:\"products\";s:5:\"count\";i:494;}s:7:\"privacy\";a:3:{s:4:\"name\";s:7:\"privacy\";s:4:\"slug\";s:7:\"privacy\";s:5:\"count\";i:491;}s:7:\"reviews\";a:3:{s:4:\"name\";s:7:\"reviews\";s:4:\"slug\";s:7:\"reviews\";s:5:\"count\";i:491;}}','off'),(285553,'_site_transient_timeout_browser_7f65ff317c237641f7aace3b7dac03d6','1785935297','off'),(285554,'_site_transient_browser_7f65ff317c237641f7aace3b7dac03d6','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:13:\"91.0.4472.124\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285555,'_site_transient_timeout_php_check_990bfacb848fa087bcfc06850f5e4447','1785935298','off'),(285556,'_site_transient_php_check_990bfacb848fa087bcfc06850f5e4447','a:5:{s:19:\"recommended_version\";s:3:\"8.3\";s:15:\"minimum_version\";s:3:\"7.4\";s:12:\"is_supported\";b:0;s:9:\"is_secure\";b:0;s:13:\"is_acceptable\";b:0;}','off'),(285617,'_site_transient_timeout_community-events-cb7ea1b3c77c575adf2824772ba58b83','1785405192','off'),(285618,'_site_transient_community-events-cb7ea1b3c77c575adf2824772ba58b83','a:4:{s:9:\"sandboxed\";b:0;s:5:\"error\";N;s:8:\"location\";a:1:{s:2:\"ip\";s:13:\"216.250.119.0\";}s:6:\"events\";a:2:{i:0;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:30:\"WordPress Hangout & Networking\";s:3:\"url\";s:67:\"https://www.meetup.com/wordpress-montclair-meetup/events/311737864/\";s:6:\"meetup\";s:26:\"WordPress Montclair Meetup\";s:10:\"meetup_url\";s:50:\"https://www.meetup.com/wordpress-montclair-meetup/\";s:4:\"date\";s:19:\"2026-08-05 18:30:00\";s:8:\"end_date\";s:19:\"2026-08-05 21:30:00\";s:20:\"start_unix_timestamp\";i:1785969000;s:18:\"end_unix_timestamp\";i:1785979800;s:8:\"location\";a:4:{s:8:\"location\";s:18:\"Montclair, NJ, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:40.816208000000003;s:9:\"longitude\";d:-74.218506000000005;}}i:1;a:10:{s:4:\"type\";s:6:\"meetup\";s:5:\"title\";s:29:\"An Evening of Lightning Talks\";s:3:\"url\";s:76:\"https://www.meetup.com/philadelphia-wordpress-meetup-group/events/315752921/\";s:6:\"meetup\";s:35:\"Philadelphia WordPress Meetup Group\";s:10:\"meetup_url\";s:59:\"https://www.meetup.com/philadelphia-wordpress-meetup-group/\";s:4:\"date\";s:19:\"2026-09-24 19:00:00\";s:8:\"end_date\";s:19:\"2026-09-24 21:00:00\";s:20:\"start_unix_timestamp\";i:1790290800;s:18:\"end_unix_timestamp\";i:1790298000;s:8:\"location\";a:4:{s:8:\"location\";s:21:\"Philadelphia, PA, USA\";s:7:\"country\";s:2:\"us\";s:8:\"latitude\";d:39.962153999999998;s:9:\"longitude\";d:-75.140749999999997;}}}}','off'),(285619,'_site_transient_timeout_feed_9bbd59226dc36b9b26cd43f15694c5c3','1785405193','off'),(285620,'_site_transient_feed_9bbd59226dc36b9b26cd43f15694c5c3','a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:52:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:8:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"The latest news about WordPress and the WordPress community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:13:\"lastBuildDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 15:30:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"en-US\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:9:\"generator\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://wordpress.org/?v=7.1-beta4-62927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"image\";a:1:{i:0;a:6:{s:4:\"data\";s:11:\"\n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:3:\"url\";a:1:{i:0;a:5:{s:4:\"data\";s:29:\"https://s.w.org/favicon.ico?2\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"WordPress News\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:26:\"https://wordpress.org/news\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:5:\"width\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:6:\"height\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"32\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}s:4:\"item\";a:10:{i:0;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 7.1 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 15:30:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"7-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21243\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:347:\"WordPress 7.1 Beta 4 is ready for download and testing!  This beta release is intended for testing and development only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features. How to Test WordPress 7.1 Beta […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Benjamin Zekavica\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:7428:\"\n<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 4 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 4</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 4 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta4.zip\">Beta 4 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" target=\"_blank\" rel=\"noreferrer noopener\">WP-CLI</a> command: <br><code>wp core update --version=7.1-beta4</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&networking=no&php=8.3&wp=beta&language=&multisite=no\" target=\"_blank\" rel=\"noopener\">7.1 Beta 4 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Find out what’s new in WordPress 7.1</strong>: Read the <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" target=\"_blank\" rel=\"noopener\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" target=\"_blank\" rel=\"noopener\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\" rel=\"noopener\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 7.1 Beta 4?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 4 contains more than <strong>114</strong> updates and fixes since the Beta 3 release, including <strong>51</strong> in the Editor and <strong>63</strong> in Core. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.1?since=2026-07-22&until=2026-07-29\" target=\"_blank\" rel=\"noopener\">GitHub commits for 7.1</a> since July 22, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F22%2F2026..07%2F29%2F2026&milestone=7.1&col=id&col=milestone&col=owner&col=type&col=priority&order=id\" target=\"_blank\" rel=\"noopener\">Closed Trac tickets for 7.1</a> since July 22, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Beta 4 brings a round of fixes that make the editor smoother to work with. Notes now stay reliably tied to the passage they refer to, and tagged people are displayed cleanly and clearly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 4 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testers lend their eyes,<br>edge cases hide in plain sight—<br>Patch, rebuild, refine.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a href=\'https://profiles.wordpress.org/krupajnanda/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>krupajnanda</a> for preparing this post and <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/wildworks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wildworks</a>, <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a> for proofreading and review.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\" target=\"_blank\" rel=\" noopener\"><img data-recalc-dims=\"1\" fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-style:none;border-width:0px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;box-shadow:var(--wp--preset--shadow--natural)\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a><figcaption class=\"wp-element-caption\">Join us for the launch of WordPress 7.1 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a>, August 16–19.</figcaption></figure>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21243\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 7.1 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2026 15:23:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"7-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21177\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:347:\"WordPress 7.1 Beta 3 is ready for download and testing!  This beta release is intended for testing and development only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features. How to Test WordPress 7.1 Beta […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Benjamin Zekavica\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8428:\"\n<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 3 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 3</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 3 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" target=\"_blank\" rel=\"noreferrer noopener\">WP-CLI</a> command: <br><code>wp core update --version=7.1-beta3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&networking=no&php=8.3&wp=beta&language=&multisite=no\" target=\"_blank\" rel=\"noopener\">7.1 Beta 3 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Find out what’s new in WordPress 7.1</strong>: Read the <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" target=\"_blank\" rel=\"noopener\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" target=\"_blank\" rel=\"noopener\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\" rel=\"noopener\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 7.1 Beta 3?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For technical details on the more than <strong>71 issues</strong> addressed since Beta 1, see the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F15%2F2026..07%2F22%2F2026&milestone=7.1&group=component&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed 7.1 WordPress Core Trac tickets</a> since July 15, 2026</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.1?since=2026-07-15&until=2026-07-22\">7.1 Gutenberg commits</a> since July 15, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Note: <strong>Beta 2 was released on July 17, 2026</strong>, as part of the <a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\">WordPress 7.0.2 release</a> and includes important security fixes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Beta 3 introduces two improvements to styling.</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Applying local style changes globally is no longer an all-or-nothing action. The <a href=\"https://github.com/WordPress/gutenberg/pull/79839\" target=\"_blank\" rel=\"noopener\">Apply globally</a> option in the block inspector now opens a quick review step, allowing you to choose which modified styles to apply globally while keeping the rest as local overrides.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other notable fixes include improvements to media uploads: long animated GIF uploads no longer hang, images rotated using EXIF metadata are processed correctly, and uploading a single HEIC image in Safari no longer creates two entries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The editor also includes additional fixes for Notes, responsive styling, and custom CSS. For developers, WordPress Coding Standards has been updated to version 3.4.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/2026/05/22/extending-unicode-support-in-email-addresses-usernames-and-slugs/\" target=\"_blank\" rel=\"noopener\">Unicode email address support</a> will <strong>not be included</strong> in WordPress 7.1. The work will continue in a community plugin, allowing broader testing of compatibility, security, and data-handling considerations.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Fresh bugs surface now,<br>click by click, we chase them down—<br>codebase grows steady.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/krupajnanda/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>krupajnanda</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <br><a href=\'https://profiles.wordpress.org/wildworks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wildworks</a>, <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a> <em>for proofreading and review.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-style:none;border-width:0px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;box-shadow:var(--wp--preset--shadow--natural)\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a><figcaption class=\"wp-element-caption\">Join us for the launch of WordPress 7.1 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a>, August 16–19.</figcaption></figure>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21177\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:66:\"\n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"WordPress 7.0.2 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 18:45:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:4:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21167\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:373:\"WordPress 7.0.2 is now available. The 7.0.2 security release addresses one critical and one high severity security issue. Because this is a security release, it is recommended that you update your sites immediately. Due to the severity, the WordPress.org team have enabled forced updates via the auto-update system for sites running affected versions. To manually […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:4464:\"\n<h2 class=\"wp-block-heading\">WordPress 7.0.2 is now available.</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The 7.0.2 security release addresses one critical and one high severity security issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release, <strong>it is recommended that you update your sites immediately.</strong> Due to the severity, the WordPress.org team have enabled forced updates via the auto-update system for sites running affected versions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To manually update you can visit your WordPress Dashboard, click “Updates”, and then click “Update Now”, or you can <a href=\"https://wordpress.org/wordpress-7.0.2.zip\">download WordPress 7.0.2 from WordPress.org</a>. On sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the following people for responsibly <a href=\"https://hackerone.com/wordpress\">reporting</a> vulnerabilities and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A facilitated SQL injection issue reported as a team by TF1T, dtro, and haongo </li>\n\n\n\n<li>A REST API batch-route confusion and SQL injection issue leading to Remote Code Execution reported by Adam Kues at <a href=\"https://slcyber.io\"><u>Assetnote / Searchlight Cyber</u></a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-7-0-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Backports</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress 6.9 is affected by both vulnerabilities. Version 6.9.5 has been released containing fixes for both.</li>\n\n\n\n<li>WordPress 6.8 is only affected by the first vulnerability. Version 6.8.6 has been released containing a fix.</li>\n\n\n\n<li>The beta release of WordPress 7.1 is affected by both vulnerabilities. Version 7.1 beta2 has been released containing fixes for both.</li>\n\n\n\n<li>Versions of WordPress prior to 6.8 are not affected.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">CVE and GHSA references</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-fpp7-x2x2-2mjf\"><code>CVE-2026-60137</code> / <code>GHSA-fpp7-x2x2-2mjf</code></a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q\"><code>CVE-2026-63030</code> / <code>GHSA-ff9f-jf42-662q</code></a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> and <a href=\"https://profiles.wordpress.org/barry/\">Barry Abrahamson</a>. In addition to the security researchers mentioned above, WordPress 7.0.2 would not have been possible without the significant contributions of the following people: <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/Barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/Matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, plus representatives from Altis, Automattic, Bluehost, Cloudflare, GoDaddy, Hostinger, and WP Engine.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:20:\"WordPress 7.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 15:53:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:11:\"Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"General\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:3:\"7-1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:7:\"release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20987\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:354:\"WordPress 7.1 Beta 1 is ready for download and testing!  This beta release is intended for testing and development only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features. How to Test WordPress 7.1 Beta 1 […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Krupa Nanda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:18997:\"\n<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 1 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 1 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" target=\"_blank\" rel=\"noreferrer noopener\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta1.zip\">Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" target=\"_blank\" rel=\"noreferrer noopener\">WP-CLI</a> command: <br><code>wp core update --version=7.1-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&networking=no&php=8.3&wp=beta&language=&multisite=no\" target=\"_blank\" rel=\"noopener\">7.1 Beta 1 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\" data-type=\"link\" data-id=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\" target=\"_blank\" rel=\"noopener\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing! </p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" target=\"_blank\" rel=\"noopener\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" target=\"_blank\" rel=\"noopener\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" target=\"_blank\" rel=\"noopener\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 will include new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 7.0 in the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2026/03/11/whats-new-in-gutenberg-22-7-11-march/\">22.7</a>, <a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/\">22.8</a>, <a href=\"https://make.wordpress.org/core/2026/04/09/whats-new-in-gutenberg-22-9-8-april/\">22.9</a>, <a href=\"https://make.wordpress.org/core/2026/04/22/whats-new-in-gutenberg-23-0-22-april/\">23.0</a>, <a href=\"https://make.wordpress.org/core/2026/05/07/whats-new-in-gutenberg-23-1-07-may/\">23.1</a>, <a href=\"https://make.wordpress.org/core/2026/05/21/whats-new-in-gutenberg-23-2-21-may/\">23.2</a>, <a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">23.3</a>, <a href=\"https://make.wordpress.org/core/2026/06/17/whats-new-in-gutenberg-23-3-03-jun-2/\">23.4</a>, <a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">23.5</a> and 23.6.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in WordPress 7.1?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 delivers a more complete set of styling controls, a smoother media experience, and a more personalized admin experience. Notes have evolved to add inline notes with @mentions and rich text formatting that make asynchronous feedback feel more powerful. New styling features unlock long requested features to style how blocks look across screen sizes and to style interactive states, all without writing custom CSS. Various client side media improvements means better format support, improved performance, and more resilient uploads when adding media to your site. A new inline cropping tool brings a fresh and more robust experience to editing images. Finally, the admin experience becomes easier to navigate with an ever present admin bar in the editors, improvements to the command palette, and various quality of life improvements. Underneath it all, developers get an expanding set of APIs to build on, and site owners get better support for a truly global audience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New suite of Notes features</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Notes continue to grow into a fuller collaboration experience, making asynchronous feedback between teams faster and more expressive.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Text Formatting</strong>: Notes now support inline formatting like bold, italic, code, links and adding emoji; each with a respective keyboard shortcut, so feedback reads clearly without breaking your flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>@mentions</strong>: Type “@” in a Note to pull up a searchable list of collaborators and tag someone directly, so feedback points at the right person without leaving the sidebar.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Leave notes anywhere</strong>: Start more than one conversation on the same block instead of folding every comment into a single thread, making it easier to track distinct pieces of feedback.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Inline notes:</strong> Leave a note on a text selection instead of on an entire block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Show more / show less</strong>: Long notes now collapse by default with a toggle to expand them, keeping the margin tidy while you write.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Style it your way, on any screen</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 takes a major step toward built-in responsive design and interactive styling, letting you achieve looks that once required writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Responsive styling</strong>: Define how a block looks at different screen sizes directly in the editor, for both Global Styles and individual blocks without the need of writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Viewport breakpoint customization</strong>: Theme authors can now define their own responsive breakpoints in <code>theme.json</code>, giving more flexibility for how responsive controls behave on a given site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Interactive state styling</strong>: Style how blocks respond to interaction, like a button changing color on hover or focus, using a standardized set of controls for both Global Styles and individual block instances.</p>\n\n\n\n<h3 class=\"wp-block-heading\">A smoother media experience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Uploading, editing, and browsing media keeps getting more capable and more reliable.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Client-side media processing</strong>: Image and media processing moves into the browser, now with broader format support that includes HEIC (the default format for iPhone photos), UltraHDR, AVIF and WebP support built in, plus GIF-to-video conversion for lighter, more efficient files. Uploads are also more resilient, with a progress indicator and automatic retries if your data connectivity drops off.</li>\n\n\n\n<li><strong>New Media Editor Modal</strong>: A dedicated modal for editing images replaces the inline cropping tool, bringing cropping, rotation, and metadata editing together in one streamlined workflow.</li>\n\n\n\n<li><strong>Smarter galleries</strong>: Gallery blocks can automatically pull in and sort media already attached to the current post, cutting down on manual set-up.</li>\n\n\n\n<li><strong>View attached images:</strong> After you upload images to a post, the inserter will automatically surface them in a new Attached images section to make it easier to find relevant images.</li>\n\n\n\n<li><strong>Infinite scrolling by default</strong>: The Media Library grid view now loads additional items automatically as you scroll, rather than requiring a click on “Load more” especially handy for sites that handle large media libraries. This can be disabled under your user profile.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">A more personal, more navigable admin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">These meaningful upgrades make the WordPress admin easier to move around in and more consistent with how you like to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Persistent toolbar (Omnibar)</strong>: The admin toolbar now travels with you into the Site Editor and Block Editor, with a series of polish improvements throughout.</li>\n\n\n\n<li><strong>Command palette improvements</strong>: Moving through the dashboard and editor with the command palette <code>(Ctrl/Cmd+K)</code> is more refined to make finding what you need even faster! Now results are grouped into <em>Recent, matching and Suggestions</em> sections instead of one flat list.</li>\n\n\n\n<li><strong>Admin color scheme in the Site Editor</strong>: The Site Editor now reflects your chosen admin color scheme instead of always using a fixed background.</li>\n\n\n\n<li><strong>DataViews and DataForms iterations</strong>: Continued refinement of the components behind managing lists of posts, pages, patterns, and templates, alongside the forms used to edit them.</li>\n\n\n\n<li><strong>Excerpts in the Posts list</strong>: The Posts list view now shows a short excerpt for each entry, making it easier to identify the post you’re looking for without opening it.</li>\n\n\n\n<li><strong>Visual revisions</strong>: This release adds a picker activity layout for browsing history in more detail, clearly labeled autosaves in the timeline, and an autosave notice that opens straight into the visual revisions view. Global Styles revisions get a small polish too, swapping the <em>active</em> style’s text label for a badge.</li>\n\n\n\n<li><strong>A dedicated Identity section</strong>: Site identity settings like your title, tagline, and icon are now live in their own clearly labeled section of the Site Editor, making them easier to find and update.</li>\n\n\n\n<li><strong>On This Day Widget</strong>: A new widget resurfaces what you published on this date in past years, right on your dashboard. A small nudge to look back on what you’ve written, and a reason to write something new today.</li>\n\n\n\n<li><strong>Allow Changing Comment Parent:</strong> Fixing a misthreaded comment used to mean editing the database directly. WordPress 7.1 adds an editable “In reply to” control to the Edit Comment screen, letting you pick a new parent from a dropdown of the post’s other comments. It’s scoped to the same post, so this is about untangling threads, not moving comments across posts.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">New blocks and block-level enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 release brings a handful of block refinements that give more control with fewer steps.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Playlist Block:</strong> A new block for adding a collection of audio files to a post or page, with an optional waveform visualization that shows the audio’s shape as it plays; a more visual way to present podcasts, music, or audio content without using any third-party plugins.</li>\n\n\n\n<li><strong>Tabs Block:</strong> A new block for organizing content into clickable tabbed panels instead of showing everything at once. It’s a cleaner way to present related content without overwhelming the page.</li>\n\n\n\n<li><strong>Background gradients</strong>: Background gradients and background images no longer conflict. The gradient used to get silently overridden by the image, but now they combine and display together. This fix extends beyond the Group block to Verse, Accordion, Pullquote, Post Content, and Quote block.</li>\n\n\n\n<li><strong>HTML block editable content</strong>: The HTML block now supports editable nested blocks. This is great to use for AI-generated content, which often arrives as raw HTML.</li>\n\n\n\n<li><strong>“Mark as decorative” for images</strong>: A new toggle on the Image block lets you hide purely decorative images from screen readers for a better accessibility experience.</li>\n\n\n\n<li><strong>Smarter shortcode handling</strong>: Pasting or converting a shortcode into the Embed block now creates a proper Embed block instead of leaving raw shortcode text behind, and the Shortcode block gains block-specific transforms of its own.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Built for a global audience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues work to make Core reflect the full diversity of its worldwide community, with progress toward supporting Unicode email addresses so usernames, slugs, and email addresses can better represent users everywhere.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Built for developers</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues to expand the foundation developers build on.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Abilities API expansion</strong>: Continued refinement of the Abilities API with improved querying, filtering, and input validation, giving developers and AI tooling a more reliable foundation to build on.</li>\n\n\n\n<li><strong>Block Bindings for list items</strong>: Block Bindings now extend to List Item, making it possible to connect more block content to dynamic data sources without custom code.</li>\n\n\n\n<li><strong>Custom icon registration</strong>: New functions let plugin and theme authors register their own icons for the Icons block for use throughout the block editor.</li>\n\n\n\n<li><strong>Enforced iframed editor</strong>: The post editor now always runs inside an iframe, isolating the editing canvas from admin styles for more predictable rendering. Blocks using Block API v2 or lower should be updated to v3 for compatibility.</li>\n\n\n\n<li><strong>wordpress/theme stabilization</strong>: Introduces design tokens and a stable React ThemeProvider to provide a more consistent, customizable foundation for WordPress admin interfaces.</li>\n\n\n\n<li><strong>Connectors authentication improvements</strong>: The Connectors screen now also supports username and application-password login – a more familiar way to connect plugins and services. This release also closes a security gap where browsers could auto-suggest saved credentials into the API key field.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">With so much in progress for WordPress 7.1 Beta 1, this is still only the beginning; expect continued refinement with each Beta and RC release ahead of the final release on <strong>August 19, 2026</strong> at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img data-recalc-dims=\"1\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-style:none;border-width:0px;border-top-left-radius:2px;border-top-right-radius:2px;border-bottom-left-radius:2px;border-bottom-right-radius:2px;box-shadow:var(--wp--preset--shadow--natural)\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&ssl=1 2048w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></a></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Just for you: a Beta 1 haiku:</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Seeds of Seven-One,<br>Notes, styles, media, and tools—<br>Test, and watch them bloom.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/benjamin_zekavica/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>benjamin_zekavica</a>, <a href=\'https://profiles.wordpress.org/amykamala/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>amykamala</a>, <a href=\'https://profiles.wordpress.org/wildworks/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>wildworks</a>, <a href=\'https://profiles.wordpress.org/adamsilverstein/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>adamsilverstein</a>, <a href=\'https://profiles.wordpress.org/annezazu/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>annezazu</a>, <a href=\'https://profiles.wordpress.org/fushar/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>fushar</a>, <a href=\'https://profiles.wordpress.org/jorgefilipecosta/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorgefilipecosta</a><em>, <a href=\'https://profiles.wordpress.org/joedolson/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>joedolson</a> for proofreading and review.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"Your Guide to WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2026/07/wcus-2026-guide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2026 13:07:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21007\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"WordCamp US 2026 returns for another year, this time in Phoenix, Arizona, for four days, August 16 to 19. It comes at a moment of real energy for WordPress, as artificial intelligence reshapes everyday workflows, the business of building and maintaining sites is shifting, and new people keep discovering the platform every day. Four tracks […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:56001:\"\n<figure class=\"wp-block-image size-large has-custom-border is-style-default\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" style=\"border-top-left-radius:5px;border-top-right-radius:5px;border-bottom-left-radius:5px;border-bottom-right-radius:5px\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1024%2C321&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=300%2C94&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=768%2C241&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=1536%2C482&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser-scaled.png?resize=2048%2C643&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><figcaption class=\"wp-element-caption\"><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> <strong>August 16-19, 2026 | Phoenix Convention Center</strong>,<strong> Phoenix, Arizona</strong></figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US 2026 returns for another year, this time in Phoenix, Arizona, for four days, August 16 to 19. It comes at a moment of real energy for WordPress, as artificial intelligence reshapes everyday workflows, the business of building and maintaining sites is shifting, and new people keep discovering the platform every day. Four tracks address this moment, covering AI, Honing Your Skills, Technical WordPress, and Beginner WordPress. Between them, there is something for everyone, whether you lead an agency, freelance for local clients, write code for a living, or are building your very first site. Whatever draws you in, you will leave Phoenix better equipped and better connected than ever.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-c9c19393 wp-block-buttons-is-layout-flex\" style=\"padding-right:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/tickets/\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/contributor-day/\">Sign Up for Contributor Day</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/schedule/\">See the Schedule</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Phoenix itself rewards anyone who adds a day or two to their trip. The capital of Arizona sits in the Sonoran Desert and pairs a lively downtown with a rich arts and food scene. The Roosevelt Row arts district is known for its galleries, murals, and independent restaurants. It is also home to one of the largest art walks in the region. Nearby, Chase Field and the Footprint Center host professional baseball and live shows, and the surrounding desert offers striking scenery at places like Papago Park and the Desert Botanical Garden.</p>\n\n\n\n<div class=\"wp-block-jetpack-slideshow aligncenter\" data-effect=\"fade\"><div class=\"wp-block-jetpack-slideshow_container swiper\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1147\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21052\" data-id=\"21052\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1920%2C1147&ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?w=1920&ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=300%2C179&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=767%2C458&ssl=1 767w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1024%2C612&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1536%2C918&ssl=1 1536w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"612\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21053\" data-id=\"21053\" data-aspect-ratio=\"1024 / 612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1024%2C612&ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1024%2C612&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=300%2C179&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=768%2C459&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1536%2C918&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?w=1920&ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"612\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21054\" data-id=\"21054\" data-aspect-ratio=\"1024 / 612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1024%2C612&ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1024%2C612&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=300%2C179&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=768%2C459&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1536%2C918&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?w=1920&ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"612\" alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21056\" data-id=\"21056\" data-aspect-ratio=\"1024 / 612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1024%2C612&ssl=1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1024%2C612&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=300%2C179&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=768%2C459&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1536%2C918&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?w=1920&ssl=1 1920w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" /></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\" role=\"button\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\" role=\"button\"></a><a aria-label=\"Pause Slideshow\" class=\"wp-block-jetpack-slideshow_button-pause\" role=\"button\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Start with Contributor Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The week begins with <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Contributor Day</a>, a full day set aside for giving back to the project that makes everything else possible. Attendees will gather in teams to improve WordPress itself, from Core code and documentation to design, training, accessibility, and translation.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress is so unique because we’re not just a product; we’re a movement.</p>\n<cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Contributor Day is open to everyone, whatever your skills, and whether or not you have ever contributed before. Come and experience the open source collaboration that is at the heart of the project. <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Signing up</a> in advance helps us prepare our veteran contributors and provide you with the best experience.</p>\n\n\n\n<figure data-wp-context=\"{"galleryId":"6a6a762e9d66d"}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px;border-radius:2px\">\n<figure data-wp-context=\"{"imageId":"6a6a762e9db0a"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9db0a\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19085\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19085\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9e0c3"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9e0c3\" class=\"wp-block-image size-large wp-lightbox-container\"><img loading=\"lazy\" decoding=\"async\" width=\"2560\" height=\"1707\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19089\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19089\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?w=2560&ssl=1 2560w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9e5fa"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9e5fa\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19110\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19110\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?w=2048&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9eaea"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9eaea\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21080\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9efe6"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9efe6\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21078\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21078\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9f4dc"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9f4dc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21079\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21079\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9f9e2"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9f9e2\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21077\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21077\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762e9fefc"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762e9fefc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21074\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21074\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea03f8"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea03f8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21076\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21076\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea08e6"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea08e6\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21083\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21083\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea0dd8"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea0dd8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21082\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21082\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea1312"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea1312\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19083\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19083\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Explore Real-World Projects on Showcase Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Day 2, Showcase Day, is dedicated to real-world WordPress projects and focuses on how teams develop features, manage publishing, and run demanding sites at scale. It brings to life the kind of work collected in the WordPress <a href=\"https://wordpress.org/showcase/\">Showcase</a>, the directory of standout sites built on the platform, from global brands like <a href=\"https://wordpress.org/showcase/disney-connect/\">Disney</a> to community publishers and institutions like <a href=\"https://wordpress.org/showcase/nasa/\">NASA</a>. Past WordCamp US Showcase days have brought teams from the likes of <a href=\"https://www.youtube.com/watch?v=PGvh7fCOUk0\">Wikimedia</a> and <a href=\"https://www.youtube.com/watch?v=MHk-Us00pTk\">CANCOM</a> to explain how they manage large, high-traffic systems. Other sessions took a builder’s perspective on catching bugs faster with automated testing and even running the Block Editor inside a custom app.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1024%2C576&ssl=1\" alt=\"\" class=\"wp-image-21064\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1536%2C864&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Dive Into Two Conference Days</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The two main conference days will bring a full slate of sessions across four tracks. First among them is the AI track, which treats the technology as a tool to handle with care rather than a headline to chase. Its sessions set guardrails for AI-assisted development, prepare for a web where AI agents become the visitors a site must serve, and weigh the legal and ethical questions of putting AI tools in the hands of clients. Speakers from companies like Elementor will be taking a look at where the web is heading, while keeping the focus on what teams can adopt today without giving up control of their work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Technical WordPress and Honing Your Skills tracks cover the craft and business of building with WordPress. On the technical side, sessions dig into modern development workflows, automated testing with tools like the browser-based <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, and plugin pipelines. The Honing Your Skills track adds practical guidance on pricing, maintenance, and how the agency model is changing as clients ask for more. The Beginner WordPress track keeps the door open for newcomers, with approachable sessions that make your first WordCamp less daunting. Hands-on work runs through all of these tracks, so alongside the talks, attendees will find workshops and working sessions where they can build something real and leave ready to apply it to their own projects.</p>\n\n\n\n<figure data-wp-context=\"{"galleryId":"6a6a762ea20d8"}\" data-wp-interactive=\"core/gallery\" class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width:20px\">\n<figure data-wp-context=\"{"imageId":"6a6a762ea24dc"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea24dc\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"19080\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-19080\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641-scaled.jpg?resize=2048%2C1365&ssl=1 2048w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea29c5"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea29c5\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21086\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21086\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea2ed8"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea2ed8\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21085\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21085\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea3259"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea3259\" class=\"wp-block-image size-full wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1280\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21065\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637801.jpg?resize=1920%2C1280&ssl=1\" alt=\"\" class=\"wp-image-21065\" style=\"aspect-ratio:1\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea3758"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea3758\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"819\" height=\"1024\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21084\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=819%2C1024&ssl=1\" alt=\"\" class=\"wp-image-21084\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=819%2C1024&ssl=1 819w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=240%2C300&ssl=1 240w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=1229%2C1536&ssl=1 1229w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=768%2C960&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?w=1536&ssl=1 1536w\" sizes=\"auto, (max-width: 819px) 100vw, 819px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n\n\n\n<figure data-wp-context=\"{"imageId":"6a6a762ea3c87"}\" data-wp-interactive=\"core/image\" data-wp-key=\"6a6a762ea3c87\" class=\"wp-block-image size-large wp-lightbox-container\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"683\" data-wp-class--hide=\"state.isContentHidden\" data-wp-class--show=\"state.isContentVisible\" data-wp-init=\"callbacks.setButtonStyles\" data-wp-on--click=\"actions.showLightbox\" data-wp-on--load=\"callbacks.setButtonStyles\" data-wp-on--pointerdown=\"actions.preloadImage\" data-wp-on--pointerenter=\"actions.preloadImageWithDelay\" data-wp-on--pointerleave=\"actions.cancelPreload\" data-wp-on-window--resize=\"callbacks.setButtonStyles\" data-id=\"21081\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1024%2C683&ssl=1\" alt=\"\" class=\"wp-image-21081\" style=\"aspect-ratio:1\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1024%2C683&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=300%2C200&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=768%2C512&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1536%2C1024&ssl=1 1536w, https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?w=1920&ssl=1 1920w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /><button\n class=\"lightbox-trigger\"\n type=\"button\"\n aria-haspopup=\"dialog\"\n data-wp-bind--aria-label=\"state.thisImage.triggerButtonAriaLabel\"\n data-wp-init=\"callbacks.initTriggerButton\"\n data-wp-on--click=\"actions.showLightbox\"\n data-wp-style--right=\"state.thisImage.buttonRight\"\n data-wp-style--top=\"state.thisImage.buttonTop\"\n >\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"12\" height=\"12\" fill=\"none\" viewBox=\"0 0 12 12\">\n <path fill=\"#fff\" d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" />\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Not all of the value happens in the session rooms. On the show floor, the <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#happiness\">Happiness Bar</a> is a free, drop-in help desk where you can sit down with a volunteer WordPress expert and work through whatever has you stuck. The <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#sponsor\">Sponsor Hall</a> next door is where many of the best unplanned conversations happen, and its <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#career\">Career Corner</a> gives anyone weighing their next move a relaxed place to browse the job board, meet company reps, and see who is hiring across the ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan Your Trip to Phoenix</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Getting to Phoenix is straightforward. The <a href=\"https://us.wordcamp.org/2026/about/venue/\">Phoenix Convention Center</a> sits in the heart of downtown, less than five miles from Phoenix Sky Harbor International Airport (PHX) and about 15 minutes away on the <a href=\"https://www.valleymetro.org/how-to-ride/rail\">Valley Metro light rail</a>. WordCamp US has a room block at the Sheraton Phoenix Downtown, close to the convention center, so <a href=\"https://book.passkey.com/event/51129263/owner/68648/home\">book your hotel</a> before the block fills, and <a href=\"https://us.wordcamp.org/2026/tickets/\">reserve your ticket</a> if you have not already. The full event lineup and details live on the <a href=\"https://us.wordcamp.org/2026/schedule/\">WordCamp US 2026 site</a>, and the conference closes with an evening social before everyone heads home.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-nowrap is-layout-flex wp-container-core-group-is-layout-7c1a8141 wp-block-group-is-layout-flex\" style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--edge-space)\">\n<ol style=\"padding-top:var(--wp--preset--spacing--10);padding-right:var(--wp--preset--spacing--10);padding-bottom:var(--wp--preset--spacing--10);padding-left:var(--wp--preset--spacing--10)\" class=\"wp-block-list has-off-white-background-color has-background has-large-font-size wp-container-content-9cfa9a5a\">\n<li><strong><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /> </strong><a href=\"https://us.wordcamp.org/2026/tickets/\">Reserve your ticket</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f6cf.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/about/travel-accommodation/\"> Find accommodations</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f68c.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/plan-your-trip-to-phoenix/\"> Plan your trip</a></li>\n\n\n\n<li><img src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cd.png\" alt=\"?\" class=\"wp-smiley\" style=\"height: 1em; max-height: 1em;\" /><a href=\"https://www.visitphoenix.com/\">Explore Phoenix</a></li>\n</ol>\n\n\n\n<figure class=\"wp-block-image size-full wp-container-content-577e1c61\" style=\"margin-top:0;margin-right:0;margin-bottom:0;margin-left:0\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2066\" height=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=2066%2C2560&ssl=1\" alt=\"\" class=\"wp-image-21164\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?w=2066&ssl=1 2066w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=242%2C300&ssl=1 242w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=826%2C1024&ssl=1 826w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=768%2C952&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=1240%2C1536&ssl=1 1240w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=1653%2C2048&ssl=1 1653w, https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?w=2000&ssl=1 2000w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Help Us Spread the Word!</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Whether attending in person or following along online, share your experience and help welcome others to the WordPress community. Use the #WCUS and #WordPress hashtags to tell your story on social.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"WordPress 7.0.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 17:33:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:8:\"Releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:3:\"7.0\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:5:\"7.0.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:14:\"minor-releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:8:\"releases\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21005\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:395:\"WordPress 7.0.1 is now available! This minor release includes fixes for 31 bugs throughout Core and the Block Editor, addressing issues affecting multiple areas of WordPress including the block editor, admin ui, and media. For a full list of bug fixes, please refer to the release candidate announcement. WordPress 7.0.1 is a short-cycle maintenance release. The next major version […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Estela Rueda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8722:\"\n<p class=\"wp-block-paragraph\"><strong>WordPress 7.0.1 is now available!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">This minor release includes fixes for 31 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&milestone=7.0.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">throughout Core</a> and the <a href=\"https://core.trac.wordpress.org/changeset/62610\">Block Editor</a>, addressing issues affecting multiple areas of WordPress including the block editor, admin ui, and media. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 is a short-cycle maintenance release. The next major version of WordPress will be 7.1; it is scheduled for release on 19 August 2026 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-7.0.1.zip\">download WordPress 7.0.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-7-0-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> and <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abduremon\">Abdur Rahman Emon</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">Abhishek Kumar</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam\">Adam Zieliński</a>, <a href=\"https://profiles.wordpress.org/iamadisingh\">Aditya Singh</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bacoords\">Brian Coords</a>, <a href=\"https://profiles.wordpress.org/masteradhoc\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/cogdesign\">cogdesign</a>, <a href=\"https://profiles.wordpress.org/danluu\">Dan Luu</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/darshitrajyaguru97\">Darshit Rajyaguru</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhruvang21\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/r1k0\">Erick Wambua</a>, <a href=\"https://profiles.wordpress.org/ecairol\">Esteban</a>, <a href=\"https://profiles.wordpress.org/estelaris\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/huzaifaalmesbah\">Huzaifa Al Mesbah</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/jamesbregenzer\">James</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/karthikeya01\">Karthikeya Bethu</a>, <a href=\"https://profiles.wordpress.org/khokansardar\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/rlucian\">Lucian R.</a>, <a href=\"https://profiles.wordpress.org/luismulinari\">luismulinari</a>, <a href=\"https://profiles.wordpress.org/dervishov\">Mahammad Darvishov</a>, <a href=\"https://profiles.wordpress.org/manhar\">Manhar Barot</a>, <a href=\"https://profiles.wordpress.org/mciampini\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/muryam\">Maryam Sultana</a>, <a href=\"https://profiles.wordpress.org/masum52\">Masum</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/369work\">Miroku</a>, <a href=\"https://profiles.wordpress.org/mohamedahamed\">Mohammed Noumaan Ahamed</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mustafabharmal\">Mustafa Bharmal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/ekla\">Rahul Kumar</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rishabhwp\">Rishabh Gupta</a>, <a href=\"https://profiles.wordpress.org/roshniahuja14\">Roshni Ahuja</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sakshamsharma5\">Saksham Sharma</a>, <a href=\"https://profiles.wordpress.org/andrewssanya\">SAndrew</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/swanandm\">Swanand M</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/edent\">Terence Eden</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tusharaddweb\">Tushar Patel</a>, <a href=\"https://profiles.wordpress.org/umesh.nevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yusufmudagal\">Yusuf Mudagal</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">choose a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Props to </em><a href=\'https://profiles.wordpress.org/jorbin/\' class=\'mention\'><span class=\'mentions-prefix\'>@</span>jorbin</a><em> for proofreading.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"21005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:63:\"\n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"The First AI Leaders Graduates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/06/ai-leaders-graduates/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 29 Jun 2026 20:29:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:3:{i:0;a:5:{s:4:\"data\";s:9:\"Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:7:\"Updates\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:2:\"AI\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20951\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:377:\"On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through AI Leaders, the nation’s first workforce-focused AI literacy course tied to a recognized credential. Each of them […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Mary Hubbard\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5442:\"\n<p class=\"wp-block-paragraph\">On June 23, around 40 students from the University of Illinois Chicago (UIC), Louisiana Tech University, and the University of Louisiana at Lafayette were celebrated in Chicago as the first cohort to receive the AI Leaders Micro-Credential through <a href=\"https://ai-leaders.org/\">AI Leaders</a>, the nation’s first workforce-focused AI literacy course tied to a recognized credential. Each of them earned it by building real projects, applying generative AI to genuine work, and contributing to the open source software that powers more than 40% of the web. Students who completed the course also earned $1,000, made possible by a donation from Automattic and UIC. This celebration was the moment the program had been building toward since it was <a href=\"https://wordpress.org/news/2026/02/ai-leaders-credential/\">first announced in February</a>.</p>\n\n\n\n<div class=\"wp-block-group has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\" style=\"background-color:#0c1125;padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center has-white-color has-text-color has-link-color has-normal-font-size wp-elements-2 wp-block-paragraph\"><strong>Explore the project portfolios built by this year’s AI Leaders</strong></p>\n\n\n\n<figure class=\"wp-block-image size-full\" style=\"margin-top:var(--wp--preset--spacing--10);margin-bottom:var(--wp--preset--spacing--10)\"><a href=\"https://aileaderswp.blog/\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/aileaderswpblog-scaled.png?ssl=1\" alt=\"\" class=\"wp-image-20975\" /></a></figure>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://aileaderswp.blog/\"><strong>AI Leaders · Class of 2026</strong></a></div>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">When the pilot launched, the goal was to test whether open source learning could connect directly to job pathways rather than stopping at a certificate. What makes this program distinct is that it is built on open source from the ground up: students learn on WordPress, contribute to it, and use generative AI the way the WordPress ecosystem uses it every day, leaving with a credential that employers can verify and a community that continues long after the course ends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The pilot reflects a shared belief that AI and open source skills should be within reach regardless of where someone lives or what they can afford.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress was built to expand access to publishing and participation on the open web.</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The program is a collaboration with distinct roles for each partner. It is funded through the <a href=\"https://osf.it.uic.edu/\">UIC Tech Solutions Open Source Fund</a>, with support from the <a href=\"https://www.uic.edu/\">University of Illinois Chicago</a> and <a href=\"https://automattic.com/?p=867048\">Automattic</a>, while the WordPress project and the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a> contribute to the development of the curriculum itself.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What Comes Next</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first cohort was just the beginning. The gathering in Chicago brought this group together with employers and agencies, and further job placements are already in motion. </p>\n\n\n\n<div class=\"wp-block-group has-off-white-2-background-color has-background is-layout-constrained wp-container-core-group-is-layout-2431c55b wp-block-group-is-layout-constrained\" style=\"padding-top:var(--wp--preset--spacing--edge-space);padding-right:var(--wp--preset--spacing--edge-space);padding-bottom:var(--wp--preset--spacing--edge-space);padding-left:var(--wp--preset--spacing--edge-space)\">\n<p class=\"has-text-align-center wp-block-paragraph\">The next round of AI Leaders is on the horizon. Subscribe for updates to be the first to hear when the next cohort opens and how to take part.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://ai-leaders.org/#apply\"><strong>Subscribe for AI Leaders Updates</strong></a></div>\n</div>\n</div>\n\n\n\n<hr class=\"wp-block-separator has-text-color has-dark-strokes-grey-color has-alpha-channel-opacity has-dark-strokes-grey-background-color has-background\" />\n\n\n\n<p class=\"wp-block-paragraph\"><em>WordPress offers a wide range of educational opportunities for people at every stage, from first steps to advanced contribution. Explore workshops, lesson plans, and community-created resources designed to help you build practical skills while connecting with others who are learning and contributing at <a href=\"https://wordpress.org/education/\">WordPress.org/education/</a>.</em></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20951\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:57:\"\n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"Browse the New Mercantile Swag Store\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"https://wordpress.org/news/2026/06/open-web-merch/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 22 Jun 2026 15:07:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:1:{i:0;a:5:{s:4:\"data\";s:6:\"Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20930\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:324:\"Mercantile, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"jillq\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5622:\"\n<p class=\"wp-block-paragraph\"><a href=\"https://mercantile.wordpress.org/\">Mercantile</a>, the official swag store of the WordPress project, has a newly redesigned storefront with a catalog that now sits front and center, and a design tuned to hold up across a wide range of screen sizes. There are also small touches, like automatically selecting a variant when only one is in stock and order emails styled to match the look and feel of the store.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"1055\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=2048%2C1055&ssl=1\" alt=\"\" class=\"wp-image-20931\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=300%2C155&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=767%2C395&ssl=1 767w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1024%2C528&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-1.png?resize=1536%2C791&ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Throughout the design, the storefront leans into the history and culture of WordPress. Visual and copy choices nod to familiar elements of the project, from the metabox and the admin bar to Wapuu making the occasional appearance, with small open source and code references for those who look closely. The aim was a storefront that feels uniquely WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Under the hood, the storefront shows what a modern WordPress and <a href=\"https://woocommerce.com/\">WooCommerce</a> site can do. It is built almost entirely with blocks, including a block-based cart, checkout, mini-cart, and order confirmation, supported by a set of custom theme blocks created for the store. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/interactivity-api/iapi-about/\">Interactivity API</a> powers the catalog navigation and modal states, the store runs on WordPress 7.0, and accessibility is built in throughout, honoring reduced-motion preferences across animations and meeting color contrast standards. Product pages surface per-product attributes such as size, material, and care, so shoppers have the details they need before adding an item to the cart.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"800\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=2048%2C800&ssl=1\" alt=\"\" class=\"wp-image-20932\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=300%2C117&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=768%2C300&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1024%2C400&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-2.png?resize=1536%2C600&ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This latest redesign supported the Mercantile booth at <a href=\"https://europe.wordcamp.org/2026/\">WordCamp Europe</a>. To make in-person sales work smoothly, the team enabled local pickup at checkout and added a set of event-only products refined to match the rest of the catalog. Fifty orders were completed at the event using in-person payments, a strong real-world test of the new checkout flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is more on the way! A playful experiment in progress will let curious shoppers explore a text-based version of the store from the command line, a small tribute to the developers who make up much of the WordPress community. Subtle hints pointing the way will appear once it is ready.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"2048\" height=\"719\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=2048%2C719&ssl=1\" alt=\"\" class=\"wp-image-20933\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?w=2048&ssl=1 2048w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=300%2C105&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=766%2C269&ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1024%2C360&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/image-3.png?resize=1536%2C539&ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The new Mercantile is the work of many contributors who designed, built, tested, and refined it together. Every purchase supports the <a href=\"https://wordpressfoundation.org/\">WordPress Foundation</a>, a 501(c)(3) nonprofit organization, in its mission to democratize publishing and preserve open source software for generations to come. Take a look around and find something you love.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-3e41869c wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link wp-element-button\" href=\"https://mercantile.wordpress.org/\">Shop at <strong>mercantile.WordPress.org</strong></a></div>\n</div>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20930\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:72:\"\n \n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"Kim Parsell Memorial Scholarship Opens for WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"https://wordpress.org/news/2026/06/kim-parsell-wcus-scholarship/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 19 Jun 2026 16:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:6:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:11:\"Kim Parsell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:11:\"Scholarship\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:5;a:5:{s:4:\"data\";s:4:\"WCUS\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20927\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:350:\"Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Brett McSherry\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:5857:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1920\" height=\"1080\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1920%2C1080&ssl=1\" alt=\"\" class=\"wp-image-20941\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?w=1920&ssl=1 1920w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=300%2C169&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=768%2C432&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1024%2C576&ssl=1 1024w, https://i0.wp.com/wordpress.org/news/files/2026/06/Kim-Parsell-Blog-post.png?resize=1536%2C864&ssl=1 1536w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Applications are now open for the 2026 Kim Parsell Memorial Scholarship, which supports one active WordPress contributor who identifies as a woman and has not previously attended WordCamp US. The scholarship helps make it possible for a community member with financial need to join WordCamp US 2026 in Phoenix, Arizona, and take part in one of the largest annual gatherings in the WordPress project.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship honors Kim Parsell, a longtime WordPress contributor whose work and presence left a meaningful mark on the project. Kim was known for her care, generosity, and commitment to helping others feel welcome in open source spaces. For readers who are less familiar with her story, the <a href=\"https://us.wordcamp.org/2019/memories-of-kim-parsell/\">tributes shared by friends and colleagues</a> offer a deeper look at her role in the WordPress community and the lasting impact she had on those who knew her. Through this scholarship, the WordPress Foundation continues to recognize contributors who reflect that same spirit of participation and community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress is built by people from many backgrounds, experiences, and areas of expertise. Events like WordCamp US create space for contributors to meet in person, learn from one another, and continue the work that supports the software and the community around it. For some contributors, the cost of travel, lodging, and registration can make attending difficult. The Kim Parsell Memorial Scholarship helps reduce that barrier for one eligible contributor each year.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Scholarship Details</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One scholarship will be awarded for WordCamp US 2026. Applicants must:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Identify as a woman. </li>\n\n\n\n<li>Be actively involved as a contributor to WordPress.</li>\n\n\n\n<li>Have never attended WordCamp US before.</li>\n\n\n\n<li>Demonstrate financial need to attend the event.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The scholarship includes the cost of a WordCamp US 2026 ticket, round-trip flight, and lodging. Applications are open through July 10, 2026, and all applicants will be notified of the decision by July 24, 2026.</p>\n\n\n\n<div class=\"wp-block-buttons is-layout-flex wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-background wp-element-button\" href=\"https://wordcampcentral.survey.fm/wcus-2026-kim-parsell-scholarship-application\" style=\"background-color:#6c214f\">Apply for the Kim Parsell Memorial Scholarship</a></div>\n</div>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-7387b849 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:66.66%\">\n<p class=\"wp-block-paragraph\">WordCamp US 2026 will take place August 16–19, 2026, at the Phoenix Convention Center in Phoenix, Arizona. Contributors, attendees, volunteers, organizers, and sponsors will come together to share ideas, learn from each other, and continue building the future of WordPress. For many contributors, attending in person creates new ways to collaborate, find support, and stay connected to the open source work that happens throughout the year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To learn more about eligibility, visit the <a href=\"https://wordpressfoundation.org/kim-parsell-memorial-scholarship/\">Kim Parsell Memorial Scholarship page</a>. Community members are encouraged to share this opportunity with contributors who may qualify. You can also learn more about attending WordCamp US 2026 on the <a href=\"https://us.wordcamp.org/2026/tickets/\">WordCamp US tickets page</a>, explore <a href=\"https://us.wordcamp.org/2026/call-for-volunteers/\">volunteer opportunities</a>, or review <a href=\"https://us.wordcamp.org/2026/call-for-sponsors/\">sponsorship opportunities</a>.</p>\n</div>\n\n\n\n<div class=\"wp-block-column is-layout-flow wp-block-column-is-layout-flow\" style=\"flex-basis:33.33%\">\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"943\" height=\"1978\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=943%2C1978&ssl=1\" alt=\"\" class=\"wp-image-20939\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?w=943&ssl=1 943w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=143%2C300&ssl=1 143w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=768%2C1610&ssl=1 768w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=488%2C1024&ssl=1 488w, https://i0.wp.com/wordpress.org/news/files/2026/06/WCUS26_Sign.png?resize=732%2C1536&ssl=1 732w\" sizes=\"auto, (max-width: 943px) 100vw, 943px\" /></figure>\n</div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20927\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:69:\"\n \n \n \n \n \n \n \n \n \n \n \n\n \n \n \n \n \n \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:4:{s:0:\"\";a:6:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:72:\"Global Partners Across the First Half of the 2026 WordPress Event Season\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://wordpress.org/news/2026/06/global-partners-first-half-2026/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 18 Jun 2026 17:01:21 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"category\";a:5:{i:0;a:5:{s:4:\"data\";s:9:\"Community\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:1;a:5:{s:4:\"data\";s:9:\"Education\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:2;a:5:{s:4:\"data\";s:6:\"Events\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:3;a:5:{s:4:\"data\";s:8:\"WordCamp\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}i:4;a:5:{s:4:\"data\";s:15:\"Global Partners\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20910\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:11:\"isPermaLink\";s:5:\"false\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:402:\"This post recaps how the WordPress project’s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional the first WordPress Developers Day, and a growing network of WordPress Campus Connect events, Global Partners staffed booths, sponsored sessions, and connected […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Harmony Romo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:40:\"http://purl.org/rss/1.0/modules/content/\";a:1:{s:7:\"encoded\";a:1:{i:0;a:5:{s:4:\"data\";s:8155:\"\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55169598894_0199c1bbb9_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20911\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">This post recaps how the WordPress project’s five Global Partners — Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger — supported community events during the first half of 2026. Across more than a dozen regional <a href=\"https://events.wordpress.org/novisad/2026/developer-day/\">the first WordPress Developers Day</a>, and a growing network of <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a> events, Global Partners staffed booths, sponsored sessions, and connected with developers, freelancers, students, and agency owners around the world.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A global footprint</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The year began in January with <a href=\"https://nepal.wordcamp.org/2026\">WordCamp Nepal</a>, where Jetpack joined the community in Kathmandu. The momentum carried into India, where <a href=\"https://kolhapur.wordcamp.org/2026\">WordCamp Kolhapur</a> and, a week later, <a href=\"https://pune.wordcamp.org/2026\">WordCamp Pune</a> brought Global Partners face-to-face with a student-heavy audience of roughly 200-250 attendees. In Pune, a session on connecting WordPress with AI workflows drew a large crowd, and attendees were curious about WordPress.com plans, new AI features, and Automattic for Agencies. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"1206\" height=\"675\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1206%2C675&ssl=1\" alt=\"\" class=\"wp-image-20920\" srcset=\"https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?w=1206&ssl=1 1206w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=300%2C168&ssl=1 300w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=766%2C429&ssl=1 766w, https://i0.wp.com/wordpress.org/news/files/2026/06/img_1932.jpg?resize=1024%2C573&ssl=1 1024w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">In February, Jetpack traveled to <a href=\"https://portharcourt.wordcamp.org/2026\">WordCamp Port Harcourt</a> in Nigeria, an inclusive and well-organized event with 256 attendees that featured talks on inclusion and accessibility. Locally produced swag was a standout success there, a reminder that the WordPress community’s reach extends well beyond Europe and North America.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Across Europe</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Spring brought a wave of European events. At <a href=\"https://madrid.wordcamp.org/2026\">WordCamp Madrid</a>, with 280 attendees, WordPress.com served as a Global Sponsor and ran a Wapuu treasure hunt that drew 97 participants. </p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/55230328181_175ece15a5_o-scaled.jpg?ssl=1\" alt=\"\" class=\"wp-image-20921\" /></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Down the coast in France, <a href=\"https://nice.wordcamp.org/2026\">WordCamp Nice</a> gave Jetpack a chance to connect with 247 freelancers and developers, an audience that appreciated concrete, easy-to-explain solutions and asked questions about newsletters, security, and Jetpack’s broader feature set.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://vienna.wordcamp.org/2026\">WordCamp Vienna</a> stood out for its developer-heavy crowd of 277. From a Jetpack-branded booth staffed on both days, the team engaged with agencies and merchants, fielded numerous questions about WooCommerce and security, and booked 8 agency meetings. Many builders were interested to learn that Automattic stands behind both WordPress.com and WooCommerce. In Italy and Germany, <a href=\"https://torino.wordcamp.org/2026\">WordCamp Torino</a> and <a href=\"https://leipzig.wordcamp.org/2026\">WordCamp Leipzig</a> both reflected growing curiosity about AI, a theme that resurfaced throughout the year. At Leipzig, with 109 agencies, hosting companies, and freelancers in attendance, WordPress.com staffed a booth where tote bags were in high demand, while conversations kept returning to AI and WordPress Studio.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://slovenia.wordcamp.org/2026\">WordCamp Slovenia </a>and <a href=\"https://portugal.wordcamp.org/2026\">WordCamp Portugal</a> closed the European stretch. WordPress.com brought a booth to Ljubljana, and in Porto, it appeared with both a booth and logo presence alongside WooCommerce, which suited an event filled with e-commerce builders and Woo payment providers. The first WordPress Developers Day in Novi Sad introduced a new format, with Jetpack as a global sponsor and nearly 30 in-depth conversations on Jetpack, WooCommerce, performance, and the realities of client work.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Community in Uganda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In May, <a href=\"https://kampala.wordcamp.org/2026\">WordCamp Kampala</a> brought four Global Partners onto the sponsor roster: Jetpack, WooCommerce, Bluehost, and WordPress.com. The event, themed “Tech for Social Good,” welcomed more than 200 attendees and reflected the energy of a fast-growing local community.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Support from Global Sponsors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Behind every one of these events is a layer of support that does not always appear at a booth. In 2026, Bluehost and Hostinger both joined the <a href=\"https://events.wordpress.org/sponsor/\">WordPress community sponsorship program</a> as top-tier Global Sponsors, alongside Jetpack and WordPress.com. Their contributions help underwrite the global WordCamp program and the community events that make a year like this possible. That program-level backing is what allows organizers in Kathmandu, Porto, and Kampala to bring their events to life, and the WordPress community is grateful to every partner that invests at that scale.<br></p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect reaches 6,200 students</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the most notable stories of 2026 is not a WordCamp at all. It is <a href=\"https://events.wordpress.org/campusconnect/\">WordPress Campus Connect</a>. As of early June, the program has passed 6,200 students, with 25 events completed in 2026, 45 events all-time, and 42 more in planning or already scheduled. WordPress.com has played a direct support role throughout, including providing hosting for WordPress Campus Connect events around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The connective tissue between these events and the broader community is real. An organizer first met at WordCamp Mukono went on to help lead WordPress Campus Connect work in Uganda. A student who built her first WordPress site at a WordPress Campus Connect event later attended a WordCamp. These events serve as a pathway for the next generation of WordPress contributors, builders, and professionals.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">If 2026 has shown anything, it is that interest in WordPress, and in the tools and services that Global Partners provide, continues to grow around the world. The questions being asked at booths and in sessions are sharper, the audiences more diverse, and the community’s reach more genuinely global. Thank you to Jetpack, WordPress.com, WooCommerce, Bluehost, and Hostinger for being part of that story this year, and to every organizer, volunteer, speaker, and attendee who made these events possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To find an upcoming event near you, visit <a href=\"https://central.wordcamp.org\">WordCamp Central</a>. To learn how organizations can support the WordPress project, see the <a href=\"https://events.wordpress.org/sponsor/\">community sponsorship program</a>.</p>\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:7:\"post-id\";a:1:{i:0;a:5:{s:4:\"data\";s:5:\"20910\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}s:27:\"http://www.w3.org/2005/Atom\";a:1:{s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:0:\"\";s:7:\"attribs\";a:1:{s:0:\"\";a:3:{s:4:\"href\";s:32:\"https://wordpress.org/news/feed/\";s:3:\"rel\";s:4:\"self\";s:4:\"type\";s:19:\"application/rss+xml\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:44:\"http://purl.org/rss/1.0/modules/syndication/\";a:2:{s:12:\"updatePeriod\";a:1:{i:0;a:5:{s:4:\"data\";s:9:\"\n hourly \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:15:\"updateFrequency\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"\n 1 \";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:30:\"com-wordpress:feed-additions:1\";a:1:{s:4:\"site\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"14607090\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:12:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 29 Jul 2026 21:53:12 GMT\";s:12:\"content-type\";s:34:\"application/rss+xml; charset=UTF-8\";s:4:\"vary\";s:37:\"Accept-Encoding, accept, content-type\";s:25:\"strict-transport-security\";s:12:\"max-age=3600\";s:6:\"x-olaf\";s:3:\"⛄\";s:13:\"last-modified\";s:29:\"Wed, 29 Jul 2026 15:30:58 GMT\";s:4:\"link\";s:63:\"<https://wordpress.org/news/wp-json/>; rel=\"https://api.w.org/\"\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT dca 1\";}s:5:\"build\";i:1764771750;s:21:\"cache_expiration_time\";i:1785405193;s:23:\"__cache_expiration_time\";i:1785405193;}','off'),(285621,'_site_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9','1785405193','off'),(285622,'_site_transient_feed_d117b5738fbd35bd8c0391cda1f2b5d9','a:6:{s:5:\"child\";a:1:{s:0:\"\";a:1:{s:3:\"rss\";a:1:{i:0;a:6:{s:4:\"data\";s:3:\"\n\n\n\";s:7:\"attribs\";a:1:{s:0:\"\";a:1:{s:7:\"version\";s:3:\"2.0\";}}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:1:{s:7:\"channel\";a:1:{i:0;a:6:{s:4:\"data\";s:112:\"\n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:1:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:16:\"WordPress Planet\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:8:\"language\";a:1:{i:0;a:5:{s:4:\"data\";s:2:\"en\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:47:\"WordPress Planet - http://planet.wordpress.org/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"item\";a:50:{i:0;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Open Channels FM: Signal – Issue 18\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557496\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://openchannels.fm/signal-issue-18/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:188:\"Talk about personal journeys in web development, the complexities of fame, and the benefits of open source, emphasizing enriching content options for listeners beyond traditional podcasts.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 17:54:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:1;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.1 Beta 4\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21243\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-4/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:6493:\"<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 4 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 4</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 4 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta4.zip\">Beta 4 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" rel=\"noreferrer noopener\" target=\"_blank\">WP-CLI</a> command: <br /><code>wp core update --version=7.1-beta4</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&networking=no&php=8.3&wp=beta&language=&multisite=no\" rel=\"noopener\" target=\"_blank\">7.1 Beta 4 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Find out what’s new in WordPress 7.1</strong>: Read the <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" rel=\"noopener\" target=\"_blank\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" rel=\"noopener\" target=\"_blank\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" rel=\"noopener\" target=\"_blank\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 7.1 Beta 4?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 4 contains more than <strong>114</strong> updates and fixes since the Beta 3 release, including <strong>51</strong> in the Editor and <strong>63</strong> in Core. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Each beta cycle focuses on bug fixes, and more are on the way with your help through testing. You can browse the technical details for all issues addressed since Beta 3 using these links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.1?since=2026-07-22&until=2026-07-29\" rel=\"noopener\" target=\"_blank\">GitHub commits for 7.1</a> since July 22, 2026</li>\n\n\n\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F22%2F2026..07%2F29%2F2026&milestone=7.1&col=id&col=milestone&col=owner&col=type&col=priority&order=id\" rel=\"noopener\" target=\"_blank\">Closed Trac tickets for 7.1</a> since July 22, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Beta 4 brings a round of fixes that make the editor smoother to work with. Notes now stay reliably tied to the passage they refer to, and tagged people are displayed cleanly and clearly.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 4 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testers lend their eyes,<br />edge cases hide in plain sight—<br />Patch, rebuild, refine.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to <a class=\"mention\" href=\"https://profiles.wordpress.org/krupajnanda/\"><span class=\"mentions-prefix\">@</span>krupajnanda</a> for preparing this post and <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/wildworks/\"><span class=\"mentions-prefix\">@</span>wildworks</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a> for proofreading and review.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\" rel=\" noopener\" target=\"_blank\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Join us for the launch of WordPress 7.1 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a>, August 16–19.</figcaption></figure>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 15:30:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Benjamin Zekavica\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:2;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"WPTavern: #227 – Maciek Palmowski on Testing Secure WordPress Hosting: Does the Marketing Match Reality?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206791\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"https://wptavern.com/podcast/227-maciek-palmowski-on-testing-secure-wordpress-hosting-does-the-marketing-match-reality\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:50326:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, testing secure WordPress hosting, does the marketing match the reality?</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Maciek Palmowski. Maciek is based in Poland and works at Patchstack, one of the companies in the WordPress ecosystem dedicated specifically to security. At Patchstack, Maciek collaborates with other security professionals on industry reports, bug bounty programmes, and solutions for agencies, product owners, and hosting companies aiming to secure their client sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I met up with Maciek at WordCamp Europe, and we discussed his presentation there. It examined the claims of secure hosting made by many WordPress hosting providers. He describes how Patchstack set out to test these claims with real world penetration testing, using 30 known plugin vulnerabilities across multiple hosts. Employing standardised methodologies and validating their results independently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The findings are sobering. The majority of WordPress specific attacks still get through, and there’s a significant gap between the marketing hype and real protection.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation starts with Maciek’s background, and how his journey in the WordPress security space led to a focus on the promises made by hosts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">From there, the discussion gets into the research approach, the selection of well-known vulnerabilities, consistent testing across different hosting environments, and the surprising result that even hosts with identical security tooling produce drastically different outcomes, showing it’s not just about the tools you use, but how you use them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about the Swiss cheese model of security, every layer will have holes, so you need multiple overlapping defences, and honest communication from hosts about their limitations.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also explored whether an industry-wide standard, or badge, for secure hosting is feasible or even desirable, given how easy it is for strong marketing claims to outpace reality.</p>\n\n\n\n<p class=\"wp-block-paragraph\">AI also enters the conversation, increasing both the speed and sophistication of attacks, and making patching, and processes, even more important, especially as the volume of vulnerabilities continues to rise and the time to exploitation drops.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in understanding what secure hosting really means, how to ask intelligent questions of providers, and the realities of WordPress security in 2026, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to find out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Maciek Palmowski.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:56] <strong>Maciek Palmowski:</strong> I am joined on the podcast by Maciek Palmowski. Hello Maciek.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Perfect. You did great.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:01] <strong>Nathan Wrigley:</strong> For some reason, your name has got into my head. A lot of the people that I interview, I struggle with their name, and I continue to struggle, but for some reason, I established many years ago that was how to say your name. And I think I’ve done it correctly ever since then.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:16] <strong>Maciek Palmowski:</strong> Yes you did. You’re almost having the typical Polish accent, so you’re doing great.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:21] <strong>Nathan Wrigley:</strong> So we are at WordCamp Europe, which is in Krakow, or Krakow, I don’t know how.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:26] <strong>Maciek Palmowski:</strong> Krakow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:27] <strong>Nathan Wrigley:</strong> Thank you, that was good. And the reason Maciek is correcting my pronunciation is because Maciek is actually from Poland, which I suppose means that this is a bit of a, well, it’s like a home game to you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:37] <strong>Maciek Palmowski:</strong> In a way so, but it’s also like a bit of a shame because I do like travelling when WordCamp Europe’s are happening. And, you know, just hopping on the train and going to Krakow, it was like a, I mean it’s cool because, yeah, the venue’s amazing, everything is great, but still I’m staying home, so yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:53] <strong>Nathan Wrigley:</strong> Yeah, mixed feelings. So Maciek has done, or is going to do a presentation at WordCamp EU. Have you done it yet?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:02] <strong>Maciek Palmowski:</strong> I will do it tomorrow.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:04] <strong>Nathan Wrigley:</strong> Okay. And are you all set, are you one of these like really prepared people that has all the slides done, or are you last minute?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:11] <strong>Maciek Palmowski:</strong> Everything is ready. I already did one version of it at the Checkout Summit in Palermo, so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:17] <strong>Nathan Wrigley:</strong> Oh I see. So you’ve had a sort of dry run of elsewhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:19] <strong>Maciek Palmowski:</strong> Of course.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:20] <strong>Nathan Wrigley:</strong> Excellent. So the presentation, which is going to be the focus of today’s conversation, is called Testing the promise, does secure hosting deliver? And I may as well read the blurb because it was a reasonably short one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it says, secure hosting, in quotes, is everywhere in WordPress. What does it actually protect against? We put this claim to the test with real penetration testing. 30 known vulnerabilities, multiple hosting providers, standardised methodology, validated by independent observers. The findings reveal a critical gap between marketing and reality. WordPress specific attacks succeed most of the time. That’s quite an alarming sentence. This talk shares the complete results and explains why generic security fails.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, we’ll get into that in a moment. But as with all people, when I’m talking to them about security, I guess it’s good to establish who you are, and what your credentials are and what you’ve done, and how is it that you get to talk about security with authority. So over to you really, a little moment to give us your bio and tell us about you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:20] <strong>Maciek Palmowski:</strong> Okay. So I work at Patchstack, and Patchstack is one of those few companies in WordPress space that are doing a lot in terms of security. We are constantly running this bug bounty for the whole ecosystem. We have quite a few solutions for both clients and hosting companies, and I work there right now. My role is, if I remember, the Growth Team Engineer, something like this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But yeah, I do spend a lot of time working with other security people. So when we are working on all the reports, when we are checking the data, I’m also part of those teams that are working on it. So yeah, I think I know a thing or two about what is happening behind the scenes when it comes to WordPress security.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:02] <strong>Nathan Wrigley:</strong> Yeah, thank you. Always good to get that established though, right at the outset.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Patchstack is a company which is not a host though, I suppose that’s important to mention at the beginning. It’s a company which is in the security space, very much in the WordPress space, but perhaps more broad than WordPress, I’m not sure. But not a hosting company.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But obviously your presentation focuses its aim on hosting, I guess because that’s one of the places where the claim about security is most often made. You know, you’ll go to a, the landing page of hosting Company X, and you’ll see somewhere fairly near the top, secure hosting, or something along those lines. And you’ve decided to examine that in fine detail and look at these 30 vulnerabilities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I guess really just tell us about this test and what it is that you decided to do and some of the items that came out of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:50] <strong>Maciek Palmowski:</strong> Okay, so maybe let’s start with how it even started, right? Because there was a trigger. At some point we published one report about the state of WordPress security. We tweeted about this. We got the response from none other than Matt Mullenweg, who kind of asked a very interesting question, but isn’t hosting companies taking care of this already?</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this was, kind of at this moment when we were, we thought that we know the answer that, no they aren’t. But to be honest, we didn’t have any broader proof about this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We knew how it’s working at some hosting companies, but we could say that it was more of an anecdotal evidence that we had. So this was kind of the trigger that made us, okay, let’s check this. But not with one partner or two partners, but with more hosting companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So we did this research twice. First we just did kind of a beta run because we weren’t sure about the result and, is it even a good idea to go deeper inside of it? And during our first run, we were already very surprised because like the methodology was very simple. We just installed vulnerable plugins and we checked if we would be able to use the vulnerability. Because if the hosting is claiming that, we got your back, we are making your website secure, we have this and that, this means that they should protect against it. So it was as simple as that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And when we were doing our first test, we were quite surprised because we saw, if I remember, that 80% of the attacks went through. 80% of the attacks. So our first reaction was, okay, we are doing something wrong. Okay, this was only few hosting companies, less plugins, but still the result were so surprising for us because we thought that, okay, that the problem exists, but it’s not that big of a problem. But it was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that’s why we did the second test. And this is about which the, my talk will be mostly when we tested more hosting companies, more plugins. And we saw that the problem still exists.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Of course it was, in some cases 70 few percent. So still, it’s a huge problem, especially if we are talking about some companies that are literally saying, you don’t have to install anything additional when it comes to security on your website. We got your back. They don’t. We found a lot of interesting things, but still the problem exists.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:21] <strong>Nathan Wrigley:</strong> So just deep diving into that a little bit, when tests like this are done, there’s obviously, the claim might be levelled, you know, obviously Patchstack would, this kind of maybe benefits Patchstack, if you know what I mean.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So let’s just sort of clear up what the test involved. So presumably the plugins that you chose are ones where it’s publicly known that there’s a vulnerability in this component or this particular file or what have you. So is that the case? This is stuff that, longstanding understanding that there’s a problem here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:51] <strong>Maciek Palmowski:</strong> Yes. We only use the plugins that we had all the proof of concepts. So we know how have the vulnerability happened, what was the attack vector? They were all reported through our bug bounty programme, because that’s why we had the proof of concept. Yeah, and that’s it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It was, like I said, it was as simple as that. We had a really broad mix of all the plugins. How many? It was 30 something of those plugins, if I remember. Different ones. Some were connected with WooCommerce. So, like a very broad selection of them. Different vulnerability types. So we try to mix it up as much as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:27] <strong>Nathan Wrigley:</strong> Was the situation for each hosting company the same though? In other words, was the things that you did in one hosting environment the exact same as you did in another hosting environment? No. You mixed that up a bit as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:38] <strong>Maciek Palmowski:</strong> I mean we used all the same plugins, like the methodology was always the same. But we got totally different results. Even if, and this was one of the most interesting findings, because very often hostings will put a logo of some company that takes care of security. For example, say, Cloudflare. And despite using the same stack for security, they got different results.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:02] <strong>Nathan Wrigley:</strong> Interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:03] <strong>Maciek Palmowski:</strong> So it turns out, in many cases, it’s not about the tools that you are using, it’s how you are using them, which was very interesting. And we did everything. We tried to enable every feature, every security features on those hosting, to kind of give them a chance to kind of make sure that they are defending the most as they can.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And the result in most cases was very simple. They were doing quite well with the generic ones like uploads, patch reversal, things like this, which are very generic in PHP. But with those WordPress specific attacks, they just failed miserably.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:44] <strong>Nathan Wrigley:</strong> That’s so interesting. The word secure hosting, which you’ll see all over the place, it feels a bit like using the word healthy on food. There’s no real definition of what healthy is. You know, a company selling chocolate could probably pretend that it’s healthy compared to something else.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:04] <strong>Maciek Palmowski:</strong> Like here, healthy chocolate is exactly, like in some cases secure hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:07] <strong>Nathan Wrigley:</strong> Right. So what do you take from this then? I mean basically, is your survey saying that whenever you see the word secure hosting, be sceptical?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:16] <strong>Maciek Palmowski:</strong> Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:16] <strong>Nathan Wrigley:</strong> Okay. As simple as that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:18] <strong>Maciek Palmowski:</strong> It’s as simple as that. Because one of the things that we were always promoting, security is not a plugin, it’s not a one button thing. Security is a process. It’s layers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And that’s kind of why we, especially after this report starting kind of using the term, Swiss cheese layer model. Because every layer will fail in some way. That’s also why you still need all the security solutions that hosting provides, because they do have a lot of interesting solutions against those generic attacks.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because they’re doing really great when it comes to those generic ones. And that’s great because some of the attacks will be already dealt with. So whatever passes to the second layer, it has less work to do because a lot of it was already stopped at the first layer. The second layer should be something more WordPress specific that understand what is installed. And with this it can catch also a lot of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But still, you have to be prepared that, because again, this layer also isn’t perfect. Because there are zero days vulnerabilities, there are custom code, there are a lot of things that can happen, that your website will be hacked. I mean, weak password. Simple as that. That’s why you also need to have a layer, which will be more of what to do if everything else fails. Because you do need to know that you have to inform your clients, all the GDPR related things. How to kind of, I don’t know, use the backups.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In short you need to have procedures. You have to be prepared before the attack happens. Because let’s be honest, asking some lawyers about, what should we send to our clients? The moment when, well, the milk is already spilled. It’s like the worst moment to think about it. Especially that, hey, your website was just hacked. It’s not just a technical problem, it’s also a business problem. Again, with those GDPRs and everything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, the more layers, the better. You still need to remember, every layer can fail in some place. That’s why the more, the better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:29] <strong>Nathan Wrigley:</strong> Would you like to see a standard industry-wide definition of something like a badge or, I don’t know, let’s say for example, that you put the word secure hosting on your website, that has to actually stand for something.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because obviously coming from the background that you do with a broad oversight on what that is, you have a vast amount of data at your disposal. You can see all of this kind of stuff. But every company can make the claim that our food is healthy, our hosting is secure. But I don’t know, in the model that we’ve got where any company can put anything they like on a website, I don’t really know how you do that, but some sort of accreditation or something. I don’t know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:08] <strong>Maciek Palmowski:</strong> Honestly, it’s really difficult because as I said before, a lot of companies using the same tools were failing in different ways. So that’s a problem. On the other hand, like sometimes the, those stupid things like weak passwords. And it doesn’t matter that you had a, let’s call it a certified secure hosting, you still failed because your password was weak, you know? So, also certificates like this can backfire because some people might think I have a secure hosting, I don’t have to worry about things. And then you have 10 admin accounts for everyone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:43] <strong>Nathan Wrigley:</strong> Is there is there something, some mark of that description that you, personally, that you go looking for though? Is there some credentialing system which you think actually does carry some weight? So for example, I don’t know, like the insurance space or the accountancy space or something like that. You have to have that accreditation in order to do business. Is there something like that? Is there a mark which hosting companies can apply for which you could have some confidence in it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:13] <strong>Maciek Palmowski:</strong> Okay. So for sure one of those things would be, and I don’t want to say it as an advertisement, but it is a thing that you see that the hosting is thinking a bit better about security, kind of looking if they are a Patchstack partner. Because this kind of automatically means that they do have this WordPress, the security WordPress layer. So that’s already a good sign.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, I would start with this. I think that’s kind of one of the simplest ways, but again, Patchstack isn’t the only solution that does it. So looking for partners of such companies might be the best way to start because having those Patchstack aware security solutions built in, into the hosting is a really good sign.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:05] <strong>Nathan Wrigley:</strong> Yeah, okay. Now, the inevitable conversation in the year 2026 is AI. It doesn’t matter which area of WordPress you’re talking about. AI manages to get in somewhere. I am presuming that the landscape in terms of security only got more complicated because of AI. Because I’m imagining that attacks that needed to be conceived by a human can now be conceived in a fraction of the time by an AI agent. But not just one, maybe a dozen or a thousand or whatever it may be.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Let’s just talk about that for a moment. It feels almost as if AI and security are like, that’s a real systemic problem for the future of the entire industry. Because these things can happen so fast, a plugin vulnerability is discovered by an AI agent. It then discovers the attack surface, implements the attack all in a matter of seconds, possibly. What’s the position? Like, how do we stay calm basically in the year 2026?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:09] <strong>Maciek Palmowski:</strong> So the problem already existed around a year ago, because a year ago when we did our State of WordPress Security Report, we already saw that vulnerabilities are being used after around five hours after kind of being published. So five hours. That’s the first thing, because we still have a lot of people that say, yeah, just update your WordPress weekly and you’re good to go. No, you’re not. Looking at this number, you have five hours.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:39] <strong>Nathan Wrigley:</strong> Okay. Let’s just parse that at the moment. So the vulnerability is published. So there’s a whole thing there, like the vulnerability may well have been discovered prior to being published, so that’s a whole other thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:52] <strong>Maciek Palmowski:</strong> So first the vulnerability is discovered. Then at least how it works on, with our bug bounty. We inform the vendor they have, let’s say around a month to fix it. When they fix it, we publish everything and, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:09] <strong>Nathan Wrigley:</strong> Okay, so from the moment you publish, you can then detect that that is being leveraged within a space of five hours.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:17] <strong>Maciek Palmowski:</strong> Yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:17] <strong>Nathan Wrigley:</strong> Okay, that’s really interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:19] <strong>Maciek Palmowski:</strong> But there is a problem. There is a really big problem. So if the vendor doesn’t respond, we still publish it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:26] <strong>Nathan Wrigley:</strong> How long do you give them? Is it like.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:27] <strong>Maciek Palmowski:</strong> It is the one month.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:28] <strong>Nathan Wrigley:</strong> Okay, thirty days.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:30] <strong>Maciek Palmowski:</strong> Of course, if they reach out that there is some problem, they need like extra days. But in most cases, we’re talking about the vendors that just don’t respond at all. We publish it anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But the problem is that, from all the vulnerabilities that were discovered last year, 50% weren’t patched at the moment of publishing about it. 50%.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:50] <strong>Nathan Wrigley:</strong> So half of the plugins where there was a known vulnerability, the vendor had been informed, they’d had this 30 day window. Half of them made no amendment to their code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:01] <strong>Maciek Palmowski:</strong> Exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:02] <strong>Nathan Wrigley:</strong> Okay. Wow, okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:03] <strong>Maciek Palmowski:</strong> Again, going back to this classical, yeah, just update your WordPress regularly. No.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:08] <strong>Nathan Wrigley:</strong> No, that’s a really different surface, isn’t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:11] <strong>Maciek Palmowski:</strong> It doesn’t work on so many levels. Because not only the problem is with the fact that, still the famous five hours, which also, it’s five hours now. It was much longer a few years ago. On the other hand, yeah, most of those, I mean around half of it aren’t patched, so the attacks will happen quicker than it get patched. So yeah, there is a lot of problems like this. And also the problem with security is that it’s really difficult to sell.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:39] <strong>Nathan Wrigley:</strong> It’s like insurance, isn’t it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:40] <strong>Maciek Palmowski:</strong> Yeah. But insurance, okay, you see your car, your house, it’s real. It’s real, you kind of see it. The only category of websites that it’s much easier to kind of explain is e-commerce.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:54] <strong>Nathan Wrigley:</strong> Yes. You can feel the tightening on your wallet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:56] <strong>Maciek Palmowski:</strong> They literally see the money. They can kind of really, okay, one hour of my website not working equals this and this Złotys or Euros or whatever. So that’s easier to explain. But for most people, yeah, security, meh.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:11] <strong>Nathan Wrigley:</strong> Yeah. That’s really interesting. So you mentioned, about this survey, you mentioned that fully 80% of your penetration testing resulted in something. What were the sort of, the high level items? Apart from that 80% figure. What were some of the other, because you said there were a few interesting things that dropped out of it. Can you mention anything else?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:31] <strong>Maciek Palmowski:</strong> So like I said, one of the things was that we learned that, despite using the same tools, we got different results. That was also a surprise for us.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:39] <strong>Nathan Wrigley:</strong> So let’s just figure that out. So at hosting company A, we’ve got a WordPress website with the same collection of plugins in. Hosting company B, exactly the same as far as you can make it the same, but things are different.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:52] <strong>Maciek Palmowski:</strong> No, no, they are, for example, they’re using for security the same tools.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:56] <strong>Nathan Wrigley:</strong> Right, okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:57] <strong>Maciek Palmowski:</strong> So in theory, if they’re using the same tools, we should have exactly the same results.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:03] <strong>Nathan Wrigley:</strong> So does that then point to a different set of configurations on the backend, or is it more curious than that? You just don’t quite know what’s going on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:12] <strong>Maciek Palmowski:</strong> I mean because it’s not something that they will tell us. But yeah, in most cases, it’s all about configuration because the fact that you’re using a tool, it’s also important how you use a tool.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also, with security is very often about, is something easy to use or is something secure? And kind of finding the balance. So some of the companies probably had a bit more aggressive configuration, which is better from the security point of view, but probably more often result in some annoying side effects for the user.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also what, this was one of the most interesting things, but also what was very interesting because we contacted every company afterwards and we informed them that we did the test. Here are the results, what went through, what was blocked. And some of the companies did an amazing job of fixing whatever they could. On the other hand, we saw that some of the companies, because we did some extra tests later just to check what they did with our report, did nothing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s one of the things about security in general, not about the hosting, about even having vulnerability in your plugin. That’s normal that we make mistakes. We’re humans, right? So that’s normal. What’s important is how we deal with them. If you have a problem and you fix it as quickly as possible, as good as possible, that’s great because you learn from your mistakes, you fix it, and you move on. Perfect. Good job. Now you are in a much better position than before. But if you get this, you look at it and you say, ah, this is fine, that’s the worst behaviour from the security point of view that you can have.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:57] <strong>Nathan Wrigley:</strong> I’m going to ask you not to name names here, but were some of the companies familiar to us?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:05] <strong>Maciek Palmowski:</strong> For sure, because we did test the biggest ones. But there is a reason why we didn’t want to name them, and it wasn’t about that we were afraid that I know someone will get mad or whatever. It was more about this weird side effect that could happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Some users would think, my hosting isn’t on this list, so probably I’m secure. Probably you’re not, you just weren’t in the test. Because we also did some site checks and everything. And we saw that a lot of those problems happen at most of the hosting companies. And like I said, the more important part was how did they reacted after getting the report. Like I said, it was a more common problem that we even thought.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:43] <strong>Nathan Wrigley:</strong> Do you, obviously, you know, caveat all of this with the fact that you work for Patchstack and what have you, do you see it even as the role of a hosting company to have any position on security publicly? Or would you prefer them not to make grand claims about things that you believe they can’t necessarily substantiate?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don’t really know where I’m going with that question, but I’m just wondering if there’s just a sense that the language that’s being used is too strong. You know, secure hosting implies we’ve got all the padlocks, and the padlocks are there and you’ve got nothing to worry about. You’ve found a different picture. So I’m just wondering whether or not you would just prefer that the hosting companies stop talking about this altogether.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:27] <strong>Maciek Palmowski:</strong> I do think that’s, one of the biggest problem here is about the claims, the bold claims, the whole marketing around it. Sometimes even you can find documentation of some of them that, yeah, you don’t need to install any third party tool because we got you covered. We checked it, no they didn’t. So that’s kind of the problem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s really more about the, how they market it. If they would say, okay, so we have a really performant hosting that does this, this and this. When it comes to security, kind of do it yourself. I mean we are providing this layer, but the rest is up to you. And that’s okay. That’s an honest claim. We are not doing everything for you. We are doing this part, but this is up to you. This would be much better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I know that from the marketing point of view, it doesn’t sound as good as, we got all the security that you can imagine, don’t have to worry about this. Because that’s kind of the thing that very often managed hosts trying to sell, that you don’t have to worry about things. You just have to focus on whatever you have, writing content, selling stuff. If you have a e-commerce, whatever, that’s it. That’s kind of the only thing you should think of. Not about performance, because we got your back. Not about security, again, we got your back. And if you are paying for a managed hosting and suddenly they would start having like this different way of messaging to, it’s not that obvious that we have your back in everything. That would be very difficult for them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So now it’s kind of the problem that, because everyone is kind of using this messaging, everyone else also has to. And also if we think about how a lot of those algorithms, look like that algorithms love bold claims. They want something white or black, not grey. And the truth is, most of the things we are talking about, it doesn’t matter, security, SEO performance, it’s everything in the grey zone. That’s why a lot of developers can end their talk with, yeah, it depends. There is no right or wrong. It depends because there are so many things you have to think about.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I could say that, and this is my kind of thing that, most of the websites that people have should be static. They don’t need even WordPress at all. This is a horrible claim if you’re a manager of a WordPress hosting, right? So that’s the thing. But it all depends on so many things, but yeah, the messaging is important.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:08] <strong>Nathan Wrigley:</strong> Yeah, if you were, on a personal level, if you were going out there looking and let’s say, if you can somehow put your job hat to one side, what would be the kind of things that you would be looking for? What questions would you be asking related to security if you were to be going to these companies?</p>\n\n\n\n<p class=\"wp-block-paragraph\">From everything that you said, obviously it’s not black, it’s not white, it’s definitely grey. So every setup has some way of being vulnerable. But what are the kind of intelligent questions that you would be bringing to hosts to get some reassurance that at least they appear to know what they’re doing, even if they can’t make the claim that they’re a hundred percent cast iron, water tight? What might be some intelligent questions to start asking?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:49] <strong>Maciek Palmowski:</strong> One of the best questions you can ask is just, is there any solution in your security stack that is WordPress aware? Not the general one. Because if they only start talking about some web firewall, things like this, it’s already kind of a red flag. Because this is, overall, if we’re talking about firewalls, that’s not the correct layer about which, this is the generic one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So this is the main question. How do you take care of WordPress specific attacks? Simple question. And if they will start responding, yeah, that we have this web application firewall that, in most cases this will be a sign that, no, we are not talking about the correct layer. That’s not it. It’s probably not aware about what is happening in WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:40] <strong>Nathan Wrigley:</strong> Okay. So given that this is a WordPress podcast, and we are at a WordPress event, that would be the beginning of your questioning is demonstrate that something in your stack is specific to WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:52] <strong>Maciek Palmowski:</strong> Exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:53] <strong>Nathan Wrigley:</strong> Okay. And beyond that, is there any questions that, so let’s imagine that they come back with, yes, we have something specific, it’s WordPress. What would be sort of sensible follow up questions?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:00] <strong>Maciek Palmowski:</strong> I mean you can kind of start off about, okay, what exactly you are using? Because there is a limited amount of tools that are really WordPress aware. So if they will answer with kind of a product name, that’s kind of the easy way that then you can check it on your own. But that’s kind of the thing. Is it WordPress aware?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:19] <strong>Nathan Wrigley:</strong> Does it worry you in some way that there’s this perception out there that WordPress is insecure? You know, if you ask a thousand people, you’d maybe get 800 saying, oh WordPress, you know, we’re not touching that with a barge pole.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you worry that content like this, that you are putting out, that that might fuel that fire? Does it concern you in any way that it might lean into the argument that, I don’t know, somebody can link to that blog post from a rival CMS, or a SaaS platform, which does something similar to WordPress? Where do you sit on that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:51] <strong>Maciek Palmowski:</strong> That’s a really difficult question. And this is one of the questions that when I talk on non WordPress events, I love to ask people. Is WordPress secure? And in most cases, I see that most of the room is, yes, it’s unsecure for sure. And I’m like, no, that’s not true. WordPress is secure. Every year there is just a few minor vulnerabilities in Core. That’s it. The problem is, of course, that WordPress on its own lacks some functionality. That’s why we install plugins.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And here we enter another problem because, okay, every year we have like thousands of those vulnerabilities in general in plugins. On the other hand, we have thousands of plugins. So kind of statistics will always look bad. But that’s why every time when you want to select a new plugin, you need to do some research. Yeah, I know it’s boring and everything but, hey, now we have AI, you can do it much quicker. It can help you a lot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But looking at all those databases, for example, we have one database, WPScan has. There are those databases of WordPress vulnerabilities that occur to every plugin. And you can see, is the plugin you’re interested in had a lot of vulnerabilities? On the other hand, how it kind of looked historically. It’s not just about the number of them. In general, it requires some research.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yeah, if we are just like looking at this, and this kind of vibe that right now we have that we are just about really bold opinions stated quickly that will fit one TikTok, yeah, WordPress is in a horrible position because, let’s be honest, it’s like, if you have, I’m not sure how many seconds does a TikTok movie has?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:39] <strong>Nathan Wrigley:</strong> I think 30.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:40] <strong>Maciek Palmowski:</strong> Okay, let’s say 30. So it will sound much better that you will say, yeah, WordPress is unsecure, which is not entirely true because it depends again. One of the most boring, especially again for those algorithms and everything, it’s a grey zone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because we are collaborating with a lot of companies that are making plugins, and we see how their security flow looks like. How they are dealing with vulnerabilies that are discovered. And honestly, I’m amazed how well some of those companies are doing it. They are very serious about it. They understand how important it is. For them it’s something very important.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:22] <strong>Nathan Wrigley:</strong> I suppose WordPress is a victim of its own success in that sense. And it would be a bit like, I guess a good analogy might be if you’ve got a car manufacturer and they produce a thousand cars a year and you compare them to Ford who make, let’s say, I don’t know, 20 million a year. And the question is, well, whose cars break down more often?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:41] <strong>Maciek Palmowski:</strong> Yeah. Do we look at the percentage of the number?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:44] <strong>Nathan Wrigley:</strong> Right. And if you say, well, 400,000 Fords broke down last year, and one of these other manufacturer, you can immediately see why there’s a problem there. And that I think is the landscape in which WordPress is often painted. The reason there’s lots of publications like yours bringing out WordPress information is because it’s the most popular thing. It makes sense to write about the most popular thing and to try to find the vulnerabilities and disclose them in a sensible way. So I don’t know what we do with that. It is just the way it is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:15] <strong>Maciek Palmowski:</strong> I would also say there is one more interesting aspect because WordPress is considered unsecure because of the plugins. But what’s funny, for example, Elementor is also considered unsecure because there are plugins for Elementor. This is a very weird moment when the thing that brought WordPress to its bigger success, security wise, is its biggest problem right now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because WordPress did a lot of, I mean it was always great to, being as it’s kind of, let’s call it entry level CMS. For many people, it was also the way how they began the adventure with PHP development because it was so easy. Now we kind of have the, all the consequences of being that easy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:06] <strong>Nathan Wrigley:</strong> Yeah, in a sense, this is going to sound ridiculous, we should be glad that there’s people talking about WordPress vulnerabilities, because it means the project is successful. And it also means that it’s, there’s an industry of WordPress security solutions, and there are people who take this very seriously and dedicate their lives to it. And you may not find that in some of these other ones, you know, some of the smaller CMSs and things like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think we’ve probably hit about the sweet spot for the amount of time. But Maciek, I don’t know if there was anything in that report that you have got lined up in your presentation that I never got to. If there was a particular thread that you wanted to pull. If there is, go for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:46] <strong>Maciek Palmowski:</strong> No, I think we covered all the important things. And as you kind of said, this AI aspect, this will change so many things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:55] <strong>Nathan Wrigley:</strong> Yeah, we’ll come back in two years and this conversation will be a very different thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:57] <strong>Maciek Palmowski:</strong> Oh, I think even in few months which will be very interesting. Yeah, so this aspect, it’s really very surprising. And I think that everyone who is right now kind of giving somewhere a talk about AI and security is in a very difficult spot because.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:14] <strong>Nathan Wrigley:</strong> Yeah, your content is going to look stale quickly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:16] <strong>Maciek Palmowski:</strong> Yeah because you know it’s like, but a week ago everything changed. Yeah, I have to rewrite everything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:20] <strong>Nathan Wrigley:</strong> Speaking of which, by the time that this goes out, hopefully you have managed to give out your presentation at WordCamp Europe. I will link to it and anything else that we’ve mentioned today in the WP Tavern post. So go and check that out. But I will specifically link to the wordpress.tv version of your presentation, which no doubt will have been created by then. So Maciek, thank you for chatting to me today. Good luck. I hope presentation goes well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:43] <strong>Maciek Palmowski:</strong> Thank you. Thank you so much. Yes. I might need a bit because, you know, it’s WordCamp Europe. It’s a big conference.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:49] <strong>Nathan Wrigley:</strong> It is, yeah. Good luck. I hope that you manage to stay calm.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:52] <strong>Maciek Palmowski:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://www.linkedin.com/in/maciekpalmowski/\">Maciek Palmowski</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Maciek is based in Poland and works at <a href=\"https://patchstack.com\">Patchstack</a>, one of the companies in the WordPress ecosystem dedicated specifically to security. At Patchstack, Maciek collaborates with other security professionals on industry reports, bug bounty programs, and solutions for agencies, product owners, and hosting companies aiming to secure their client sites.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I met up with Maciek at WordCamp Europe in Kraków, and we discussed his presentation there. It examined the claims of “secure hosting” made by many WordPress hosting providers. He describes how Patchstack set out to test these claims with real-world penetration testing, using 30 known plugin vulnerabilities across multiple hosts, employing standardised methodologies, and validating their results independently. The findings are sobering. The majority of WordPress-specific attacks still get through, and there’s a significant gap between the marketing hype and real protection.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation starts with Maciek’s background and how his journey in the WordPress security space led to a focus on the promises made by hosts. From there, the discussion gets into the research approach: the selection of well-known vulnerabilities, consistent testing across different hosting environments, and the surprising result that even hosts with identical security tooling produced drastically different outcomes, showing it’s not just about what tools you use, but how you use them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about the “Swiss cheese” model of security, every layer will have holes, so you need multiple, overlapping defenses, and honest communication from hosts about their limitations. We also explored whether an industry-wide standard or badge for “secure hosting” is feasible or even desirable, given how easy it is for strong marketing claims to outpace reality.</p>\n\n\n\n<p class=\"wp-block-paragraph\">AI also enters the conversation, increasing both the speed and sophistication of attacks, and making patching and processes even more important, especially as the volume of vulnerabilities continues to rise and the time to exploitation drops.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in understanding what “secure hosting” really means, how to ask intelligent questions of providers, and the realities of WordPress security in 2026, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://patchstack.com\">Patchstack</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://checkoutsummit.com\"> Checkout Summit</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://europe.wordcamp.org/2026/session/testing-the-promise-does-secure-hosting-deliver/\">Testing the promise: does secure hosting deliver?</a> – Maciek’s presentation at WordCamp Europe 2026. It includes the video of the presentation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://patchstack.com/whitepaper/state-of-wordpress-security-in-2026/\"> State of WordPress Security in 2026 Report</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wpscan.com\">WPScan</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:3;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:85:\"Open Channels FM: Navigating Client Expectations in the Age of AI-Assisted Web Design\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557092\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:92:\"https://openchannels.fm/navigating-client-expectations-in-the-age-of-ai-assisted-web-design/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:224:\"The growing use of AI tools is reshaping web design, as clients increasingly present AI-generated content. Education and proactive communication are essential for web professionals to navigate these complexities effectively.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 12:49:58 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:4;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"Open Channels FM: Fame Then and Now – How the Internet Changed What It Means to Be Known\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557615\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://openchannels.fm/fame-then-and-now-how-the-internet-changed-what-it-means-to-be-known/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:341:\"Today on Channel 4, in The Sh*t Show series, Bob Dunn and Nathan Wrigley tackle the fascinating topic of fame: what it means in our modern, hyper-connected world and how our perception of celebrity has evolved over time. From royal visits scheduled to the exact minute to unexpected close encounters with iconic figures like Willie […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 10:39:34 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:5;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Leading Tech Firms Unite to Form Open Source Secure AI Alliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557661\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://openchannels.fm/leading-tech-firms-unite-to-form-open-source-secure-ai-alliance/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:122:\"Today\'s top story. NVIDIA announces the formation of the Open Source Secure AI Alliance, a coalition of over 40 companies.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 10:11:44 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:6;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:82:\"Open Channels FM: A Journey Back to Enjoying Web Development and Personal Blogging\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:89:\"https://openchannels.fm/a-journey-back-to-enjoying-web-development-and-personal-blogging/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:195:\"In this episode, Bob and Simon discuss the creative ups and downs of building personal websites, overcoming perfectionism, and finding joy in fun coding projects as part of the indie web journey.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 29 Jul 2026 06:08:19 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:7;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: Why Real-Time Threat Detection Matters for Website Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557083\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://openchannels.fm/why-real-time-threat-detection-matters-for-website-security/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:359:\"Much of the conversation around web security centers on preventative measures and layers of defense, but there’s a new front line that deserves focused attention: real-time threat detection at the runtime level. With attacks now happening faster and at greater scale thanks to AI, the ability to identify and block malicious activity as it unfolds […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2026 15:38:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:8;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:98:\"Open Channels FM: AI Bots Now Dominate Web Traffic and Court Sides Against Google in Scraping Case\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557527\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:105:\"https://openchannels.fm/ai-bots-now-dominate-web-traffic-and-court-sides-against-google-in-scraping-case/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:222:\"Automated bots now dominate web traffic, outnumbering humans, significantly impacting ad models. In legal news, SERPAPI won a court case against Google\'s web scraping efforts. Tech mourns icons Om Malik and John C. Dvorak.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 28 Jul 2026 07:24:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:9;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Matt: How ISO Works\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153694\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://ma.tt/2026/07/how-iso-works/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:457:\"<p class=\"wp-block-paragraph\">Inspired by Om I’ve been getting back into my DSLR photography. I learned a lot about how ISO settings work from <a href=\"https://www.youtube.com/@MinutePhysics\">this delightful physics YouTube channel MinutePhysics</a>.</p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 26 Jul 2026 00:08:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:10;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Gutenberg Times: WordPress 7.1 Beta 3, AI in Action at #WCUS, Playground UI testing and more — Weekend Edition 370\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=46166\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/wordpress-7-1-beta-3-ai-in-action-at-wcus-playground-ui-testing-and-more-weekend-edition-370/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23268:\"<p class=\"wp-block-paragraph\">Hi,</p>\n\n\n\n<p class=\"wp-block-paragraph\">After a few month dealing with a bad knee and a bad back, I enjoy moving again. As long as the weather is nice, I will be biking, swimming and walking the city with all the tourists that populate downtown Munich. </p>\n\n\n\n<p class=\"wp-block-paragraph\">From an SEO veteran’s surprisingly upbeat take on WordPress market share to a one-file answer to “what makes a block theme,” this week’s finds dig a little deeper than the usual headlines. There’s also plenty of hands-on material, whether you want to test 7.1 Beta 3, try the new Playground UI, or get your store ready for agentic commerce.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Enjoy your weekend! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wcus-2026-has-a-dedicated-ai-track-the-ai-in-action-sessions-are-built-around-the-questions-site-builders-are-actually-sitting-with-right-now-how-do-you-set-guardrails-for-ai-assisted-development-without-losing-client-trust-how-do-you-build-sites-that-serve-ai-agents-as-visitors-not-just-humans-what-are-the-legal-and-ethical-boundaries-when-you-put-ai-tools-in-front-of-clients\"><strong>WCUS 2026 has a dedicated AI track </strong></h2>\n\n\n\n<p class=\"wp-block-paragraph\" id=\"wcus-2026-has-a-dedicated-ai-track-the-ai-in-action-sessions-are-built-around-the-questions-site-builders-are-actually-sitting-with-right-now-how-do-you-set-guardrails-for-ai-assisted-development-without-losing-client-trust-how-do-you-build-sites-that-serve-ai-agents-as-visitors-not-just-humans-what-are-the-legal-and-ethical-boundaries-when-you-put-ai-tools-in-front-of-clients\">The AI in Action sessions are built around the questions site builders are actually sitting with right now. How do you set guardrails for AI-assisted development without losing client trust? How do you build sites that serve AI agents as visitors, not just humans? What are the legal and ethical boundaries when you put AI tools in front of clients?</p>\n\n\n\n<p class=\"wp-block-paragraph\">They’re practical sessions for developers navigating a workspace that changed faster than anyone planned for. <a href=\"https://us.wordcamp.org/2026/schedule/\">The full schedule is live</a>. If you’re figuring out how AI changes your pricing, your workflow, or your service model, this is a rare room to be in. </p>\n\n\n\n<p class=\"wp-block-paragraph\">August 16–19, Phoenix Convention Center. $100 includes four days, all sessions, lunch, and the community social.<br /><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" style=\"height: 1em;\" /> <a href=\"https://href.li/?https://us.wordcamp.org/2026/tickets/\" rel=\"noopener\" target=\"_blank\">us.wordcamp.org/2026/tickets</a></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://us.wordcamp.org/2026/tickets\"><img alt=\"WordCamp US 2026\" class=\"wp-image-46239\" height=\"256\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-24-at-16.11.31.png?resize=652%2C256&ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-3/\"><strong>WordPress 7.1 Beta 3</strong></a> is now available for testing. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Rae Morey, The Repository, has the news <a href=\"https://www.therepository.email/wordpress-7-1-beta-3-now-available-punts-unicode-email-support-over-security-concerns\"><strong>WordPress 7.1 Beta 3 Now Available, Punts Unicode Email Support Over Security Concerns</strong></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Contribute by <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\"><strong>Help Test WordPress 7.1</strong></a> and learn deeply how the new features and blocks work. It’s a very impactful way to contribute to the open-source project that powers hundreds of millions of websites. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Quite a few Dev notes made it out of the publishing queue this week: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/23/text-shadow-support-in-global-styles/\">Text Shadow Support in Global Styles</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/23/editor-components-updates-in-wordpress-7-1/\">Editor components updates in WordPress 7.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/23/editable-blocks-inside-the-custom-html-block/\">Editable blocks inside the Custom HTML block</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/24/react-19-punted-beyond-wordpress-7-1-experiment-in-gutenberg/\">React 19: punted beyond WordPress 7.1, experiment in Gutenberg</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/24/registering-and-rendering-svg-icons-in-wordpress-7-1/\">Registering and rendering SVG icons in WordPress 7.1</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\">Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-46077\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17-edited-1.png?resize=652%2C183&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\">On the WordPress.com blog, <strong>Joe Fylan</strong> explains <a href=\"https://wordpress.com/blog/2026/07/10/what-is-agentic-commerce/\"><strong>what agentic commerce means for your store</strong></a>. AI assistants that discover, compare, and buy products on a shopper’s behalf. You’ll get an overview of where the big AI tools stand on in-chat checkout, plus reassurance that small stores can win with verifiable facts. Fylan’s checklist for getting ready: clear product descriptions, structured data, and making sure your robots.txt isn’t blocking the agents you want.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dave Smith</strong>, core committer and Gutenberg contributor, thinks <a href=\"https://www.youtube.com/watch?v=PIyNUmX7sFc\">WordPress has a homepage problem — and he built a better version</a> to prove it. In his video, he walks you through why setting a static homepage trips up so many beginners, then demos a prototype exploring a simpler, clearer approach. You can <a href=\"https://getdave.github.io/rsm-editor-prototype\">try the live demo</a> yourself in the browser. Smith wants to know if the direction resonates, so drop your homepage struggles in the video’s comments.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In episode 226 of the WP Tavern Jukebox podcast, <strong>Nathan Wrigley </strong>talks with <strong>Jessica Lyschik</strong> about <a href=\"https://wptavern.com/podcast/226-jessica-lyschik-on-why-accessibility-in-wordpress-themes-is-easier-than-you-think\">why accessibility in WordPress themes is easier than you think</a>. Fresh from her WordCamp Europe 2026 <a href=\"https://wordpress.tv/2026/06/05/accessibility-in-themes-easier-than-you-think/\">talk,</a> Lyschik walks you through the recently updated accessibility-ready requirements, quick wins like correct HTML tags, alt text, and skip links, and why block themes make much of this effortless because Core handles it. The insight: AI agents navigate your site like screen readers do.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher </strong>digs into <a href=\"https://gutenbergtimes.com/how-wordpress-decides-a-theme-is-a-block-theme/\"><strong>how WordPress decides a theme is a “block theme”</strong></a> — and the answer might surprise you. It all comes down to one file: <code>templates/index.html</code> exists, or it doesn’t. Neither theme.json nor patterns flip the switch, which is why Astra, Kadence, and Blocksy all still test classic. </p>\n\n\n<div class=\"ng-block-4441e44d74155c9d wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-3d89787a37603a21 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2026”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-8cdde5139a13277f wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2025/\">2025</a></strong></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools for the Block editor</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In episode 477 of the WP Builds podcast, <strong>Nathan Wrigley</strong> talks with <strong>Olly Campion </strong>and <strong>Tommy Rocket</strong>t about <a href=\"https://wpbuilds.com/2026/07/23/477-classic-themes-to-block-editor-lessons-from-a-wordpress-plugin-business/\"><strong>lessons from their WordPress plugin business</strong></a> and their block-based plugin Slidey Panel, which slides customizable side panels into any site. You’ll hear how years of client work revealed a gap in both classic themes and the block editor, the philosophy behind their “page as panel” approach, and their candid take on AI, market share shifts, and the future of bespoke agency work.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> walks you through <a href=\"https://www.youtube.com/watch?v=IwmF28FIt-4\">What’s New for WordPress Developers for July 2026</a> in his monthly video roundup. You’ll learn why WordPress 7.0.2 is a must-install security release, how to test React 19 via a runtime flag in Gutenberg 23.4, and what the now-enforced iframed editor means for your themes. He also covers responsive styling, Block Bindings for list items, and MCP support in Playground. Prefer reading? There’s a <a href=\"https://developer.wordpress.org/news/2026/07/whats-new-for-developers-july-2026/\">companion post on the Developer Blog</a>.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"what-s-new-with-playground\">What’s new with Playground</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The Playground team wants your <a href=\"https://make.wordpress.org/playground/2026/07/17/help-us-test-the-new-wordpress-playground-ui/\">help testing the new WordPress Playground UI</a> before it officially launches. <strong>Fellyph Cintra </strong>shares four testing modules you can pick from: creating and managing Playgrounds, the Blueprint experience, developer tools like Files and Logs, and import/export workflows. Five minutes on desktop or mobile is enough, and the post walks you through each step. Feedback on text clarity, mechanics, and design goes into the GitHub issue <a href=\"https://github.com/WordPress/wordpress-playground/issues/4092\">#4092.</a></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Elliott Richmond</strong> shares how he <a href=\"https://elliottrichmond.co.uk/using-wordpress-playground-and-blueprints-to-train-clients-on-block-themes/\"><strong>uses WordPress Playground and Blueprints to train clients on block themes</strong></a>, inspired by WordCamp Europe. For a client migrating from a classic theme, he trimmed a gigabyte-plus database to a 50MB export, then built a Blueprint that loads their actual theme, plugin, and content into a disposable in-browser site. You send one link, the client can safely break things, and a refresh resets everything — no hosting or credentials needed.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"wordpress-and-ai\">WordPress and AI </h2>\n\n\n\n<p class=\"wp-block-paragraph\">On the Kinsta blog, <strong>Carlo Daniele</strong> takes <a href=\"https://kinsta.com/blog/wordpress-ai/\"><strong>a deep dive into the WordPress AI integration architecture</strong></a> that arrived with WordPress 7.0. You’ll learn how the three layers — Connectors, AI Client, and Providers — replace bundled SDKs and provider-specific code with the unified <code>wp_ai_client_prompt()</code> function. Daniele then walks you through building a real plugin, available on GitHub, that transcribes an audio note and converts it into structured Gutenberg blocks via two AI passes.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">An interesting take: On the MemberPress blog, SEO veteran <strong>Curt Noble</strong> argues that <strong><a href=\"https://memberpress.com/blog/wordpress-lost-market-share-got-stronger-heres-why/\">WordPress lost market share and got stronger</a>.</strong> Drawing on twenty years in SEO, including his own private blog network (PBN) days, Noble contends the dip mostly reflects Google demolishing the spam economy that ran on WordPress. Meanwhile, search interest hit a five-year high, WordPress dominates the top 10,000 sites, and the vibe-coding security hangover is sending founders back to proven platforms. Noble’s bigger point: with the AI Client, Abilities API, and MCP Adapter, WordPress became the platform AI agents can natively and safely operate.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jeff Paul</strong> announced <a href=\"https://make.wordpress.org/ai/2026/07/21/whats-new-in-ai-1-2-0/\"><strong>what’s new in AI 1.2.0</strong></a>, the latest release of the canonical AI plugin. You’ll find a new Suggest Reply experiment that drafts contextual comment responses for moderators to review, bulk Content Summary generation for existing content libraries, and two read-only Abilities: <code>core/read-content</code> and <code>core/read-users</code>. The settings screen got simpler, too, with advanced controls now tucked behind an opt-in Developer Tools option. Content Translations and C2PA (Coalition for Content Provenance and Authenticity) tracking are on the 1.3.0 roadmap.</p>\n\n\n<div class=\"ng-block-64af9240887ef2a9 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-576331cd4e89762c wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-01485dd352fc0329 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-3306c76aaebe91e7 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-7c14127a554af3dd wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-a53105184541e490 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 25 Jul 2026 10:41:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:11;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:68:\"Aaron D. Campbell: WP2Shell: Coordination Was Part of the Protection\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://aarondcampbell.com/?p=3026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://aarondcampbell.com/2026/07/wp2shell-coordination-was-part-of-the-protection/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:417:\"<p>WP2Shell showed that coordinated disclosure is more than a private warning. It\'s a system for turning trust, preparation, and fast execution into protection for users.</p>\n<p>The post <a href=\"https://aarondcampbell.com/2026/07/wp2shell-coordination-was-part-of-the-protection/\">WP2Shell: Coordination Was Part of the Protection</a> appeared first on <a href=\"https://aarondcampbell.com\">Aaron D. Campbell</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Jul 2026 18:37:35 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Aaron D. Campbell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:12;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:94:\"Open Channels FM: Our Guide to Open Channels FM Podcast Network’s Channels, Series, and Blog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557382\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:96:\"https://openchannels.fm/our-guide-to-open-channels-fm-podcast-networks-channels-series-and-blog/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:127:\"A guide to better understand the content, both audio and written that makes the Open Channels Podcast Network what it is today.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 24 Jul 2026 11:53:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:13;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Matt: AI Slop\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153646\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://ma.tt/2026/07/ai-slop/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:461:\"<p class=\"wp-block-paragraph\">If you’re going to give me AI slop, at least make it fun! Give me <a href=\"https://en.wikipedia.org/wiki/Iambic_pentameter\">iambic pentameter</a>. Make it all rhyme. Have <a href=\"https://suno.com/\">it be a song</a>. I think we’re under-utilizing the artistic and creative capabilities of models by making them produce work that <a href=\"https://www.pangram.com/\">sort-of-but-not-really looks like human effort</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2026 20:34:55 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:14;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.1 Beta 3\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21177\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-3/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7521:\"<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 3 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 3</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 3 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta3.zip\">Beta 3 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" rel=\"noreferrer noopener\" target=\"_blank\">WP-CLI</a> command: <br /><code>wp core update --version=7.1-beta3</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&networking=no&php=8.3&wp=beta&language=&multisite=no\" rel=\"noopener\" target=\"_blank\">7.1 Beta 3 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Find out what’s new in WordPress 7.1</strong>: Read the <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\">Beta 1 announcement</a> for details and highlights.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" rel=\"noopener\" target=\"_blank\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" rel=\"noopener\" target=\"_blank\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" rel=\"noopener\" target=\"_blank\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s in WordPress 7.1 Beta 3?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">For technical details on the more than <strong>71 issues</strong> addressed since Beta 1, see the following links:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://core.trac.wordpress.org/query?status=closed&changetime=07%2F15%2F2026..07%2F22%2F2026&milestone=7.1&group=component&col=id&col=milestone&col=owner&col=type&col=priority&order=id\">Closed 7.1 WordPress Core Trac tickets</a> since July 15, 2026</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/commits/wp/7.1?since=2026-07-15&until=2026-07-22\">7.1 Gutenberg commits</a> since July 15, 2026</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Note: <strong>Beta 2 was released on July 17, 2026</strong>, as part of the <a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\">WordPress 7.0.2 release</a> and includes important security fixes.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Beta 3 introduces two improvements to styling.</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Applying local style changes globally is no longer an all-or-nothing action. The <a href=\"https://github.com/WordPress/gutenberg/pull/79839\" rel=\"noopener\" target=\"_blank\">Apply globally</a> option in the block inspector now opens a quick review step, allowing you to choose which modified styles to apply globally while keeping the rest as local overrides.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Other notable fixes include improvements to media uploads: long animated GIF uploads no longer hang, images rotated using EXIF metadata are processed correctly, and uploading a single HEIC image in Safari no longer creates two entries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The editor also includes additional fixes for Notes, responsive styling, and custom CSS. For developers, WordPress Coding Standards has been updated to version 3.4.0.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/2026/05/22/extending-unicode-support-in-email-addresses-usernames-and-slugs/\" rel=\"noopener\" target=\"_blank\">Unicode email address support</a> will <strong>not be included</strong> in WordPress 7.1. The work will continue in a community plugin, allowing broader testing of compatibility, security, and data-handling considerations.</p>\n\n\n\n<h2 class=\"wp-block-heading\">A Beta 3 haiku</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Fresh bugs surface now,<br />click by click, we chase them down—<br />codebase grows steady.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/krupajnanda/\"><span class=\"mentions-prefix\">@</span>krupajnanda</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <br /><a class=\"mention\" href=\"https://profiles.wordpress.org/wildworks/\"><span class=\"mentions-prefix\">@</span>wildworks</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a> <em>for proofreading and review.</em></p>\n\n\n\n<div class=\"wp-block-group is-layout-constrained wp-block-group-is-layout-constrained\">\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Join us for the launch of WordPress 7.1 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a>, August 16–19.</figcaption></figure>\n</div>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2026 15:23:14 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Benjamin Zekavica\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:15;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Open Channels FM: Signal – Issue 17\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557126\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://openchannels.fm/signal-issue-17/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:213:\"Talk about the intersection of open source software and business, rapid security response amid AI advancements, the importance of fundamentals in AI implementation, and concise content creation for engaging media.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2026 13:10:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:16;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"WPTavern: #226 – Jessica Lyschik on Why Accessibility in WordPress Themes Is Easier Than You Think\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206634\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:114:\"https://wptavern.com/podcast/226-jessica-lyschik-on-why-accessibility-in-wordpress-themes-is-easier-than-you-think\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55129:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, why accessibility in WordPress themes is easier than you think.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Jessica Lyschik. Jessica is a longtime member of the WordPress community who’s been working in the ecosystem since 2015. She’s spent years learning and advocating for web accessibility, both as a developer and as an active community participant, joining agencies, working on theme reviews, and helping improve standards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many theme creators assume that making themes accessible is an intimidating task, but Jessica’s here to show you that achieving an accessibility ready WordPress theme is more straightforward than you might imagine.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Her WordCamp Europe 2026 presentation, accessibility in themes, easier than you think, aimed to demystify the requirements for accessible themes. Explaining what the WordPress guidelines mean in practise, where the low hanging fruit is, and how both block and classic themes can reach accessibility ready status with manageable efforts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about the personal and moral journey that brings developers to accessibility. The technical hurdles and documentation challenges, and the ways in which things like AI agents are putting accessibility in the spotlight for everyone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jessica talks about practical steps that quickly improve accessibility, like using correct HTML tags, adding alternative text to images, and configuring skip to content links, and shares why building accessibility in from the start saves time and effort down the road.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also explore the differences, and possible advantages, of block themes when it comes to accessibility, and why theme guidelines work the way they do, and the importance of interdisciplinary awareness across SEO, design, and content teams.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jessica mentions helpful resources, influential leaders in accessibility, and the ongoing need for documentation improvements to help everyone level up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever felt overwhelmed by accessibility requirements, or wonder why they matter, and how you can build better WordPress sites that work for everyone, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Jessica Lyschik.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Jessica Lyschik. Hello, Jessica.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:39] <strong>Jessica Lyschik:</strong> Hi Nathan.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:41] <strong>Nathan Wrigley:</strong> Nice to have you with us. This is my second interview at WordCamp Europe 2026. We’re in a beautiful, big media room. I’ve got to say, this is one of the nicest spaces I’ve ever had for these kind of interviews, so that’s really nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jessica has already done, I want to say presentation but maybe it was a workshop. I’m not sure.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:57] <strong>Jessica Lyschik:</strong> No, it was a regular talk actually, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:59] <strong>Nathan Wrigley:</strong> Okay. And how did it go?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:00] <strong>Jessica Lyschik:</strong> It went super well, except for my slides went missing in between. That wasn’t so great. But the audience was very respectful of that, and I made a bit fun of it, so they laughed for a second and I tried, the media guys tried to fix that. We got it fixed in the end. I would’ve winged it anyway because I, like I knew what was coming up. But it’s always good to have your slides. It’s like seeing them, because for me it’s also visual reminder. It’s like, I need to see what I’m talking about, so I’m not losing track of it. But yeah, this was just a little technical hiccup. But overall I got very great feedback so far on my talk, and I’m very glad.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There were also quite a lot of people. I did not expect this many. And that makes me just super happy that people are actually interested in this topic, although it is sort of scary for some of them if they even like try to touch this topic. We can probably get into the details later. Yeah, just overall like, what does it do? Why do I need that? These unanswered questions that they have that they were like, ah, no, I’m not really interested into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:01] <strong>Nathan Wrigley:</strong> Oh, that’s nice a big reception.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:03] <strong>Jessica Lyschik:</strong> Yeah. And that’s just great to see because I think just as we all grow older, and I even noticed that, and I’ve said that in my talk, like I kind of get to appreciate when a website is accessible. I mean I’m still have a long time to go, hopefully in my life, but I start to appreciate the small things that make just browsing websites easier, to be honest.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:23] <strong>Nathan Wrigley:</strong> So I guess we should introduce the subject and then give you a chance to introduce yourself because it feels like in this context, the subject at hand, it’s important to know that you know what you are doing. It’s not, well, I suppose it’s a general skill in that it should be something most people know an awful lot about. But I fear that that’s not the case.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the presentation that you’ve just given was called accessibility in themes, easier than you think. That’s nicely phrased. Let’s get them through the door.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then the blurb that went with that, I’ll just read that into the record then everybody knows what we’re talking about. So it says, many theme developers assume accessibility ready requirements are hard to meet, but that’s rarely true. This session shares practical insights for real theme reviews, and shows how both block and classic themes can reach accessibility ready status with manageable effort.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that’s the context of what we’re going to talk about today. However, as I just alluded to, could you just tell us a bit about you, how long you’ve been using WordPress, and then I guess if you want to focus a bit on your accessibility credentials and what you’ve been doing in that space.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:23] <strong>Jessica Lyschik:</strong> Yeah, of course. So yeah, I’ve been using WordPress, I think I started around 2005 or 6 already. So like dipped my toes into it, played with it around, just got a feel for it. But actually professionally, I started out in 2015 in the WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Before that, I already joined the community. So I was working at another place that did not use WordPress before. And then in 2015 I joined a WordPress agency. Today they’re called Syde, for anyone who’s wondering. And ever since I’ve been into WordPress that long.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And accessibility in that case I have, I think it was a gradual process more of. It was not just like, I’m now doing accessibility. That just didn’t happen. It was, I learned it over time. And when I started learning about how to create a website accessibility was absolutely not a thing. No one cared about it. And it just became more and more aware for people, for developers, especially in the past couple years. I think we still have some way to go but like, as I said earlier, there were so many people interested in my talk. So I think we’re now at a pace where things get really interesting for many more people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yeah, I learned a lot along the way. Made a lot of mistakes along the way. But I’m glad I’m learning this. I’m still learning. So it’s always something that you continuously learn, because I think the hardest part to grasp for people is that, if you are abled, it’s like you can see, you can hear, you can navigate a device with your own hands, all stuff like that, you take it for granted.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And if you suddenly see or people tell you the perspective of like a blind person, a person who’s deaf, a person who may not be able to use a device like you do, maybe have a hand injury, or no hands anymore, that’s also happening. Then you start to wonder, okay, how do these people actually like use websites or use their phones or computers? And there are many different ways to do that. And I think if you have the chance to learn about this, it is absolutely eye-opening.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can also then, there was a talk at WordCamp Leipzig this year, but also last year, I attended last year, by a blind person. And her brother was also blind. He was a developer. And they shared like how bad some websites are, and how they struggle to like get the information out of the website, and what crazy, crazy stuff people are doing to their websites that do not make it accessible for these people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then you are sitting there and wondering, oh my God. And sometimes I have to say, I even did this in the past and I didn’t know, but I’m glad today that I learned about this and make a better web essentially. Yeah, that’s why I’m here sharing my knowledge.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:11] <strong>Nathan Wrigley:</strong> It kind of sounds for me, so when I talk about accessibility, there’s always two strands to it. There’s like this legal bit where the governments are increasingly talking about things that will happen to you as a company that builds websites if you don’t follow guidelines. So that’s one side.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there’s also this moral side. There’s the side of, we ought to do this despite what the law says. You know, it’s just a necessary thing. And it feels to me as if your journey in this was a moral one.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:38] <strong>Jessica Lyschik:</strong> More of, yes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:39] <strong>Nathan Wrigley:</strong> Yeah, there was a definite need here. You know, in the real world when you see somebody, let’s say somebody who’s sitting in a wheelchair and they’re trying to get into a post office and there’s a step that they can’t get over, there’s no bit of you which doesn’t see that as unjust. Every bit of you says that character can’t get over that step. That’s wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And yet, the bit of the world which is becoming increasingly the way that we interact, you know, we book flights, we file our taxes, we do our banking, we, all of these things, they’re completely invisible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Most of the time we’re doing the internet by ourselves. You know, we might be sitting on a train, but nevertheless it’s a solitary activity, or we’re in our own home or whatever. And these pitfalls, the equivalent of the step in front of the post office is totally invisible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it also seems that the voice of the people whose lives are made more difficult is just drowned out. Somehow that anger that they must feel never seems to rise to the top quite enough that we all take the necessary steps.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don’t know if any of that landed, and there was definitely no question there, but I’ll hand it back to you if any of that resonates.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:49] <strong>Jessica Lyschik:</strong> No, I think you, you’ve put it absolutely right. And the invisibility is the thing, because a step for us is visually, like we see it I mean. If you’re blind, you’re not seeing it. But let’s put it away for a second. But in the web, the invisibility is like the key thing. And I just talked to Anne-Mieke Bovelett about, who’s doing another accessibility talk this afternoon. She told me about like a company where they put effort into their website, making it more accessible. And their sales actually increased. So it can definitely help. This is just one example.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But there’s also a new player in the field that will probably even increase the interest in accessibility, and that is AI agents. Because AI agents, they do not see a website as we do visually. They rely on that the website is technically built correctly. Google actually just last month announced that they will focus on this. They will focus on the accessibility for the AI agent. I have put a link in my slides to that document. This is basically, I think something that will be easier to grasp for people for some weird reason. But it’s made more visible to them because if an AI agent cannot read your website, and I know we are probably still at the very beginning of this AI agent stuff, but I think this will increase over the next couple months or even years.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:14] <strong>Nathan Wrigley:</strong> That’s really interesting because when an individual, let’s go back 10 years, when an individual is creating a website, every single bit that you have to achieve is a minute of work or another minute or 20 minutes or an hour or what have you. And so there was this whole thing of just building the website, especially when page builders and things like that came along, just building the website to see what it looks like. And that whole accessibility layer just basically gets ignored.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, that’s what you’ve just said is curious because the AI agent building the website, to the AI agent, that’s kind of no extra work to get it right, if you know what I mean? If it’s configured to do all of the bits correctly, I’m using air quotes around the word correctly, then in theory it should be quite a good custodian of accessibility when it’s building things. I guess only time will tell whether that actually happens.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:08] <strong>Jessica Lyschik:</strong> Yeah, but it’s also for like, not the agents itself building, but also the agents visiting your website. Especially if you do like, I think shopping will be the one thing that if you say, hey, I don’t know what the best coffee or what, this is like a good topic. Yeah, okay, here are three options. And then, okay, buy me option one, a kilo of these beans or whatever. The AI agent, if the shop is accessible, the AI agent could do the shopping for you. This is where things are going and progressing towards, that you are not actively anymore the person who actually goes to the online shop, puts it in the cart, goes to the checkout and does all that stuff for you. But if the agent knows all that, it can do it for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:50] <strong>Nathan Wrigley:</strong> Can I ask a question then? Because I may have, I think I’ve understood what you were just saying and curiously, I’ve never had that thought, the one that you’ve just expressed. I want to know if I’ve got it right. Are you saying that in a world in which we increasingly ask AI to achieve things on the web for us, if it’s built with accessibility in mind, it’s more likely to be able to achieve the result of, let’s say, buy me a kilo of coffee.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:14] <strong>Jessica Lyschik:</strong> Yep.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:15] <strong>Nathan Wrigley:</strong> That’s so interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:16] <strong>Jessica Lyschik:</strong> Yeah because like, Anne-Mieke, whom I just talked about, shared a long document with me recently and I was just reading through it and was like, yeah, of course. Of course, if we technically do things right, we use the right elements, we do the right descriptions for everything that a computer, because AI agent is just a computer. Like assistive technology, like a screen reader who needs to read the right structure out of it and to fit the right content. But also is able to interact with stuff, like click on that button, put that in the cart, go to the checkout and so on. It’s basically the same. An AI agent is a screen reader.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:53] <strong>Nathan Wrigley:</strong> Yeah, that’s really interesting. I’m thinking of a map where I’m trying to get to a destination, but the map has no directions. Imagine a scenario where we set off from one place and our destination is here. What you are saying is all the instructions in between to get from the start to the end can be read if the HTML and all of the bits and pieces wrapped up in that are correct. I had never had that thought before. That’s so interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:17] <strong>Jessica Lyschik:</strong> Yeah, that’s very interesting. And I did not focus too much on this topic in my talk, but I wanted to put it in there at least in one slide to give like the food for thought that people can actually think about it because this is like what’s hyped right now. I have not tried out this whole agent thing yet, but like from a developer perspective, I can totally see that this is something that will increasingly help AI agents to achieve stuff.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:41] <strong>Nathan Wrigley:</strong> Yeah. And presumably make it so that a whole tranche of people who struggle with the web as it is currently might be able to interact with their voice or whatever other technique they use. We’ve completely gone off the rails, but that was such an interesting aside, thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:58] <strong>Jessica Lyschik:</strong> Yeah, I think this is something interesting to share. And as I said, I wanted to focus more on the technical details in my talk, so I left it kind of out. But I think it’s a great opportunity to share it here with you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:08] <strong>Nathan Wrigley:</strong> Yeah. That was lovely. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So let’s go back to the WordPress bits and pieces then, and I’ll just do the title again because hopefully that’ll refresh it in listeners’ minds. Accessibility in themes, easier than you think. Dear listener, if you’ve been using WordPress for any length of time, you’ll know that the themes still plays a giant part in the structure of your website and the way that people experience it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So where are we at then in the year 2026? Does the theme still represent a huge part of accessibility? In your experience, is it easier than most people think to get an accessible website in the year 2026? We’ll get into block based themes and classic themes and all that in a minute. But essentially what I’m asking is, is it an easier thing to get right than most people imagine?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:51] <strong>Jessica Lyschik:</strong> Yes, because I think what scares people off from my own experience, there are requirements to get the accessibility ready tag in the wordpress.org theme repository. And these requirements, if you first read them, they’ll sound a bit cryptic and you do not really understand what they actually mean.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In my talk, I was trying to combine this, what the requirement says with what is actually meant by that. Because right now, and this is something I would like to improve for the future, I’ve already talked to people about this, and I will have another chat with Rian Rietveld about it later, or tomorrow. Let’s see when we can make that happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because right now the requirements read like, okay, this must be achieved. This is what the website should do. Then there are some testing instructions, but you’re not told how to achieve it. What do you technically need to do in order to do that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I noticed this while I was reworking. I found out about the requirements also just a month ago because the requirements got updated. I have a theme in the wordpress.org repository and I tried to apply these new rules and have another fresh look at it. I got the accessibility ready tag for this already when I first got the theme into the repository. But like it was a good refresher to like go over all the requirements because they have slightly changed a bit, they added new ones.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When I was there, I was like, okay, like I understand this now because I have learned about accessibility over the past couple years. For someone who is fresh to this topic and doesn’t know too much about it, it’s hard to understand. Because there are some descriptions of things like, basically what it means is that you need to use, for example, the right HTML tags, header, footer, the main tag. We have section and aside, which are available in HTML 5. But the requirements does not say this explicitly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think this is where probably most people have gotten stuck in the past, because they did not understand like, what is actually required from me technically? Because the texts are not so much focused on that. And this is something I would like to contribute as well, to give back and to enhance. So it’s not there yet, but hopefully sooner than later we can add all this information so it gets even easier for people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because if you’ve done a website and you know about the HTML, you know about maybe a little bit of CSS, you know how to achieve this. You just need to connect the dots to what is relevant for accessibility and how do you do this in your HTML essentially.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:20] <strong>Nathan Wrigley:</strong> Yeah, I guess that’s a bit of a shame really, isn’t it? Is that the documentation is difficult to follow because I feel that accessibility is one of those things where if something is difficult it can get dropped basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:33] <strong>Jessica Lyschik:</strong> Yeah, people won’t do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:34] <strong>Nathan Wrigley:</strong> Yeah, because the majority of people browsing the internet can browse the internet despite your accessibility efforts, that will be the standard that they’re aiming for in most cases. So if it’s difficult to achieve these things and the documentation’s not really straightforward, every time somebody comes across a question and thinks, I don’t really know the answer to that, probably the quickest thing to do is just to, ah, push it to one side and not press through. But you obviously have and made it a bit of a goal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So is there a particular accessibility requirement that developers in your estimation kind of overestimate the difficulty of? What I’m asking here really is about some low hanging fruit that you know about. In the scenario that we’ve just described where it’s easy to get put off and to sort of say to yourself, okay, I can’t do this. I’m wondering there are some sort of quick wins that you could describe that people could maybe achieve within the next half an hour, once they sat down at their machines?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:27] <strong>Jessica Lyschik:</strong> Yeah, I think there are definitely some. There is like underlining text in your main content, just underline the text. It’s one line of CSS, text declaration underline. For links, obviously, not for the entire text.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there is like, as I said, the HTML tags. With block themes, it’s super easy. For example, you just need to configure that correctly in the editor, or use the correct template part and it’s basically done for you. Core does that. This is one advantage of block themes, but we can dive into this deeper later. Or the skip to content links also in block themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As an example, in block themes it is just like putting the content block in a group and assigning the main HTML tag to that group. And WordPress does the rest for you. It’s just like assigning this one little setting correctly and then you get automatically a skip a content link for block themes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:18] <strong>Nathan Wrigley:</strong> Yeah, but curiously, if you didn’t know that small fact, that WordPress would handle that for you, if you don’t know, you don’t know. And you’d presumably go around the houses trying to figure that out for yourself and implement some custom version of that thing. Whereas in fact, what, three clicks, four seconds and you’re done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:33] <strong>Jessica Lyschik:</strong> It’s super easy, yep.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:33] <strong>Nathan Wrigley:</strong> Yeah. Any more before we move on?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:35] <strong>Jessica Lyschik:</strong> I think these are like the most, absolutely the low hanging fruit is also if you use any images to add an alternative text. I think this is probably the most common one people already know. It is so easy. And even WordPress, even if you use classic themes, it’s already in the media library, the alternative text field. For block themes you have it directly at the image so it’s already in front of you. You just need to use it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:57] <strong>Nathan Wrigley:</strong> Yeah, you just not ignore it basically. Yeah, that’s true.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So has this become kind of a habit for you then, over the last period of time since you’ve taken more and more interest in this? Have you got to the point now where this is just how it works? You know, in the same way that I drive a car and I use the gears and that’s all just second nature. Is it like that for you when you are building your themes? Because it’s now locked away in your head. Every time you do a thing that previously you would’ve omitted. You are now just in the habit. Has that been a difficult journey or fairly straightforward?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:28] <strong>Jessica Lyschik:</strong> I think it’s, like starting out with this, it would feel like a bumpy road. But for me it was, it’s a gradual process. But right now it’s really like, yeah, I just know that when I use a button in a context that is not like sending off a form to add an aria label to it, it’s like, it is baked into my brain essentially already because I know.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I just had a very interesting example this week at work where there was a client reaching out saying, hey, we did an accessibility test on our website and it marked like two buttons that did not say what they’re doing. These were essentially missing the aria label because they had only icons on the buttons, not real text.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if there’s just an icon, the screen reader cannot read, what is this button for, essentially, with just an icon? The win here was just to add the aria labels, because the fields were already there. This was also part of the Greyd.Suite, so from our product so I knew how to put it in there. And then it was like, oh no, like I have to do this 12 times, my colleague said. And I was like, yeah, okay, then you have to do it twice, 12 times. So 24 times. But be happy it’s not 200 times you have to do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So, and I said, do not take this personally. This is a great example of why putting accessibility at the very beginning of when you’re creating this makes life so much easier than rather when you just build a website and then you figure out you have to change 300 buttons. This is probably a crazy number, but just to give you an example, to change all the buttons manually again, going through every single page or whatever you have when you just could have taken the extra step, added the aria label, and then just be done with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:09] <strong>Nathan Wrigley:</strong> Right. That’s an interesting thought. And also the exasperation of your colleague there kind of perfectly sums up the problem. In that you see it as a problem. Does that mean I’ve got to do something 24 times? And there’s this sense of, ugh, I’ve got to do this work. And it feels like a chore. But then I suppose if you step back and look at what you’ll actually enable by doing those 24 things.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I know that in the workday that’s hard to do. It’s hard to sort of step back and say, okay, if I do this thing 24 times, this will be the result, and lots more people will be able to, in this case, view the image.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:42] <strong>Jessica Lyschik:</strong> I mean this was like they started already working on. If you fix it now, you do not have to do it for the coming pages. So if you multiply that with how many pages more you need to do, once you get this one fixed, and ideally you need to change the aria label of the text changes obviously, but this was, I think for a header, in a header, where there was like, I think one sort of popover or popup. Fully accessible by the way, so don’t worry about that. And also a button to, I think for the phone numbers, like just a phone icon. And they could click on it and it would be something like that, along the lines. I don’t exactly remember what it was. But it was just like two icons in the header. And if you take that header, use it on, I don’t know, another 250 sites, you don’t need to do the work anymore.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:29] <strong>Nathan Wrigley:</strong> Okay. So you are painting a picture in which, get it right at the beginning, follow the guidelines, do the hard work once, then almost the career from then, from this moment forward, your life will be immeasurably easier if you build it into the theme or.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:45] <strong>Jessica Lyschik:</strong> And accessibility will not be taken as, ugh, and I now have to do this all. Because when you do it from the start, you have to make sure at the end of course that it still works. You may have to run into issues and redo stuff. That can happen. But I think you just have saved yourself so much work in the end if that requirement for some reason pops up later or so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:10] <strong>Nathan Wrigley:</strong> I’m wondering, depending on the kind of nature of where you work, and how you do this. You know, if you’re a freelance, then this is on you. If you’re in an agency, then it may be that there’s somebody, you know, maybe there’s an SEO person, there’s a design person, maybe there’s an accessibility person. But it does feel like the moral argument states everybody should have some insight. Maybe you’re not right in the weeds of it, but you should have some knowledge of what the low hanging fruit is, at least.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:38] <strong>Jessica Lyschik:</strong> Yeah it’s, what’s the right word for it? Interdisciplinary. It is like not just the developer who needs to think of accessibility. It’s like, okay, we need to because like we provide a technical structure for it. But it also needs to be for the content people who write the blog posts, the pages, whatever, for SEO people to understand that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think accessibility, if you want the entire website to be accessibility, everyone who works on a website needs to know about it. That an SEO person needs to know how to create a skip link, probably not. Or how to use, maybe to use the right text. But for them, the text would be just the, using the right heading structure, for example. This is also a requirement, that you do not use an H3 and then an H6 heading in your content, but you structure it correctly that you have the H1 on the top, and then every next level is H H2, and then every level under that is H3. So this way. They should know about this. But they do not need to know too much about the technical side. Because in the end, it all comes together and creates an accessible website.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:42] <strong>Nathan Wrigley:</strong> In your commentary a few minutes ago, you mentioned that there were some guidelines in order to put a theme on wordpress.org. Is that the nature of it? Is it a guideline, or are there some hard and fast rules, which will prevent a theme getting into the repo based upon a lack of accessibility? What I’m asking is, are there some things that you must do as of now, or is it very much, okay, if you do this, great, but if you don’t, we’ll let your theme pass anyway?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:09] <strong>Jessica Lyschik:</strong> Yeah. Let me explain this. So there’s this accessibility ready tag. So you have different tags for the themes in the repository. And in order to get the accessibility ready tag, you need to follow the requirements, the accessibility ready requirements, I think it’s completely called.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And these are as of now 18 requirements. I went through them all in my talk. We’ve already touched on some of these. Some are really low hanging fruit, some are, one of the newer ones are, a theme should not recommend or require a plugin that is not accessible. This is something else that the team came up with, which is an interesting one. There’s, I guess a lot of room for discussion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But also another one is to have an accessibility.txt file in your theme. Which basically, it’s not a standard yet, but like close to a standard sort of, has information about what has been done in terms of accessibility. Are there any classes that you can, CSS classes that you can use to make use of texts for screen readers? So basically hide them visually, or hide these texts or items visually, but still have them read out by screen readers. So they’re not like discipline none where you just remove that basically from the accessibility tree, but make it still readable for screen readers. And just some more information about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, you need to meet all these requirements with your theme if you want this tag. But you can still like do not care about accessibility and still get your theme in the repo if you want.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:40] <strong>Nathan Wrigley:</strong> Would you like that to be flipped? Would you like that to be, because I mean we’re a very open ecosystem, aren’t we? And would you like to see though a day where you don’t meet these 18 guidelines, you don’t get the tag, you don’t get to play, you’re not allowed in the repo? Or is that a touch too far?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:56] <strong>Jessica Lyschik:</strong> Let me share some numbers, I think. So there are like 14,700 plus themes in the repository right now. All themes. At least that’s the number I can access. I don’t know if there’s maybe a bit more, I don’t know. But this is the public number you can access. And out of these themes, I think if I saw the correct number, it’s like just 270 have the accessibility ready tag. So then that is like 1.5% of all themes who have that tag.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think it will be extremely hard to force sort of, if you want to flip that, force that onto people. And I think we need to do a more gradual way. And that’s what I’m sharing my knowledge because I think it is not that hard. If you can improve the documentation for it, it will be even easier for people. And I think this is the way to go instead of forcing like, because we do not like to be forced to things we do not understand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:50] <strong>Nathan Wrigley:</strong> That’s right. Yeah, that’s interesting. I wonder if there’s a future in which that slowly gets ramped up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:56] <strong>Jessica Lyschik:</strong> I think with the AI agents, we will have an acceleration on this, I guess. So maybe not in WordPress themes, in the repository directly, but I think the attention will be put there and then like, oh, maybe we should make it more accessible. Let’s read into this. And I think these guidelines are also very interesting, maybe not just for WordPress themes. I mean, of course they’re for the repository, but you of course can apply them to your own custom theme, definitely. You do not have an absolute check like the team will do for you. But nothing stops you from using them even on a non WordPress site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:30] <strong>Nathan Wrigley:</strong> Do the guidelines, do they feel like they’re kind of firmly fixed or is it always a movable feast?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:35] <strong>Jessica Lyschik:</strong> They’re relatively fixed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:37] <strong>Nathan Wrigley:</strong> Okay, so if you were to swat up, for want of a better word, on what there is right now, there’s a good chance that the rug will not be pulled out from under you in six months, a year, two years time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:46] <strong>Jessica Lyschik:</strong> No, I think the last time the requirements got updated was in 2012, 14. I would need to ask, Joe Dolson did the initial, or was working on the initial thing. And so it has been a while since this got updated and they just got updated last month. So I don’t think that they will be changing anything.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The one I talked about, not requiring or recommending plugins is the one, this is something, it kind of creates a grey area sort of. And I think this will be put to discussion. It’s like, I don’t mind, but I can see many people like really, not raging against it, but like raising questions about it. If this is something that should be a requirement.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I think for like the actual technical stuff, I don’t think that there’s much that should change, because like they’re based on the WCAG requirements. These are like the standard requirements that also have, I’m not sure if they’re used on governmental things, like on the European Accessibility Act, but I think they’re a sort of base for that. And it’s not like completely this. So the theme requirements are not like the WCAG requirements 100%, but like a subset of it, sort of.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:57] <strong>Nathan Wrigley:</strong> Yeah, it’s a fairly slow moving ship in other words. If you acquire the knowledge today, you’ve got a good chance that in a year, two years, maybe even five years, the knowledge that you’ve got will need amending. But most of it will broadly work several years from now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:11] <strong>Jessica Lyschik:</strong> It’s with like development in general. So like you always need to be constantly learning. And I think if you learn about accessibility today, I think you’re in a very good spot. Because like of course we have European Accessibility Act and governmental requirements, at least in Europe we do have them. But I think there’s already so much information out there, that it should be relatively easy to onboard you. And I think this is just beneficial if you learn, it’s basically about learning about how to use things correctly. And if you’ve got that, then you’re absolutely good to go.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:45] <strong>Nathan Wrigley:</strong> So not that long ago I suppose, we had block themes coming around, which is an entirely different way of creating themes in WordPress. So you’ve got classic themes, which is the way it always used to be. And now we’ve got block themes. Is there a striking fundamental difference in the way that you might approach accessibility if you were used to doing block themes? Is there a whole lot more to learn? Maybe it’s more straightforward if you’re using block themes. Just tell us about how those two things differ.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:34:08] <strong>Jessica Lyschik:</strong> Yeah. It is more straightforward actually. Core is handling stuff for you. So accessibility just got a tad bit easier if you use block themes actually. In classic themes, you have to do a lot of things manually. You have to make sure that the elements are right, that the skip link is there, for example, things that we touched on already. And in block themes, if you use the correct blocks on the correct structure, Core handles stuff for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For example, there’s a requirement labelled form fields. So when you use a form or the form fields should have a label to it. In themes you don’t really have that because usually you should not put like, something like a form in there. There are two forms that by default come with a theme that are the comments form, but that’s completely handled by Core. And there’s the search form on the search results page.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in block themes, both of them are handled by Core. Both of them are accessible because Core handles it all for you. You just need to place them and actually not do anything to them. It is that straightforward.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And same for like template parts. If you want to use header and footer, just use the template parts and use them. You can assign them a header template part as header of course, and one as footer. And then the HTML text will be automatically added correctly for you. So there’s not too much that you need to do manually anymore, just get that right.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And as I say, I really love block themes for the much easier accessibility, or the way you can make a block theme accessible. This is so much easier than with a classic theme.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:35:38] <strong>Nathan Wrigley:</strong> So presumably though, it sounds like there’s meta knowledge, if you know what I mean. You’ve got to know which block to put in which spot, and which block wraps this other block, and the parents and the children. But if you learn that, and if you make that, we were talking about habits earlier, if you make that your habit, and then save that habit and save the theme and what have you, you are painting a picture where it’s significantly more straightforward because you don’t have to think about it in many cases. Well, that’s the wrong way of phrasing it. You don’t have to do that hard work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:07] <strong>Jessica Lyschik:</strong> Exactly. If you have like a, sorry to interrupt you here, but if you have a theme that already gives you the correct examples, you can build off from that theme. For example, if you’re creating a new template, you can use an existing template and then just adjust it to what you need. If you need to change like colours or something but you have the structure already correct. You do not need to think about doing the structure again and maybe just have a check that it’s actually the right one. But if you just copy what’s already there, that is part of the theme, that’s actually super easy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:36:38] <strong>Nathan Wrigley:</strong> I’m going to link to your presentation, which I know by the time that this goes out will be probably on wordpress.tv, I would’ve thought by that point. But I’ll link to your presentation and all of the different bits and pieces.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But I’m curious, who in the WordPress space, and maybe not the WordPress space, maybe outside of that, who do you follow or try to get guidance from? Maybe that’s a YouTube channel or a blog, or a, I don’t know, government based website. Maybe it’s just wordpress.org, I don’t know. Where do you go to swat up on all of this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:06] <strong>Jessica Lyschik:</strong> Ooh, there are some very good resources out there. So I do follow like people within the WordPress community. I mentioned a few names already, like Joe Dolson, Rian Rietveld, Amber Hinds from Equalize Digital. They do a lot of stuff in that area. And then I also follow Sara Soueidan, she’s a developer from, I think Lebanon, if I remember correctly. She does great stuff on accessibility. There is a few more names. There are some good resources out there. I can probably research that for you because I cannot remember the names right now.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:39] <strong>Nathan Wrigley:</strong> I’m putting you on the spot. I’m sorry.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:37:40] <strong>Jessica Lyschik:</strong> Put me on the spot. That’s okay. I’ll share some links with you that you can then put in with the podcast information. There are some great resources both within the WordPress community but also outside of it that can give you a very good overview. And I think it’s just interesting to follow people who like can build the bridge between, okay, this is a requirement, this is how you technically do it, and this is why you do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:05] <strong>Nathan Wrigley:</strong> I have a friend who’s recently been on the journey of trying to go from zero to really quite proficient in this space. He’s found a bunch of YouTube channels and several of the names that you mentioned there, particularly the Lebanese lady that you mentioned.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I think followed a course that they put together and found that structure profoundly helpful. The dry documentation, I think was the way it was described on the WCAG website can sometimes I think be a, you know, it’s hard to get into that in some way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, if this all sounds like a lot of work, there’s definitely resources out there, which, fun is perhaps the wrong word, but make it more engaging. There’s videos to watch, and channels to follow and blogs to read and all of this. And so it turns this, I’m doing air quotes, dry subject into something a little bit more manageable and easy to take in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:38:52] <strong>Jessica Lyschik:</strong> Yes. Yes, because like the WCAG requirements, like they’re hard to read. It’s like reading, the HTML 5 spec. This is also super hard to read.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:01] <strong>Nathan Wrigley:</strong> Yeah, it’s the cure for insomnia.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:03] <strong>Jessica Lyschik:</strong> Yeah, sort of. And it’s, yeah, I think if we have, not more content, but the right content available to people in the right spot, I think this will be beneficial for everyone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:14] <strong>Nathan Wrigley:</strong> Yeah. I think unless there’s something else you want to cover off, I think, Jessica, I’ve asked everything I wish to. Is there anything you think we’ve omitted or are you happy to call it a day there?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:24] <strong>Jessica Lyschik:</strong> I think we’re, I mean we could go on probably for days. But I think for now it’s, we’ve covered every topic.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:32] <strong>Nathan Wrigley:</strong> Well in which case, what I’ll do, dear listener, if you go to the WP Tavern website and search for Jessica’s post, I’m not sure what number it will be as we’re recording it, go there and anything that we discussed, and any names that we discussed and those kind of things, I’ll put a link and obviously if Jessica supplies any other things she mentioned, we’ll add those in as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So Jessica, thank you so much for chatting to me today. And now that your presentation is done, you can relax and enjoy the rest of the spectacle.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:55] <strong>Jessica Lyschik:</strong> Yes. Thank you so much, and thanks for having me.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:39:57] <strong>Nathan Wrigley:</strong> You’re welcome.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://jessicalyschik.de\">Jessica Lyschik</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jessica is a longtime member of the WordPress community who has been working in the ecosystem since 2015. She has spent years learning and advocating for web accessibility, both as a developer and as an active community participant, joining agencies, working on theme reviews, and helping to improve standards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many theme creators assume that making themes accessible is an intimidating task, but Jessica’s here to show you that achieving an accessibility-ready WordPress theme is more straightforward than you might imagine. Her WordCamp Europe 2026 presentation, “Accessibility in themes: easier than you think,” aimed to demystify the requirements for accessible themes, explaining what the WordPress guidelines mean in practice, where the low-hanging fruit is, and how both block and classic themes can reach accessibility-ready status with manageable effort.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We talk about the personal and moral journey that brings developers to accessibility, the technical hurdles and documentation challenges, and the ways in which things like AI agents are putting accessibility in the spotlight for everyone. Jessica talks about practical steps that quickly improve accessibility, like using correct HTML tags, adding alternative text to images, and configuring skip-to-content links, and shares why building accessibility in from the start saves time and effort down the road.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We also explore the differences, and possible advantages, of block themes when it comes to accessibility, why theme guidelines work the way they do, and the importance of interdisciplinary awareness across SEO, design, and content teams. Jessica mentions helpful resources, influential leaders in accessibility, and the ongoing need for documentation improvements to help everyone level up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever felt overwhelmed by accessibility requirements, or wonder why they matter, and how you can build better WordPress sites that work for everyone, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://europe.wordcamp.org/2026/session/accessibility-in-themes-easier-than-you-think/\">Accessibility in themes: easier than you think</a> – Jessica’s presentation at WordCamp Europe 2026</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://syde.com\">Syde</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://leipzig.wordcamp.org/2026/\">WordCamp Leipzig 2026</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://greydsuite.com\"> Greyd.Suite</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://developer.wordpress.org/themes/classic-themes/functionality/accessibility/\">Accessibility Handbook</a> – Theme section</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.w3.org/WAI/standards-guidelines/wcag/\">WCAG 2 Overview</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://commission.europa.eu/strategy-and-policy/policies/justice-and-fundamental-rights/disability/european-accessibility-act-eaa_en\">European Accessibility Act (EAA)</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.joedolson.com\"> Joe Dolson</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://rianrietveld.com\">Rian Rietveld</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://amberhinds.com\">Amber Hinds</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.sarasoueidan.com\"> Sara Soueidan</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2026 13:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:17;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"Open Channels FM: We are Welcoming Automattic as our Newest Sponsor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557268\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://openchannels.fm/we-are-welcoming-automattic-as-our-newest-sponsor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:159:\"Automattic is now a sponsor of Open Channels FM Podcast Network, supporting creators with tools for WordPress, WooCommerce, and more, promoting freedom online.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 22 Jul 2026 08:25:26 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:18;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:69:\"Gutenberg Times: How WordPress decides a theme is a “block theme”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=46118\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://gutenbergtimes.com/how-wordpress-decides-a-theme-is-a-block-theme/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:20333:\"<p class=\"wp-block-paragraph\">The term “block theme” is used a lot in WordPress but it was never really clear to me what that meant exactly from a code point of view.</p>\n\n\n\n<p class=\"wp-block-paragraph\">While researching <a href=\"https://gutenbergtimes.com/the-post-editor-is-going-full-iframe-what-block-developers-need-to-know-before-wordpress-7-1/\">The post editor is going full iframe: what block developers need to know before WordPress 7.1</a>, I learned that the outcome of testing WordPress 7.1 Beta 1 <em>may</em> soften the plan: instead of forcing the iframe for everyone, core might force it only for block themes, while classic themes using blocks with apiVersion 2 or lower keep the current 7.0 behavior. (The linked article covers the 7.0 state of things in full.)<br /><br />If that’s the split, then the exact definition of “block theme” suddenly matters a great deal. So what does core actually check?</p>\n\n\n\n<p class=\"wp-block-paragraph\">The public API is <code>wp_is_block_theme()</code>, which just asks the active theme:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>PHP</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// wp-includes/theme.php (guard clause trimmed)\nfunction wp_is_block_theme() {\n return wp_get_theme()->is_block_theme();\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// wp-includes/theme.php (guard clause trimmed)</span></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">function</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">wp_is_block_theme</span><span style=\"color: #D4D4D4;\">() {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">wp_get_theme</span><span style=\"color: #D4D4D4;\">()-></span><span style=\"color: #DCDCAA;\">is_block_theme</span><span style=\"color: #D4D4D4;\">();</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">And <code>WP_Theme::is_block_theme()</code> is, in its entirety, a file-existence check:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>PHP</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// wp-includes/class-wp-theme.php (caching trimmed)\npublic function is_block_theme() {\n $paths_to_index_block_template = array(\n $this->get_file_path( \'/templates/index.html\' ),\n $this->get_file_path( \'/block-templates/index.html\' ),\n );\n\n foreach ( $paths_to_index_block_template as $path ) {\n if ( is_file( $path ) && is_readable( $path ) ) {\n return true;\n }\n }\n\n return false;\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// wp-includes/class-wp-theme.php (caching trimmed)</span></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">public</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">function</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">is_block_theme</span><span style=\"color: #D4D4D4;\">() {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">$paths_to_index_block_template</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #DCDCAA;\">array</span><span style=\"color: #D4D4D4;\">(</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">$this</span><span style=\"color: #D4D4D4;\">-></span><span style=\"color: #DCDCAA;\">get_file_path</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'/templates/index.html\'</span><span style=\"color: #D4D4D4;\"> ),</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">$this</span><span style=\"color: #D4D4D4;\">-></span><span style=\"color: #DCDCAA;\">get_file_path</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'/block-templates/index.html\'</span><span style=\"color: #D4D4D4;\"> ),</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">foreach</span><span style=\"color: #D4D4D4;\"> ( </span><span style=\"color: #9CDCFE;\">$paths_to_index_block_template</span><span style=\"color: #D4D4D4;\"> as </span><span style=\"color: #9CDCFE;\">$path</span><span style=\"color: #D4D4D4;\"> ) {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">if</span><span style=\"color: #D4D4D4;\"> ( </span><span style=\"color: #DCDCAA;\">is_file</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">$path</span><span style=\"color: #D4D4D4;\"> ) && </span><span style=\"color: #DCDCAA;\">is_readable</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">$path</span><span style=\"color: #D4D4D4;\"> ) ) {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">true</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> }</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> }</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">false</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A theme is a “block theme” if it ships an <code>index.html</code> block template</strong>, either in <code>templates/</code>, or in <code>block-templates/</code>, the pre-5.9 legacy location. Nothing else is consulted. That has a few consequences that may surprise people:</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><code>theme.json</code> doesn’t make you a block theme.</strong> Neither do patterns, block template <em>parts</em>, or <code>add_theme_support( \'block-templates\' )</code>. A theme can adopt every one of those “hybrid” features and still land on the classic side of this check, because the test only looks for a top-level <code>index.html</code> template.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Child themes inherit the answer.</strong> <code>get_file_path()</code> looks in the child theme first and falls back to the parent, so a child theme of a block theme is a block theme even if the child ships no templates of its own.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>It’s a filesystem check, not a declaration.</strong> There’s no header in <code>style.css</code> that opts you in or out. Drop a <code>templates/index.html</code> into a theme and, as far as WordPress is concerned, it <em>is</em> a block theme.</p>\n\n\n\n<h3 class=\"wp-block-heading\">The minimum files required for block and classic themes</h3>\n\n\n\n<p class=\"wp-block-paragraph\">This is the entire minimum viable <strong>block theme</strong> — two files:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>Markdown</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">my-block-theme/\n├── style.css ← standard theme header\n└── templates/\n └── index.html ← this file IS the decider</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D4D4D4;\">my-block-theme/</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">├── style.css ← standard theme header</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">└── templates/</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> └── index.html ← this file IS the decider</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">(WordPress considers a theme valid if it has <code>style.css</code> plus <em>either</em> <code>index.php</code> or <code>templates/index.html</code>, which means for a block theme, <code>index.php</code>, <code>functions.php</code>, and even <code>theme.json</code> are all optional.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">And this is a theme that is <strong>guaranteed to stay classic</strong>:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>Markdown</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">my-classic-theme/\n├── style.css\n└── index.php ← the classic fallback template</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D4D4D4;\">my-classic-theme/</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">├── style.css</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">└── index.php ← the classic fallback template</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Staying on the classic side of the check comes down to two conditions:</p>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>No</strong> <strong><code>templates/index.html</code></strong> <strong>and no legacy</strong> <strong><code>block-templates/index.html</code>.</strong> Other block templates don’t matter: a theme with `templates/single.html` but no `templates/index.html` still tests as classic. (In practice, though, if you’re shipping block templates, ship the index and be a block theme on purpose.)</li>\n\n\n\n<li><strong>No block-theme parent.</strong> The check falls back to the parent theme, so a child of Twenty Twenty-Five is a block theme no matter what the child contains. To be classic, the whole chain has to be.</li>\n</ol>\n\n\n\n<p class=\"wp-block-paragraph\">Everything else is fair game. <code>theme.json</code>, patterns, <code>add_theme_support( \'block-template-parts\' )</code>` custom templates registered from plugins — none of them flip the switch., patterns, <code>add_theme_support( \'block-template-parts\' )</code>, custom templates registered from plugins: none of them flip the switch.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Where real themes land</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Running that check against some current releases from the theme directory</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Tests <strong>classic</strong></th><th>Tests <strong>block</strong></th></tr></thead><tbody><tr><td>Twenty Twenty-One and every earlier default</td><td>Twenty Twenty-Two and every later default</td></tr><tr><td>Astra, Kadence, Blocksy, Botiga, Sydney, Hello Elementor — <em>all ship <code>theme.json</code></em></td><td></td></tr><tr><td>GeneratePress, Neve, OceanWP, Storefront</td><td></td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Six of the themes in the first column ship <code>theme.json</code>, the marquee “block” feature, and still test classic, because the check never looks at <code>theme.json</code><br /><br />Twenty Twenty and OceanWP are another good gotcha: both ship a <code>templates/</code> directory and are still classic, because it’s full of PHP page templates (<code>template-cover.php</code>, <code>landing.php</code>). The check wants <code>templates/index.html</code> specifically, so “does it have a templates folder” is not the indicator you might assume.</p>\n\n\n\n<h3 class=\"wp-block-heading\">How the editor reads it</h3>\n\n\n\n<p class=\"wp-block-paragraph\">On the JavaScript side, the block-theme flag surfaces in two different places, which is worth knowing if you go source-diving.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As an editor setting:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>PHP</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// wp-includes/block-editor.php, get_block_editor_settings()\n$editor_settings[\'__unstableIsBlockBasedTheme\'] = wp_is_block_theme();</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// wp-includes/block-editor.php, get_block_editor_settings()</span></span>\n<span class=\"line\"><span style=\"color: #9CDCFE;\">$editor_settings</span><span style=\"color: #D4D4D4;\">[</span><span style=\"color: #CE9178;\">\'__unstableIsBlockBasedTheme\'</span><span style=\"color: #D4D4D4;\">] = </span><span style=\"color: #DCDCAA;\">wp_is_block_theme</span><span style=\"color: #D4D4D4;\">();</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">and on the REST themes endpoint, which is where <code>@wordpress/core-data</code> picks it up:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>PHP</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php\n$data[\'is_block_theme\'] = $theme->is_block_theme();</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// wp-includes/rest-api/endpoints/class-wp-rest-themes-controller.php</span></span>\n<span class=\"line\"><span style=\"color: #9CDCFE;\">$data</span><span style=\"color: #D4D4D4;\">[</span><span style=\"color: #CE9178;\">\'is_block_theme\'</span><span style=\"color: #D4D4D4;\">] = </span><span style=\"color: #9CDCFE;\">$theme</span><span style=\"color: #D4D4D4;\">-></span><span style=\"color: #DCDCAA;\">is_block_theme</span><span style=\"color: #D4D4D4;\">();</span></span></code></pre></div>\n\n\n\n<h2 class=\"wp-block-heading\">The one-file switch</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><br />For all the weight the term carries, “block theme” boils down to a single file: <code>templates/index.html</code> exists, or it doesn’t. Not <code>theme.json</code>, not patterns, not any amount of hybrid adoption. Just one index template, checked up the parent chain.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s worth keeping in mind if 7.1 does end up drawing the iframe line at <code>wp_is_block_theme()</code>. A hybrid theme that has adopted everything <em>except</em> block templates would keep the classic editor behavior, while adding a single <code>templates/index.html</code> (even accidentally, even in a parent theme you don’t control) would flip a site to the forced iframe. If your theme or your users’ sites sit anywhere near that line, now is a good time to check which side of it you’re actually on: it’s one <code>is_file()</code> call away.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2026 18:57:12 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Ryan Welcher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:19;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:86:\"Open Channels FM: The Growth of Domain Names and the Future of AI in Internet Identity\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557208\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"https://openchannels.fm/the-growth-of-domain-names-and-the-future-of-ai-in-internet-identity/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:223:\"This episode looks at the evolving online landscape, focusing on domain names, digital identity, and AI\'s influence. Key insights include rising domain registrations, AI in managing abuse, and the importance of open source.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2026 13:41:56 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:20;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"Open Channels FM: Open Source and the Open Source Initiative\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556849\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:67:\"https://openchannels.fm/open-source-and-the-open-source-initiative/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:346:\"People think Open Source is just about having access to the source code. Actually, there’s a much longer history behind it. Open Source existed before the term Open Source was even coined, back in the late 60s. Universities started giving away software like Unix for free under small licenses like BSD or MIT, coincidentally named […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 21 Jul 2026 12:15:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:21;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:90:\"WordCamp Central: WordCamp Rajshahi 2026: Celebrating Community, Learning, and Open Source\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://central.wordcamp.org/?p=15457333\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:112:\"https://central.wordcamp.org/news/2026/07/wordcamp-rajshahi-2026-celebrating-community-learning-and-open-source/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8004:\"<p class=\"wp-block-paragraph\">WordCamp Rajshahi 2026, held on July 2nd-3rd, 2026, at the Rajshahi University of Engineering & Technology (RUET) Auditorium, brought together WordPress enthusiasts, developers, designers, business owners, students, and open-source contributors from across Bangladesh and beyond. As a non-profit, community-driven conference, the event demonstrated the strength of collaboration, knowledge sharing, and the spirit of open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">More than just a technology conference, WordCamp Rajshahi became a place where people connected, exchanged ideas, and inspired one another to contribute to the future of WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sharing Knowledge That Matters</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The conference featured a diverse lineup of local and international speakers who shared practical experiences, real-world case studies, and emerging trends shaping the web today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Artificial intelligence was one of the most discussed topics throughout the event. Sessions explored how AI is transforming the way developers and businesses work—from integrating AI into WordPress without writing code to building customer support agents, using modern Large Language Models (LLMs) for development, debugging applications, and improving everyday workflows.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Performance, architecture, and security also received significant attention. Speakers demonstrated advanced WordPress optimization techniques, object caching strategies, no-code animations using GSAP, methods for identifying system vulnerabilities, and practical approaches to cleaning malware-infected WordPress websites with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Beyond technical sessions, the conference emphasized personal and professional growth. Attendees learned about building successful careers, transitioning from startups to multinational companies, product marketing, the realities of remote work, and maintaining mental well-being while working in the technology industry.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Contributor Day: Giving Back to WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Contributor Day, held on July 2, served as one of the most meaningful parts of the event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Participants worked alongside experienced WordPress contributors and Table Leads to improve the WordPress project itself. Whether they contributed to Core, Accessibility, Themes, Plugins, Polyglots (translations), Education, or Photos, attendees experienced firsthand how community collaboration built the global WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">For many first-time contributors, it was their first opportunity to make a direct contribution to one of the world’s largest open-source projects.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Campus Connect: Inspiring the Next Generation</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the highlights of WordCamp Rajshahi 2026 was the <strong>Campus Connect</strong> initiative.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To encourage student participation in open source, <strong>40 university students</strong> received <strong>complimentary tickets</strong> to attend the event. This initiative introduced young learners to the WordPress community, allowing them to interact with experienced professionals, attend technical sessions, and discover opportunities to contribute to open source.</p>\n\n\n\n<p class=\"wp-block-paragraph\">By investing in students today, the community hopes to cultivate the next generation of developers, designers, and contributors who will help shape the future of WordPress.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Sponsors Who Made It Possible</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp events are made possible through the generous support of organizations that believe in strengthening the open-source ecosystem. Rather than simply sponsoring an event, these companies invest in community growth and knowledge sharing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This year, the sponsorship tiers celebrated Rajshahi’s famous mango heritage.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Fazli Majesty (Platinum Sponsors)</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://webappick.com/\" rel=\"noopener\" target=\"_blank\">WebAppick</a>,</li>\n\n\n\n<li><a href=\"https://fluentcart.com/\" rel=\"noopener\" target=\"_blank\">FluentCart</a>,</li>\n\n\n\n<li><a href=\"https://xcloud.host/\" rel=\"noopener\" target=\"_blank\">xCloud</a>.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Himsagar Legacy (Gold Sponsor)</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://hosting.com/\" rel=\"noopener\" target=\"_blank\">Hosting.com</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Amrapali Delight (Silver Sponsors)</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://paymentform.io/\" rel=\"noopener\" target=\"_blank\">PaymentForm.io</a></li>\n\n\n\n<li><a href=\"https://kirki.com/\" rel=\"noopener\" target=\"_blank\">Kirki</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Community Sponsors</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://www.google.com/url?sa=E&q=https%3A%2F%2Fcrowdzonebd.com%2F\" rel=\"noopener\" target=\"_blank\">Crowd Zone</a>,</li>\n\n\n\n<li><a href=\"https://exprovia.com/\" rel=\"noopener\" target=\"_blank\">Exprovia</a>,</li>\n\n\n\n<li>NT Tech Innovation,</li>\n\n\n\n<li><a href=\"https://padmazon.com.bd/\" rel=\"noopener\" target=\"_blank\">Padmazon Limited</a>,</li>\n\n\n\n<li><a href=\"https://shapedplugin.com/\" rel=\"noopener\" target=\"_blank\">ShapedPlugin</a>,</li>\n\n\n\n<li><a href=\"https://sigmative.com/\" rel=\"noopener\" target=\"_blank\">Sigmative</a>,</li>\n\n\n\n<li><a href=\"https://timetics.ai/\" rel=\"noopener\" target=\"_blank\">Timetics AI</a>,</li>\n\n\n\n<li><a href=\"https://wpbakery.com/\" rel=\"noopener\" target=\"_blank\">WPBakery</a>.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Official Partners</strong></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>FM Networks (Internet Partner)</li>\n\n\n\n<li>TNR Soft (Payment Gateway Partner)</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Their support enabled the community to deliver a world-class experience while keeping the event affordable and accessible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank You to Everyone Behind the Scenes</h2>\n\n\n\n<p class=\"wp-block-paragraph\">An event of this scale is never the work of a single person.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Our sincere appreciation goes to every speaker and Contributor Day table lead who generously shared their knowledge and experience with the community.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We are equally grateful to our organizers and volunteers. From sponsorship coordination, website management, registration, design, photography, audiovisual production, venue operations, food management, and attendee support, every team member played a vital role in ensuring the event ran smoothly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Their dedication transformed months of planning into an unforgettable experience for every attendee.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Looking Ahead</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Rajshahi 2026 demonstrated what is possible when passionate volunteers, contributors, sponsors, and community members work toward a common goal.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The event was more than a conference—it was a celebration of learning, collaboration, and the open-source values that make WordPress one of the world’s most successful communities.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As the community continues to grow, the relationships built, ideas shared, and contributions made during WordCamp Rajshahi 2026 will inspire future events and encourage even more people to participate in the global WordPress ecosystem.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Here’s to many more WordCamps, more contributors, and a stronger open-source community in Bangladesh and beyond.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 20 Jul 2026 19:05:31 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Nazmul Hosen\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:22;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:111:\"Gutenberg Times: #WCUS Schedule, iframed Post Editor, WooCommerce 11.0 and so much more — Weekend Edition 369\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=46063\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:115:\"https://gutenbergtimes.com/wcus-schedule-iframed-post-editor-woocommerce-11-0-and-so-much-more-weekend-edition-369/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:23671:\"<p class=\"wp-block-paragraph\">Hi there!</p>\n\n\n\n<p class=\"wp-block-paragraph\">What a week! WordPress 7.1 Beta 1 (and Beta 2) arrived with a huge array of updates. We’ll unpack them together over the next four weeks, right up to the final release on August 19, 2026.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One thing shouldn’t wait, though: the security release WordPress 7.0.2. Go update your production sites now — this newsletter will still be here when you’re back. <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f609.png\" style=\"height: 1em;\" /></p>\n\n\n\n<p class=\"wp-block-paragraph\">In this edition, you’ll also find the first speaker lineup for WordCamp US, a fourth page-builder migration story, WooCommerce 11.0 on the horizon, and plenty of block development goodness: from iframed editors to on-brand maintenance pages.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Grab your favorite Saturday beverage and dig in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h2 class=\"wp-block-heading\"><strong>WordCamp US 2026: Four Tracks, Three Workshops, 33 Speakers</strong></h2>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://us.wordcamp.org/2026/announcing-our-first-round-of-speakers-2/\"><img alt=\"First speaker spotlight WordCamp US> \" class=\"wp-image-46081\" height=\"343\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Speakers-WordCamp-Us.png?resize=652%2C343&ssl=1\" width=\"652\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The first wave of WCUS 2026 speakers is live — and it reads like a who’s-who of WordPress in practice.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US just <a href=\"https://us.wordcamp.org/2026/speakers/\">published its opening lineup</a> for August 16–19 in Phoenix: 34 confirmed speakers so far, including <strong>K Adam White, Brian Coords, Jamie Marsland, Kathy Zant, Miriam Schwab, and Robert Abela</strong>, all experienced developers, educators, security specialists, community builders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The program runs four tracks. </p>\n\n\n\n<ul class=\"wp-block-list has-small-font-size\">\n<li><strong>AI in Action</strong> leads with sessions on agentic workflows, AI search, and guardrails for AI-assisted development. </li>\n\n\n\n<li><strong>Honing Your Skills</strong> covers the practical side: maintenance, privacy compliance, creator commerce, security. </li>\n\n\n\n<li><strong>Technical WordPress</strong> digs into block migrations at scale, WP-CLI automation, and plugin pipelines. </li>\n\n\n\n<li><strong>Beginning WP101</strong> is the on-ramp for newcomers — or for clients you’re bringing along.</li>\n\n\n\n<li>Three <strong>hands-on workshop</strong>s round out the program, where you build something real in the room and leave with it.<br /></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The full session schedule isn’t out yet, but the speaker list alone is a useful signal. If someone on that page is a voice you follow, a tool you depend on, or a corner of WordPress you’re actively navigating, you now have a specific reason to be in the room.<br /><br /><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" style=\"height: 1em;\" /> <a href=\"https://us.wordcamp.org/2026/tickets\" rel=\"noopener\" target=\"_blank\">us.wordcamp.org/2026/tickets</a> — $100 General Admission · $750 Micro-Sponsor (includes listing on the sponsors page) <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f465.png\" style=\"height: 1em;\" /> <a href=\"https://us.wordcamp.org/2026/speakers/\" rel=\"noopener\" target=\"_blank\">Full speaker list →</a></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\"><strong>WordPress 7.1 Beta </strong>1</a> was release on July 15, 2026. is now available for testing. The release post offers instructions how to sent up a test side and shows an extensive list of new features. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The security team released <a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\"><strong>WordPress 7.0.2</strong></a> with the urgent appeal to update right away. The security fixes were also backported in 6.9.5 and 6.8.6. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The security fix was also included in <strong>WordPress 7.1 Beta 2</strong>, so testing sites are also protected during this release cycle. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Huzaifa Al Mesbah,</strong> from the Core Test team, published the accompanying <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\"><strong>Help Test WordPress 7.1</strong></a> post. </p>\n\n\n\n<p class=\"wp-block-paragraph\">A few <strong>WordPress 7.1 Dev Notes</strong> are already available: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/13/consistent-navigation-in-wordpress-7-1-with-persistent-toolbar/\">Consistent navigation in WordPress 7.1 with persistent toolbar</a> </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/07/the-classic-block-stays-in-the-inserter-for-wordpress-7-1/\">The Classic block stays in the inserter for WordPress 7.1</a></li>\n</ul>\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\">Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-46077\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17-edited-1.png?resize=652%2C183&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In about 10 days, WooCommerce 11.0 release is schedule. Brain Coords has the skinny for you in <a href=\"https://developer.woocommerce.com/2026/07/13/woocommerce-11-0-pre-release/\"><strong>what’s coming for developers in WooCommerce</strong></a>. Performance leads the release with 28 PRs — product object caching becomes the default for new stores, speeding up variable products by 9–12%. You’ll also find email verification connecting guest orders to accounts, new phone validation hooks, video embeds in the block email editor, and the final removal of the Product Editor beta. The beta is ready for your testing now.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jamie Marsland</strong> followed his instincts and build <a href=\"https://wordpress.org/plugins/jamies-front-end-editor-for-content-teams/\"><strong>Jamie’s Front-End Editor for Content Teams</strong></a>, a plugin that lets your editors click any paragraph or heading on the live page and start typing — no block editor required. With the latest updates, you can now edit text, links, buttons and images right on the live page. No wp-admin, no block editor, just click and change it in place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Built on the Interactivity API with no build step, it preserves block markup on save, records edits as native block notes for an audit trail, and lets you restrict chosen roles to front-end-only editing. Let Marsland what you think. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/roadmap-7-1-gutenberg-23-5-responsive-styling-migration-to-block-themes-weekend-edition-368/\">Last week</a>, I shared three migration stories from page builders to the Core block editor and block themes. Here’s a fourth perspective: The team at WP Expert, an Ottawa agency founded by <strong>Frederic Sune</strong>, put together a comprehensive post on <a href=\"https://wpexpert.ca/migrate-agency-gutenberg-success/\"><strong>migrating agency sites from page builders to Gutenberg</strong></a>, should you go on that journey, too. You’ll find the strategic arguments (better Core Web Vitals, smaller attack surface, less technical debt) alongside a practical playbook covering backups, staging, block theme selection, pattern development, and SEO safeguards. The post also explores what block-based architectures mean for an agency’s business model, from premium modernization packages to fewer layout-related support tickets. An FAQ rounds it out.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Brian Coords</strong> tackles a common WooCommerce pain point: <a href=\"https://www.briancoords.com/custom-product-templates-for-block-themes/\"><strong>custom product templates for block themes</strong></a>. He combines two core WordPress features — the plugin template registration API from 6.7 and the venerable <code>single_template_hierarchy</code> filter — to serve custom templates for product collections, like all products in a category. His example plugin falls back to your Single Product template unless you override it. Clone the repo and give it a try; custom Product fields are next on his list.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">On the WordPress Developer Blog, <strong>Troy Chaplin </strong>shows you how to build <strong><a href=\"https://developer.wordpress.org/news/2026/07/on-brand-maintenance-mode-for-wordpress-block-themes/\">an on-brand maintenance mode for block themes</a>.</strong> You add one small hook to your theme’s <code>functions.php</code> once, then design and manage the maintenance page entirely in the Site Editor with full access to your Global Styles. Renaming or deleting the template toggles maintenance mode on and off, no code needed. An SEO-friendly variant adds 503 headers so crawlers know the downtime is temporary.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://developer.wordpress.org/news/2026/07/on-brand-maintenance-mode-for-wordpress-block-themes/\"><img alt=\"\" class=\"wp-image-46150\" height=\"345\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/maintenance-mode.png?resize=652%2C345&ssl=1\" width=\"652\" /></a></figure>\n\n\n<div class=\"ng-block-4796b0d217c954c6 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-d2098f03ac6d16f2 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2026”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-edc7721d79ebf99e wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2025/\">2025</a></strong></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"3-building-themes-for-fse-and-word-press\">Building Blocks and Tools </h2>\n\n\n\n<p class=\"wp-block-paragraph\">On WP Mayor, <strong>Jean Galea </strong>untangles <strong><a href=\"https://wpmayor.com/wp-cli-vs-rest-api-vs-abilities-api/\">when to reach for WP-CLI, the REST API, or the Abilities API</a>.</strong> His mental model: they’re layers, not rivals. WP-CLI lives on the server for bulk work, REST serves off-server callers like headless front ends, and the Abilities API tells AI agents what they’re allowed to do, complete with schemas and permission checks. Galea also shares how his own sites lean on all three at once.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">Get up to speed how to make your custom blocks plugin work in the iframed post editor, if you haven’t yet. After five years of ruminating and communicating the switch is coming to WordPress 7.1. In his post, <strong>Ryan Welcher</strong> explains <a href=\"https://gutenbergtimes.com/the-post-editor-is-going-full-iframe-what-block-developers-need-to-know-before-wordpress-7-1/\"><strong>why the post editor is going full iframe in WordPress 7.1</strong></a> and what that means for your custom blocks. You’ll find the fixes for the most common breakage — global <code>window</code> and <code>document</code> references, editor styles enqueued into the wrong document, stale admin-scoped CSS, and third-party libraries — plus a companion demo plugin with broken/fixed block pairs, Playground blueprints for testing both states, and a handy pre-flight checklist.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">The video volunteers at WordCamp Portugal uploaded all recordings to WordPressTV and two of the talks caught my eye: </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Imran Sayed</strong> walks you through <a href=\"https://wordpress.tv/2026/05/19/the-fastest-way-to-build-gutenberg-blocks-modern-tools-scripts-and-ai-2/\"><strong>the fastest way to build Gutenberg blocks with modern tools, scripts, and AI</strong></a>. If custom block development has felt complex or time-consuming, you’ll appreciate his focus on practical, real-world workflows you can adopt immediately — moving fast without over-engineering. The recording is available on WordPress.tv, and the presentation slides are linked below the video for easy reference.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jorge Costa</strong> shows you how to use <a href=\"https://wordpress.tv/2026/05/19/ai-is-in-wordpress-core-heres-how-to-use-it/\">t<strong>he AI building blocks already shipped in WordPress core</strong></a> (the WP AI Client, the Abilities API, and the MCP adapter) to bring AI-powered features into your own plugins, themes, and sites. He also tackles the bigger question: when agents can spin up entire projects on any stack, why is WordPress still the right bet? <a href=\"https://portugal.wordcamp.org/2026/files/2026/05/T1-12H30-jorge-slides_260516_095705.pdf\">Slides are linked</a> alongside the recording.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">Check out the not so new any more <strong>Talk Devy to Me</strong> series on Ryan Welchers YouTube Channel! In the latest epsiode, <strong>Antonio Sejas</strong> <a href=\"https://www.youtube.com/watch?v=YZWwP1QHXKM\"><strong>demos Studio Code, the agentic AI assistant</strong></a> built into WordPress Studio’s desktop app and CLI. You can spin up sites, run performance audits, add content, and install plugins and themes through natural language conversation — all locally, so nothing you break goes public. Sejas explains how it works under the hood before building something live with the host. Studio Code is free while in beta, so now’s a good time to experiment. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">If you rather want to read about the updates in WordPress Studio, <strong>Fredrik Rombach Ekelund</strong> shares <a href=\"https://wordpress.com/blog/2026/07/13/faster-wordpress-studio/\"><strong>three big updates to WordPress Studio</strong></a>: a new default Native PHP runtime makes your local sites load 30–50% faster while using a third of the memory, the Studio CLI now installs with one dependency-free command — no Node.js or npm required — and Claude Sonnet 5 is the new default model in Studio Code, improving multi-step work like tracing bugs across files. A Sandbox runtime remains available for testing untrusted code.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-73a7b048dd57ad81 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-b7edcefa3de924ad wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-7402379e12156714 wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-51fbc31d23b35e46 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-0baa4f9550cc2424 wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-95bfff7b343fe25f wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jul 2026 13:15:22 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:23;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Matt: Important Security Update\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153595\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2026/07/wp-security/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2168:\"<p class=\"wp-block-paragraph\"><a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\">WordPress 7.0.2</a> went out today with two important security updates. One is a type of pre-authorization RCE we (fortunately!) have only seen a few times in WordPress’ 23-year history; the last, I believe, <a href=\"https://wordpress.org/documentation/wordpress-version/version-4-6-21/\">in the PHPMailer class five years ago</a>. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Major kudos to <a href=\"https://x.com/hash_kitten\">Adam Kues</a> of <a href=\"https://slcyber.io/\">Searchlight Cyber</a> for finding the batch REST API RCE, to TF1T, dtro, and haongo on the facilitated SQL injection! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks to <a href=\"https://en.wikipedia.org/wiki/Coordinated_vulnerability_disclosure\">responsible disclosure</a>, the WordPress.org Security team was able to coordinate with hosts and CDNs to mitigate the attack at the network layer. <em>Please upgrade anyway!</em> But it’s a huge relief to know the vast majority of WordPress sites were protected by <a href=\"https://en.wikipedia.org/wiki/Defense_in_depth_(computing)\">defense-in-depth</a> even before the updates went out. </p>\n\n\n\n<p class=\"wp-block-paragraph\">I really appreciate how people and organizations that otherwise might not be on the best of terms come together in times like this. (<a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\">Full credits in the release post</a>.) Everyone buries the hatchet to protect as many people as possible as quickly as possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’ve said it before, I’ll say it again: security is going to be a big topic this year as the technology industry digests the incredible advances in AI models. It’s a good time to review your plans and processes, sweat the details, <a href=\"https://www.amazon.com/dp/1953953492\">invest in maintenance</a>, and <a href=\"https://en.wikipedia.org/wiki/System_Administrator_Appreciation_Day\">hug a sysadmin</a>. <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f642.png\" style=\"height: 1em;\" /></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 18 Jul 2026 02:36:16 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:24;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:43:\"WordPress.org blog: WordPress 7.0.2 Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21167\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://wordpress.org/news/2026/07/wordpress-7-0-2-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4462:\"<h2 class=\"wp-block-heading\">WordPress 7.0.2 is now available.</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The 7.0.2 security release addresses one critical and one high severity security issue.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because this is a security release, <strong>it is recommended that you update your sites immediately.</strong> Due to the severity, the WordPress.org team have enabled forced updates via the auto-update system for sites running affected versions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To manually update you can visit your WordPress Dashboard, click “Updates”, and then click “Update Now”, or you can <a href=\"https://wordpress.org/wordpress-7.0.2.zip\">download WordPress 7.0.2 from WordPress.org</a>. On sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Security updates included in this release</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The security team would like to thank the following people for responsibly <a href=\"https://hackerone.com/wordpress\">reporting</a> vulnerabilities and allowing them to be fixed in this release:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>A facilitated SQL injection issue reported as a team by TF1T, dtro, and haongo </li>\n\n\n\n<li>A REST API batch-route confusion and SQL injection issue leading to Remote Code Execution reported by Adam Kues at <a href=\"https://slcyber.io\"><u>Assetnote / Searchlight Cyber</u></a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">For more information on this release, please visit the <a href=\"https://wordpress.org/documentation/wordpress-version/version-7-0-2/\">HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Backports</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>WordPress 6.9 is affected by both vulnerabilities. Version 6.9.5 has been released containing fixes for both.</li>\n\n\n\n<li>WordPress 6.8 is only affected by the first vulnerability. Version 6.8.6 has been released containing a fix.</li>\n\n\n\n<li>The beta release of WordPress 7.1 is affected by both vulnerabilities. Version 7.1 beta2 has been released containing fixes for both.</li>\n\n\n\n<li>Versions of WordPress prior to 6.8 are not affected.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">CVE and GHSA references</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-fpp7-x2x2-2mjf\"><code>CVE-2026-60137</code> / <code>GHSA-fpp7-x2x2-2mjf</code></a></li>\n\n\n\n<li><a href=\"https://github.com/WordPress/wordpress-develop/security/advisories/GHSA-ff9f-jf42-662q\"><code>CVE-2026-63030</code> / <code>GHSA-ff9f-jf42-662q</code></a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/johnbillion/\">John Blackbourn</a> and <a href=\"https://profiles.wordpress.org/barry/\">Barry Abrahamson</a>. In addition to the security researchers mentioned above, WordPress 7.0.2 would not have been possible without the significant contributions of the following people: <a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/xknown\">Alex Concha</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/Barry\">Barry</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/ocean90\">Dominik Schilling</a>, <a href=\"https://profiles.wordpress.org/ehtis\">Ehtisham Siddiqui</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joehoyle\">Joe Hoyle</a>, <a href=\"https://profiles.wordpress.org/johnbillion\">John Blackbourn</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/clorith\">Marius L. J.</a>, <a href=\"https://profiles.wordpress.org/Matt\">Matt Mullenweg</a>, <a href=\"https://profiles.wordpress.org/batmoo\">Mohammad Jangda</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/vortfu\">vortfu</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, plus representatives from Altis, Automattic, Bluehost, Cloudflare, GoDaddy, Hostinger, and WP Engine.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 18:45:54 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:15:\"John Blackbourn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:25;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:110:\"Gutenberg Times: The post editor is going full iframe: what block developers need to know before WordPress 7.1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=46095\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/the-post-editor-is-going-full-iframe-what-block-developers-need-to-know-before-wordpress-7-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:55253:\"<p class=\"wp-block-paragraph\">For years, the post editor has lived a double life. The Site Editor renders your blocks inside an iframe. The post editor — where most people actually spend their time — renders them directly in the admin page. That split ends with WordPress 7.1: <strong>the post editor canvas will always be an iframe, on every theme, no matter what <code>apiVersion</code> your blocks declare</strong>. The Gutenberg plugin has been enforcing exactly this for months. If you ship blocks, assume the iframe.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If your block never touches the global <code>document</code> or <code>window</code>, you can probably stop reading after you’ve changed <code>\"apiVersion\": 2</code> to <code>\"apiVersion\": 3</code> in <code>block.json</code>. For everyone else — and especially anyone shipping blocks that wrap third-party libraries — the iframe changes <em>where your code runs</em> versus <em>where your markup lives</em>. That gap is where things break.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Quick reference guide</strong>: <strong>Are your blocks ready?</strong></p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"An infographic showing the checks and fixes for readying custom blocks for the WordPress 7.1 iframed editor\" class=\"wp-image-46098\" height=\"652\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/7.1-iframe-block-check.png?resize=652%2C652&ssl=1\" width=\"652\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"timeline\">The timeline, in one table</h2>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Release</th><th>What happens</th></tr></thead><tbody><tr><td><strong>June 21, 2021</strong></td><td>The iframed editor was <a href=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/\">announced on make.wordpress.org</a></td></tr><tr><td><strong>WordPress 6.9</strong> (Dec 2025)</td><td>Console warning (with <code>SCRIPT_DEBUG</code>) when a block registers with <code>apiVersion</code> 2 or lower. The <code>block.json</code> schema now only validates <code>apiVersion: 3</code>.</td></tr><tr><td><strong>WordPress 7.0</strong> (Apr 2026)</td><td>The iframe decision now looks at blocks <strong>actually inserted in the post</strong>, not every registered block. All inserted blocks on v3+ → canvas is iframed. Insert a single v1/v2 block → the iframe is removed on the fly. Nothing is enforced yet.<br /></td></tr><tr><td><strong>Gutenberg 22.6+</strong></td><td>The iframe is <strong>enforced regardless of theme</strong> — this is the feedback-gathering phase.</td></tr><tr><td><strong>WordPress 7.1</strong> (Aug 19, 2026)</td><td>The iframe is <strong>enforced on every theme</strong>, regardless of <code>apiVersion</code>. The conditions are gone, not tightened.</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The WordPress 7.0 change is subtle but important: before 7.0, one <code>apiVersion: 2</code> block <em>registered by any active plugin</em> — even one never used in the post — kept the entire editor out of the iframe for everyone. Now only inserted blocks count. Your v3 block gets the iframe until the user inserts a legacy one, at which point the editor quietly reloads the canvas without the iframe. The companion plugin ships a <code>legacy-api-v2</code> block so you can watch this happen — insert it into an otherwise-v3 post and the iframe disappears. In 7.1, that escape hatch closes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Worth knowing, as an aside: the “every theme” decision landed in <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\" rel=\"noopener\" target=\"_blank\">WordPress 7.1 Beta 1</a>, and it’s deliberately being tested in public. Gutenberg merged <a href=\"https://github.com/WordPress/gutenberg/pull/74042\" rel=\"noopener\" target=\"_blank\">“Post editor: always iframe” (#74042)</a> on July 10, 2026, deleting the theme and <code>apiVersion</code> conditions outright. The 7.1 release lead signed off on that merge <a href=\"https://github.com/WordPress/gutenberg/pull/74042#issuecomment-4878384706\" rel=\"noopener\" target=\"_blank\">on the condition</a> that the team could “move to the softer approach” if Beta 1 feedback surfaced real problems — the softer approach being enforcement on block themes only, with everything else staying on the 7.0 rules. No specific mechanism is committed to; the plan is to respond to what the beta actually turns up.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Which is a reason to test harder, not to wait and see. If that rollback happens, the iframed and non-iframed editors both stay in the wild <em>longer</em> — and your block has to work in both regardless of which way it goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s also worth noting that blocks that will break with the 7.1 changes are most likely <strong>already breaking in the Site Editor</strong>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Why the iframe is a good thing</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This isn’t change for change sake. Rendering the canvas in an iframe gives the editor a real document boundary:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Admin CSS stops leaking into your content.</strong> No more <code>#wpadminbar</code>-adjacent style resets, no more admin styles subtly changing how blocks render in the editor versus the front end.</li>\n\n\n\n<li><strong>Viewport units and media queries finally work.</strong> <code>vw</code>, <code>vh</code>, and <code>@media</code> rules resolve against the canvas, not the admin page — so tablet/mobile previews and zoomed-out views actually behave like the front end.</li>\n\n\n\n<li><strong>What you see is much closer to what you get.</strong> The canvas document is built from your theme’s styles, not the admin’s.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">The issue this raises for block developers? Your editor JavaScript runs in the admin page, but your block’s DOM lives in a different document. Every assumption baked into <code>document.querySelector(...)</code> and <code>window.addEventListener(...)</code> just became wrong.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What actually breaks (and how to fix it)</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Everything below is demonstrable with the companion plugin — each pattern ships as a broken/fixed pair of blocks: <strong><a href=\"https://github.com/ryanwelcher/iframe-editor-examples\" rel=\"noopener\" target=\"_blank\">iframe-editor-examples on GitHub</a></strong>.</p>\n\n\n\n<h3 class=\"wp-block-heading\">1. Global <code>window</code> and <code>document</code> references</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The classic: a block that reads the viewport or listens for resize.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Broken in the iframed editor\nuseEffect( () => {\n const update = () => setWidth( window.innerWidth );\n update();\n window.addEventListener( \'resize\', update );\n return () => window.removeEventListener( \'resize\', update );\n}, [] );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// ❌ Broken in the iframed editor</span></span>\n<span class=\"line\"><span style=\"color: #DCDCAA;\">useEffect</span><span style=\"color: #D4D4D4;\">( () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\"> = () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">setWidth</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">window</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">innerWidth</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\">();</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">window</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">addEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">window</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">removeEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}, [] );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Editor scripts load in the admin page, so <code>window</code> is the <strong>admin</strong> window. In the iframed editor this reports the wrong width and never reacts to the canvas resizing — switch to the Tablet preview and the number doesn’t move.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The fix is to derive the document and window from your block’s own DOM element:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> Fixed — works iframed or not\nimport { useRefEffect } from \'@wordpress/compose\';\n\nconst ref = useRefEffect( ( element ) => {\n const { defaultView } = element.ownerDocument;\n const update = () => setWidth( defaultView.innerWidth );\n update();\n defaultView.addEventListener( \'resize\', update );\n return () => defaultView.removeEventListener( \'resize\', update );\n}, [] );\n\nconst blockProps = useBlockProps( { ref } );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// ✅ Fixed — works iframed or not</span></span>\n<span class=\"line\"><span style=\"color: #C586C0;\">import</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">useRefEffect</span><span style=\"color: #D4D4D4;\"> } </span><span style=\"color: #C586C0;\">from</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #CE9178;\">\'@wordpress/compose\'</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #4FC1FF;\">ref</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #DCDCAA;\">useRefEffect</span><span style=\"color: #D4D4D4;\">( ( </span><span style=\"color: #9CDCFE;\">element</span><span style=\"color: #D4D4D4;\"> ) </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #4FC1FF;\">defaultView</span><span style=\"color: #D4D4D4;\"> } = </span><span style=\"color: #9CDCFE;\">element</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">ownerDocument</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\"> = () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">setWidth</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">defaultView</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">innerWidth</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">update</span><span style=\"color: #D4D4D4;\">();</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">defaultView</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">addEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">defaultView</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">removeEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'resize\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">update</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}, [] );</span></span>\n<span class=\"line\"></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #4FC1FF;\">blockProps</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #DCDCAA;\">useBlockProps</span><span style=\"color: #D4D4D4;\">( { </span><span style=\"color: #9CDCFE;\">ref</span><span style=\"color: #D4D4D4;\"> } );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Two things to notice:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>element.ownerDocument</code> is whatever document the block is rendered into — the iframe’s document when iframed, the admin document when not. <code>ownerDocument.defaultView</code> is that document’s window. Code written this way is <em>context-agnostic</em>: it doesn’t care whether the iframe exists.</li>\n\n\n\n<li><code>useRefEffect</code> (from <code>@wordpress/compose</code>) instead of <code>useRef</code> + <code>useEffect</code>: it re-runs the callback when the ref changes, so if the block ever moves between documents, your listeners re-attach to the right window.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">2. “Close on outside click” and other document-level events</h3>\n\n\n\n<p class=\"wp-block-paragraph\">This one is my favorite because it fails <em>weirdly</em>. A dropdown that closes when you click outside, implemented the way every React tutorial teaches it:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Broken in the iframed editor\nuseEffect( () => {\n const closeOnOutsideClick = ( event ) => {\n if ( ! containerRef.current.contains( event.target ) ) {\n setIsOpen( false );\n }\n };\n document.addEventListener( \'click\', closeOnOutsideClick );\n return () => document.removeEventListener( \'click\', closeOnOutsideClick );\n}, [] );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// ❌ Broken in the iframed editor</span></span>\n<span class=\"line\"><span style=\"color: #DCDCAA;\">useEffect</span><span style=\"color: #D4D4D4;\">( () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">closeOnOutsideClick</span><span style=\"color: #D4D4D4;\"> = ( </span><span style=\"color: #9CDCFE;\">event</span><span style=\"color: #D4D4D4;\"> ) </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">if</span><span style=\"color: #D4D4D4;\"> ( ! </span><span style=\"color: #9CDCFE;\">containerRef</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">current</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">contains</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">event</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #9CDCFE;\">target</span><span style=\"color: #D4D4D4;\"> ) ) {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">setIsOpen</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #569CD6;\">false</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> }</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> };</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">document</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">addEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'click\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">closeOnOutsideClick</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #C586C0;\">return</span><span style=\"color: #D4D4D4;\"> () </span><span style=\"color: #569CD6;\">=></span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">document</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">removeEventListener</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'click\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #9CDCFE;\">closeOnOutsideClick</span><span style=\"color: #D4D4D4;\"> );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}, [] );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">In the iframed editor, clicks inside the canvas happen in the <strong>iframe’s</strong> document. They never bubble to the admin document, so the listener never fires. The result: click another block in the canvas and the dropdown stays open — but click the admin sidebar and it closes. Same code, same block, works perfectly in the non-iframed editor. This is the kind of bug report you’ll get from users that “can’t be reproduced” — because whoever tested it happened to have a v2 block sitting in their post, which quietly dropped the iframe and made everything work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Fix: same principle, attach to <code>element.ownerDocument</code> instead of <code>document</code> (<a href=\"https://github.com/ryanwelcher/iframe-editor-examples/blob/trunk/src/click-outside-fixed/edit.js#L32\">see the plugin for the full <code>useRefEffect</code> version</a>).</p>\n\n\n\n<h3 class=\"wp-block-heading\">3. Editor styles enqueued into the wrong document</h3>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re styling your block’s editor experience with <code>enqueue_block_editor_assets</code>, those styles load in the <strong>admin page</strong> — outside the iframe. They silently stop applying the moment the canvas is iframed:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>PHP</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Loads in the admin page — never reaches the iframed canvas.\nfunction myplugin_enqueue_editor_styles() {\n wp_enqueue_style( \'myplugin-editor\', plugins_url( \'editor.css\', __FILE__ ) );\n}\nadd_action( \'enqueue_block_editor_assets\', \'myplugin_enqueue_editor_styles\' );</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// ❌ Loads in the admin page — never reaches the iframed canvas.</span></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">function</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">myplugin_enqueue_editor_styles</span><span style=\"color: #D4D4D4;\">() {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #DCDCAA;\">wp_enqueue_style</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'myplugin-editor\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #DCDCAA;\">plugins_url</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'editor.css\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #569CD6;\">__FILE__</span><span style=\"color: #D4D4D4;\"> ) );</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span>\n<span class=\"line\"><span style=\"color: #DCDCAA;\">add_action</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #CE9178;\">\'enqueue_block_editor_assets\'</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #CE9178;\">\'myplugin_enqueue_editor_styles\'</span><span style=\"color: #D4D4D4;\"> );</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">The fix is to register editor styles through <code>block.json</code>, which WordPress injects <strong>into</strong> the canvas document, iframed or not:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JSON</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">{\n \"editorStyle\": \"file:./index.css\"\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #D4D4D4;\">{</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">"editorStyle"</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">"file:./index.css"</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">(<code>add_editor_style()</code> also gets copied into the iframe, if you need theme-level editor styles.)</p>\n\n\n\n<p class=\"wp-block-paragraph\">The demo plugin makes this visual: the same block carries a green banner from <code>editorStyle</code> and a red banner from <code>enqueue_block_editor_assets</code>. Count the banners — two means no iframe, one means you’re iframed.</p>\n\n\n\n<h3 class=\"wp-block-heading\">4. Stale CSS written for the leaky editor</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The section above is about CSS loading into the wrong document. This one is the sneakier inverse: the stylesheet loads into the <em>right</em> document — injected straight into the canvas, exactly as intended — and still gets it wrong, because of what it was written to describe. These are the rules that quietly stop matching, or start over-matching, once the canvas becomes its own document. It’s the code that’s been sitting in themes and plugins for years, “working,” right up until the iframe is enforced.</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Selectors keyed on admin body classes</strong></h4>\n\n\n\n<p class=\"wp-block-paragraph\">The most common one, and it fails exactly like the “close on outside click” bug — silently.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> The canvas body no longer carries these classes */\n.wp-admin .my-block { padding: 2rem; }\nbody.block-editor-page .my-block__title { font-size: 2rem; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* ❌ The canvas body no longer carries these classes */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.wp-admin</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">padding</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">body.block-editor-page</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">.my-block__title</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">font-size</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Inside the iframe, the canvas <code><body></code> is a clean document — no <code>wp-admin</code>, no <code>block-editor-page</code>. The selector matches nothing and your editor styling just evaporates. Same block, same stylesheet, works perfectly in the non-iframed editor.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> Scope to the block, not the admin chrome */\n.my-block { padding: 2rem; }\n.my-block__title { font-size: 2rem; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* ✅ Scope to the block, not the admin chrome */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">padding</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-block__title</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">font-size</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">2rem</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\"><code>.editor-styles-wrapper</code> <em>does</em> still wrap the canvas content inside the iframe, so <code>.editor-styles-wrapper .my-block</code> keeps working if you need genuinely editor-only styling — but the admin ancestor was almost never necessary in the first place.</p>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Offsets that compensate for admin chrome</strong></h4>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Subtracting the admin sidebar and adminbar from the viewport */\n.my-fullwidth { width: calc( 100vw - 160px ); } /* 160px = admin menu */\n.my-toolbar { position: fixed; top: 32px; } /* 32px = #wpadminbar */</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* ❌ Subtracting the admin sidebar and adminbar from the viewport */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-fullwidth</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">width</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #DCDCAA;\">calc</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #B5CEA8;\">100vw</span><span style=\"color: #D4D4D4;\"> - </span><span style=\"color: #B5CEA8;\">160px</span><span style=\"color: #D4D4D4;\"> ); } </span><span style=\"color: #6A9955;\">/* 160px = admin menu */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-toolbar</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">position</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">fixed</span><span style=\"color: #D4D4D4;\">; </span><span style=\"color: #9CDCFE;\">top</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">32px</span><span style=\"color: #D4D4D4;\">; } </span><span style=\"color: #6A9955;\">/* 32px = #wpadminbar */</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">This is the flip side of the win from earlier: now that <code>100vw</code> resolves against the <em>canvas</em> instead of the admin page, there’s no sidebar to subtract — so the <code>calc()</code> overshoots, and <code>top: 32px</code> pushes your toolbar below an admin bar that doesn’t exist in this document.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> The canvas is the viewport now — no compensation needed */\n.my-fullwidth { width: 100vw; }\n.my-toolbar { position: fixed; top: 0; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* ✅ The canvas is the viewport now — no compensation needed */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-fullwidth</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">width</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">100vw</span><span style=\"color: #D4D4D4;\">; }</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-toolbar</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">position</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">fixed</span><span style=\"color: #D4D4D4;\">; </span><span style=\"color: #9CDCFE;\">top</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">0</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<h4 class=\"wp-block-heading\"><strong>Specificity walls built to fight leakage</strong></h4>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"❌\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/274c.png\" style=\"height: 1em;\" /> Cranked up to beat leaking admin styles */\n.editor-styles-wrapper .my-block p {\n font-family: Georgia, serif !important;\n line-height: 1.6 !important;\n box-sizing: border-box !important;\n}</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* ❌ Cranked up to beat leaking admin styles */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.editor-styles-wrapper</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">p</span><span style=\"color: #D4D4D4;\"> {</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">font-family</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">Georgia</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #CE9178;\">serif</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">!important</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">line-height</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #B5CEA8;\">1.6</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">!important</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #9CDCFE;\">box-sizing</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">border-box</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #569CD6;\">!important</span><span style=\"color: #D4D4D4;\">;</span></span>\n<span class=\"line\"><span style=\"color: #D4D4D4;\">}</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">The iframe already stops admin CSS from leaking in — that’s one of the reasons it’s a good thing. These <code>!important</code>s and resets have no admin styles left to override, but they <em>do</em> now override the theme styles the iframe loads into the canvas. The result: your editor preview drifts <em>away</em> from the front end — the exact opposite of what the iframe is for.</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>CSS</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">/* <img alt=\"✅\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/2705.png\" style=\"height: 1em;\" /> Let theme styles through; set only what your block truly owns */\n.my-block p { font-family: Georgia, serif; }</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">/* ✅ Let theme styles through; set only what your block truly owns */</span></span>\n<span class=\"line\"><span style=\"color: #D7BA7D;\">.my-block</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #D7BA7D;\">p</span><span style=\"color: #D4D4D4;\"> { </span><span style=\"color: #9CDCFE;\">font-family</span><span style=\"color: #D4D4D4;\">: </span><span style=\"color: #CE9178;\">Georgia</span><span style=\"color: #D4D4D4;\">, </span><span style=\"color: #CE9178;\">serif</span><span style=\"color: #D4D4D4;\">; }</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Two things to notice:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The pattern is the same as the JavaScript fixes: <strong>stop describing the admin, start describing your block.</strong> A selector that names <code>.wp-admin</code>, <code>#wpadminbar</code>, or <code>.block-editor-page</code> is reaching for chrome that isn’t in the canvas document anymore.</li>\n\n\n\n<li>Most of these were <em>workarounds for problems the iframe solves.</em> Deleting them is usually the fix.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">5. Third-party libraries that assume one global context</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The biggest real-world hazard. Masonry layouts, sliders, lightboxes, maps — a generation of libraries was written assuming there is exactly one <code>document</code>:</p>\n\n\n\n<div class=\"wp-block-kevinbatdorf-code-block-pro\"><span style=\"display: flex; padding: 10px 0px 0 16px; font-size: 0.8em; width: 100%; text-align: left; background-color: #1E1E1E; font-style: italic; color: #D4D4D4;\"><span>JavaScript</span></span><span class=\"code-block-pro-copy-button\" style=\"color: #D4D4D4; display: none;\" tabindex=\"0\"><pre class=\"code-block-pro-copy-button-pre\"><textarea class=\"code-block-pro-copy-button-textarea\" readonly=\"readonly\" tabindex=\"-1\">// Inside some-legacy-lib.js\nconst targets = document.querySelectorAll( selector ); // finds nothing in the iframe</textarea></pre><svg fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path class=\"with-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2m-6 9l2 2 4-4\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path class=\"without-check\" d=\"M9 5H7a2 2 0 00-2 2v12a2 2 0 002 2h10a2 2 0 002-2V7a2 2 0 00-2-2h-2M9 5a2 2 0 002 2h2a2 2 0 002-2M9 5a2 2 0 012-2h2a2 2 0 012 2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg></span><pre class=\"shiki dark-plus\" style=\"background-color: #1E1E1E;\" tabindex=\"0\"><code><span class=\"line\"><span style=\"color: #6A9955;\">// Inside some-legacy-lib.js</span></span>\n<span class=\"line\"><span style=\"color: #569CD6;\">const</span><span style=\"color: #D4D4D4;\"> </span><span style=\"color: #4FC1FF;\">targets</span><span style=\"color: #D4D4D4;\"> = </span><span style=\"color: #9CDCFE;\">document</span><span style=\"color: #D4D4D4;\">.</span><span style=\"color: #DCDCAA;\">querySelectorAll</span><span style=\"color: #D4D4D4;\">( </span><span style=\"color: #9CDCFE;\">selector</span><span style=\"color: #D4D4D4;\"> ); </span><span style=\"color: #6A9955;\">// finds nothing in the iframe</span></span></code></pre></div>\n\n\n\n<p class=\"wp-block-paragraph\">Your block calls the library, the library queries the admin document, finds zero matches, and silently does nothing. No error, no warning — the block just stops being enhanced.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Your options, in order of preference:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Pass elements, not selectors.</strong> If the library accepts an element (<code>lib.init( element )</code>), hand it the block’s element from <code>useRefEffect</code> and you’re usually fine.</li>\n\n\n\n<li><strong>Patch the library.</strong> For unmaintained dependencies, <a href=\"https://www.npmjs.com/package/patch-package\" rel=\"noopener\" target=\"_blank\"><code>patch-package</code></a> is the pragmatic answer: edit the module in <code>node_modules</code> to resolve <code>document</code>/<code>window</code> from the element (<code>node.ownerDocument</code>), run <code>npx patch-package <pkg></code>, commit the patch, add a <code>postinstall</code> script. The <a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/block-migration-for-iframe-editor-compatibility/\" rel=\"noopener\" target=\"_blank\">official migration guide</a> walks through a real patch for <code>@panzoom/panzoom</code>.</li>\n\n\n\n<li><strong>Guard and bail.</strong> If the library is loaded inside the iframe (front-end scripts are), check for it on <code>defaultView</code> before using it: <code>if ( ! defaultView.jQuery ) return;</code></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">So what does <code>apiVersion: 3</code> actually do?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Less than you might think — and that’s the point. Declaring <code>\"apiVersion\": 3</code> in <code>block.json</code> doesn’t change how your block renders; it’s a <strong>signal that your block is iframe-ready</strong>. All core blocks have been on v3 since WordPress 6.3. For most blocks the migration is literally a one-line change… followed by the actual work: testing that nothing in your <code>edit</code> component (or the libraries it pulls in) touches the global <code>document</code>/<code>window</code>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And to be clear about 7.1: the iframe will be enforced there <strong>regardless</strong> of <code>apiVersion</code>. Staying on v2 doesn’t opt you out anymore — it just means you get the console warning <em>and</em> the breakage.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to test today</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You don’t need to wait for 7.1. What you’re testing is that your block works in <strong>both states</strong> — iframed and not — because both will exist in the wild for a while yet.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Iframed:</strong> install the <strong>Gutenberg plugin 22.6+</strong>. It enforces the iframe regardless of theme, so this is the fastest way to live in the future. <a href=\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\"><strong>7.1 Beta 1</strong> </a>does the same — I’ve confirmed it forces the iframe on a classic theme, which is the merged behavior shipping in August.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Not iframed:</strong> run <strong>WordPress 7.0 without the plugin</strong> and insert a v1/v2 block alongside yours — the canvas drops the iframe on the fly. <a href=\"https://github.com/ryanwelcher/iframe-editor-examples\">The companion plugin’s <code>legacy-api-v2</code> block exists for exactly this.</a> Any theme will do: core 7.0 has no theme check in the iframe decision at all, so you don’t need to hunt down a classic theme to reproduce this.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Confirm which state you’re in:</strong> <code>element.ownerDocument !== document</code>, or look for <code>iframe[name=\"editor-canvas\"]</code> in devtools.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The Site Editor</strong> has been iframed for years — if your block already behaves there, you’re most of the way home.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The companion plugin</strong> ships a <code>wp-env</code> setup, an example override file that adds Gutenberg for enforced mode (copy it to <code>.wp-env.override.json</code>), and <strong>two Playground blueprints</strong> — one per state, so you can flip between iframed and not in two tabs without installing anything.</p>\n\n\n\n<h2 class=\"wp-block-heading\">The block author’s checklist</h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Set <code>\"apiVersion\": 3</code> in every <code>block.json</code>.</li>\n\n\n\n<li>Check your editor code for <code>window.</code> and <code>document.</code> — every hit is a suspect. Replace with <code>element.ownerDocument</code> / <code>.defaultView</code> via <code>useRefEffect</code>.</li>\n\n\n\n<li>Check for <code>enqueue_block_editor_assets</code> — move canvas-affecting styles to <code>editorStyle</code> in <code>block.json</code>.</li>\n\n\n\n<li>Check your editor CSS for <code>.wp-admin</code>, <code>#wpadminbar</code>, and <code>.block-editor-page</code> , admin chrome offsets and <code>!important</code></li>\n\n\n\n<li>Audit third-party libraries: pass elements not selectors, patch what you must.</li>\n\n\n\n<li>Test both <strong>states</strong>, not both themes: iframed (Gutenberg 22.6+ active) and not iframed (no plugin, v1/v2 block inserted). </li>\n\n\n\n<li>Watch the console with <code>SCRIPT_DEBUG</code> on — the deprecation warnings tell you which registered blocks are still on v1/v2.</li>\n</ol>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Note What’s <em>not</em> on that list:</strong> checking whether the active theme is a block theme. Core exposes that answer twice — as <code>__unstableIsBlockBasedTheme</code> in the editor settings and as <code>is_block_theme</code> on the REST themes endpoint — and there’s a shelved PR and a live debate behind it. Your block never needs to ask. <code>element.ownerDocument !== document</code> answers the only version of the question that affects you. If you’re curious what that theme check does under the hood, that’s its own story: <a href=\"https://gutenbergtimes.com/how-wordpress-decides-a-theme-is-a-block-theme/\"><strong>How WordPress decides a Theme is a “Block theme”.</strong></a></p>\n\n\n\n<p class=\"wp-block-paragraph\">Resources</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\" rel=\"noopener\" target=\"_blank\">Iframed Editor Changes in WordPress 7.0</a> — the dev note this all builds on</li>\n\n\n\n<li><a href=\"https://github.com/WordPress/gutenberg/pull/74042\" rel=\"noopener\" target=\"_blank\">Post editor: always iframe (#74042)</a> — the merged PR that makes 7.1 always-iframed, and the discussion behind the beta-feedback plan</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\" rel=\"noopener\" target=\"_blank\">Roadmap to 7.1</a> — the original block-themes-first plan, superseded by #74042</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\" rel=\"noopener\" target=\"_blank\">Preparing the Post Editor for Full iframe Integration</a> — the 6.9 groundwork</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/block-migration-for-iframe-editor-compatibility/\" rel=\"noopener\" target=\"_blank\">Migrating Blocks for iframe Editor Compatibility</a> — the official migration guide</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/reference-guides/block-api/block-api-versions/\" rel=\"noopener\" target=\"_blank\">Block API Versions</a> — what each version means</li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/block-editor/how-to-guides/enqueueing-assets-in-the-editor/\">Enqueueing editor assets</a></li>\n\n\n\n<li><a href=\"https://developer.wordpress.org/themes/core-concepts/including-assets/#editor-stylesheets\">Editor styles for themes</a></li>\n\n\n\n<li>Companion demo plugin: <a href=\"https://github.com/ryanwelcher/iframe-editor-examples\" rel=\"noopener\" target=\"_blank\">iframe-editor-examples</a></li>\n</ul>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 16:21:43 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Ryan Welcher\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:26;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Open Channels FM: Who Is Actually Using the Internet?\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2557053\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://openchannels.fm/who-is-actually-using-the-internet/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:168:\"A look at the impact of AI and bots on the web, emphasizing the decline of human engagement, the challenges for content creators, and the future of digital interaction.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 17 Jul 2026 13:41:01 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:27;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:99:\"Open Channels FM: Open Channels FM Launches Streamed News Show Focused on the Open Source Ecosystem\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556978\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:106:\"https://openchannels.fm/open-channels-fm-launches-streamed-news-show-focused-on-the-open-source-ecosystem/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:207:\"Open Channels FM is launching a new video news show called Open Channels News, starting July 27th. It\'s a quick, five to ten-minute program covering various open source topics, available live and on YouTube.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 16 Jul 2026 12:55:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:28;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"Akismet: A small integration detail with a big impact\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:28:\"http://akismet.com/?p=284827\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:70:\"https://akismet.com/blog/a-small-integration-detail-with-a-big-impact/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:1814:\"<p class=\"wp-block-paragraph\"><a href=\"https://givewp.com\">GiveWP</a> is the most popular fundraising and donation tool on WordPress, powering over $500 million in donations. It integrates with Akismet to ensure that spammy or potentially fraudulent submissions get filtered out. Recently, some Give users saw an unusually high level of false positives on their donation forms: legitimate donation submissions that were being marked as spam.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We investigated and found that the donation forms were being sent to Akismet for checking after each step in the donation process: once after choosing an amount, again after the user entered their name, again after they entered an optional message, etc. To Akismet, this looks like sudden repeated submissions from the same user, all with similar content (better known as spam).</p>\n\n\n\n<p class=\"wp-block-paragraph\">Akismet supports rechecking content, but only if the integration includes <a href=\"https://akismet.com/developers/detailed-docs/comment-check/\">the <code>recheck_reason</code> parameter</a>. If that parameter is present, Akismet knows not to classify the repeated duplicate (or nearly duplicate) checks as part of a spam attack; however, if <code>recheck_reason</code> is omitted, this kind of consecutive similar content looks very similar to spam, and Akismet blocks it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/impress-org/givewp/issues/8238\">We reported the root issue</a> to Liquid Web, and they quickly addressed it and released a fix in version 4.16.0. This kind of collaboration is what makes Open Source great!</p>\n\n\n\n<p class=\"wp-block-paragraph\">We’re planning on bringing automatic integration review to more clients and platforms, so stay tuned for more tips and insights.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 16:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Christopher Finke\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:29;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"WordPress.org blog: WordPress 7.1 Beta 1\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=20987\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://wordpress.org/news/2026/07/wordpress-7-1-beta-1/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:17975:\"<p class=\"wp-block-paragraph\">WordPress 7.1 Beta 1 is ready for download and testing! </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>This beta release is intended for testing and development</strong> only. Please do not install, run, or test this version of WordPress on production or mission-critical websites. Instead, use a test environment or local site to explore the new features.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to Test WordPress 7.1 Beta 1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can test WordPress 7.1 Beta 1 in any of the following ways:</p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>WordPress Beta Tester Plugin</strong></td><td>Install and activate the <a href=\"https://wordpress.org/plugins/wordpress-beta-tester/\" rel=\"noreferrer noopener\" target=\"_blank\">WordPress Beta Tester</a> plugin on a WordPress install. Select the “Bleeding edge” channel and “Beta/RC Only” stream.</td></tr><tr><td><strong>Direct Download</strong></td><td>Download the <a href=\"https://wordpress.org/wordpress-7.1-beta1.zip\">Beta 1 version (zip)</a> and install it on a WordPress website.</td></tr><tr><td><strong>Command Line (WP-CLI)</strong></td><td>Use this <a href=\"https://make.wordpress.org/cli/\" rel=\"noreferrer noopener\" target=\"_blank\">WP-CLI</a> command: <br /><code>wp core update --version=7.1-beta1</code></td></tr><tr><td><strong>WordPress Playground</strong></td><td>Use a <a href=\"https://playground.wordpress.net/?site-slug=kind-classic-mountain&networking=no&php=8.3&wp=beta&language=&multisite=no\" rel=\"noopener\" target=\"_blank\">7.1 Beta 1 WordPress Playground instance</a> to test the software directly in your browser. No setup required-just click and go!</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\">The scheduled final release date for WordPress 7.1 is <strong>August 19, 2026</strong>. The full <a href=\"https://make.wordpress.org/core/2026/07/03/wordpress-7-1-release-party-schedule/\" rel=\"noopener\" target=\"_blank\">release schedule can be found here</a>. Your help testing Beta and RC versions is vital to making this release as stable and powerful as possible. Thank you to everyone who contributes by testing! </p>\n\n\n\n<h2 class=\"wp-block-heading\">How important is your testing?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Testing for issues is a critical part of developing any software, and it’s a meaningful way for anyone to contribute – whether or not you have experience. <a href=\"https://make.wordpress.org/test/2026/07/15/help-test-wordpress-7-1/\">Details on what to test in WordPress 7.1 are available here</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you encounter an issue, please share it in the <a href=\"https://wordpress.org/support/forum/alphabeta/\" rel=\"noopener\" target=\"_blank\">Alpha/Beta area</a> of the support forums. If you are comfortable submitting a reproducible bug report, you can do so <a href=\"https://core.trac.wordpress.org/newticket\" rel=\"noopener\" target=\"_blank\">via WordPress Trac</a>. You can also check your issue against this list of <a href=\"https://core.trac.wordpress.org/tickets/major\" rel=\"noopener\" target=\"_blank\">known bugs</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Curious about testing releases in general and how to get started? Follow along with the<a href=\"https://make.wordpress.org/test/\"> testing initiatives in Make Core</a> and join the <a href=\"https://wordpress.slack.com/messages/core-test/\">#core-test channel</a> on <a href=\"https://wordpress.slack.com/\">Making WordPress Slack</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 will include new features that were previously only available in the Gutenberg plugin. Learn more about Gutenberg updates since WordPress 7.0 in the <a href=\"https://make.wordpress.org/core/tag/gutenberg-new/\">What’s New in Gutenberg</a> posts for versions <a href=\"https://make.wordpress.org/core/2026/03/11/whats-new-in-gutenberg-22-7-11-march/\">22.7</a>, <a href=\"https://make.wordpress.org/core/2026/03/25/whats-new-in-gutenberg-22-8-25-march/\">22.8</a>, <a href=\"https://make.wordpress.org/core/2026/04/09/whats-new-in-gutenberg-22-9-8-april/\">22.9</a>, <a href=\"https://make.wordpress.org/core/2026/04/22/whats-new-in-gutenberg-23-0-22-april/\">23.0</a>, <a href=\"https://make.wordpress.org/core/2026/05/07/whats-new-in-gutenberg-23-1-07-may/\">23.1</a>, <a href=\"https://make.wordpress.org/core/2026/05/21/whats-new-in-gutenberg-23-2-21-may/\">23.2</a>, <a href=\"https://make.wordpress.org/core/2026/06/03/whats-new-in-gutenberg-23-3-03-jun/\">23.3</a>, <a href=\"https://make.wordpress.org/core/2026/06/17/whats-new-in-gutenberg-23-3-03-jun-2/\">23.4</a>, <a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">23.5</a> and 23.6.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s new in WordPress 7.1?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 delivers a more complete set of styling controls, a smoother media experience, and a more personalized admin experience. Notes have evolved to add inline notes with @mentions and rich text formatting that make asynchronous feedback feel more powerful. New styling features unlock long requested features to style how blocks look across screen sizes and to style interactive states, all without writing custom CSS. Various client side media improvements means better format support, improved performance, and more resilient uploads when adding media to your site. A new inline cropping tool brings a fresh and more robust experience to editing images. Finally, the admin experience becomes easier to navigate with an ever present admin bar in the editors, improvements to the command palette, and various quality of life improvements. Underneath it all, developers get an expanding set of APIs to build on, and site owners get better support for a truly global audience.</p>\n\n\n\n<h3 class=\"wp-block-heading\">New suite of Notes features</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Notes continue to grow into a fuller collaboration experience, making asynchronous feedback between teams faster and more expressive.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Text Formatting</strong>: Notes now support inline formatting like bold, italic, code, links and adding emoji; each with a respective keyboard shortcut, so feedback reads clearly without breaking your flow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>@mentions</strong>: Type “@” in a Note to pull up a searchable list of collaborators and tag someone directly, so feedback points at the right person without leaving the sidebar.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Leave notes anywhere</strong>: Start more than one conversation on the same block instead of folding every comment into a single thread, making it easier to track distinct pieces of feedback.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Inline notes:</strong> Leave a note on a text selection instead of on an entire block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Show more / show less</strong>: Long notes now collapse by default with a toggle to expand them, keeping the margin tidy while you write.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Style it your way, on any screen</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 takes a major step toward built-in responsive design and interactive styling, letting you achieve looks that once required writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Responsive styling</strong>: Define how a block looks at different screen sizes directly in the editor, for both Global Styles and individual blocks without the need of writing custom CSS.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Viewport breakpoint customization</strong>: Theme authors can now define their own responsive breakpoints in <code>theme.json</code>, giving more flexibility for how responsive controls behave on a given site.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Interactive state styling</strong>: Style how blocks respond to interaction, like a button changing color on hover or focus, using a standardized set of controls for both Global Styles and individual block instances.</p>\n\n\n\n<h3 class=\"wp-block-heading\">A smoother media experience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Uploading, editing, and browsing media keeps getting more capable and more reliable.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Client-side media processing</strong>: Image and media processing moves into the browser, now with broader format support that includes HEIC (the default format for iPhone photos), UltraHDR, AVIF and WebP support built in, plus GIF-to-video conversion for lighter, more efficient files. Uploads are also more resilient, with a progress indicator and automatic retries if your data connectivity drops off.</li>\n\n\n\n<li><strong>New Media Editor Modal</strong>: A dedicated modal for editing images replaces the inline cropping tool, bringing cropping, rotation, and metadata editing together in one streamlined workflow.</li>\n\n\n\n<li><strong>Smarter galleries</strong>: Gallery blocks can automatically pull in and sort media already attached to the current post, cutting down on manual set-up.</li>\n\n\n\n<li><strong>View attached images:</strong> After you upload images to a post, the inserter will automatically surface them in a new Attached images section to make it easier to find relevant images.</li>\n\n\n\n<li><strong>Infinite scrolling by default</strong>: The Media Library grid view now loads additional items automatically as you scroll, rather than requiring a click on “Load more” especially handy for sites that handle large media libraries. This can be disabled under your user profile.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">A more personal, more navigable admin</h3>\n\n\n\n<p class=\"wp-block-paragraph\">These meaningful upgrades make the WordPress admin easier to move around in and more consistent with how you like to work.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Persistent toolbar (Omnibar)</strong>: The admin toolbar now travels with you into the Site Editor and Block Editor, with a series of polish improvements throughout.</li>\n\n\n\n<li><strong>Command palette improvements</strong>: Moving through the dashboard and editor with the command palette <code>(Ctrl/Cmd+K)</code> is more refined to make finding what you need even faster! Now results are grouped into <em>Recent, matching and Suggestions</em> sections instead of one flat list.</li>\n\n\n\n<li><strong>Admin color scheme in the Site Editor</strong>: The Site Editor now reflects your chosen admin color scheme instead of always using a fixed background.</li>\n\n\n\n<li><strong>DataViews and DataForms iterations</strong>: Continued refinement of the components behind managing lists of posts, pages, patterns, and templates, alongside the forms used to edit them.</li>\n\n\n\n<li><strong>Excerpts in the Posts list</strong>: The Posts list view now shows a short excerpt for each entry, making it easier to identify the post you’re looking for without opening it.</li>\n\n\n\n<li><strong>Visual revisions</strong>: This release adds a picker activity layout for browsing history in more detail, clearly labeled autosaves in the timeline, and an autosave notice that opens straight into the visual revisions view. Global Styles revisions get a small polish too, swapping the <em>active</em> style’s text label for a badge.</li>\n\n\n\n<li><strong>A dedicated Identity section</strong>: Site identity settings like your title, tagline, and icon are now live in their own clearly labeled section of the Site Editor, making them easier to find and update.</li>\n\n\n\n<li><strong>On This Day Widget</strong>: A new widget resurfaces what you published on this date in past years, right on your dashboard. A small nudge to look back on what you’ve written, and a reason to write something new today.</li>\n\n\n\n<li><strong>Allow Changing Comment Parent:</strong> Fixing a misthreaded comment used to mean editing the database directly. WordPress 7.1 adds an editable “In reply to” control to the Edit Comment screen, letting you pick a new parent from a dropdown of the post’s other comments. It’s scoped to the same post, so this is about untangling threads, not moving comments across posts.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">New blocks and block-level enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 release brings a handful of block refinements that give more control with fewer steps.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Playlist Block:</strong> A new block for adding a collection of audio files to a post or page, with an optional waveform visualization that shows the audio’s shape as it plays; a more visual way to present podcasts, music, or audio content without using any third-party plugins.</li>\n\n\n\n<li><strong>Tabs Block:</strong> A new block for organizing content into clickable tabbed panels instead of showing everything at once. It’s a cleaner way to present related content without overwhelming the page.</li>\n\n\n\n<li><strong>Background gradients</strong>: Background gradients and background images no longer conflict. The gradient used to get silently overridden by the image, but now they combine and display together. This fix extends beyond the Group block to Verse, Accordion, Pullquote, Post Content, and Quote block.</li>\n\n\n\n<li><strong>HTML block editable content</strong>: The HTML block now supports editable nested blocks. This is great to use for AI-generated content, which often arrives as raw HTML.</li>\n\n\n\n<li><strong>“Mark as decorative” for images</strong>: A new toggle on the Image block lets you hide purely decorative images from screen readers for a better accessibility experience.</li>\n\n\n\n<li><strong>Smarter shortcode handling</strong>: Pasting or converting a shortcode into the Embed block now creates a proper Embed block instead of leaving raw shortcode text behind, and the Shortcode block gains block-specific transforms of its own.</li>\n</ul>\n\n\n\n<h3 class=\"wp-block-heading\">Built for a global audience</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues work to make Core reflect the full diversity of its worldwide community, with progress toward supporting Unicode email addresses so usernames, slugs, and email addresses can better represent users everywhere.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Built for developers</h3>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.1 continues to expand the foundation developers build on.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Abilities API expansion</strong>: Continued refinement of the Abilities API with improved querying, filtering, and input validation, giving developers and AI tooling a more reliable foundation to build on.</li>\n\n\n\n<li><strong>Block Bindings for list items</strong>: Block Bindings now extend to List Item, making it possible to connect more block content to dynamic data sources without custom code.</li>\n\n\n\n<li><strong>Custom icon registration</strong>: New functions let plugin and theme authors register their own icons for the Icons block for use throughout the block editor.</li>\n\n\n\n<li><strong>Enforced iframed editor</strong>: The post editor now always runs inside an iframe, isolating the editing canvas from admin styles for more predictable rendering. Blocks using Block API v2 or lower should be updated to v3 for compatibility.</li>\n\n\n\n<li><strong>wordpress/theme stabilization</strong>: Introduces design tokens and a stable React ThemeProvider to provide a more consistent, customizable foundation for WordPress admin interfaces.</li>\n\n\n\n<li><strong>Connectors authentication improvements</strong>: The Connectors screen now also supports username and application-password login – a more familiar way to connect plugins and services. This release also closes a security gap where browsers could auto-suggest saved credentials into the API key field.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">With so much in progress for WordPress 7.1 Beta 1, this is still only the beginning; expect continued refinement with each Beta and RC release ahead of the final release on <strong>August 19, 2026</strong> at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US 2026</a>.</p>\n\n\n\n<figure class=\"wp-block-image size-large has-custom-border\"><a href=\"https://us.wordcamp.org/2026/\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" width=\"1024\" /></a></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Just for you: a Beta 1 haiku:</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Seeds of Seven-One,<br />Notes, styles, media, and tools—<br />Test, and watch them bloom.</p>\n\n\n\n<p class=\"has-text-align-right wp-block-paragraph\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/benjamin_zekavica/\"><span class=\"mentions-prefix\">@</span>benjamin_zekavica</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/amykamala/\"><span class=\"mentions-prefix\">@</span>amykamala</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/wildworks/\"><span class=\"mentions-prefix\">@</span>wildworks</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/adamsilverstein/\"><span class=\"mentions-prefix\">@</span>adamsilverstein</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/annezazu/\"><span class=\"mentions-prefix\">@</span>annezazu</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/fushar/\"><span class=\"mentions-prefix\">@</span>fushar</a>, <a class=\"mention\" href=\"https://profiles.wordpress.org/jorgefilipecosta/\"><span class=\"mentions-prefix\">@</span>jorgefilipecosta</a><em>, <a class=\"mention\" href=\"https://profiles.wordpress.org/joedolson/\"><span class=\"mentions-prefix\">@</span>joedolson</a> for proofreading and review.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 15:53:33 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:11:\"Krupa Nanda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:30;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:77:\"Open Channels FM: How AI Tools Are Transforming Everyday Web Design Practices\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556905\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:84:\"https://openchannels.fm/how-ai-tools-are-transforming-everyday-web-design-practices/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:200:\"In this episode, Bob and Cami discuss how AI is reshaping web design, offering tips on using AI tools effectively, educating clients, and adapting workflows for better efficiency in the digital space.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 14:45:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:31;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"WPTavern: #225 – Milan Petrović on the Risks of Legacy PHP in WordPress and Why Upgrading Matters for Security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206447\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"https://wptavern.com/podcast/225-milan-petrovic-on-the-risks-of-legacy-php-in-wordpress-and-why-upgrading-matters-for-security\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:43219:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, the risks of legacy PHP in WordPress and why upgrading matters for security.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players. If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you and hopefully get you or your idea featured on the show. Head to wptavern.com/contact/jukebox and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today we have Milan Petrović. Milan has been deeply immersed in the WordPress ecosystem since 2007, developing an array of plugins, especially for expanding bbPress forums, and running his own company, creating plugins before joining the Freemius team as a full stack developer. With nearly two decades of hand-on experience, Milan has witnessed firsthand the evolution of both the WordPress and PHP landscapes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many WordPress users may be only partially aware of PHP. Perhaps they’ve noticed version numbers in their hosting panel, but few of the millions of WordPress users understand the real impact that PHP versions have on the security and performance of their websites. Milan is here to shine a light on why embracing newer versions like PHP eight isn’t just good practise, but a crucial step for security and efficiency.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Milan begins by recounting his journey through WordPress development. The conversation gets into the heart of his recent WordCamp Europe presentation, which tackles how legacy PHP code exposes sites to thousands of open bugs and vulnerabilities. And why relying on old versions is, as he describes, an active invitation for automated exploitation.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The discussion explores the contrast between running legacy code, and using the native shields of modern PHP, and highlights how PHP 8 not only closes security holes, but also delivers major performance boosts, reducing memory usage, and accelerating speed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re wondering why you should care about the PHP version your site is running on, or you’re a developer interested in practical ways to harden your code, Milan unpacks both the existential risks of outdated PHP, and the step-by-step benefits for hosts, agencies, and plug-in developers alike.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He introduces his Vulnerability Lab plugin, designed for developers to see firsthand how code exploits play out differently across PHP versions, and makes the case that modernising can happen gradually, one update, one plugin at a time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever questioned how your hosting choice, or plugin stack, could affect your site’s future. Or you’re ready to take the first steps towards building more secure and future proof WordPress products, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so without further delay, I bring you Milan Petrović.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by Milan Petrović. Hello Milan.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:58] <strong>Milan Petrović:</strong> Hello Nathan. Thank you for having me here.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:00] <strong>Nathan Wrigley:</strong> You are very welcome. We’re in a beautiful, beautiful media room at WordCamp Europe. And I know that you have already done your presentation because we just had a little chat about the fact that you’ve done it and it went well and all of that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Do you want to tell us a little bit about you and your background working with code and developing and security and all of that kind of stuff? And then we’ll talk about your actual presentation and how it went.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:25] <strong>Milan Petrović:</strong> So I started with WordPress almost 20 years ago, so way back in 2007. And I created a lot of plugins for WordPress, and I especially have a lot of plugins for bbPress for expanding forums. Yeah, people still use forums these days. So that was, I really like bbPress and all the stuff I did with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I have been working as a freelancer for a lot of years. I have my own company that was doing plugins, it’s called Dev4Press. But in 2024, I joined the amazing team at Freemius. So for almost two years I am a full stack developer at Freemius. And that was a really nice change of pace for me and the work I usually do before that. So yeah, that’s a short of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:13] <strong>Nathan Wrigley:</strong> Yeah. That’s great. Thank you. And so the presentation that you did that is now over, goes like this. I’m going to read the entire blurb because it’s short enough to read, and it says, secure by design, hardening plugins with PHP 8.x. In the WordPress ecosystem, we’re often forced to choose between supporting the lowest common denominator of hosting and implementing modern security. But in 2026, writing legacy PHP 7 code isn’t just a bad habit, it’s an active invitation for automated exploitation. It’s time to stop playing whack-a-mole with sanitisation, and start building products that are secure by design. This talk isn’t just another slide deck on security tips. Through comparisons of a Vulnerability Lab plugin, you will see how common exploits like authentication bypass, and server side request forgery succeed on legacy code, only to be neutralised by the native shields of the latest PHP. You learn how to leverage the modern PHP patterns to ensure your plugins are resilient to a wide range of exploits.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now into the show notes I will put Milan’s wordpress.tv presentation so that you can go and watch the entirety of it. I guess basically if at any point you get confused, that would be a good idea, pause this podcast and go and check that out. But, how did it go? How well received was it?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:33] <strong>Milan Petrović:</strong> For me personally, I’m very satisfied with how how it went. I don’t know, it’s a bit overwhelming to be honest, but I am very satisfied and I got a lot of questions after the talk. I met a lot of people that liked what I had to say. And I think it’s good feedback to have, for something that is more technical like this was.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:52] <strong>Nathan Wrigley:</strong> Well touching on the fact that it’s more technical, I have to confess that I think you are going to have to shepherd me through this, because a lot of the content that you I think probably got stuck into is beyond my pay grade. But hopefully we’ll get through it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now at WordCamp Europe, where we are now, I don’t know what the ratio is, but I’m guessing that a significant proportion of the people out there are not developers. They kind of know that PHP is a thing. They realise that WordPress is built on that, but they don’t really have an understanding.</p>\n\n\n\n<p class=\"wp-block-paragraph\">They’ve probably heard of PHP 7. They’ve probably heard of PHP 8, because somewhere in a control panel that was shown to them. But maybe there’s not much of an understanding of the fact that it gets better over time. It gets secure over time. I think there’s probably a notion of, well, my website works. Why do I need to change anything?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So let’s get into that. What were you talking about in your presentation? What’s changed in the landscape of PHP more recently that you brought to the fore that you shared with your audience?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:51] <strong>Milan Petrović:</strong> Yeah, I think that PHP 8 was a big milestone for a lot of things. And I’m not sure, but I don’t think that the wider communities are kind of aware about the impact of the PHP, or the server environment in general, on how the websites work and how secure they are. Maybe the WordPress in itself needs to spread more awareness about that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Because right now we get a notice in the dashboard that maybe the PHP needs to be updated. But for a lot of website users, that can be too much and too little information at the same time, because they may be not aware of how to do things on their hosting site.</p>\n\n\n\n<p class=\"wp-block-paragraph\">We need to spread more awareness about how important the changes in the code are when it comes to the newer PHP versions, and what they can do to improve the security. And how developers should be starting to use more of those new features and the new things that PHP provides on a language level nowadays.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:49] <strong>Nathan Wrigley:</strong> WordPress has got this real legacy, I suppose is the right word, of supporting legacy code. So WordPress itself is supported way, way, way back. You can keep using versions of WordPress, which are many, many, many years old. And I wonder what your stance is in terms of PHP, whether or not WordPress runs versions of PHP which are far too old, in your opinion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So in other words, should WordPress have a policy of, I don’t know, 8.x only? Or is 7 okay. And I don’t know what other CMS platforms, you know, Drupal, Joomla as was. I don’t know what they do, I don’t know what their posture is.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:32] <strong>Milan Petrović:</strong> I think that one of the most important decisions that, it was done with WordPress early on, is that backwards compatibility, because it opened the doors for a wider adoption. Because you don’t need to change server every year, or you don’t need to upgrade your software that often. And that helped a lot of hosting companies to provide WordPress hosting very cheaply, because they didn’t have to have the latest PHP, they didn’t have to invest much more money into all that. So WordPress got a lot of adoption from backwards compatibility policies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But in the same time, that also proved a bit of a problem. Because even the WordPress Core code is kind of stuck because of that policy of backwards compatibility. And it’s not only compatibility with old versions of WordPress, but the old versions of PHP. And we are running now maybe six years behind end of life PHP versions. Because PHP 7.4 end of life was four and a half years ago. And we still support it in the Core.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:33] <strong>Nathan Wrigley:</strong> Yeah, I guess it’s a nice thing to support it. And it, as you described, it was a great way of onboarding the millions of people that came along. But things have moved on.</p>\n\n\n\n<p class=\"wp-block-paragraph\">What would be some of the top level items? And I’m inviting you to open the scary book and sort of give out the worst case scenarios basically of running legacy code. So really, go to town, frighten us all. What are some of the horrors that await if you’re quite willing to, as a hosting company, support seven point whatever or beyond, six or five, or dare I say it, four, who knows? What are some of the terrible things that await us?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:08] <strong>Milan Petrović:</strong> To be honest, when I was researching some of the statistics and things like that, I was kind of scared when I saw that there are 3 or 4,000 open bug reports for PHP 7 and PHP 5, which are still in use today, and there are WordPress websites running on both of them in the millions. And there are 3 or 4,000 open and confirmed bags that are never going to be fixed. Never. So PHP 7 has thousands of bugs, and I’m sure that not everything security related, but a big chunk of those bags are related to security.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there are open exploits that run on the PHP level. They don’t care really about if you are using WordPress or using something else. It’s more like a exploit on the level of a, on a server side that can be quite scary because you, even the technical people are not really sure what are all those bugs. Who is going to go through 3,000 or 4,000 bug reports?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:05] <strong>Nathan Wrigley:</strong> Yeah, so just to sort of describe that, the fact that there is no more updates to the 7 branch of PHP means that all of those bugs which are publicly available, anybody can go and read great detail about what they are. Well that then means that any hacker can do that, and probably did like a dozen years ago. And so really you are painting a picture there of you are asking for trouble.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:30] <strong>Milan Petrović:</strong> There are hosting companies that maybe do things a bit differently because you don’t need to run PHP as it was created. You can build your own version of PHP. You can patch bugs on your own. And a lot of hosting companies are doing that. But in the same time, that also poses a problem. You are going to run WordPress in your own plugins on a platform that is not actually officially PHP supported. It can have some different quirks that make your code run a bit differently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">A while ago we had the Facebook running their own PHP build, that was quite different from the public PHP. But they used it, and other people started using it. So I don’t know. Still I think that the official PHP is the one you should be on because you never know what other issues. Even when hosting company patches the PHP they’re using, maybe they’re opening doors to something else that is not quite documented on that level.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I think that the best policies, I don’t expect for WordPress to adopt the latest PHP or only supported PHP versions, but to kind of move quicker on the adoption of the newest version. So maybe we should be quicker to adopt PHP 8.0 or 8.1 is a next minimal required version for WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:50] <strong>Nathan Wrigley:</strong> When you say you don’t expect WordPress to do it, is that simply because it doesn’t have a history of doing it? Is there a technical reason why WordPress could not keep up with the latest version? I know we’ve got this plugin architecture where there’s thousands and thousands of developers who are all doing their own thing, and there’s all of that. Is there any technical reason why WordPress couldn’t be on the cutting edge, most up-to-date, latest version?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:15] <strong>Milan Petrović:</strong> There are two factors in all that. First one is you can declare, PHP 8 is the minimal version we support. We don’t support PHP 7.4 anymore. And that means that you don’t need to make any changes in WordPress at that point. You can declare it because WordPress is compatible with all PHP versions. It works on 8.0 and 8.5. That’s no problem. But say that branch 7 is no longer supported, you’re kind of pushing other developers and hosting companies to improve their support for newer versions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And you don’t need to make immediate changes to WordPress. But at that point, you are open to modernise the code because now you can have more stricter typing across the board. There are some strict typing things in older PHP versions, but with 8.0, you can do all of that. And it doesn’t have to be a process that is done immediately. It can be done gradually. You can update parts of the WordPress Core over time. And it’ll take a few years, to get up to date, but at least you are closing doors to some older versions of PHP, and you are pushing developers as well for plugins to have that policy.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now, each developer can have their own plugins supporting any version of PHP you want. For my plugins, I have policy of 8.0 as a minimal version since this year. And, I’m updating the code as I go along. I don’t do it, it’s impossible to do it all at once. And for WordPress, it’s going to be even worse to make it all up to date. But declaring PHP 8 is a minimal required version, would be a great step in the right direction for wider adoption.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:51] <strong>Nathan Wrigley:</strong> Yeah, I think the problem is simply one of the user base, isn’t it? There’s just millions of people, thousands of developers all doing their own thing. And casting 8.x, 8.0 and above as the new minimum, there’s going to be a moment where some things do go wrong.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that calendar plugin that you’ve been using for ages, which just works. And sure, you’ve never really received any updates from the developer, but it just works. Everybody’s booking on my calendar and we are all good. And then suddenly PHP 8 is required and it turns out the calendar plugin now no longer works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can imagine those kind of stories a million times over coming to the fore. But equally, we got to move on. There’s no way of, you know, because we can’t in 10 years still have sites on 7.4.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:43] <strong>Milan Petrović:</strong> We have sites on five point something. I recently checked the official WordPress tracking. 7.4 is on 20% even now. So we are far away from WordPress ditching the 7 branch. And I think there are still few percent of PHP 5 in all that so.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:01] <strong>Nathan Wrigley:</strong> Yes, I regularly look at the, it’s like a little donut chart, isn’t it? That is often produced and you gradually see the eight point x whatever section of the pie getting bigger as they produce the next survey. But you’re right, it’s still a significant chunk that’s on 7 and below.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And whilst when I look at that chart, it doesn’t really bring any alarm bells to the fore, I just think, oh, that’s a shame. But now that you are presenting this talk, and giving me this information, I realise that that attack surface is worse.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When you gave that talk, who is your target audience? Were you directly sort of aiming at the hosting companies who presumably can do a lot of work very quickly? You know, they could take a million people onto 8 with a little bit of development work and on the back end of their platform. Or are you really encouraging the general WordPress user, like me, to take a bit more interest and make sure that I am going into the cPanel or whatever it is and updating myself? Or is it a bit of both?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:17:59] <strong>Milan Petrović:</strong> For everyone actually. It’s for developers to be more aware of what they can gain with the new PHP versions. It’s for hosting companies. Because it’s not only about security when it comes to the newer PHP. The PHP is faster and faster. So each new version gets you 5 or 10% more performance without doing anything. So PHP 8.5 is more than 50% faster than PHP 7.4. So that’s a significant update.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I have even, one slide was showing how much less memory PHP 8.5 used to run exactly the same piece of code. So it’s pretty wild to see that hosting companies are maybe the biggest factor in all this. They will gain a lot more because they’re going to free a lot of resources to run more websites because PHP is going to use less memory and it’s going to be faster.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I understand they need to invest a lot of money to do all that. But, I don’t know, I think that gains from that are very significant, on that level alone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:57] <strong>Nathan Wrigley:</strong> Yeah, so you described there are really compelling scenario. You know, it’s quicker, it uses less memory, you’ll save money. I mean what else do you need? You’ve just presented the entire argument.</p>\n\n\n\n<p class=\"wp-block-paragraph\">However, it hasn’t happened. So technically speaking, why do you think it hasn’t happened? Is there an acquisition of new knowledge that is difficult to take in? Is it that simply you would have to, I don’t know, retrain your staff? How do you understand that it hasn’t happened? What are the reasons people are digging their heels in and not making these updates?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:25] <strong>Milan Petrović:</strong> I kind of make the group of two or three types of hosting companies. One, and that’s usually more expensive managed hosting solutions. They are forcing the updates. They’re not maybe on the latest version, but they are forcing their users to use at least three or four versions of PHP back. So maybe 8.2 or 8.3, which is a great step in the right direction.</p>\n\n\n\n<p class=\"wp-block-paragraph\">There is also a problem of support. If something starts breaking, they’re going to be the first one to be asked about that, because they made the change to the server. So why now website that was working yesterday is no longer working today because of some change made on a hosting level. So there are a lot of factors to play into that adoption.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But on the other hand, there are a lot of developers that have moved on with supporting PHP 8. A lot of plugins are very much updated and, especially popular plugins. They invested a lot of time to do the update. It’s getting easier to support it. But on the other hand, you have very old websites that are simply cannot move without proper testing, without updating the plugins. And there are cases when you cannot simply update one plugin because something else may break, or you made some changes that will make some other thing break. So it’s a big puzzle that is definitely not easy to solve, but maybe we should start some work on that as a community to do it, and to move people along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I don’t want to say force the change, but make people aware of the benefits. Make people aware of the risks if they continue to run the old and outdated software. And the same goes for not updating plugins, not updating WordPress. No matter how much work is done in that regard, there are still most likely some exploits on a WordPress level for very old versions that at some point someone is going to find out about and exploit.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:16] <strong>Nathan Wrigley:</strong> I mean I guess the motto of WordPress was democratised publishing, which means basically make it available to everybody. No matter your level of expertise, make it available to everybody. And I’m sure that if you were to grab the CEO of any hosting company and say, I can save you money, I can save you resources, and all of those things that you outlined earlier, they would, yeah, we know, we know. But we’ve got thousands of non-technical people using WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I kind of have this analogy in my head, and it goes a bit like this. Several years ago, I bought a bike. And it sits in my garage and there is my bike. And I expect my bike to work tomorrow in the same way that it did four years ago. And in 10 years, I expect my bike to work. I don’t expect there to be an update to wheels or gears or the saddle. It doesn’t need an update. It’s just a bike. And I need my bike to be a bike and nothing more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And I get the impression that many people treat their WordPress website as the same thing. This sort of static commodity that, sure enough, they pay a monthly fee for it, but it’s this website. It’s a thing, and it doesn’t need changing. And so what I’m trying to say is, I’m fairly sure that the hosting companies are met with that an awful lot. The customers who just, it’s a bike, it’s a website. Do you know what I mean?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:37] <strong>Milan Petrović:</strong> Yeah, but you need to maintain your bike. If you don’t do it, it’s going to, your belt is going to rust, your wheels are going to be deflated or whatever. A lot of things can happen with it if you don’t maintain it. So, we don’t need to upgrade everything all at once, but we can start from someplace. We can do it gradually. But still, WordPress needs to be the platform that leads the charging that, because it’s going to force other developers to do it. It’s going to force hosting companies to start doing it. And it’s not a big jump on moving just that one version, but it’s going to help to move things along faster. Let’s see how it goes in the next few years. But I really don’t expect for WordPress to drop 7.4 for at least a year or two, maybe even more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:24] <strong>Nathan Wrigley:</strong> I loved your rebuttal of my bike analogy there. That was perfect. That’s exactly right. The bike will rust, the wheels will be deflated and all of that, yeah. So we need to drag the WordPress users along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, in your presentation, you mentioned something that I have never used, the Vulnerability Lab plugin, which you used to demonstrate the attack. Can you just tell us a little bit about that? Because I’d be curious to follow that up, and maybe some people listening to this would too.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:47] <strong>Milan Petrović:</strong> I started it for, created for this talk specifically to add few examples and to run the code that is going to show those things if you run the plugin on the old version and the new version of PHP. And I do plan to expand on it because there are a lot more PHP security elements that can be demonstrated in that way.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it can show you, you have like a, in many cases the same code, but if you run it on one platform, you’re going to get one result. And if you run it on the newer one, you will get something different. So it’s useful to show, and some of those changes are quite small, those attributes that you can add to the code are very, very small, but they can really help you to improve security of your plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And there are more complex security measures that can be implemented, but the format of the talk wasn’t really suitable to mention everything. But this was like something to get you started on the path of discovering what else PHP 8 can offer, when it comes to improving the security of the plugins and what possible exploits and vulnerabilities are there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I try to use some obvious things that are very easy to spot. And I’m sure I did made some of those errors myself in the past. So some of those examples are something that I dealt with when I was upgrading my code. So I’m sure that a lot of people can see similar problems in their own code, and similar kind of solutions that can help them to overcome those and to make them much more resilient in the future.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:17] <strong>Nathan Wrigley:</strong> So is your plugin designed primarily, would you say for developers in mind, or is it something that just a typical end user may get some mileage out of?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:26] <strong>Milan Petrović:</strong> No, it’s more for developers that they can see, they can run that code and see how it behaves on the old version and the new version to demonstrate some of those things. And I will definitely expand it to include more examples in the future. Even for myself to like a document, what can happen if you run something in the old version, and the new version?</p>\n\n\n\n<p class=\"wp-block-paragraph\">I had some suggestions coming to me like, maybe like a pattern library that is going to show what is the pattern that we use with old PHP and how to improve it with a new one, and document which version of PHP is going to support it, and how it’s going to improve the code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:01] <strong>Nathan Wrigley:</strong> So is the idea then that you would instal it on various different, let’s say that you’ve got a live site and you’ve got, I don’t know, a development site and another development site, is that you would put it on each of those, different PHP versions, and just sort of compare and contrast what.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:16] <strong>Milan Petrović:</strong> Yeah, that can be used.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:17] <strong>Nathan Wrigley:</strong> Yeah, in that way. And what’s the reporting that you get? Is it kind of error logs, you know, that only a developer would be able to understand, or is it in plain language that somebody like me could understand?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:26] <strong>Milan Petrović:</strong> Right now it’s a bit technical because if you run a certain part of the code, some of those elements do have a visual component in the admin section. You will see, one of the examples, if it’s run on PHP 7.4, it’s going to result in a fatal error for sure, depending on the server settings. And if you run it on the new version, you will get a full code running and executing as expected.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So it’s a bit of a development thing that developers can use themselves to show maybe to potential clients or to website owners what is going to happen if they continue to run the outdated versions of the PHP. So it’s not just, yeah, the PHP 7.4 is bad, but here it is, why it is bad actually.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:12] <strong>Nathan Wrigley:</strong> Okay, that’s a really interesting use case, isn’t it? So if I’m an agency owner and I’ve got, I don’t know, a client over here who is absolutely wedded to this plugin, this calendar plugin say, and we know that the development of that plugin has ended years ago, then trying to persuade that client to find something new, or have something new built is difficult.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But with the capabilities of the plugin that you’ve created, you’ll be able to show in a sort of readable human way, okay, right. That’s all very well, but we’ve got to get onto PHP 8.0. And when we do that, this is going to happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So that’s actually quite a useful tool for agencies to be able to dangle things in front of the noses of their clients. Potentially, I don’t know, get some new work out of it as well, because there’s this extra work that needs to be done to bring it up to the modern standards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:01] <strong>Milan Petrović:</strong> Yes. And one example especially demonstrates not only security, it demonstrates the performance. It shows you how much memory that piece of code is using on old version. Almost half the memory is going to be used less with a new version. So that’s very on the nose demonstration on security, and the performance in the same time. So things like that can help. And I will definitely try to invest more time in showing more examples and anyone can contribute.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s a plugin available on GitHub, so any contributions in that regard are welcome. And we can maybe all work to create like a list of patterns that are something that a lot of people can use, and show different people how the PHP can help them move along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And again, I don’t want to sound like we don’t need whatever WordPress is doing. We still need to use all the security enhancements that WordPress has built in the Core. Escaping, sanitisation. All that is still very important because you cannot solve everything by upgrading PHP and upgrading your code to use some of the PHP features. There are still a lot of security elements in WordPress itself that are very important and should not be replaced, or removed, from the code. There are patterns that are crucial to ensuring the security is on a top level. So combination of what WordPress already has, plus everything we get with the newer PHP is something that we should strive in the future, and to make things better.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And it’s not that complicated to start with the process. You can start upgrading small things. You can start with stricter typing. You can start with very small changes, and then gradually you can add those new attributes. You can replace some of the functions that you may be used with old version of PHP, but there is something better in the new version. So that’s something that everyone can do. Do a bit at a time so not everything at once. Spend time and make some gradual upgrades, and that’s going to help moving along.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:29:57] <strong>Nathan Wrigley:</strong> You are obviously here to talk about where PHP meets WordPress, but presumably you, yourself are gaining intel from the PHP community. Is there a resource, like a central PHP resource that you would direct people to, or would you rather steer them towards kind of WordPress resources? The things that people are doing in the WordPress space and the hosting space. There’s not really a question there, but it’s more where do you find your information? Where’s the most reliable place?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:25] <strong>Milan Petrović:</strong> You need to check everything. PHP website is a really good resource to find the information about what’s coming in the next version of PHP, because the preparations take up to a year to release a new version of PHP. So they’re now on a cycle that every December we get a new feature version. So in December this year, there is going to be PHP 8.6. And you already know most of the things that are coming to that version. You have the detailed list of changes for every PHP version. And that’s something that any developer should look at, and to see maybe something that will drive them to upgrade.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In the current usage of third party libraries, there are a lot of libraries used in PHP that have moved on beyond 7.4. There are a lot of libraries that now require 8.1 or 8.2. If you depend on some library for, I don’t know, parsing URLs, or doing something else, something for security, something for whatever. You may face the problem that if you want to use the latest version of that library, you will need to have the newer PHP version. So you are kind of forced to upgrade your plugin requirements to meet with the requirements of the third party libraries.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And outside of WordPress ecosystem, those libraries will move much faster with the adoption of newer PHPs versions than WordPress itself, because they don’t deal with millions and millions of websites that are affected. They are creating the library the best way they can. And they want to ensure that their library is secure, that their library has access to the latest features. So they are going to bump requirements for those libraries on their own. And if you are depending on it, you need to do it yourself for your plugin. So it’s kind of, those libraries are kind of forcing the hand of some developers to upgrade, even if they maybe are not ready at this point to do it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:15] <strong>Nathan Wrigley:</strong> Yeah, it certainly sounds like there’s no lack of information out there. If you make your business to find the information, then it’s all there. You’ve just got to make the effort to go and find it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’ve kind of run the gamut of everything I wish to ask. However, I’m very conscious, as I said at the beginning, that this conversation is a little bit above my pay grade. Is there anything that I missed that you wished you had been asked that you wanted to get across?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:38] <strong>Milan Petrović:</strong> No, I think we covered a lot of stuff in that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:32:42] <strong>Nathan Wrigley:</strong> Well I’m glad to hear it. That’s great. Yeah, thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In which case, I’m assuming, given that you’ve come to an event like this and you’ve put a plugin on GitHub, you are sort of semi available, or very available, to have conversations with people around this. And if that’s the case, where’s the best place to find you online? A website or an email address or a Twitter handle or whatever.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:00] <strong>Milan Petrović:</strong> We included the slide with the contact information. So even the email, if someone wants to get more information, they can do it on various social networks as well. So any input about all that is welcome. And I’d be happy to help if someone needs, some pointers or additional information to get started with all this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:21] <strong>Nathan Wrigley:</strong> Well, thank you. That’s very much appreciated. As always, if you go to the show notes on the WP Tavern website and click on the episode involving Milan, you’ll be able to find, buried probably towards the bottom, all the different bits and pieces, the wordpress.tv video that will go with his presentation and various other links that have been discussed during the course of this episode.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So with that said, Milan, thank you so much for chatting to me today. I really appreciate it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:47] <strong>Milan Petrović:</strong> Thank you. It was really great, and I appreciate your invitation for the interview.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:52] <strong>Nathan Wrigley:</strong> You are so welcome. Thank you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:33:53] <strong>Milan Petrović:</strong> Thank you.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have <a href=\"https://profiles.wordpress.org/gdragon/\">Milan Petrović</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Milan has been deeply immersed in the WordPress ecosystem since 2007, developing an array of plugins, especially for expanding bbPress forums, and running his own company creating plugins before joining the Freemius team as a full stack developer. With nearly two decades of hands-on experience, Milan has witnessed firsthand the evolution of both the WordPress and PHP landscapes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many WordPress users may be only partially aware of PHP, perhaps they’ve noticed version numbers in their hosting panels, but few of the millions of WordPress users understand the real impact that PHP versions have on the security and performance of their websites. Milan is here to shine a light on why embracing newer versions, like PHP 8.x, isn’t just good practice but a crucial step for security and efficiency.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Milan begins by recounting his journey through WordPress development. The conversation gets into the heart of his recent WordCamp Europe presentation, which tackles how legacy PHP code exposes sites to thousands of open bugs and vulnerabilities, and why relying on old versions is, as he describes, “an active invitation for automated exploitation.” The discussion explores the contrast between running legacy code and using the “native shields” of modern PHP, and highlights how PHP 8.x not only closes security holes but also delivers major performance boosts, reducing memory usage and accelerating speed.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re wondering why you should care about the PHP version your site is running on, or you’re a developer interested in practical ways to harden your code, Milan unpacks both the existential risks of outdated PHP and the step-by-step benefits for hosts, agencies, and plugin developers alike.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He introduces his Vulnerability Lab plugin, designed for developers to see first-hand how code exploits play out differently across PHP versions, and makes the case that modernising can happen gradually, one update, one plugin at a time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’ve ever questioned how your hosting choice or plugin stack could affect your site’s future, or you’re ready to take the first steps towards building more secure and future-proof WordPress products, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://europe.wordcamp.org/2026/session/secure-by-design-hardening-plugins-with-php-8-x/\">Secure-by-design: hardening plugins with PHP 8.x</a> – Milan’s presentation at WordCamp Europe 2026</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://bbpress.org\">bbPress</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.dev4press.com\">Dev4Press</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://freemius.com\">Freemius</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://github.com/dev4press/vulnerability-lab\"> Vulnerability Lab plugin</a> on GitHub</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:32;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:73:\"Open Channels FM: We are Welcoming InMotion Hosting as our Newest Sponsor\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556962\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:80:\"https://openchannels.fm/we-are-welcoming-inmotion-hosting-as-our-newest-sponsor/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:170:\"InMotion Hosting joins Open Channels FM Podcast as a sponsor, offering reliable hosting with great support. They\'ve been a solid choice for over 25 years. Check them out!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 15 Jul 2026 10:08:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:33;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:81:\"Open Channels FM: Multi-Layered Security and the Future of Hosting in an AI World\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556869\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:88:\"https://openchannels.fm/multi-layered-security-and-the-future-of-hosting-in-an-ai-world/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:232:\"In this episode, Adam and Aaron discuss evolving web security in the AI era, emphasizing proactive strategies, layered defenses, and the vital role of hosts in protecting websites against modern threats. Secure your online presence!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 14 Jul 2026 12:41:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:34;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:50:\"WordPress.org blog: Your Guide to WordCamp US 2026\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21007\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:51:\"https://wordpress.org/news/2026/07/wcus-2026-guide/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24081:\"<figure class=\"wp-block-image size-large has-custom-border is-style-default\"><img alt=\"WordCamp US: Powered by WordPress, Driven by Community, August 16-19, 2026\" class=\"wp-image-20859\" height=\"321\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/06/wcus-2026-teaser.png?resize=1024%2C321&ssl=1\" style=\"border-top-left-radius: 5px; border-top-right-radius: 5px; border-bottom-left-radius: 5px; border-bottom-right-radius: 5px;\" width=\"1024\" /><figcaption class=\"wp-element-caption\"><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4c5.png\" style=\"height: 1em;\" /> <strong>August 16-19, 2026 | Phoenix Convention Center</strong>,<strong> Phoenix, Arizona</strong></figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp US 2026 returns for another year, this time in Phoenix, Arizona, for four days, August 16 to 19. It comes at a moment of real energy for WordPress, as artificial intelligence reshapes everyday workflows, the business of building and maintaining sites is shifting, and new people keep discovering the platform every day. Four tracks address this moment, covering AI, Honing Your Skills, Technical WordPress, and Beginner WordPress. Between them, there is something for everyone, whether you lead an agency, freelance for local clients, write code for a living, or are building your very first site. Whatever draws you in, you will leave Phoenix better equipped and better connected than ever.</p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-c9c19393 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/tickets/\">Get Your Tickets</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/contributor-day/\">Sign Up for Contributor Day</a></div>\n\n\n\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-text-align-center wp-element-button\" href=\"https://us.wordcamp.org/2026/schedule/\">See the Schedule</a></div>\n</div>\n\n\n\n<p class=\"wp-block-paragraph\">Phoenix itself rewards anyone who adds a day or two to their trip. The capital of Arizona sits in the Sonoran Desert and pairs a lively downtown with a rich arts and food scene. The Roosevelt Row arts district is known for its galleries, murals, and independent restaurants. It is also home to one of the largest art walks in the region. Nearby, Chase Field and the Footprint Center host professional baseball and live shows, and the surrounding desert offers striking scenery at places like Papago Park and the Desert Botanical Garden.</p>\n\n\n\n<div class=\"wp-block-jetpack-slideshow aligncenter\"><div class=\"wp-block-jetpack-slideshow_container swiper\"><ul class=\"wp-block-jetpack-slideshow_swiper-wrapper swiper-wrapper\"><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21052\" height=\"1147\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-1.png?resize=1920%2C1147&ssl=1\" width=\"1920\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21053\" height=\"612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-2.png?resize=1024%2C612&ssl=1\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21054\" height=\"612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-3.png?resize=1024%2C612&ssl=1\" width=\"1024\" /></figure></li><li class=\"wp-block-jetpack-slideshow_slide swiper-slide\"><figure><img alt=\"\" class=\"wp-block-jetpack-slideshow_image wp-image-21056\" height=\"612\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/phoenix-4.png?resize=1024%2C612&ssl=1\" width=\"1024\" /></figure></li></ul><a class=\"wp-block-jetpack-slideshow_button-prev swiper-button-prev swiper-button-white\"></a><a class=\"wp-block-jetpack-slideshow_button-next swiper-button-next swiper-button-white\"></a><a class=\"wp-block-jetpack-slideshow_button-pause\"></a><div class=\"wp-block-jetpack-slideshow_pagination swiper-pagination swiper-pagination-white\"></div></div></div>\n\n\n\n<h2 class=\"wp-block-heading\">Start with Contributor Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The week begins with <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Contributor Day</a>, a full day set aside for giving back to the project that makes everything else possible. Attendees will gather in teams to improve WordPress itself, from Core code and documentation to design, training, accessibility, and translation.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">WordPress is so unique because we’re not just a product; we’re a movement.</p>\n<cite>Matt Mullenweg, WordPress Cofounder</cite></blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">Contributor Day is open to everyone, whatever your skills, and whether or not you have ever contributed before. Come and experience the open source collaboration that is at the heart of the project. <a href=\"https://us.wordcamp.org/2026/contributor-day/\">Signing up</a> in advance helps us prepare our veteran contributors and provide you with the best experience.</p>\n\n\n\n<figure class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-1 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width: 20px; border-radius: 2px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19085\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/Z632926.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19089\" height=\"1707\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8723-scaled.jpg?fit=1024%2C683&ssl=1\" width=\"2560\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19110\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC04553.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21080\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC8737.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21078\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0748.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21079\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0768.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21077\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0379.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21074\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0167.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21076\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC0331.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21083\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z636050.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21082\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z632983.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19083\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/DSC8887-2.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<h2 class=\"wp-block-heading\">Explore Real-World Projects on Showcase Day</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Day 2, Showcase Day, is dedicated to real-world WordPress projects and focuses on how teams develop features, manage publishing, and run demanding sites at scale. It brings to life the kind of work collected in the WordPress <a href=\"https://wordpress.org/showcase/\">Showcase</a>, the directory of standout sites built on the platform, from global brands like <a href=\"https://wordpress.org/showcase/disney-connect/\">Disney</a> to community publishers and institutions like <a href=\"https://wordpress.org/showcase/nasa/\">NASA</a>. Past WordCamp US Showcase days have brought teams from the likes of <a href=\"https://www.youtube.com/watch?v=PGvh7fCOUk0\">Wikimedia</a> and <a href=\"https://www.youtube.com/watch?v=MHk-Us00pTk\">CANCOM</a> to explain how they manage large, high-traffic systems. Other sessions took a builder’s perspective on catching bugs faster with automated testing and even running the Block Editor inside a custom app.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img alt=\"\" class=\"wp-image-21064\" height=\"576\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637241.jpg?resize=1024%2C576&ssl=1\" width=\"1024\" /></figure>\n\n\n\n<h2 class=\"wp-block-heading\">Dive Into Two Conference Days</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The two main conference days will bring a full slate of sessions across four tracks. First among them is the AI track, which treats the technology as a tool to handle with care rather than a headline to chase. Its sessions set guardrails for AI-assisted development, prepare for a web where AI agents become the visitors a site must serve, and weigh the legal and ethical questions of putting AI tools in the hands of clients. Speakers from companies like Elementor will be taking a look at where the web is heading, while keeping the focus on what teams can adopt today without giving up control of their work.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The Technical WordPress and Honing Your Skills tracks cover the craft and business of building with WordPress. On the technical side, sessions dig into modern development workflows, automated testing with tools like the browser-based <a href=\"https://playground.wordpress.net/\">WordPress Playground</a>, and plugin pipelines. The Honing Your Skills track adds practical guidance on pricing, maintenance, and how the agency model is changing as clients ask for more. The Beginner WordPress track keeps the door open for newcomers, with approachable sessions that make your first WordCamp less daunting. Hands-on work runs through all of these tracks, so alongside the talks, attendees will find workshops and working sessions where they can build something real and leave ready to apply it to their own projects.</p>\n\n\n\n<figure class=\"wp-block-gallery alignfull has-nested-images columns-6 is-cropped has-black-background-color has-background wp-block-gallery-2 is-layout-flex wp-container-core-gallery-is-layout-db4b8a9e wp-block-gallery-is-layout-flex\" style=\"border-width: 20px;\">\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-19080\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2025/08/IMG_5641.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21086\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z633923.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21085\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9190.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-full wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21065\" height=\"1280\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637801.jpg?resize=1920%2C1280&ssl=1\" width=\"1920\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21084\" height=\"1024\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/Z637088-1.jpg?resize=819%2C1024&ssl=1\" width=\"819\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<figure class=\"wp-block-image size-large wp-lightbox-container\"><img alt=\"\" class=\"wp-image-21081\" height=\"683\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/DSC9344.jpg?resize=1024%2C683&ssl=1\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n</figure>\n\n\n\n<p class=\"wp-block-paragraph\">Not all of the value happens in the session rooms. On the show floor, the <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#happiness\">Happiness Bar</a> is a free, drop-in help desk where you can sit down with a volunteer WordPress expert and work through whatever has you stuck. The <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#sponsor\">Sponsor Hall</a> next door is where many of the best unplanned conversations happen, and its <a href=\"https://us.wordcamp.org/2026/47-days-out-whats-waiting-for-you-at-wordcamp-us-2026/#career\">Career Corner</a> gives anyone weighing their next move a relaxed place to browse the job board, meet company reps, and see who is hiring across the ecosystem.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Plan Your Trip to Phoenix</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Getting to Phoenix is straightforward. The <a href=\"https://us.wordcamp.org/2026/about/venue/\">Phoenix Convention Center</a> sits in the heart of downtown, less than five miles from Phoenix Sky Harbor International Airport (PHX) and about 15 minutes away on the <a href=\"https://www.valleymetro.org/how-to-ride/rail\">Valley Metro light rail</a>. WordCamp US has a room block at the Sheraton Phoenix Downtown, close to the convention center, so <a href=\"https://book.passkey.com/event/51129263/owner/68648/home\">book your hotel</a> before the block fills, and <a href=\"https://us.wordcamp.org/2026/tickets/\">reserve your ticket</a> if you have not already. The full event lineup and details live on the <a href=\"https://us.wordcamp.org/2026/schedule/\">WordCamp US 2026 site</a>, and the conference closes with an evening social before everyone heads home.</p>\n\n\n\n<div class=\"wp-block-group has-off-white-background-color has-background is-nowrap is-layout-flex wp-container-core-group-is-layout-7c1a8141 wp-block-group-is-layout-flex\">\n<ol class=\"wp-block-list has-off-white-background-color has-background has-large-font-size wp-container-content-9cfa9a5a\">\n<li><strong><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f39f.png\" style=\"height: 1em;\" /> </strong><a href=\"https://us.wordcamp.org/2026/tickets/\">Reserve your ticket</a></li>\n\n\n\n<li><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f6cf.png\" style=\"height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/about/travel-accommodation/\"> Find accommodations</a></li>\n\n\n\n<li><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f68c.png\" style=\"height: 1em;\" /><a href=\"https://us.wordcamp.org/2026/plan-your-trip-to-phoenix/\"> Plan your trip</a></li>\n\n\n\n<li><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f4cd.png\" style=\"height: 1em;\" /><a href=\"https://www.visitphoenix.com/\">Explore Phoenix</a></li>\n</ol>\n\n\n\n<figure class=\"wp-block-image size-full wp-container-content-577e1c61\" style=\"margin-top: 0; margin-right: 0; margin-bottom: 0; margin-left: 0;\"><img alt=\"\" class=\"wp-image-21164\" height=\"2560\" src=\"https://i0.wp.com/wordpress.org/news/files/2026/07/route-66-traveller-boy-scaled.png?resize=2066%2C2560&ssl=1\" width=\"2066\" /></figure>\n</div>\n\n\n\n<h3 class=\"wp-block-heading\">Help Us Spread the Word!</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Whether attending in person or following along online, share your experience and help welcome others to the WordPress community. Use the #WCUS and #WordPress hashtags to tell your story on social.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2026 13:07:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"Nicholas Garofalo\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:35;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:93:\"Open Channels FM: Understanding Open Source Law and AI Impacts in Modern Software Development\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556631\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:100:\"https://openchannels.fm/understanding-open-source-law-and-ai-impacts-in-modern-software-development/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:214:\"In this Open Web Conversations episode, host Anne Bovelett chats with lawyer Carlo Piana about open source software\'s legal challenges, AI\'s impact on coding, and the importance of proper licensing and attribution.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Mon, 13 Jul 2026 08:54:09 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:36;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:126:\"Gutenberg Times: Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:53:\"https://gutenbergtimes.com/?post_type=podcast&p=46018\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:59:\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:69012:\"<p class=\"wp-block-paragraph\">In episode 132 of the <em>Gutenberg Changelog</em> podcast, host Birgit Pauli-Haack and guest Ellen Bauer explore the latest updates within the WordPress ecosystem. The conversation centers on the releases of Gutenberg 23.4 and 23.5, the recent WordPress 7.0.1 maintenance update, and the strategic roadmap for the upcoming WordPress 7.1.A significant portion of the episode is dedicated to major merge proposals destined for WordPress 7.1 that aim to evolve the core software. </p>\n\n\n\n<p class=\"wp-block-paragraph\">These include “Core Abilities” for AI agent integration, the new “Knowledge” post type for managing site standards and guidelines, and “Design System Theming” to enhance consistency and accessibility via CSS custom properties. The hosts also discuss the shift toward mandatory iframing for the post editor in block-based themes, a critical architectural change designed to improve content rendering.Beyond core architecture, the episode highlights user-focused improvements such as enhanced responsive editing controls, which now allow for granular canvas resizing without preset limits. They also touch on media-related updates, including aspect ratio controls in the media editor, and improvements to the Icon block. </p>\n\n\n\n<p class=\"wp-block-paragraph\">With WordPress 7.1’s Beta 1 approaching, Birgit and Ellen emphasize the importance of community involvement, encouraging developers and site owners to participate in ongoing “Call for Testing” efforts. Whether discussing React 19 status or new grid layout properties, the episode serves as a comprehensive briefing for anyone looking to stay current with the rapidly changing landscape of the block editor and WordPress core development.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/#shownotes\">Show Notes</a> / <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/#transcript\">Transcript</a></p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Editor: <a href=\"https://www.linkedin.com/in/sandy-reed/\">Sandy Reed</a></li>\n\n\n\n<li>Logo: <a href=\"https://markuraine.com/\">Mark Uraine</a></li>\n\n\n\n<li>Production: <a href=\"https://icodeforapurpose.com\">Birgit Pauli-Haack</a></li>\n</ul>\n\n\n\n<p class=\"has-larger-font-size wp-block-paragraph\" id=\"shownotes\"><strong>Show Notes</strong></p>\n\n\n\n<h2 class=\"wp-block-heading\">Special Guest: Ellen Bauer</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://x.com/ellenbauer\">On X (former Twitter) @ellenbauer</a></li>\n\n\n\n<li><a href=\"https://profiles.wordpress.org/elmastudio/\">WordPress.org Ellen Bauer</a></li>\n\n\n\n<li><a href=\"https://bsky.app/profile/ellenbauer.bsky.social\">Bluesky</a></li>\n\n\n\n<li><a href=\"https://www.elmastudio.de/en/\">ElmaStudio</a></li>\n\n\n\n<li>Previews appearances on the show\n<ul class=\"wp-block-list\">\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-124-gutenberg-22-wordpress-6-9/\">Gutenberg Changelog #124 – Gutenberg 22.0 and WordPress 6.9</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-117-woocommerce-starter-theme-and-blocks/\">Gutenberg Changelog 117 – WooCommerce Starter Theme and Blocks, WordCamp Europe, and Gutenberg 20.7 and 20.8</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-105-gutenberg-18-9-block-themes-and-woocommerce/\">Gutenberg Changelog #105 – Gutenberg 18.9, Block Themes and WooCommerce</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-88-wordpress-6-4-and-gutenberg-16-5/\">Gutenberg Changelog #88 – WordPress 6.4 and Gutenberg 16.4 and 16.5.</a></li>\n</ul>\n</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Announcements</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/test/2026/07/03/call-for-testing-responsive-styling/\">Call for Testing: Responsive Styling</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/21/media-editor-modal-call-for-testing/\">Modal Media Editor</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/04/call-for-testing-client-side-media-processing/\">Client media processing</a> and the </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/03/announcing-a-collaborative-editing-outreach-effort-for-7-1/\">Real-time collaboration outreach effort </a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/10/call-for-testing-unicode-email-addresses/\">Call for Testing: Unicode email addresses</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Community Contributions</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/02/merge-proposal-expanding-wordpress-core-abilities/\">Merge Proposal: Expanding WordPress Core Abilities</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/22/merge-proposal-guidelines-built-on-knowledge/\">Merge Proposal: Guidelines built on Knowledge</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/07/merge-proposal-design-system-theming/\">Merge Proposal: Design System Theming</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">What’s released</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\">WordPress 7.0.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">WordPress 7.0.1 RC1</a></li>\n\n\n\n<li><a href=\"https://gutenbergtimes.com/?p=45920&preview=1&_ppp=99b8f1f429\">WordPress 7.0.1 Fixes Registration Spam, wp_kses() CSS Corruption, and 7.0 Admin Design Glitches</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\">Roadmap to 7.1</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Post Editor iframed </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li> <a href=\"https://github.com/WordPress/gutenberg/pull/74042\">Post editor: always iframe #74042</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/02/24/iframed-editor-changes-in-wordpress-7-0/\">iframed Editor Changes in WordPress 7.0</a> (February 2026) </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2025/11/12/preparing-the-post-editor-for-full-iframe-integration/\">Preparing the Post Editor for Full iframe Integration</a> (November 2025)</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2021/06/29/blocks-in-an-iframed-template-editor/\">Blocks in an iframed (template) editor</a> (June 2021)</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Punted from 7.1 </h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/07/07/the-classic-block-stays-in-the-inserter-for-wordpress-7-1/\">The Classic block stays in the inserter for WordPress 7.1</a></li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/06/05/react-19-upgrade-temporarily-reverted-in-gutenberg/\">React 19 upgrade temporarily reverted in Gutenberg</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Gutenberg releases</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://make.wordpress.org/core/2026/06/17/whats-new-in-gutenberg-23-3-03-jun-2/\">What’s new in Gutenberg 23.4? (June 17, 2026)</a>\n<ul class=\"wp-block-list\">\n<li>Docs: Auto-generate per-block API reference pages from block.json. (<a href=\"https://github.com/WordPress/gutenberg/pull/77612\">77612</a>) </li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/05/05/proposal-auto-generate-block-editor-handbook-docs-from-block-json/\">Proposal: Auto-generate Block Editor Handbook docs from block.json</a></li>\n\n\n\n<li>Documentation pages: <a href=\"https://developer.wordpress.org/block-editor/reference-guides/core-blocks/\">Core Blocks Reference</a></li>\n</ul>\n</li>\n\n\n\n<li><a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">What’s new in Gutenberg 23.5? (July 1, 2026)</a></li>\n</ul>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\">Stay in Touch</p>\n\n\n\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container is-layout-flow wp-block-group-is-layout-flow\">\n<ul class=\"wp-block-list\">\n<li>Did you like this episode? <a href=\"https://lovethepodcast.com/gutenbergchangelog\"><strong>Please write us a review </strong></a></li>\n\n\n\n<li>Ping us on X (formerly known as Twitter) or send DMs with questions. <a href=\"https://twitter.com/gutenbergtimes\">@gutenbergtimes </a>and <a href=\"https://twitter.com/bph\">@bph</a>.</li>\n\n\n\n<li><em>If you have questions or suggestions, or news you want us to include, send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a>. </em></li>\n\n\n\n<li><em>Please write us a review on iTunes! <a href=\"https://gutenbergtimes.com/itunes/\">(Click here to learn how)</a></em></li>\n</ul>\n</div></div>\n\n\n\n<p class=\"has-large-font-size wp-block-paragraph\" id=\"transcript\"><strong>Transcript</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Welcome to our 132nd episode of the Gutenberg Changelog podcast. In today’s episode, we will talk about proposals for core, calls for testing Gutenberg 23.4, Gutenberg 23.5, and whatever side ideas we have about 7.1, which is in the works. I’m your host, Birgit Pauli-Haack, curator at the Gutenberg Times and a full time core contributor for the WordPress open source project sponsored by Automattic. With me today on the show, and I’m very delighted to tell you that is Ellen Bauer, product manager at WordPress.com and early adopter of block themes. Thank you for joining me, Ellen. How are you today?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Thank you very much. Always happy to be here. I’m great. I just landed back in Bangkok this week where we are. I’m staying here a little bit longer with my family this year from Germany, visiting family and attending a meetup. And yeah, it’s good to kind of do that travel because it always inspires me to get out of a routine. And yeah, I’m really glad I’m here now and motivated.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> To get back into working, improving WordPress.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> That’s a great time to spend in Germany. And I hope you had luck with the weather.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer</em>: Well, there was this heat wave in the second week. It completely knocked me out, to be honest.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, that was really hard. And a lot of people say that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It was great and went on the last day I went to Legoland for the first time, which was also an experience and exhausting, but great.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> That’s here between Munich and Augsburg.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, I think it’s close. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, between my first time. Oh, nice. Yeah, maybe I should go there too. But it is fun.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It is fun. Maybe not. I don’t recommend to go in the summer on a Sunday, which we did, but. Oh yeah, that’s actually really fun.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Family day. Yeah. So you mentioned you attended the meetup in Porto. What was your takeaway from the meetup with digital?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So it was actually the main reason I came to Europe for it was the first time all products meetup from Automattic in beautiful Portugal for me, also the first time I’ve been to Portugal, which shouldn’t happen to not visit before. But it was really cool. I love Portugal. Really lovely people, beautiful vibe, nice weather. Yeah, it was really relaxing, really a treat. And then very inspiring and motivating to be in the product group for the first time all together in a nice setting and we had amazing conversations. For me, I also got to know my team a little bit better because I just sort of recently switched into dot com, so that was helpful. But yeah, also a lot of meaningful, deep conversations and I’m really, really motivated after that meetup.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh yeah. So when you said meetup, I’m still in the community brain, so I thought it might have been a WordPress meetup because I spent some time. And that’s probably also the reason why my brain went there instead of the internal. Because I spent some time with meetups, local WordPress meetups in Salzburg and in Erfurt and also in Munich. I restarted the meetup here in Munich with a few of the original founders and some other people and. And it’s a totally different vibe than a WordPress conference.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That is true. I love meetups.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> You meet 15 maximum 20 people and then you learn more about how they use WordPress, what they really move a normal user. So it kind of grounds you much better than kind of always being in the contributor section, kind of.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So that is true. Well, there was WordCamp Europe, which I didn’t attend because it was just so much. I attended WordCamp Asia, which I also loved this year. That was such an amazing experience and very motivating. And I talked to a lot of people who are meetup organizers in India and I really now want to visit one of their meetups. It sounds fun. I also visited the meetup here in Bangkok before and I love the people there, the really tight community. And I’m also. I have been thinking for many years now that I should actually start a meetup in our town in New Zealand. I haven’t committed, but I’m always coming back thinking about it. So maybe I should just commit and do that because it would be cool to have like a local.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> In New Zealand. There aren’t many around, but it would be cool.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Well, the first thing that you need is a co-organizer. So don’t start until you have a second person to do that because we travel a lot. Well, I travel a lot and I cannot be at every meetup, so I need somebody else to do that. So that was kind of back of mind.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That’s a good advice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And the meetups in India, they’re really big. They’re 40, 50 people.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I talked to someone and. And they have 200 people every month on Surat. I was like, I want to come. Yeah, it’s amazing. Like, I want to visit.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It’s a small word camp for an evening kind of thing.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That is so true.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Calls for Testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> All right. Yeah. So work for 7.1 is progressing and there are calls for testing out, and this is the first time that there are so many out there. There are five of them. And if you want to learn what’s really in 7.1, there’s no better way to take a deep dive and heed the call for testing. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So there’s a call for testing for the responsive styling and yes, it’s coming to WordPress now. And then there’s a call for testing for the new modal media editor that opens up when you click on the crop icon in the toolbar of an image block or a cover block. And then there is the call for testing for the client media processing. That’s a feature that comes to 7.1 where the client, the browser is actually doing a lot of work in uploading the upload side of the image uploads and the resizing and then dumps it into the WordPress media library. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There’s also a real time collaboration outreach effort that is also a call for testing. And then there’s a call for testing for getting Unicode into email addresses. And that’s kind of fun too. So the testing has done an amazing job putting those calls for testing together because you get instructions on how to use it and videos to show you how to use it and then the instructions also for the testing. So your mental work on how do I test this is already done. You’re just going to follow the script and, and then have room in your mental room to observe your feelings for whatever you’re doing and kind of try to, to verbalize them and share your feedback. So it’s really interesting and I hope you dear listeners are going to heed those calls. One or two of them. You don’t have to do all of them. Yeah, I don’t grade you, but there will be a test. Yeah. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Community Contributions</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Then there are also two. Well, I said two, but there are actually three merge proposals from the contributors. There’s new things coming to WordPress Core. One is expanding the WordPress Core abilities. It’s a merge proposal to add three read-only abilities to cover the settings, content and users for AI. And it gives AI clients real tools to call so the agents can understand what your site’s configuration, post and people are doing. There’s a discussion should this be in core, should this be a plugin and all that you can read up on the post. And the second one is also for AI is the guidelines to build knowledge on your website. Yeah, what’s your tone about what’s the tone of voice, the expression, what the topic is about and what the members are, what the standards are and all the notes for revision and capabilities. So an AI agent could follow those instructions as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And for people who manage multiple sites with one AI they can actually it’s different for every site. So it’s really important to have that on the site to give that that’s a new content type and new settings pages for these things. So you can even use your AI to update those guidelines. There’s one thing and then of course the last one is the bigger one and that’s a merge proposal for the design systems theming Andrew Duthie published a merge proposal bringing design tokens and new theme components to WordPress built by the Gutenberg Components team. But it turns the hard coded admin styles into CSS custom properties so your plugins and screens stay consistent and accessible. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Then a color ramp tool generates harmonious accessible scales from just two seed colors and the user color scheme reaches the site editor which will come into I think 7.1. So with a dark mode on the horizon. So it’s a good time to get involved in the discussion now, dear listeners, and to make your point of view listen to and converse with others on the impact for you and your business and for your clients because that’s where the decisions are made. Some of them are already made but they are loosely held, so to speak. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There’s a whole aspect of WordPress is we have strong opinions but they’re loosely held. If you have a good argument and you have a good use case or a different point of view, you are listened to. Of course if aired respectfully and even if it’s not respectful it should be because we all want to do the same thing. So the links to all the merge proposals and calls for testing will be in the show notes. You get to pick what you are interested in and so that’s a whole thing that happened in the last three weeks when we didn’t have a Gutenberg change log. So I wanted to catch you up. Any thoughts on that Ellen, that you want to share with our listeners?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think on the merge proposals but I think for the calls for testing the responsive styling of course sticks out to me because we have been calling for that for so long and the user the feedback was always there like what is that without responsive styling? So now here it is. So yeah go ahead and test it and I will do the same and kind of contribute to make it better or improve what. What we can. But here we go. We finally have. I think the number one ask always this is missing in Gutenberg.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. I think the number one ask is not the responsive design because Gutenberg is responsive in certain areas. It’s a viewpoint. It’s a media kind of thing. Yeah. So what is a tablet? What is a mobile. And to change things for those screen sizes. And there was a big hesitation and there’s. On the developer blog, there’s an article about intrinsic design that’s built into Gutenberg. And I think the thinking was, okay, intrinsic design is what comes after media queries. Comes after. So because we need to also talk to what is component in the container queries in CSS and all that. And at the start of Gutenberg people wanted to push the envelope of intrinsic design and then see what’s missing. And. And now we know where it all goes and how to. To change it. And there is a. Yeah, we talk about it a little later when we come to that. Yeah, but so that’s kind of. That part why it took so long, I think was the reason why I kind of went on the drain there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That is true. I’m glad that we didn’t do like earlier versions of it. It seems late, but yeah, there’s. There’s a reason.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> But I think, yeah, a lot of plugin companies actually filled that gap quite nicely. I also saw a few implementations where you didn’t have three viewports or breakpoints, you had six, so. And I kind of couldn’t imagine that a normal user can keep in their head six different sizes to control the styling and when something needs to be changed to find it again where that actually was changed. I get the hesitation. So yeah, yeah..</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> You quickly go a little overboard with that. And I’m also glad that we didn’t do that on the core level.</p>\n\n\n\n<h3 class=\"wp-block-heading\">What’s Released – WordPress 7.0.1</h3>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Yeah. So that brings us to what’s released and it’s release week kind of thing. So on Wednesday and we’re recording this on Friday, July 10, Thursday, July 9, WordPress 7.0.1 was released with bug fixes from the major release. And the release candidate announcement has a list of all the fixes in track and from the Gutenberg repo, </p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m preparing an article for the Gutenberg Times. I will probably put in the show notes about what the fixes actually did is the WPKSS or however say that CSS corruption on some of the admin design glitches and some more. So you can have a summary of that. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">On Wednesday, just the day before 7.0.1, a user ask in the core channel, what is. I see all the communication. Yeah. What is the latest version actually, and at that time it was still 7.0, but we say but tomorrow it’s going to be 7.0.1. 7.0.1. Yes. Yeah, yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So 7.1 last month Anne McCarthy posted the roadmap 7.1. It was aspirational and also very concise with an outline and links to the tracking issue for the many features contributors have been working towards. Beta 1 of 7.1 is scheduled for next week. That’s July 15th. And by then we will know the full picture of what made it and didn’t make it into the release features from the Gutenberg plugin releases 22.6 through 23.6 will come to 7.1 unless they’re behind an experiment flag or plugin or plugin only as guardrail 23.6 release candidate. And that’s what’s getting into the beta version is on July 14, so one day before the beta version, because that’s where all the NPM packages are created and all the things get into the branches. Right feature branch. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The final release of 23.6 is moved to July 22nd. That was kind of decided by the release tech leads to get it all just in time for beta and organize that. So the deadline for enhancement into the plugin on 7.1 is July 14, the day before beta. So if you’re a contributor and you want to get the feature that you were working on in this weekend is probably crucial because it also needs to be reviewed and approved. So give people time to get in there. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So yeah, what should be on your radar for 7.1 is the mandatory iframe of the post editor. We mentioned it before. It actually has also a lead time to come to this point is the post editor runs inside or the block editor should run inside an iframe because it isolates the content from your admin styles and makes the viewport units and media queries work correctly against the editing canvas rather than the browser window. And in 7.1, iframing becomes more enforced for block based themes or for all themes because it ensures that canvas behaves predictably and the blocks render accurately for both the post editor and the site editor, template editor and pattern editor and plugin developers. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So plugin developers who have not updated their Block collections from version 2Block JSON version 2 to 3 should actually upgrade to make this all work. If you want to catch up on the newest discussion, there’s a Gutenberg PR that’s called Always the post editor for book theme. And that’s the 79819. And if you put that in your playground, you can actually add some of the plugins or your staging site, or add it to the staging site, then you can test your things. I think the biggest problems are sites that are maintained by people that do not read the make blog or do not listen to podcasts or read blog posts about their site or the software. And those are sites that haven’t been maintained for a while, otherwise they would have already upgraded things. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So block themes need to do anything too. They haven’t. No. Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I haven’t looked into that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It’s a problem for blocks. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That are in the block plugin collections.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. That only. They were only meant for post editor and have never been used inside editor or something like that. Because those would have broken already. Because the site editor since 2020 kind of uses an iframe version. So if you use the block in a template or use the pages thing from the site editor, the pages administration from the site editor, you will know when the block breaks. And in the post editor, if you go into the console, you see the notification that it’s going to be deprecated. But if you’re only in the post editor and never look at anything else and those blocks might break if they’re not updated.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> What should they do if this happened to them?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> There are some guardrails in place and there were two PRs. That one is the hard kind of, okay, we do all the iframe insight and that’s going to be in beta. And in beta, listening to the feedback will decide if there will be a switch to the other less hard choice there in terms of saying, okay, if it’s a block theme, it’s going to be an iframe post editor. But if it’s not a block theme and. Or if there are blocks on the page that are on the old version, like the version 2, then it will not be iframed, but that is subject to change. It’s kind of. There’s a trial and error kind of process here to figure out what is the best way move forward. Because the first post blog post about that was actually published in June ‘21, so five years. And then there was another one in November 2025, and there was another one in February ‘26. So there is a lot of leeway or runway for agency developers and plugin developers to kind of update, but sooner or later there will be a push to make it final and then deal with the consequences. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Anne McCarthy’s roadmap included two updates that we already know have been already punted. So that’s the update to React 19 and the deprecation of the classic block. Those things have been punted. And there are blog posts on the make blog for the reasons and next steps for that. It’s pretty much the classic blog where there was a lot of communication around it that said, okay, maybe it’s not a good time yet. And for the RAC 19 there were too many backwards compatibility issues, but it’s going to come. So it just needs a little bit more runway to get final to that point. All right. Any thoughts about that?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Not really. I’m excited for 7.1. I think we haven’t mentioned the release time. Is that still planned for WordCamp US and like August 19th.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yes, the planning is July 15th being beta and then August 5th being release candidate and August 19th final release on the last day of WordCamp US.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Okay, cool. I’m excited.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah, I’m excited too. There are nice features in there and there are nice updates to the site editor there and I’m very excited about that. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.4</h3>\n\n\n\n<p class=\"wp-block-paragraph\">And now that brings us to Gutenberg 23.4. Let’s go and talk about things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So that was released June 17th. We’re also going to talk about the next release 23.5 right after. So let’s start with this one first. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So I think the most exciting things in there are related to media. And the first thing that is pretty exciting is if you load media into the post editor, you now get like a little notification snack bar that kind of tells you the progress of your uploads. Like if you load dump, just dump in like 20 images you’re going to see. And you also I think timed first image, second image, third image. We are used to it, I don’t know from apps and stuff. So I think that is really, really helpful to see the progress of the loading there.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And Adam Silverstein did an amazing job to get this all done. There’s a second one that also that the upload process is now enabled. So when it’s interrupted because you’re offline or something, it also resumes automatically the upload on the when the connection returns. So this would save quite a few hurry up and wait kind of thing. When you’re maybe on a train or in a country where you don’t have stable Internet connections to upload your media. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now, I only highlighted that because it’s in the same thing that the client side media processing is now geared towards 7.1. So the plugin’s only guardrail has been removed and it can be merged into WordPress.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">The next one is the playlist block. It now has a visualization style selector so it has the playlist lock. When you try and test it, you’ll see there is a visualization kind of where the music builds some animation on top of the track and you can select the styles now for that. And also it now has a track length setting so you can set up the settings for that as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Another thing I kind of liked because I’ve built that before is if you have, I don’t know, on a WooCommerce theme or something, if you want to have the log out log in or for any other kind of purpose, you can now get that into an inner block of the navigation submenu. The lockout lock in. That wasn’t possible before. It’s a small thing but very helpful for whenever you want to have that in a drop down or sub menu.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. If you have a membership site or subscribers only content and you. You offer them a nice accessible way to log in and log out. There’s a very minimal change, but you might need. You will notice it. It’s the time to read icon has been renamed to time. So it’s not. Might be getting rid of redundancy, but I’m not sure it’s even clearer. It’s clear enough. So yeah, that’s the change.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, I think that’s mainly kind of to reuse it, to be able to reuse it for more things. Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Another thing that I think is a little bit bigger and quite helpful is that now it’s possible that columns and gallery blocks can be transformed into grid variations for layout styling. I think that’s kind of cool. I think I wanted to do that many, many times.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, me too. Because I forgot that I have a grid block and I tried to do things with the columns block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, yeah. So often you kind of start out in a column and then you realize no, that should be a grid.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> And then again for the media. But this time it’s out of the block editor. The media editing modal has changed and it has some new features, better features, new libraries. And we talked about it before on this podcast. But now you can reorder the details field has been reordered and then now you have aspect ratio controls for the mobile toolbar and they refactored a little bit the modal layout in total. But this is a great, great tool. So these are all just the usability issues. The main feature was already in 23.2 or 3 and there are editable attachment fields. And the mobile tool. The mobile toolbar has been updated to include the aspect ratio controls. Also uses the zoom uses now plus and minus buttons. Yeah. Instead of the spyglass.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Oh yeah. That is actually very helpful an update on the dashboard. And you maybe have to help me out if I’m not 100% sure if I understand that correctly. So we always had the grid columns and now they are opinionated. So pre designed responsive. Is that correct if I say that like in your dashboard, like the two columns, I think it’s maximum four columns. It doesn’t go more than four and then it reduces like it nicely responsive by default, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. It goes from 960 desktop width, so four columns to two columns between a tablet kind of size, between if it’s smaller than 960 to 600 and if, if it’s smaller than 600 or 600 and smaller, it’s going to one column and has a mobile kind of view there. So it’s definitely responsive. But that’s the dashboard. It’s about the admin dashboard. It’s not in the block editor. So that grid has nothing to do with a grid block in the block editor. So we have a little issue there with using the same words for different things. But that’s because it’s all grid based. But it’s a good thing. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And contributors have an experiment on redesigning the dashboard and also let blocks going in there and all that. So it’s. It’s quite interesting to see that there are more additional features in there like this day before. Right. So if you’re in a block, you can. They’re figuring out how to put the previous day and previous years. So if you have a blog for 30 years or 10 years, you. You get. Or even five years. Yeah. You get a notification, what you published about this time of year, last year or something like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, I like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> And that was actually kind of nice.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It kind of embraces your blogging history.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, exactly.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> One actually kind of cool little change that I really like is in the site editor now. The admin color scheme, if you select another one, get translated into the site editor. So I know a lot of people always say, oh, you go into the site editor and it’s this black different looking user interface. And yeah it’s. Why is it so dark? So now it kind of adopts the color scheme you have selected. And I think this like part of bigger work going into kind of making the interfaces more be like one thing instead of.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. The unification of the admin interface is also a long time coming and I think that’s a, that’s a fantastic step. Yeah. To kind of just make it sure that if you have a green sidebar that it’s also green in the site editor.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah. Because why, why wouldn’t it be?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Yeah. So on the client media side again, the ultra HDR JPEGs that are detected by upload and then the originals are kept unmodified and the sizes subsizes. They preserve their ICO standards. So you have a better quality of the Ultra HD but it also handles the bigger sizes. So it’s a nice addition to the media upload feature that we talked about before.</p>\n\n\n\n<h3 class=\"wp-block-heading\">APIs</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> And then we also have an update on APIs. Oh, God. You have to help me with this one. I read it, but now I’m kind of like what was that about again? The future it will help.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: So it tracks per entity, the view configuration for pages. And then so it’s about the pages of pages, posts, patterns, template parts, templates and have their default layout in the grids being the, the layout grid in the admin. So when you’re in the site editor you have a choice when you look at templates, what kind of layout. You have a grid layout, a list layout and these kinds of things. And now there is actually an API that you can extract that view configuration for several other things. If you’re plugin developers, you can then replicate what the, what the priority is or what the preference is for your user. And you see that in the rest API when you pull out the information and display it again, that you get the configuration with it. I don’t know.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So you can practically kind of unlock whatever the configuration was in default and then use that in a plugin or something, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Exactly. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> The same screen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So when you. One use case could be if you are using WordPress as your content container, but have another application that displays things as a headless or in another. In another admin content management system that only talks to WordPress with all and pulls out the things that are in WordPress and measures it up with other data that’s also in the system, then you are able to display the same what the user sees in the WordPress admin, you can display that also in your system at the same time. So that kind of would be one of the use cases that I just made up.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, that makes sense and very good to explain in that way. What else do we have next?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So the dashboard we talked about that now has also an events widget that can be filled. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Documentation</h3>\n\n\n\n<p class=\"wp-block-paragraph\">I wanted to point out one documentation thing that is really a big deal that Juan Margarido has taken on in April or May and push that through a merge now with 23.4 and that is the auto generation of the per block API reference from the block JSON files. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So, until now it was really hard to figure out, okay, what’s the block markup and are there all the supports in there? Because the documentation was handmade. So if somebody updated a block’s configuration and block JSON and added support to it for other things, it would not show in the documentation until someone touches the documentation page. And for 90 blocks or so that are in core right now, that’s a moving target and fast moving target. So he proposed to go in and auto generate that documentation page for humans and AI to map multiple things. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So one is the parent relationship with other blocks like think accordion block and the sub blocks there, the attributions in the table, in a table that what the block supports and with links to explain those features. So if you don’t know what the alignment or support of a block is, you can look it up right from there and then what block styles come with core so you don’t have to figure that out from the interface. So like the button comes with two styles, one is the default, the other one is the outline style. Then which CSS selectors are automatically created and then an example of the block markup. And last but not least, also the links to the source of the information and the packages. So you have a full 36-degree view on the block. And because the documentation is auto updated, it comes right there when the new features are kind of added to the block and it will be shown in the documentation. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This not only helps the developers and theme developers to have a better handle on or one lookup page or section in the documentation, it also helps AI agents to form a comprehensive space to learn about WordPress blocks. Because I have found that AI sometimes just does a custom HTML block and puts it all there instead of using a column block or cover block or something like that. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So this is a very big deal because that’s something where AI elevates human capabilities because he used AI to run the code that parses the block JSON and puts it into the documentation page and then also has that documentation page from the GitHub repo into the developers.wordpress.org document block editor documentation automatically merged there. So this is a big deal. And kudos to Juan Margarido. He also spent some time getting some community input from the documentation team from the Gutenberg leadership. We had a hallway hangout with a Q and A and it finally was merged now. So kudos.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, that’s pretty cool. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Gutenberg 23.5</h3>\n\n\n\n<p class=\"wp-block-paragraph\">I think now we’re moving to the latest release, 23.5, released July 1. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Enhancements</h3>\n\n\n\n<p class=\"wp-block-paragraph\">I think the first thing we wanted to highlight was that the design system token defaults now with out a runtime which practically, as far as I understand it correctly, helps that all the styling from the design system is just there by default. There’s nothing that got missed. Is that correct? Yeah, because it happened before that some design elements were in style.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Exactly. Yeah. It’s now available as public export. That’s pretty much so you can use it in your own apps that you put into apps. I say it’s also called plugin, so you can use it without having to import it into your plugin via NPM and these kinds of things via the build process. So you can just import it into your app here. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But I also want to point out again the match proposal for the design system. Everything there is kind of in a holistic way explained and also what it’s supposed to come to. And these are all plenty of the component work that’s done for 23.5 and released or merged is actually in support of the design system and the UI revamp of the components.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think about the block library. And we have a few other updates in the release. The first one is that the viewport states and the controls are now support for they supporting aspect ratio and all the related controls with that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> So I think yeah, it’s part of the styling system. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> For image blocks featured image block media library also no, no background images. A background cover image and cover block, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: Also yeah, okay, that’s the viewport states is the name that they give the responsive editing screens. So those controls are now also available. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There’s also a line item in the block library section of the changelog about the classic block to hide it from the inserter that has been reverted. That’s part of the blog post that I mentioned earlier that was published after the release of 23.4, so I wanted to point that out. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The next one is that the media editor modal is now available also for the cover block that comes with that. I think I mentioned that already. But now when you have a cover block with an image, you can also use the media editor modal to crop it, to rotate it, to tilt it and all that kind of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> That’s a nice add on small but also visually really nice to have is that the icon block now has controls for flip and rotate the icons, which is very nice to have like a. One of the things you like kind of expect to be able to do and then it’s super difficult. So now you can do that. And then it also. What is the second one about?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, it just adds a default placeholder instead of to the blockchain.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah. So there was also a big push to have text alignment support for some of the text blocks. And now the block quote. I think there were seven or eight blocks that have that again. This time there was missing text align support and that has been rectified. So now you have also text align support for the block quote. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yeah, that was one thing that threw me quite a bit and quite often I always went back to the quotes block. But a quote block and a pull quote have different use cases and a pull plot is an excerpt from the article and you couldn’t make it not centered. It was kind of odd that you couldn’t left align it. Which is my favorite. Yeah. Centered when you have more than one word in the center, you hardly can read it. Or more than one line. Yeah. So I always wanted to be left aligned and I can’t quote just a sentence. Yeah. So I’m really great that they have a text aligned support now that makes sense.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> It’s these little things that kind of throw you, throw you off if you don’t have them and you’re like, why can’t I then? I think one of the biggest things in this release is that the resizable editor now it’s like fully resizable. You can drag it along. It’s not just mobile, tablet, desktop, you can get your own size and preview it. I think this is one of the biggest releases in this. In this update 23.5. So can you do anything else? You can resize it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Birgit Pauli-Haack: Yeah, yeah. It has a handle though. You can resize it. So you have a handle to make it smaller but not as small as mobile. So you can see if. If somebody uses a tablet whatever and odd width you can kind of test it if, if your settings actually work there or your. If the. The layout is there. But you cannot change the viewports themselves. Yeah. They are not customizable. It’s just so you can see the preview there. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Which is very helpful like visually.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. Especially when you get a call and you don’t have that device on hand. Yeah. That a client sees or a client has a complaint from their clients that something is wrong on the view. You can just kind of tested in the block editor without having the device on hand. </p>\n\n\n\n<p class=\"wp-block-paragraph\">But there is a long standing request to be able to change the viewport numbers and because right now they are hard coded to I think 768 is the desktop and then 467. Yeah. 468 is the tablet and or between there is tablet and then below is the mobile. But there is good news. There is coming with 23.6. It’s already merged is in PR where you can change that via the theme JSON. So theme developers are now able to change viewport numbers for their sites. There is no UI yet for it. But that’s typical. That theme JSON is first. So theme developers can test it out and can actually use it. But for the UI you need a little bit more information how things are going and how users would work with it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> And there’s also been a smaller change on. If you add a note that just. It’s simplified how the show more or less collapse works. If you have a long note you want to collapse it and show more or less. I think that just has been reworked or simplified.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I don’t think it’s anything we see on the user side. Right. It’s more in the background. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It’s just faster. Yeah. It’s kind of that. Okay. Mostly performance issue. Yeah. You’ll see a slight change there. </p>\n\n\n\n<p class=\"wp-block-paragraph\">There is the experiment of the omnipresent toolbar which is pretty much the admin bar. In the editors you see the admin bar, the black admin bar on top of the screen when you’re logged in and you look at your website from that perspective and you also in the post editor you see the black toolbar but you couldn’t in the site editor or in the other editors. So now the experiment is to show it but then also unify the interface because the design view or the site editor has its own W to go back to the other admin. And when it’s in the admin bar you just click where you normally click to get to the site. So it’s all unification of the interface pretty much. And now you can see the site icon instead of the dash icon if you select it as well in the toolbar. So there has been an ongoing effort and some of it might come to 7.1. It’s on the roadmap for the admin bar everywhere, so to speak.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think one thing that I remember I struggled with quite a lot is the flex behavior of children. So now there has been.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> You mean your child? Well, it’s not the flexibility of toddlers.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Ellen Bauer: The Flex elements. I love flexbox CSS always have. But I think we always had a problem that they weren’t behaving like exactly like CSS. Flexbox should behave. So now one of the changes has been that so flex children that had a fixed width, this is now like truly fixed. I think it was squishable before. Can you say that? Is that correct? And now it’s like a truly fixed width to zero. So I think that’s one of the things visually that helps a lot. And then the other one was grid layouts now have fill available space, toggle. Is that correct? I think it’s just a toggle in the settings. Right. That you can toggle on and off and then you have auto fill and auto fit behavior. Okay. And this behaves exactly like CSS grid behavior.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, you would expect. Yeah, that’s pretty nice. There was some. Some quirkiness to the grid block and the grid layouts and I’m glad that Isabella is working on that constantly to improve it and to get back to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, she’s doing great work. I met her live at WordCamp Asia this year and it was really pleasant because I love flexbox Grid. I always love these blocks and CSS settings and they never quite worked. How I or like went into that depth, I wish they had. And yeah, she’s. I think, like, she has the same opinions, so it was a good chat. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Another thing that is kind of cool and fun to have is that now global styles allow text shadow settings. So, yeah, there’s these options of text shadow, if you ever want to use that in like a cool, fun design or. So now you can set it in global styles, which is really cool. That wasn’t possible before at all, I believe. Right?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Right.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack</em>: It’s a new style support.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I really like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, I tested it and it’s really nice. There are some presets in there that come from core, and I still need to figure out or find out how you can switch off some of the styles and how you can add your own styles like you can do with the shadow box. The shadow box has a feature that you can switch out the core styles with your own styles or just switch them off, but you definitely would need that for the texture as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Maybe we will add that.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, it’s not there. It’s the first version and the first version is pretty much a minimal viable kind of setup. Yeah. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The next thing is again Media Editor modal. It now has some error states. You can magnify the crop to fill the canvas and the current post always includes the initial options. There are also minor fixes, but that is because it gets ready for 7.1 release. So every aspect of it is actually and comes from feedback from the call for testing. The call for testing was actually already issued in I think in May. So it’s already a month in or two months in. So there is already some feedback coming back. </p>\n\n\n\n<p class=\"wp-block-paragraph\">The data layer has a feature for the real time collaboration or many features, but one of them stands out is that you can disable collaboration per post. So if you have maybe a recipe or a book post type and you don’t want anybody to collaborate with you on that, you can switch that off. It’s probably best for very visual post types or it’s also necessary for template parts or for navigation. Those are also post types. You can control that now. </p>\n\n\n\n<p class=\"wp-block-paragraph\">So there was a for a while in the text controls there was a prop to have the next 40px default size and there was underscore. Underscore was an experimental property and that now has been made the default. So if you had a 36 before or 32 on the default size for the text box, then if you wanted to be in the same realm as WordPress itself, you had to use the underscore next 40px default size prop to have the same sizes of the controls and now those are default now. So you don’t have to do this experimental prop to use but it will change how things work. So you might want to, as a theme developer or a plugin developer, you probably want to check your plugins, your text control components, how they change behavior or at least the default layout. So that’s why I’m calling that out here in the episode. </p>\n\n\n\n<p class=\"wp-block-paragraph\">And also a similar thing is known that 23.6 Gutenberg 23.5 bumps. The minimum required version to install the Gutenberg plugin is now 6.94 versions 23.5 and newer. So if you are on 6.7 or 6.8, you are not getting the newest version of the Gutenberg plugin. So I think. Oh, there’s one more. Did I overlook something?</p>\n\n\n\n<h3 class=\"wp-block-heading\">Performance</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> No, I think on performance you highlighted that blocks migrate markdown converter from showdown to marked. And what does that do?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It actually is just performed faster. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Oh, yeah. Okay.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> And it also has a different parser, so it might have a say. It’s G. What’s it called? GTM. There is a standard for markdown that comes from GitHub and it now adheres to that standard. Yeah. So that’s updated. It’s a minimum change most people wouldn’t even need to do. But if you copy paste something from GitHub or from other Markdown editors or from your AI agent, it’s a different parsing process.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I just researched that and it said that the previous one was like from 2018 or so and this is just like a faster newer version that we updated to. Okay, that makes sense. </p>\n\n\n\n<h3 class=\"wp-block-heading\">Experiments</h3>\n\n\n\n<p class=\"wp-block-paragraph\">And then there was one last highlighted thing on the block library unwrapping. Classic block migration notice experiment.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, that’s part of the effort to the classic logic. But that has also been reverted so it will not announce that this is deprecated. So it’s important to know that that line item in the change log has been overwritten already with a newer version that comes to 23.6 on July 22.</p>\n\n\n\n<h3 class=\"wp-block-heading\">Various</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> And there was another small update on icons to self declare icons color on the icons block.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, nice. Yeah, I overlooked that. I got lost in the changelog already. So.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I mean there were a lot of these smaller things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh yeah. So if you have an icon, it can say I’m. I’m only in blue or something like that. What does it mean, the current color?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Oh, current color. Yeah, of course. Duh. Yeah. I was still stuck on tab sync finally second the tab sync because it’s the. For stabilizing it to come into 7.1. The tabs block is still under active development until July 14, so don’t start building on it yet because there’s API cleanup and refactoring going on where the contributors try to nail down the final version before it gets into core. Yeah, that’s the end of it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Wow.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah, we still had a lot to talk about, Ellen. Yeah. So apart from the responsive styling, are you excited about some things that come to 7.1 in the near future?</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think for me, being like a Visual X thing builder or and working on blocks, I think responsiveness is a big one and I’m excited to see how. Yeah. How we just kind of improve things. Also, I like that we are looking more into the dashboard and finding ways to unify the experience. I think this is one of the things that always come up that it looks kind of like two different versions, partly outdated. And I think we need to move along and kind of come to maybe not make everyone happy, of course, but come to a compromise that we can all live with and then move forward. I think this would really help WordPress to kind of shine in a way that it doesn’t look outdated or not like one product. I think if we can come together and do that and push for that change, that would be really, really helpful for all of us and for everyone and for WordPress. So I’m excited to contribute and help to make this happen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Awesome. Awesome. Yeah. Yeah. I like the new blocks that are coming. Of course. I have been a fan of blocks since the beginning of the block editor, so I like that the playlist block and the TAMS block. And finally. The table of content. There is an effort to actually have the table of content come to WordPress. Right now. It’s only available for years in the Gutenberg plugin.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I didn’t even know. I thought it would be in.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Even small things like rotating icons and stuff like that or having them be the current color and all these grid and Flexbox things. They. We need these things. I think it’s still very, very important to have professional settings like that available.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah. And this is a visual person. You’re probably also happy that you now can have in the group block. Background gradients. Gradients. We all love gradients. I love gradients. I love gradients. Yeah. And there’s these kinds of things.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> They’re like, why aren’t they there? And so responsiveness. And I think just of kind of growing up Gutenberg and the editing experience.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Seems. And even like with AI helping on a lot of things and being able to patch CSS and stuff on onto things to make things better that we don’t have. I think it’s still important that we aim for a really high quality experience in manual editing so people find what they’re looking for and are not frustrated or get lost. I think that’s just the quality we want to stand for and have in WordPress no matter what.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> I think the standard should like, should be. We aim. Should aim for that as being just there for people, for users.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> I think we. We develop, as I say. Yeah. Are kind of really immersed in this AI grace and hype and also the possibilities and the usefulness of AI in our work. There is a danger that we forget that WordPress users that are writers or publishers actually are not using AI to do their work on WordPress. So we definitely need a delightful interface and all these small changes, quality of life changes and the big changes like the responsive editing and the dynamic galleries and whatever is going to come. The modal editor, the media editor needs to be delightful and useful for humans that are kind of having fun and producing more content for the Internet that is kind of. Yeah. Eating it whole, so to speak, with AI.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yeah, yeah, I love that too. Delightful is a beautiful word to use. Yeah. We want to delight people using WordPress and this should be our aim. AI or not, like in whatever. We have to meet users wherever they are, however they want to use the tool. It shouldn’t be, oh, we can leave this stuff now because everyone uses AI. I think if we have a user interface, it would be delightful. If it’s not yet delightful, we have to make it delightful. And AI can only help us to do that because we can contribute faster, we can move things faster. So let’s use AI for that, to delight users to meet them wherever they are for everything we offer, and we do offer a user interface. So here we are with some work to do.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haac</em>k: I think that’s a good end of the show today. Thank you so much, Ellen, to be on the show and walk with me through those changes that are coming and if people want to reach you, how is a good way to reach out to you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> So I am in the community Slack WordPress community Slack. I’m also on social media, not that active to be fair, but reachable anytime. I think for WordPress community, the community Slack is the best place to reach me. But if you look at my name, Ellen Bauer, you can find me online on all kinds of platforms and I’m oh, I’m actually revamping my Manu and my Little Elmo Studio blog. So there’s going to be a new design and I’m really excited to get blogging again. Also doing a lot more like a few more YouTube videos. I have some ideas for that over the summer month now. So, so wonderful. Yeah, I will share if I have some news on that. Look out for Ellen or Elmer Studio and just reach out anywhere.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Excellent.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Yes, I’m always excited to hear from you.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> Wonderful. Thank you so much, Ellen.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Thank you for having me. Birget, you’re welcome to be on the show.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Birgit Pauli-Haack:</em> It’s delightful to have you to overuse that word. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, dear listeners, the show notes will be published on GutenbergTimes.com podcast this is number 132, 132. And if you have questions and suggestions or news you want us to include, send them to <a href=\"http://changelogudenbergtimes.com\">changelog@gutenbergtimes.com</a> that’s <a href=\"http://changelogutenbergtimes.com\">changelog@gutenbergtimes.com</a> thank you all for listening. And until the next time, goodbye.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Ellen Bauer:</em> Bye.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 12 Jul 2026 10:57:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Gutenberg Changelog\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:37;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:116:\"Gutenberg Times: Roadmap 7.1, Gutenberg 23.5, Responsive Styling, Migration to Block themes — Weekend Edition #368\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=45946\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:119:\"https://gutenbergtimes.com/roadmap-7-1-gutenberg-23-5-responsive-styling-migration-to-block-themes-weekend-edition-368/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:24996:\"<p class=\"wp-block-paragraph\">Hi there, </p>\n\n\n\n<p class=\"wp-block-paragraph\">After a four-week break — courtesy of a sciatic nerve with strong opinions — I’m happy to be back in by office chair and in your inbox. There is plenty to catch up on. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Beyond the updates on the new WordPress and Gutenberg versions, you’ll find stories below from WordPress veterans on migrating to and working with block themes on client sites and dive into more complex theme solutions or </p>\n\n\n\n<p class=\"wp-block-paragraph\">Don’t let me keep you from your light summer reading. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Have a splendid weekend ahead! </p>\n\n\n\n<p class=\"wp-block-paragraph\">Yours, <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f495.png\" style=\"height: 1em;\" /><br /><em>Birgit</em></p>\n\n\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-word-press-release-information\">Developing Gutenberg and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The team around release lead Aaron Jorbin pushed <a href=\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\">WordPress 7.0.1 Maintenance release </a>out the door to update millions of WordPress sites. The update covers 17 Trac tickets and 14 Gutenberg PRs. The full list is available in the <a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">RC 1 announcement post </a>from last week. </p>\n\n\n\n<p class=\"wp-block-paragraph\">In <a href=\"https://gutenbergtimes.com/wordpress-7-0-1-fixes-registration-spam-wp_kses-css-corruption-and-7-0-admin-design-glitches/\"><strong>WordPress 7.0.1 Fixes Registration Spam, wp_kses() CSS Corruption, and 7.0 Admin Design Glitches</strong>,</a> I cover the most important fixes for end users and developers of this release. You’ll learn how the registration-spam loophole got closed, which admin design glitches were sanded off, and why developers can finally remove their <code>wp_kses()</code> CSS workarounds. Update your sites soon if auto-updates aren’t enabled. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Ryan Welcher</strong> compiled <a href=\"https://developer.wordpress.org/news/2026/07/whats-new-for-developers-july-2026/\"><strong>What’s new for developers (July 2026)</strong></a>, and it’s all about the 7.1 cycle getting real: Beta 1 lands July 15, final release August 19 at WordCamp US. You’ll want to test responsive styling, the React 19 runtime flag, and Unicode email addresses now. Also on your radar: merge proposals for Core Abilities and Guidelines, the 40px component default, icons inheriting color, and Playground’s MCP support.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<div class=\"wp-block-group has-light-background-background-color has-background\"><div class=\"wp-block-group__inner-container is-layout-constrained wp-block-group-is-layout-constrained\">\n<p class=\"wp-block-paragraph\"><img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f399.png\" style=\"height: 1em;\" /> The latest episode is <a href=\"https://gutenbergtimes.com/podcast/gutenberg-changelog-132/\">Gutenberg Changelog #132 – Proposals for Core, Calls for Testing, WordPress 7.1 and Gutenberg 23.4 and 23.5</a></p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-46077\" height=\"183\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17-edited-1.png?resize=652%2C183&ssl=1\" width=\"652\" /></figure>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-rich is-provider-pocket-casts wp-block-embed-pocket-casts\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div></div></div>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Berislav “Bero” Grgičak</strong> announced <a href=\"https://make.wordpress.org/core/2026/07/01/whats-new-in-gutenberg-23-5-july-1-2026/\">what’s new in Gutenberg 23.5</a>, released July 1. The headliner: you can now drag the editor canvas to any width, with the device preview dropdown and resize handles working together for responsive editing. The experimental Media editor gains a magnified crop canvas, pixel-snapping handles, and Cover block support. Also notable: text shadows in Global Styles, flip and rotate controls for the Icon block, and a minimum WordPress version bump to 6.9.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">For the next episode of the Gutenberg Changelog, I sat down with <strong>Ellen Bauer </strong>to chat about what’s coming next for WordPress. We dug into the latest Gutenberg plugin releases (23.4 and 23.5) and the recent WordPress 7.1 update. Plus, we walked through some big merge proposal, like the Design System Theming. our excitement around responsive styling coming to WordPress. It’s a packed episode full of news you won’t want to miss! The episode will land in your favorite podcast app over the weekend.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img alt=\"\" class=\"wp-image-45996\" height=\"194\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2026/07/Screenshot-2026-07-10-at-10.56.17.png?resize=652%2C194&ssl=1\" width=\"652\" /></figure>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<h3 class=\"wp-block-heading\" id=\"wordpress-7-1-roadmap-and-more-calls-for-testing\">WordPress 7.1 roadmap and more calls for testing</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne McCarthy</strong> published <a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\">Roadmap to WordPress 7.1</a>., scheduled for August 19, 2026. Longstanding styling gaps are being tackled: responsive styling and interactive-state styling let you adjust blocks per viewport or on hover — no custom CSS required. You’ll also find new Playlist, Table of Contents, and Tabs blocks, a smarter command palette, a Design → Identity screen, the admin bar inside the editors, a media editor modal, and expanded Unicode support for email addresses.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Also mentioned Real-time collaboration, Knowledge Guidelines, React 19 upgrade, Classic block deprecation have been punted since the posts came out. Beta 1 arrives July 15 and will settle which of the other Roadmap features are in and which will be punted to a future release.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\">The latest Weekend Edition<a href=\"https://gutenbergtimes.com/calls-for-testing-gutenberg-23-3-block-mcp-weekend-edition-367/#calls-for-testing-for-wordpress-7-1\"> listed three calls for testing</a>. Meanwhile, two more came online:</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Nikunj Hatkar</strong>, this year’s team rep of the Core Test team, posted a <a href=\"https://make.wordpress.org/test/2026/07/03/call-for-testing-responsive-styling/\">call for testing responsive styling</a>. You’ll be able to style blocks differently for tablet and mobile right in the editor — no custom CSS or media queries needed. The underlying PR unifies the resizable canvas with the device-preview switcher. Fire up the linked WordPress Playground instance, walk through the four test scenarios, and share what feels intuitive or broken. Plugin and theme developers should test their canvas integrations, too.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dennis Snell</strong> published a <a href=\"https://make.wordpress.org/core/2026/06/10/call-for-testing-unicode-email-addresses/\">call for testing Unicode email addresses</a>. With initial support merged, <code>is_email()</code> and <code>sanitize_email()</code> now accepting non-ASCII addresses like <code>grå@grå.org</code>, and validation aligns with the <a href=\"https://html.spec.whatwg.org/multipage/input.html#valid-e-mail-address\"><em>Web Hypertext Application Technology Working Group</em> (WHATWG) spec.</a> You’ll want to check your plugins and themes: the new <code>WP_Email_Address</code> class gives you structured access to local and domain parts, and a snippet lets you disable Unicode support until third-party integrations catch up.</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"three-merge-proposals\">Three Merge Proposals </h3>\n\n\n\n<p class=\"wp-block-paragraph\">Core contributors put together three merge proposal for new features to be added to Core for public comment. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jorge Costa</strong> published a <strong><a href=\"https://make.wordpress.org/core/2026/07/02/merge-proposal-expanding-wordpress-core-abilities/\">merge proposal to expand WordPress Core Abilities</a> </strong>in WordPress, adding three read-only abilities covering settings, content, and users. Building on the Abilities API from 6.9, they give the AI Client real tools to call, so agents can understand your site’s configuration, posts, and people. Settings and post types opt in through a dedicated flag, and management abilities are planned for a later WordPress version. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Greg Ziółkowski</strong> published a <a href=\"https://make.wordpress.org/core/2026/06/22/merge-proposal-guidelines-built-on-knowledge/\"><strong>merge proposal for Guidelines built on Knowledge</strong></a>, a new custom post type headed for WordPress 7.1. Knowledge gives your site one shared home for standards, memories, and notes — with revisions, capabilities, and REST access built in. Guidelines is the first feature on top, letting you capture voice, tone, and per-block rules right where writing happens. Although, originally aimed at WordPress 7.1, in their l<a href=\"https://make.wordpress.org/core/2026/06/22/merge-proposal-guidelines-built-on-knowledge/#comment-49029\">atest comment, Anne McCarthy indicated</a> that it needs to simmer some more before it’s considered for inclusion in WordPress Core. </p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Andrew Duthie</strong> published a <a href=\"https://make.wordpress.org/core/2026/07/07/merge-proposal-design-system-theming/\"><strong>merge proposal for Design System Theming</strong></a>, bringing design tokens and a new theme component to WordPress. Built by the Gutenberg Components Team, it turns hard-coded admin styles into CSS custom properties, so your plugins and screens stay consistent and accessible. A color ramp tool generates harmonious, accessible scales from just two seed colors, and the user color scheme reaches the Site Editor — with dark mode on the horizon. </p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"0-p\">Plugins, Themes, and Tools for #nocode site builders and owners</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Anne Katzeff </strong>published a tutorial <strong><a href=\"https://www.askdesign.biz/blog/2026/05/exploring-the-wordpress-cover-block-parallax-scroll/\">exploring the WordPress Cover Block for parallax scrolls</a>. </strong>You’ll learn how the Fixed Background setting turns a Cover block into a layered parallax effect — background, middle ground, and foreground text moving at different speeds. The post steps through nesting a second Cover block, switching which layer scrolls, and improving text readability with grouped backgrounds. A video tutorial rounds it out. She also demos her process in <a href=\"https://www.youtube.com/watch?v=dux016qIXSM\">this YouTube video</a>. </p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Carrie Dils </strong>shared a case study, <a href=\"https://carriedils.com/one-header-two-themes/\"><strong>One Header, Two Themes</strong></a>, on phasing a legacy Elementor site toward Full Site Editing without a rebuild or content freeze. Using ThemeSwitcher Pro to run two themes side-by-side, she built one shared header in a plugin that both themes render. You’ll learn from five real-world snags — WooCommerce’s hooked blocks, cascade conflicts, routing gaps, query-string bypasses — and why shipping the shared layer first de-risks everything after.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Gina Lucia</strong> compared <a href=\"https://olliewp.com/wordpress-theme-vs-page-builder/\"><strong>WordPress block themes vs page builders</strong></a> on the <em>Ollie</em> blog. You’ll get a clear-eyed walkthrough of what classic themes, page builders, and block themes each handle — scope, design control, performance, lock-in, and maintenance — with side-by-side tables. Her conclusion: block themes combine sitewide design control with visual editing natively, so you rarely need a page builder anymore, though migration costs and team habits can justify keeping one.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Elliott Richmond</strong> explained <strong><a href=\"https://elliottrichmond.co.uk/why-i-spent-16-months-turning-400-holiday-cottages-into-wordpress-blocks/\">why he spent 16 months turning 400+ holiday cottages into WordPress blocks</a>.</strong> The kate & tom’s site moved from ACF flexible content to a native block theme, freeing the marketing team from waiting on custom widgets. You’ll appreciate his candor: 10,590 widgets migrated via a purpose-built plugin, re-run against fresh production snapshots, with flaky conversions fixed by hand. Even untuned, PageSpeed jumped from 22 to 67.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Wes Theron</strong> published a video tutorial, <strong><a href=\"https://www.youtube.com/watch?v=OFRAPMPQMeA\">How to Create and Edit Navigation Menus in WordPress</a>,</strong> for anyone getting comfortable with block themes. In under ten minutes, you’ll learn how to edit your menu with the Navigation block, add pages, posts, categories, and custom links, and build dropdown menus. Timestamps let you jump straight to the part you need — handy if dropdowns are the only thing standing between you and a finished header.</p>\n\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\">\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-4-3 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\n</div>\n\n\n<h2 class=\"wp-block-heading\" id=\"2-word-press-6-0-1-and-6-1-scheduled\">Theme Development for Full Site Editing and Blocks</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Henrique Iamarino</strong> shared how the Automattic Design team <a href=\"https://automattic.design/2026/07/09/build-a-wordpress-theme-without-ever-opening-figma/\"><strong>built a WordPress theme without ever opening Figma</strong></a>. You’ll follow the making of Crafted, a production-ready theme created almost entirely in the WordPress Editor: Global Styles for typography and spacing, <a href=\"https://wordpress.org/plugins/create-block-theme/\">Create Block Theme</a> to save edits to theme files, WordPress Studio for local review, and an AI assistant for finishing-touch hover CSS. His takeaway: the Editor is now a professional design surface.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Justin Tadlock</strong> explained <a href=\"https://developer.wordpress.org/news/2026/06/dynamically-loading-template-parts-in-block-themes/\"><strong>how to dynamically load template parts in block themes</strong></a> on the Developer Blog. Instead of maintaining a pile of near-identical templates, you can hook into the <code>render_block_data</code> filter and swap a template part’s slug on the fly — say, a different sidebar per post category. His walkthrough covers early returns, fallback behavior, and file setup, and the technique works for headers, footers, and banners, too.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n<div class=\"ng-block-ae3ff46ab9115b68 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #fdfcea; border-radius: 12px;\"><div class=\"ng-block-55e01a2aedef0542 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong> <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/\" rel=\"noreferrer noopener\" target=\"_blank\">“Keeping up with Gutenberg – Index 2026”</a> </strong><br />A chronological list of the WordPress Make Blog posts from various teams involved in Gutenberg development: Design, Theme Review Team, Core Editor, Core JS, Core CSS, Test, and Meta team from Jan. 2024 on. Updated by yours truly. </p></div></div></div></div>\n\n<div class=\"ng-block-69ba478078eb907e wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>The previous years are also available: <br /><strong><strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2020/\">2020</a> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2021/\">2021</a></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/keeping-up-with-gutenberg-index-2022/\">2022</a></strong></strong> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2023\">2023</a></strong> | <a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2024/\"><strong>2024</strong></a> | <strong><a href=\"https://make.wordpress.org/core/handbook/references/keeping-up-with-gutenberg-index/gutenberg-index-2025/\">2025</a></strong></p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<h2 class=\"wp-block-heading\" id=\"ai-and-wordpress\">AI and WordPress</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Jeff Paul</strong> announced <strong><a href=\"https://make.wordpress.org/ai/2026/07/08/whats-new-in-ai-1-1-0/\">what’s new in AI 1.1.0</a>,</strong> the latest release of the canonical AI plugin. Two experiments headline, <code>type-ahead text</code> suggests inline ghost text as you write in the block editor, and <code>key encryption</code> secures your AI Connector API keys in the database. You’ll also find smarter content readiness checks with locale-aware counting, more control over guest comment moderation, a new <code>core/read-settings</code> Ability, and a peek at 1.2.0 plans.</p>\n\n\n<div class=\"ng-block-c15ed0c6f71b1591 wp-block-newsletterglue-container ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div class=\"ng-block-vs ng-block-vs-1\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div><div><div class=\"ng-block-hs ng-block-hs-1\" height=\"0\" style=\"width: 0px;\"></div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 20px; padding-bottom: 20px; padding-left: 0px; padding-right: 0px; text-align: none; color: #666666; background-color: #f8f8f8; border-radius: 8px;\"><div class=\"ng-block-807d09b34afdd7d7 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong><a href=\"https://gutenbergtimes.com/need-a-zip-from-master/\">Need a plugin .zip from Gutenberg’s master branch?</a></strong><br />Gutenberg Times provides daily build for testing and review.</p></div></div></div></div>\n\n<div class=\"ng-block-f37df81271bc8fed wp-block-newsletterglue-image ng-block size-full is-resized\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 0px; padding-bottom: 0px; padding-left: 0px; padding-right: 0px;\"><a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\"><img alt=\"\" class=\"wp-image-42874 ng-image\" height=\"45\" src=\"https://i0.wp.com/gutenbergtimes.com/wp-content/uploads/2024/02/Screenshot-2025-11-15-at-12.06.44.png?resize=196%2C45&ssl=1\" style=\"border-style: none; border-color: transparent;\" width=\"196\" /></a></div></div></div></div>\n\n<div class=\"ng-block-e57f40f8cb2177d2 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 16px; font-family: Helvetica; line-height: 1.6; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p>Now also available via <a href=\"https://playground.wordpress.net/?blueprint-url=https://gutenbergtimes.com/wp-content/uploads/2020/11/playnightly.json\">WordPress Playground</a>. There is no need for a test site locally or on a server. Have you been using it? <a href=\"mailto:pauli@gutenbergtimes.com\">Email me </a>with your experience.</p></div></div></div></div></div><div class=\"ng-block-hs ng-block-hs-2\" height=\"0\" style=\"width: 0px;\"></div></div><div><div class=\"ng-block-vs ng-block-vs-2\" colspan=\"3\" height=\"0\" style=\"height: 0px;\"></div></div></div></div>\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\"><em>Questions? Suggestions? Ideas? </em><br /><em>Don’t hesitate to send <a href=\"mailto:pauli@gutenbergtimes.com\">them via email</a> or</em><br /><em> send me a message on WordPress Slack or Twitter @bph</em>.</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-center has-small-font-size wp-block-paragraph\">For questions to be answered on the <a href=\"http://gutenbergtimes.com/podcast\">Gutenberg Changelog</a>, <br />send them to <a href=\"mailto:changelog@gutenbergtimes.com\">changelog@gutenbergtimes.com</a></p>\n\n\n<div class=\"ng-block-85167baa1fb345bc wp-block-newsletterglue-separator ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"center\" class=\"ng-block-td\" style=\"padding-top: 20px; padding-bottom: 20px; padding-left: 20px; padding-right: 20px; color: #666666;\"><hr style=\"background-color: transparent; color: transparent; margin: 0; border: 0; border-top: 1px solid #666666; width: 560px; height: 0;\" /></div></div></div></div>\n\n<div class=\"wp-block-newsletterglue-showhide ng-block\" width=\"100%\"><div class=\"ng-block-1ccdd1c95f9ff291 wp-block-newsletterglue-text ng-block\" style=\"color: #666666;\" width=\"100%\"><div><div><div align=\"none\" class=\"ng-block-td\" style=\"font-size: 14px; font-family: Helvetica; line-height: 0.2; font-weight: normal; padding-top: 8px; padding-bottom: 10px; padding-left: 20px; padding-right: 20px; text-align: none; color: #666666;\"><p><strong>Featured Image: </strong></p></div></div></div></div></div>\n\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity is-style-wide\" />\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sat, 11 Jul 2026 01:37:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:38;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:101:\"Open Channels FM: The Real Challenge of Technological Solutions: Exclusion in the Age of Verification\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556720\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:107:\"https://openchannels.fm/the-real-challenge-of-technological-solutions-exclusion-in-the-age-of-verification/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:419:\"David Snead, director of the Secure Hosting Alliance and a long-time Internet policy leader, shares his perspective on the complexities that emerge when technological solutions like age verification are implemented in the digital infrastructure space. Dave’s reflection highlights how the push for more secure, regulated environments can unintentionally create barriers for vulnerable or less tech-savvy […]\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2026 14:34:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:39;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"Dennis Snell: See DATA, CDATA, RCDATA, and PCDATA oh my!\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:36:\"https://fluffyandflakey.blog/?p=3943\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:79:\"https://fluffyandflakey.blog/2026/07/10/see-data-cdata-rcdata-and-pcdata-oh-my/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:30966:\"<p class=\"wp-block-paragraph\">HTML and XML are markup languages based on plaintext files. This means that any given character <em>could</em> be part of a syntax form (a tag, a comment, a character reference, etc…) <em>or</em> it could be representing itself the way it reads in the file literally.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-html\"><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">tag</span><span class=\"tok-punctuation\">></span><span class=\"tok-string\">&middot;</span> Text node<span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">tag</span><span class=\"tok-punctuation\">></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">Whenever a character might be ambiguous, both languages require explicit indication of the intent of the character. In HTML this occurs via <em>escaping</em>, while XML allows escaping <em>or</em> wrapping the content in a <em>marked section</em>, specifically a <code>CDATA section</code>.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><span class=\"tok-string\">&lt;</span>tag<span class=\"tok-string\">&gt;</span></div><div class=\"cm-line\"><span class=\"tok-string2\"><![CDATA[<tag>· Text node</tag>]]></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">These terms confuse me at times, especially since <code>CDATA</code> and <code>CDATA sections</code> are distinct forms of the same content, and it’s easy to conflate each term. This post is here to disambiguate the terms, their meanings, and why they exist.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#summary\">The punchline comes at the end</a>, but the story is hopefully worth the read.</p>\n\n\n\n<span id=\"more-3943\"></span>\n\n\n\n<h2 class=\"wp-block-heading\">Markup and mixed content</h2>\n\n\n\n<p class=\"wp-block-paragraph\">One of the first jobs of a parser for any plaintext-oriented format is to determine if the next input character represents real text or is part of a syntax form that carries special meaning. If it’s a syntax form we would call it <em>markup</em>, but if the characters are part of real text meant for display or rendering or reading then we call it <em>data</em>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Anything that is not syntax is data.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The interpretation of the next character depends on the region of the document in which it’s parsed. While the rules for syntax forms are complicated<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#0ba56e66-ab0f-4fbd-93d2-df22a6984fd7\" id=\"0ba56e66-ab0f-4fbd-93d2-df22a6984fd7-link\">1</a></sup>, this post will focus on the data forms.</p>\n\n\n\n<h3 class=\"wp-block-heading\">PCDATA — “parsed character data”</h3>\n\n\n\n<p class=\"is-style-plain wp-block-paragraph\"><em>May form: tags, comments, sections, character references, literal text.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">Characters in this region could be data or could form the start of a new markup element. It’s “parsed” because it needs parsing before determining what it represents.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The HTML specification renames this to <code>Data</code>, which is simpler and a bit harder to search for. In XML, however, it’s used in a document-type definition (DTD). When an element may contain content — text — its data model must include <code>#PCDATA</code>. Otherwise the only characters allowable within that element are other elements, comments, and whitespace. XML documents are required to be valid SGML documents, so its own specification adopts the terminology from SGML’s.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Those who have worked with DTDs might note that <em>elements</em> in XML may contain <code>#PCDATA</code> while <em>attributes</em> contain <code>CDATA</code> instead. First of all, the <code>#</code> is there only to make it explicit that <code>PCDATA</code> is referring to the reserved keyword, rather than a <code><pcdata></code> element. Secondly, there’s a good reason for this, which is that attributes can only contain text — they can’t contain other elements of markup. If an attribute value could contain a <code><span></code> element, for example, then the attribute value would need to be <code>#PCDATA</code> instead, but this is prevented by design.</p>\n\n\n\n<p class=\"wp-block-paragraph\">PCDATA actually contains more than just literal text and elements. In addition to comments, processing instructions, and other node-like syntax, one important feature of PCDATA is the <em>character reference</em>. These make it possible to represent characters that would conflate with syntax (such as ‘<code><</code>’ — <code>&lt;</code>) or which might be cumbersome to enter on a keyboard (such as ‘§’ — <code>&sect;</code>). When parsing, each character in these sequences neither creates an element nor displays as the text itself; rather, the entire sequence is parsed and translates into the character it refers to.</p>\n\n\n\n<p class=\"wp-block-paragraph\">HTML pre-specifies <a href=\"https://github.com/w3c/html/blob/master/entities.json\">a fixed set of named character references</a>, but any Unicode code point may be referenced by its decimal or hexadecimal numeric index. While XML also allows referencing code points by their index<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6d3de5b9-f8a6-4f46-853b-3d407731feca\" id=\"6d3de5b9-f8a6-4f46-853b-3d407731feca-link\">2</a></sup>, it only pre-specifies the five named characters which correspond to its main markup introducers: <code><</code>, <code>></code>, <code>&</code>, <code>\'</code>, and <code>\"</code>. In XML, any additional named character references are created through the DTD by defining <em>entities</em>.</p>\n\n\n\n<h3 class=\"wp-block-heading\"> CDATA — “character data”</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>May form: [character references], literal text.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">If a character isn’t markup, then it’s <em>character data</em>, which means that it’s representing its literal self or it’s part of a <em>character reference</em>. Once the parser has entered this region it will not create markup elements.</p>\n\n\n\n<p class=\"wp-block-paragraph\">CDATA is the most confusable kind of character data; this is because there are many kinds of CDATA that share the same name:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>XML attributes may contain CDATA, where character references are decoded.</li>\n\n\n\n<li>XML CDATA sections only contain CDATA, but character references are not decoded.</li>\n\n\n\n<li>HTML <em>kind of</em> has the same CDATA sections, but only in <em>foreign elements</em> (inlined SVG and MathML elements).</li>\n\n\n\n<li>SGML elements may be declared to have a CDATA content model, in which case all content until the appropriate closing tag is to be parsed as character data, where character references are not decoded.</li>\n</ul>\n\n\n\n<h4 class=\"wp-block-heading\">CDATA sections contain only literal text</h4>\n\n\n\n<p class=\"wp-block-paragraph\">Many people are familiar with <code>CDATA sections</code>, but it took me far longer to understand them than my intuition led on. They are the vestige of SGML “marked regions” which tell the parser to handle a specific range of bytes in a special way. The <code>CDATA</code> section is one of those, which tells the parser to <em>completely turn off until it reaches <code>]]></code></em>.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><span class=\"tok-string2\"><![CDATA[literal characters only in here]]></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">It had other marked sections, however, which served different purposes.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><![IGNORE[everything in here is ignored; it doesn’t exist.]]></div><div class=\"cm-line\"><![INCLUDE[in here things <span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">></span>do<span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">></span> exist as normal.]]></div><div class=\"cm-line\"><![RCDATA[read on to learn about RCDATA!]]></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">The <code>IGNORE</code> and <code>INCLUDE</code> sections may seem strange, since SGML already has comments, and <code>INCLUDE</code> effectively does nothing, but the sections can be marked by replaced <em>entities</em>, making for conditional inclusion which can be overwritten via command-line arguments when invoking the SGML parser.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><!ENTITY % review-only "IGNORE"></div><div class=\"cm-line\"></div><div class=\"cm-line\">...</div><div class=\"cm-line\"></div><div class=\"cm-line\"><![%review-only;[</div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">aside</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\">Add `-Dreview-only=INCLUDE` when building drafts.</div><div class=\"cm-line\">This note won’t appear otherwise.</div><div class=\"cm-line\"><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">aside</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\">]]></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://www.w3.org/XML/9712-reports.html#:~:text=XML%20will%20have%20CDATA%20marked%20sections\">XML only retained CDATA sections</a> from SGML, while HTML never included them. They are useful because they are so easy to parse. All characters inside of them are to be treated as literal text, up until the first occurrence of the terminating <code>]]></code>. Unlike elements, the marked sections do not nest.</p>\n\n\n\n<h4 class=\"wp-block-heading\">There are no CDATA sections in HTML</h4>\n\n\n\n<p class=\"wp-block-paragraph\">The Internet is full of discussions about the use of CDATA sections in HTML, but there are no such things, mostly. HTML itself is an amalgam of pure HTML and embedded SVG and MathML. Content inside of those <em>embedded</em> SVG and MathML elements is parsed differently, and within this “foreign content” there <em>are</em> <code>CDATA section</code> nodes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When something which <em>look like a CDATA section</em> appears in an HTML document, it’s transformed into a “bogus” HTML comment and considered a snippet of malformed markup. To make things more confusing, the parsing rules differ inside an HTML document for these regions depending on whether they are found within HTML elements or foreign elements.</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When a real CDATA section appears within SVG and MathML, it parses as in XML or SGML — everything is literal text <em>until</em> the nearest <code>]]></code>.</li>\n\n\n\n<li>When a malformed CDATA look-alike appears in an HTML element, it gets special treatment — the parser only turns off until the nearest <code>></code>. This means that these sections end even without a closing <code>]]></code>, and when they do, all of their contained content disappears from the page.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">That small difference confuses naïve parsers and is a regular source of bugs.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-html\"><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">></span><![CDATA[There are no tags in here.]]><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">svg</span><span class=\"tok-punctuation\">></span><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">text</span><span class=\"tok-punctuation\">></span><![CDATA[<span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">none</span><span class=\"tok-punctuation\">></span> here either.]]><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">text</span><span class=\"tok-punctuation\">></span><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">svg</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">></span><![CDATA[But there <span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">></span>are<span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">em</span><span class=\"tok-punctuation\">></span> tags in here]]><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\"> the section ends here ╯ ╰ start of a real end tag</div><div class=\"cm-line\"></div><div class=\"cm-line\">The following is the equivalent markup to the third line.</div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">></span><span class=\"tok-comment\"><!--But there <em--></span>are<span class=\"tok-punctuation\"></</span><span class=\"tok-typeName tok-invalid\">em</span><span class=\"tok-punctuation\">></span> tags in here]]><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">div</span><span class=\"tok-punctuation\">></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<h4 class=\"wp-block-heading\">SGML contains CDATA regions outside of marked CDATA sections</h4>\n\n\n\n<p class=\"wp-block-paragraph\">SGML made it possible to define more kinds of content than XML does for a given element. For example, an element in SGML can be declared to have a CDATA content model, in which case the element itself behaves like a CDATA section. All characters after the opening tag are treated as literal text until the parser finds the nearest appropriate end tag<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#2d0aee27-cf77-4b19-a4c5-3b1cc4192c53\" id=\"2d0aee27-cf77-4b19-a4c5-3b1cc4192c53-link\">3</a></sup>. XML rejected this ability because it increases the complexity of the parser and requires that every document also contains a full DTD when parsing. For example, if an element were declared to have CDATA content, then <code>a <at> b</code> would represent that literal string; on the other hand, if it were declared like any other normal element, it would have three children: “<code>a </code>”, the <code><at></code> opening tag, and “<code> b</code>”.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><!ELEMENT verbatim - - CDATA></div><div class=\"cm-line\"></div><div class=\"cm-line\">...</div><div class=\"cm-line\"></div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">verbatim</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\">There are <span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">no</span><span class=\"tok-punctuation\">></span> tags in here, because this is CDATA,</div><div class=\"cm-line\">but you wouldn’t know without reading the DTD,</div><div class=\"cm-line\">overcomplicating the demands on the parser.</div><div class=\"cm-line\"><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">verbatim</span><span class=\"tok-punctuation\">></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">These kinds of elements do exist in HTML, though a few were modified when HTML5 was standardized in 2008. Inside of the elements, the parser essentially turns off, which makes them easy to parse and can help avoid the need to extensively escape content. These elements are, of course, <code><script></code> and <code><style></code><sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#68152c30-bf36-4e5b-a7df-3f0610daeadb\" id=\"68152c30-bf36-4e5b-a7df-3f0610daeadb-link\">4</a></sup>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Were it not for the CDATA declared content model, every angle bracket and ampersand would have to be escaped in included JavaScript and CSS. In XHTML this was required, because it had no CDATA declared content model (since it was XML)<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#21aeab38-6e1f-4700-a8f4-27c96ebe0c3b\" id=\"21aeab38-6e1f-4700-a8f4-27c96ebe0c3b-link\">5</a></sup>.</p>\n\n\n\n<h4 class=\"wp-block-heading\">All text in XML is CDATA</h4>\n\n\n\n<p class=\"wp-block-paragraph\">Herein lies the most-confusing aspect of discussing CDATA — XML contains CDATA sections as well as <em>CDATA</em> as normal text. After parsing there is no distinction between <code>&lt;tag&gt;</code> and <code><![CDATA[<tag>]]></code> in the parsed content.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Many XML generators (or serializers) provide two mechanisms for creating text content: one wraps text in a <code>CDATA section</code> and leaves the text as it came (apart from avoiding including the terminating sequence); the other escapes syntax characters instead. While there are times where it would be appropriate to intentionally pick one over the other, a good library design would at least offer a third mechanism (if not <em>only</em> providing this third mechanism) which simply produces <em>CDATA</em>, itself determining when to wrap and when to escape<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6e56b2ce-8156-4bf5-a4d3-d297a401c1a3\" id=\"6e56b2ce-8156-4bf5-a4d3-d297a401c1a3-link\">6</a></sup>, and whether or not to produce chunks of wrapped text interspersed with chunks of escaped text.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The real difference between these two kinds of CDATA is purely presentational in the source document, as the XML snippet below only contains one text node, not two. <em>Creating CDATA does not imply creating a <code>CDATA section</code>!</em></p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-xml\"><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">rule</span><span class=\"tok-punctuation\">></span><span class=\"tok-string2\"><![CDATA[#X13<d&r>]]></span> (<span class=\"tok-string\">&pp;</span>4 <span class=\"tok-string\">&ss;</span>3.11)<span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">rule</span><span class=\"tok-punctuation\">></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<h3 class=\"wp-block-heading\">RCDATA — “replaceable character data”</h3>\n\n\n\n<p class=\"wp-block-paragraph\"><em>May form: character references, literal text.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\">There’s one more confusing designation for characters in the HTML and XML input streams: <em>RCDATA</em>. RCDATA is almost identical to CDATA, except that in contexts where CDATA does not decode character references and entities, RCDATA <em>will</em> decode them <em>into</em> CDATA. This is confusing, because in the context of an XML attribute, the <code>CDATA</code> designation in a DTD automatically implies that character references are decoded, unlike the <code>CDATA</code> sections in <em>content</em>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To this end there are no RCDATA attributes, since character references are always decoded inside attribute values. The RCDATA declaration is like the SGML CDATA content declaration: all characters following the opening tag for this element will be treated as text until the nearest matching closing tag (the difference being only that character references are recognized and decoded).</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s worth remembering that XML rejected the CDATA content type because of how it complicates parsing, and it also rejected the RCDATA type. On the other hand, RCDATA was incorporated into HTML, but statically so. HTML has no configurable DTD, but in its specification two elements contain RCDATA content:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><code>TITLE</code></li>\n\n\n\n<li><code>TEXTAREA</code></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">While it’s easy to comprehend the way that <code><textarea></code> works, and that’s probably because we are used to entering text into one on a web page, the behavior of <code><title></code> is consistently confused in all manner of programming languages, platforms, and HTML-parsing code.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The TITLE element <em>only</em> contains character data — it cannot contain other markup. The parsing is among the easiest sections of an HTML document to parse: once the <code><title></code> opening tag is detected, the parser can capture everything until the nearest <code></title></code> closing tag. Everything it captured is literal text, after decoding character references.</p>\n\n\n<div class=\"wp-block-code\">\n <div class=\"cm-editor\">\n <div class=\"cm-scroller\">\n \n<pre>\n<code class=\"language-html\"><div class=\"cm-line\"><span class=\"tok-comment\"><!-- the title is "<title>" --></span></div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">></span><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">></span><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">></span></div><div class=\"cm-line\"></div><div class=\"cm-line\"><span class=\"tok-comment\"><!-- equivalent HTML --></span></div><div class=\"cm-line\"><span class=\"tok-punctuation\"><</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">></span><span class=\"tok-string\">&lt;</span>title<span class=\"tok-string\">&gt;</span><span class=\"tok-punctuation\"></</span><span class=\"tok-typeName\">title</span><span class=\"tok-punctuation\">></span></div></code></pre>\n </div>\n </div>\n</div>\n\n\n<p class=\"wp-block-paragraph\">This complicates content management systems like WordPress which allow posts to have HTML in their <em>post titles</em>, because a page can show richly-formatted article titles which cannot be represented in the browser tab’s label, and care must be taken to extract the plaintext content from that HTML before display in those contexts.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"summary\">Coda</h2>\n\n\n\n<p class=\"wp-block-paragraph\">HTML and XML both speak about different kinds of characters in their source documents and content models, which traces from the complicated ways that SGML documents could be constructed. SGML’s complexity almost always stems from the central idea that computers should do extra work to remove the hassle for humans to enter structured content in plaintext documents.</p>\n\n\n\n<p class=\"wp-block-paragraph\">HTML, inspired by SGML, adopted some of the names and mechanisms for parsing those regions of text in distinct ways, but codified a single parsing standard independent of SGML. When XML was later developed, it was meant to form a simplified subset of SGML. This subset flipped the tradeoffs, leaning on humans performing extra work to remove the hassle for computers to parse structure in plaintext documents. For these text forms, this meant rejecting a few of the constructs while retaining others.</p>\n\n\n\n<p class=\"wp-block-paragraph\">This is also another demonstration of how <em>balanced tags are not enough</em> to have well-behaved HTML with a naïve parser. A well-formed XML document <a href=\"https://www.ch.imperial.ac.uk/rzepa/talks/pmr11/xml-dev/9708/0152.html\">may be parsed with a terse PERL script and regular expression</a>, but HTML relies heavily on the context in which characters are found. Any HTML parser <em>must</em> know the special rules for each kind of element’s content model.</p>\n\n\n\n<h3 class=\"wp-block-heading\">In summary</h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>When it’s unclear whether a character forms text or markup, that is PCDATA. Once parsed, there is no PCDATA anymore; it’s either a form of DATA or MARKUP.</li>\n\n\n\n<li>All text nodes in HTML are “DATA.”</li>\n\n\n\n<li>“CDATA” just means “character data” and means that after parsing, the content is text. It does not indicate whether character references are to be decoded or not; that comes from the region in the document, based on its context.</li>\n\n\n\n<li>There are no CDATA sections in HTML<sup class=\"fn\"><a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#31e75dae-1847-44df-92e1-8ae5756eeec6\" id=\"31e75dae-1847-44df-92e1-8ae5756eeec6-link\">7</a></sup>.</li>\n\n\n\n<li>All text nodes in XML are CDATA, but only after being parsed.</li>\n\n\n\n<li>CDATA sections offer a convenient way to avoid escaping, but are indistinguishable from the equivalent escaped text.</li>\n\n\n\n<li>HTML contains two special RCDATA elements which <em>only</em> and <em>always</em> contain a single text node child: <code><title></code> and <code><textarea></code>. Everything until the closing tag will be parsed as text, even if it looks like markup.</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">This post is already long and still over-simplifies the picture. SGML is a rich and robust specification and includes <code>NDATA</code> and <code>SDATA</code>, HTML includes a <em>latching</em> <code>PLAINTEXT</code> parsing mode in which <em>the rest of the entire document is parsed as literal character data</em>, and there are other surprising goodies in how entities interact with the character mode.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks for making it through to the end, or jumping directly here if you couldn’t wait.</p>\n\n\n<ol class=\"wp-block-footnotes\"><li id=\"0ba56e66-ab0f-4fbd-93d2-df22a6984fd7\">As an example, each part of a tag — its name, attribute names, attribute values — carries its own parsing rules. The same is true for comments, DOCTYPE declarations, and every other syntax form. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#0ba56e66-ab0f-4fbd-93d2-df22a6984fd7-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"6d3de5b9-f8a6-4f46-853b-3d407731feca\">XML only allows character references to the characters in its “character set,” which is <em>almost</em> all Unicode code points, but excludes some control characters and U+FFFE and U+FFFF. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6d3de5b9-f8a6-4f46-853b-3d407731feca-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"2d0aee27-cf77-4b19-a4c5-3b1cc4192c53\">Because SGML was designed to minimize the amount of necessary syntax, it’s not necessary to have a full end tag for an open element, but that’s a simple-enough model to understand the concept. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#2d0aee27-cf77-4b19-a4c5-3b1cc4192c53-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"68152c30-bf36-4e5b-a7df-3f0610daeadb\">The <code><style></code> element is straightforward, but <a href=\"https://sirre.al/2025/08/06/safe-json-in-script-tags-how-not-to-break-a-site/\">the <code><script></code> element has its own complicated modification</a> of the CDATA content model. It’s mostly CDATA, but makes it possible to escape the closing tag so that very old pages won’t break. HTML also applies this parsing mode for the <code><iframe></code>, <code><noembed></code>, <code><noframes></code>, and <code><noscript></code> elements (as well as for the deprecated <code><xmp></code> element), but these nominally should have no content inside of them (or shouldn’t be used); applying the CDATA content model prevents creating other elements as their children. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#68152c30-bf36-4e5b-a7df-3f0610daeadb-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"21aeab38-6e1f-4700-a8f4-27c96ebe0c3b\">Frustratingly, in XHTML one <em>must</em> escape JavaScript and CSS in the page to avoid parsing failure, while in HTML one <em>must not</em>. This alone makes for a complicated stage in any reliable HTML/XHTML converter. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#21aeab38-6e1f-4700-a8f4-27c96ebe0c3b-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"6e56b2ce-8156-4bf5-a4d3-d297a401c1a3\">Wrapping a language like HTML inside a CDATA section is a convenient way to represent the HTML visually and retain the ability to easily modify it, but entities present a problem. The serializer must either pre-translate the entity into its resolved character content, losing the macro-like behavior and its name; or leave the entity in place, thus nullifying it because it will not be recognized as an entity on parse. However, in such a situation, a serializer is free to terminate the CDATA section, append the entity, and open a new one to continue. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#6e56b2ce-8156-4bf5-a4d3-d297a401c1a3-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li><li id=\"31e75dae-1847-44df-92e1-8ae5756eeec6\">As mentioned in the discussion about CDATA, embedded SVG and MathML elements <em>can</em> contain CDATA sections, but these are not technically HTML elements. <a href=\"https://fluffyandflakey.blog/tag/wordpress/feed/#31e75dae-1847-44df-92e1-8ae5756eeec6-link\"><img alt=\"↩\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/21a9.png\" style=\"height: 1em;\" />︎</a></li></ol>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2026 11:07:27 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Dennis Snell\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:40;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:113:\"Gutenberg Times: WordPress 7.0.1 Fixes Registration Spam, wp_kses() CSS Corruption, and 7.0 Admin Design Glitches\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://gutenbergtimes.com/?p=45920\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:120:\"https://gutenbergtimes.com/wordpress-7-0-1-fixes-registration-spam-wp_kses-css-corruption-and-7-0-admin-design-glitches/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:7735:\"<p class=\"wp-block-paragraph\">WordPress 7.0.1 is now available. As the first maintenance release of the 7.0 cycle, it’s strictly a bug-fix release: every included ticket addresses either a regression introduced during 7.0 development or an issue intentionally deferred at the end of the cycle.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The release ships fixes for 17 core Trac tickets and 14 Gutenberg PRs. Because this is a maintenance release, sites with automatic background updates enabled will update to 7.0.1 automatically — everyone else should update as soon as possible. Here’s what stands out for each audience.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Kudos to release lead Aaron Jorbin and his team for pushing this release over the finish line and getting it into hands of WordPress users quickly. </p>\n\n\n\n<h2 class=\"wp-block-heading\">The most important fixes for end users</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Registration page spam is shut down (<a href=\"https://core.trac.wordpress.org/ticket/63085\">#63085</a>).</strong> The account registration page could be abused to send “Login details” spam emails from your site. This is arguably the most impactful fix in the release for anyone running a site with open registration — it protects both your users’ inboxes and your domain’s email reputation.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The 7.0 admin reskin gets its rough edges sanded off.</strong> WordPress 7.0’s refreshed admin design shipped with a handful of visual glitches that this release cleans up:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Form elements are now standardized in the mobile viewport (<a href=\"https://core.trac.wordpress.org/ticket/64999\">#64999</a>)</li>\n\n\n\n<li>The image editor’s scale and crop inputs no longer mismatch in size, and the info icon uses the new color scheme (<a href=\"https://core.trac.wordpress.org/ticket/64937\">#64937</a>, <a href=\"https://core.trac.wordpress.org/ticket/65428\">#65428</a>)</li>\n\n\n\n<li>The publish settings panel no longer crowds its primary action buttons together (<a href=\"https://core.trac.wordpress.org/ticket/65286\">#65286</a>)</li>\n\n\n\n<li>The Media Library’s loading spinner is properly aligned in the modal filter toolbar, and the search bar no longer jumps position after a search (<a href=\"https://core.trac.wordpress.org/ticket/65275\">#65275</a>, <a href=\"https://core.trac.wordpress.org/ticket/65296\">#65296</a>)</li>\n\n\n\n<li>A “black flash” that briefly appeared on wp-admin pages before the interface finished loading is gone (Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/78493\">#78493</a>)</li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Emoji behave correctly again.</strong> Two related fixes: the emoji detection script is once more printed in the admin (<a href=\"https://core.trac.wordpress.org/ticket/65310\">#65310</a>), and certain characters are no longer incorrectly replaced by Twemoji images (<a href=\"https://core.trac.wordpress.org/ticket/64318\">#64318</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Accessibility improvements to the new revisions experience.</strong> The Visual History / Revisions feature introduced in 7.0 receives several accessibility fixes: focus now moves to the revisions slider when entering revisions mode, and changed blocks are marked with a CSS outline as a secondary, non-color indicator — important for users with low vision or color blindness (<a href=\"https://core.trac.wordpress.org/ticket/65122\">#65122</a>, Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/77530\">#77530</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/78393\">#78393</a>, <a href=\"https://github.com/WordPress/gutenberg/pull/79691\">#79691</a>).</p>\n\n\n\n<h2 class=\"wp-block-heading\">The most important fixes for developers</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><code>wp_kses()</code> no longer corrupts valid CSS (<a href=\"https://core.trac.wordpress.org/ticket/65270\">#65270</a>).</strong> Since 7.0 RC4, <code>wp_kses()</code> could mangle legitimate <code>background-image: url(…)</code> declarations into a broken <code>style=\")\"</code> attribute. If your theme or plugin outputs inline background images through KSES-filtered content, 7.0.1 restores expected behavior — any workarounds you shipped can now be removed.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong><code>global-styles-inline-css</code> can be dequeued again (<a href=\"https://core.trac.wordpress.org/ticket/65336\">#65336</a>).</strong> Since 7.0, developers were unable to remove the global styles inline stylesheet. If your build pipeline or performance optimization strips this and re-serves it another way, that control is back.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>PHP 8.5 compatibility fix in <code>wp_get_attachment_image_src()</code> (<a href=\"https://core.trac.wordpress.org/ticket/64742\">#64742</a>).</strong> An incorrect array access triggered issues under PHP 8.5. If you’re testing sites on newer PHP versions, this removes one blocker.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>A removed Navigation function returns as a deprecated shim (Gutenberg <a href=\"https://github.com/WordPress/gutenberg/pull/78484\">#78484</a>).</strong> <code>block_core_navigation_submenu_render_submenu_icon()</code> was removed in 7.0, breaking themes and plugins that called it directly. It’s restored as a deprecated shim — but treat this as your migration notice, not a reprieve. Update any code that references it.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Editor state management fixes reduce false “unsaved changes” warnings.</strong> Two Gutenberg fixes matter here: </p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>controlled/mode block changes are now marked non-persistent (<a href=\"https://github.com/WordPress/gutenberg/pull/79350\">#79350</a>), and </li>\n\n\n\n<li>related navigation entities are no longer dirtied during passive renders (<a href=\"https://github.com/WordPress/gutenberg/pull/79000\">#79000</a>). </li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">Together these should mean fewer spurious dirty states and a cleaner undo history — a quality-of-life improvement if you build with template parts and navigation blocks.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Block Visibility: “hide everywhere” keeps working after a block opts out of visibility support (<a href=\"https://core.trac.wordpress.org/ticket/65389\">#65389</a>).</strong> If you register blocks that disable visibility support, previously hidden instances now stay hidden as expected.</p>\n\n\n\n<h2 class=\"wp-block-heading\">How to update</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can update directly from <strong>Dashboard → Updates</strong> in your site’s admin, run <code>wp core update</code> with WP-CLI, or download WordPress 7.0.1 from WordPress.org and install it manually. Sites that support automatic background updates for minor releases will begin updating on their own shortly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The full ticket list is available in the<a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\"> release candidate announcement</a>, Trac report 4, and the 7.0.x editor tasks board on GitHub.</p>\n\n\n\n<h2 class=\"wp-block-heading\">What’s next: WordPress 7.1</h2>\n\n\n\n<p class=\"wp-block-paragraph\">With 7.0.1 out the door, attention turns to the next major release: WordPress 7.1 is scheduled for August 19, 2026. To see what’s planned for the release, check out the <a href=\"https://make.wordpress.org/core/2026/06/19/roadmap-to-7-1/\">Roadmap to 7.1</a> on the Make WordPress Core blog.</p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Fri, 10 Jul 2026 09:34:45 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:18:\"Birgit Pauli-Haack\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:41;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"WordPress.org blog: WordPress 7.0.1 Maintenance Release\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:35:\"https://wordpress.org/news/?p=21005\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://wordpress.org/news/2026/07/wordpress-7-0-1-maintenance-release/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:8685:\"<p class=\"wp-block-paragraph\"><strong>WordPress 7.0.1 is now available!</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">This minor release includes fixes for 31 bugs <a href=\"https://core.trac.wordpress.org/query?resolution=fixed&milestone=7.0.1&group=component&col=id&col=summary&col=milestone&col=owner&col=type&col=status&col=priority&order=priority\">throughout Core</a> and the <a href=\"https://core.trac.wordpress.org/changeset/62610\">Block Editor</a>, addressing issues affecting multiple areas of WordPress including the block editor, admin ui, and media. For a full list of bug fixes, please refer to the <a href=\"https://make.wordpress.org/core/2026/07/01/wordpress-7-0-1-rc1-is-now-available/\">release candidate announcement.</a></p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 is a short-cycle maintenance release. The next major version of WordPress will be 7.1; it is scheduled for release on 19 August 2026 at <a href=\"https://us.wordcamp.org/2026/\">WordCamp US</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have sites that support automatic background updates, the update process will begin automatically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You can <a href=\"https://wordpress.org/wordpress-7.0.1.zip\">download WordPress 7.0.1 from WordPress.org</a>, or visit your WordPress Dashboard, click “Updates”, and then click “Update Now”. For more information on this release, please <a href=\"https://wordpress.org/support/wordpress-version/version-7-0-1\">visit the HelpHub site</a>.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Thank you to these WordPress contributors</h2>\n\n\n\n<p class=\"wp-block-paragraph\">This release was led by <a href=\"https://profiles.wordpress.org/jorbin/\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/masteradhoc/\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal/\">Carlos Bravo</a> and <a href=\"https://profiles.wordpress.org/estelaris/\">Estela Rueda</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">WordPress 7.0.1 would not have been possible without the contributions of the following people. Their asynchronous coordination to deliver maintenance fixes into a stable release is a testament to the power and capability of the WordPress community.</p>\n\n\n\n<p class=\"is-style-wporg-props-long wp-block-paragraph\"><a href=\"https://profiles.wordpress.org/jorbin\">Aaron Jorbin</a>, <a href=\"https://profiles.wordpress.org/abduremon\">Abdur Rahman Emon</a>, <a href=\"https://profiles.wordpress.org/abhishekfdd\">Abhishek Kumar</a>, <a href=\"https://profiles.wordpress.org/adamsilverstein\">Adam Silverstein</a>, <a href=\"https://profiles.wordpress.org/zieladam\">Adam Zieliński</a>, <a href=\"https://profiles.wordpress.org/iamadisingh\">Aditya Singh</a>, <a href=\"https://profiles.wordpress.org/wildworks\">Aki Hamano</a>, <a href=\"https://profiles.wordpress.org/afercia\">Andrea Fercia</a>, <a href=\"https://profiles.wordpress.org/andraganescu\">Andrei Draganescu</a>, <a href=\"https://profiles.wordpress.org/andrewserong\">Andrew Serong</a>, <a href=\"https://profiles.wordpress.org/annezazu\">annezazu</a>, <a href=\"https://profiles.wordpress.org/scruffian\">Ben Dwyer</a>, <a href=\"https://profiles.wordpress.org/bacoords\">Brian Coords</a>, <a href=\"https://profiles.wordpress.org/masteradhoc\">Brian Haas</a>, <a href=\"https://profiles.wordpress.org/cbravobernal\">Carlos Bravo</a>, <a href=\"https://profiles.wordpress.org/cogdesign\">cogdesign</a>, <a href=\"https://profiles.wordpress.org/danluu\">Dan Luu</a>, <a href=\"https://profiles.wordpress.org/talldanwp\">Daniel Richards</a>, <a href=\"https://profiles.wordpress.org/darshitrajyaguru97\">Darshit Rajyaguru</a>, <a href=\"https://profiles.wordpress.org/davidbaumwald\">David Baumwald</a>, <a href=\"https://profiles.wordpress.org/dmsnell\">Dennis Snell</a>, <a href=\"https://profiles.wordpress.org/dhruvang21\">Dhruvang21</a>, <a href=\"https://profiles.wordpress.org/ellatrix\">Ella Van Durpe</a>, <a href=\"https://profiles.wordpress.org/r1k0\">Erick Wambua</a>, <a href=\"https://profiles.wordpress.org/ecairol\">Esteban</a>, <a href=\"https://profiles.wordpress.org/estelaris\">Estela Rueda</a>, <a href=\"https://profiles.wordpress.org/mamaduka\">George Mamadashvili</a>, <a href=\"https://profiles.wordpress.org/gziolo\">Greg Ziółkowski</a>, <a href=\"https://profiles.wordpress.org/abcd95\">Himanshu Pathak</a>, <a href=\"https://profiles.wordpress.org/hbhalodia\">Hit Bhalodia</a>, <a href=\"https://profiles.wordpress.org/huzaifaalmesbah\">Huzaifa Al Mesbah</a>, <a href=\"https://profiles.wordpress.org/iflairwebtechnologies\">iflairwebtechnologies</a>, <a href=\"https://profiles.wordpress.org/jamesbregenzer\">James</a>, <a href=\"https://profiles.wordpress.org/jsnajdr\">Jarda Snajdr</a>, <a href=\"https://profiles.wordpress.org/audrasjb\">Jb Audras</a>, <a href=\"https://profiles.wordpress.org/joedolson\">Joe Dolson</a>, <a href=\"https://profiles.wordpress.org/joen\">Joen Asmussen</a>, <a href=\"https://profiles.wordpress.org/jonsurrell\">Jon Surrell</a>, <a href=\"https://profiles.wordpress.org/desrosj\">Jonathan Desrosiers</a>, <a href=\"https://profiles.wordpress.org/karthikeya01\">Karthikeya Bethu</a>, <a href=\"https://profiles.wordpress.org/khokansardar\">Khokan Sardar</a>, <a href=\"https://profiles.wordpress.org/rlucian\">Lucian R.</a>, <a href=\"https://profiles.wordpress.org/luismulinari\">luismulinari</a>, <a href=\"https://profiles.wordpress.org/dervishov\">Mahammad Darvishov</a>, <a href=\"https://profiles.wordpress.org/manhar\">Manhar Barot</a>, <a href=\"https://profiles.wordpress.org/mciampini\">Marco Ciampini</a>, <a href=\"https://profiles.wordpress.org/tyxla\">Marin Atanasov</a>, <a href=\"https://profiles.wordpress.org/muryam\">Maryam Sultana</a>, <a href=\"https://profiles.wordpress.org/masum52\">Masum</a>, <a href=\"https://profiles.wordpress.org/mcsf\">Miguel Fonseca</a>, <a href=\"https://profiles.wordpress.org/369work\">Miroku</a>, <a href=\"https://profiles.wordpress.org/mohamedahamed\">Mohammed Noumaan Ahamed</a>, <a href=\"https://profiles.wordpress.org/mukesh27\">Mukesh Panchal</a>, <a href=\"https://profiles.wordpress.org/mustafabharmal\">Mustafa Bharmal</a>, <a href=\"https://profiles.wordpress.org/ntsekouras\">Nik Tsekouras</a>, <a href=\"https://profiles.wordpress.org/noruzzaman\">Noruzzaman</a>, <a href=\"https://profiles.wordpress.org/ozgursar\">Ozgur Sar</a>, <a href=\"https://profiles.wordpress.org/peterwilsoncc\">Peter Wilson</a>, <a href=\"https://profiles.wordpress.org/presskopp\">Presskopp</a>, <a href=\"https://profiles.wordpress.org/ekla\">Rahul Kumar</a>, <a href=\"https://profiles.wordpress.org/ramonopoly\">ramonopoly</a>, <a href=\"https://profiles.wordpress.org/youknowriad\">Riad Benguella</a>, <a href=\"https://profiles.wordpress.org/rishabhwp\">Rishabh Gupta</a>, <a href=\"https://profiles.wordpress.org/roshniahuja14\">Roshni Ahuja</a>, <a href=\"https://profiles.wordpress.org/sainathpoojary\">Sainath Poojary</a>, <a href=\"https://profiles.wordpress.org/sakshamsharma5\">Saksham Sharma</a>, <a href=\"https://profiles.wordpress.org/andrewssanya\">SAndrew</a>, <a href=\"https://profiles.wordpress.org/coffee2code\">Scott Reilly</a>, <a href=\"https://profiles.wordpress.org/sergeybiryukov\">Sergey Biryukov</a>, <a href=\"https://profiles.wordpress.org/siliconforks\">siliconforks</a>, <a href=\"https://profiles.wordpress.org/sabernhardt\">Stephen Bernhardt</a>, <a href=\"https://profiles.wordpress.org/swanandm\">Swanand M</a>, <a href=\"https://profiles.wordpress.org/inc2734\">Takashi Kitajima</a>, <a href=\"https://profiles.wordpress.org/edent\">Terence Eden</a>, <a href=\"https://profiles.wordpress.org/threadi\">threadi</a>, <a href=\"https://profiles.wordpress.org/tusharaddweb\">Tushar Patel</a>, <a href=\"https://profiles.wordpress.org/umesh.nevase\">Umesh Nevase</a>, <a href=\"https://profiles.wordpress.org/webmandesign\">WebMan Design | Oliver Juhas</a>, <a href=\"https://profiles.wordpress.org/westonruter\">Weston Ruter</a>, <a href=\"https://profiles.wordpress.org/yogeshbhutkar\">Yogesh Bhutkar</a>, <a href=\"https://profiles.wordpress.org/yusufmudagal\">Yusuf Mudagal</a> </p>\n\n\n\n<h2 class=\"wp-block-heading\">How to contribute</h2>\n\n\n\n<p class=\"wp-block-paragraph\">To get involved in WordPress core development, head over to Trac, <a href=\"https://core.trac.wordpress.org/report/6\">choose a ticket</a>, and join the conversation in the <a href=\"https://wordpress.slack.com/archives/C02RQBWTW\">#core</a> channel. Need help? Check out the <a href=\"https://make.wordpress.org/core/handbook/\">Core Contributor Handbook</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Props to </em><a class=\"mention\" href=\"https://profiles.wordpress.org/jorbin/\"><span class=\"mentions-prefix\">@</span>jorbin</a><em> for proofreading.</em></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 17:33:42 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:12:\"Estela Rueda\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:42;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:64:\"Open Channels FM: The Paradox of Empowerment in a Disruptive Era\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556703\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:71:\"https://openchannels.fm/the-paradox-of-empowerment-in-a-disruptive-era/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:158:\"Tech feels wild and unpredictable, yet super empowering. Success now hinges on broad awareness and curiosity, not just deep specialization. Embrace the chaos.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 15:24:38 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:43;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:55:\"Jonathan Desrosiers: 13 Years Contributing to WordPress\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"https://jonathandesrosiers.com/?p=12208\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:74:\"https://jonathandesrosiers.com/2026/07/13-years-contributing-to-wordpress/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:13569:\"<p class=\"wp-block-paragraph\">Thirteen years ago today, I received <a href=\"https://core.trac.wordpress.org/changeset/24588\">my very first props for contributing to WordPress Core</a>. If my WordPress contribution journey were a person, it would now be a teenager. It’s pretty wild to think about, but I’ve now been contributing to the WordPress project in some way for a third of my life!</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-is-a-prop\">What is a “prop”?</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In the WordPress open source project, community participants receive credit for contributing to a given change or deliverable by receiving “props.”</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Props should be given to all those who contributed to the final commit, whether through patches, refreshed patches, code suggested otherwise, design, writing, user testing, or other significant investments of time and effort. Usernames are parsed for the credits list and WordPress.org profiles.</p>\n\n\n\n<p class=\"is-style-text-subtitle is-style-text-subtitle--1 wp-block-paragraph\"><a href=\"https://make.wordpress.org/core/handbook/best-practices/commit-messages/#props\">WordPress Core Handbook</a></p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">The names of all the contributors who helped make a specific release possible are collected in the weeks leading up and added to the Credits API, which powers the Credits page in the WordPress dashboard.</p>\n\n\n\n<p class=\"wp-block-paragraph\">To date, I have been listed on the Credits page for 24 consecutive releases starting with 4.7, and 29 of the 35 releases overall since my first credited contribution in <a href=\"https://wordpress.org/news/2013/08/oscar/\">WordPress 3.6 “Oscar”,</a> alongside 224 other contributors.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Every year is a bit different than the last, but I can confidently say that this past year has been significantly different. What it means to develop software or contribute to open source is changing rapidly with advanced AI innovations seemingly every day combined with these tools being accessible to more people than ever before. But throughout all this, one truth holds strong: open source software is more important than ever.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-looking-back\">Looking Back</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It seemed only fitting for me to instruct AI to analyze my contribution activity over the last 365 days to try and find anything interesting!</p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-prompt\">Prompt</h3>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">Today is the 13th Anniversary of my first credited contribution to the WordPress project. I try to write a blog post each year to mark the occasion.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m looking for ideas for this years edition. Please go and read all of my past posts (accessible here at this category feed https://jonathandesrosiers.com/category/contributing-anniversaries/feed) and give me 10-12 ideas for what to focus on this year. You can also look through the other content on my site for other ideas.</p>\n\n\n\n<p class=\"wp-block-paragraph\">After you do that, I want you to look at the git history for the <code>wordpress-develop</code> and <code>gutenberg</code> repositories between July 8, 2025 and yesterday (July 7, 2026). I want you to parse the logs to summarize my activity and find some particular ways to analyze the data that are interesting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Be creative! These posts are the most fun when I am able to find some unique insight into a year’s worth of contributions.</p>\n</blockquote>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-results\">Results</h3>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-your-year-13-in-numbers-jul-8-2025-jul-7-2026\">Your year 13 in numbers (Jul 8 2025 → Jul 7 2026)</h4>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><thead><tr><th>Metric</th><th>Value</th></tr></thead><tbody><tr><td>Core commits authored & committed</td><td><strong>119</strong> (~7% of all 1,707 core commits this cycle)</td></tr><tr><td>Additional commits crediting you (props received)</td><td><strong>97</strong> → ~<strong>216</strong> credited touch points in core alone</td></tr><tr><td>Lines changed</td><td><strong>+41,746 / −21,940</strong> across 656 file-changes</td></tr><tr><td>Unique Trac tickets</td><td><strong>69</strong></td></tr><tr><td>Gutenberg PRs authored</td><td><strong>24</strong> (+108 co-authored/credited)</td></tr><tr><td>Reverts you committed</td><td>6</td></tr></tbody></table></figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The headline:</strong> <strong>80 of your 119 core commits (67%) are “Build/Test Tools.”</strong> Add Tests + General and it’s ~80%. You spent year 13 as the <strong>plumber of WordPress</strong> — CI, build pipeline, dependency stewardship, release infrastructure.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-most-interesting-angles-the-data-surfaced\">The most interesting angles the data surfaced</h2>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"\"><strong>The nocturnal committer.</strong> ~50 of your commits land between <strong>midnight and 4am</strong>. Tuesday (37) and Thursday (31) are your peak days; Saturday is nearly dead (3).</li>\n\n\n\n<li class=\"\"><strong>The month that didn’t exist.</strong> <strong>January 2026: zero commits.</strong> March 2026: <strong>40</strong>. Your cadence is a heartbeat synced to the 6.9 and 7.0 release cycles, not the calendar.</li>\n\n\n\n<li class=\"\"><strong>The June 30th ritual.</strong> You bumped Gutenberg’s pinned hash <strong>seven times in a single day</strong> (v22.8.0 → v23.4.0) — a whole quarter of catching-up compressed into one sitting.</li>\n\n\n\n<li class=\"\"><strong>Supply-chain quiet work.</strong> Pinning full-length action SHAs, replacing abandoned third-party actions, migrating release logic to a GitHub App, ca-bundle updates — you spent the year hardening the software supply chain nobody thanks you for.</li>\n\n\n\n<li class=\"\"><strong>Keeping the ancient libraries breathing.</strong> lodash, underscore, backbone, getID3, Twemoji — you’re the caretaker of WordPress’s legacy vendored code.</li>\n\n\n\n<li class=\"\"><strong>Future-proofing the matrix.</strong> MySQL 9.5/9.6/9.7, MariaDB 12.1, PHP 8.5 (HEIF/HEIC) — you test tomorrow’s platforms today.</li>\n\n\n\n<li class=\"\"><strong>A first, quietly historic commit:</strong> <em>“Include example for disclosing AI usage”</em> — you helped write core’s early AI-disclosure norms.</li>\n</ol>\n\n\n\n<h4 class=\"wp-block-heading\" id=\"h-10-12-ideas-for-the-year-13-post\">10–12 ideas for the year-13 post</h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li class=\"\"><strong>“The Plumber’s Year: 67% of My Commits Were Infrastructure.”</strong> Own the unglamorous. A love letter to build/test/CI work — the contributions that never show up in a release announcement but without which nothing ships. This is your strongest, most authentic angle.</li>\n\n\n\n<li class=\"\"><strong>“Confessions of a Nocturnal Committer.”</strong> Fun, human, data-driven: your midnight-to-4am commit cluster, Tuesday/Thursday peaks, the dead January. Chart your year as a heartbeat and reflect on what it says about maintainer rhythms (and sustainability/burnout).</li>\n\n\n\n<li class=\"\"><strong>“216 Times.”</strong> Companion to your 2024 props post, flipped: this year you <em>received</em> credit ~216 times in core (119 committed + 97 propped). Explore the two halves of a committer’s fingerprint — the work you land yourself vs. the work you shepherd for others.</li>\n\n\n\n<li class=\"\"><strong>“The Boring Commits That Keep 40% of the Web Safe.”</strong> The supply-chain security angle: pinned SHAs, abandoned-action replacement, the GitHub App migration, ca-bundle. Frame maintenance-as-security — timely and underappreciated.</li>\n\n\n\n<li class=\"\"><strong>“I Test the Future So You Don’t Break in It.”</strong> MySQL 9.7, MariaDB 12.1, PHP 8.5 — a piece on being the person who runs tomorrow’s platforms against today’s code, and why the test matrix is a form of care.</li>\n\n\n\n<li class=\"\"><strong>“The Commit I’m Proudest Of Was One Line About AI.”</strong> Use <em>“Include example for disclosing AI usage”</em> as a springboard into how WordPress (and you) navigated AI’s arrival in the contribution workflow in 2025–26. Very of-the-moment.</li>\n\n\n\n<li class=\"\"><strong>“Anatomy of a Revert.”</strong> Six times this year you reverted your own or others’ work. A candid, senior-contributor essay on why reverting is a feature not a failure — iteration, humility, and trunk stability.</li>\n\n\n\n<li class=\"\"><strong>“A Year in Dependencies.”</strong> The stewardship story — lodash/underscore/backbone/getID3/Twemoji. What it means to be the caretaker of code written a decade ago that you can’t just delete. Legacy as responsibility.</li>\n\n\n\n<li class=\"\"><strong>“Who I Built With.”</strong> Refresh your collaborator lens for year 13: westonruter (24), jorbin (22), johnbillion (15), peterwilsoncc (14), wildworks (13)… Name the people behind the props lines and tell a story or two about the work you shared.</li>\n\n\n\n<li class=\"\"><strong>“The Shape of a Release Cycle, Drawn in Commits.”</strong> Overlay your monthly commit counts on the 6.9 and 7.0 timelines — the March spike, the December bundled-themes push, the quiet stretches. Show readers what a maintainer’s year <em>looks like</em> mapped to what shipped.</li>\n\n\n\n<li class=\"\"><strong>“Same Job, New Tools: Automating Myself Out of the Loop.”</strong> Your Gutenberg PRs are almost all release automation — GitHub App auth, GHCR publishing, reproducible builds, Dependabot. A reflective piece on spending your labor building the machine that does the labor, and what that means for the next generation of contributors.</li>\n</ol>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\"></blockquote>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"wp-block-paragraph\">I haven’t validated any of these numbers, but they do seem relatively accurate at first glance. I had ChatGPT create an embroidered patch that reflects the summary above.</p>\n\n\n\n<figure class=\"wp-block-image size-large is-resized wp-lightbox-container\"><img alt=\"\" class=\"wp-image-12221 not-transparent\" height=\"1024\" src=\"https://jonathandesrosiers.com/wp-content/uploads/2026/07/plumber-of-wordpress-1024x1024.jpg\" width=\"1024\" /><button class=\"lightbox-trigger\" type=\"button\">\n <svg fill=\"none\" height=\"12\" viewBox=\"0 0 12 12\" width=\"12\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M2 0a2 2 0 0 0-2 2v2h1.5V2a.5.5 0 0 1 .5-.5h2V0H2Zm2 10.5H2a.5.5 0 0 1-.5-.5V8H0v2a2 2 0 0 0 2 2h2v-1.5ZM8 12v-1.5h2a.5.5 0 0 0 .5-.5V8H12v2a2 2 0 0 1-2 2H8Zm2-12a2 2 0 0 1 2 2v2h-1.5V2a.5.5 0 0 0-.5-.5H8V0h2Z\" fill=\"#fff\">\n </svg>\n </button></figure>\n\n\n\n<p class=\"wp-block-paragraph\">And some of those writing suggestions are pretty good ideas! I’m out of time for today, so I’ll file these in the backlog for another day. But here’s to another year of helping the world find their voice to share their stories using WordPress. <img alt=\"?\" class=\"wp-smiley\" src=\"https://s.w.org/images/core/emoji/17.0.2/72x72/1f37b.png\" style=\"height: 1em;\" /></p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-past-milestones\">Past Milestones</h2>\n\n\n\n<p class=\"wp-block-paragraph\">“Props” Anniversaries: <a href=\"https://jonathandesrosiers.com/2023/07/10-years-of-contributing-to-wordpress/\">Ten</a>, <a href=\"https://jonathandesrosiers.com/2024/07/11-years-contributing-to-wordpress/\">Eleven</a>, <a href=\"https://jonathandesrosiers.com/2025/07/12-years-contributing-to-wordpress/\">Twelve</a> (<a href=\"https://jonathandesrosiers.com/category/contributing-anniversaries/\">archive</a>).</p>\n\n\n\n<p class=\"wp-block-paragraph\">Commit-iversaries: <a href=\"https://jonathandesrosiers.com/2020/11/two-years-my-wordpress-commit-iversary/\">Two</a>, <a href=\"https://jonathandesrosiers.com/2023/11/five-years-my-wordpress-commit-iversary/\">Five</a>, <a href=\"https://jonathandesrosiers.com/2024/11/six-years-a-committer-my-wordpress-commit-iversary/\">Six</a>, <a href=\"https://jonathandesrosiers.com/2025/11/seven-years-a-committer-my-wordpress-commit-iversary/\">Seven</a> (<a href=\"https://jonathandesrosiers.com/category/commit-iversaries/\">archive</a>).</p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" />\n\n\n\n<p class=\"has-text-align-right has-small-font-size wp-block-paragraph\"><em>Featured image credit: <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a> licensed <a href=\"https://wordpress.org/photos/photo/72361fea8c/\">photo</a> by <a href=\"https://wordpress.org/photos/author/westguard/\">Mark Westguard</a> from the <a href=\"https://wordpress.org/photos/\">WordPress Photo Directory</a>.</em></p>\n\n\n\n<p class=\"wp-block-paragraph\"></p>\n<p>The post <a href=\"https://jonathandesrosiers.com/2026/07/13-years-contributing-to-wordpress/\">13 Years Contributing to WordPress</a> appeared first on <a href=\"https://jonathandesrosiers.com\">Jonathan Desrosiers</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Thu, 09 Jul 2026 03:39:36 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:19:\"Jonathan Desrosiers\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:44;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:25:\"Matt: Code for the People\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153500\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://ma.tt/2026/07/people-code/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:4081:\"<figure class=\"wp-block-image size-full\"><a href=\"https://codeforthepeople.com/\"><img alt=\"\" class=\"wp-image-153503\" height=\"326\" src=\"https://i0.wp.com/ma.tt/files/2026/07/cftp-matt.jpeg?resize=604%2C326&quality=89&ssl=1\" width=\"604\" /></a></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Lights! Camera! Action!</p>\n\n\n\n<p class=\"wp-block-paragraph\">Todd Spangler at Variety writes: <a href=\"https://variety.com/2026/digital/news/automattic-code-for-the-people-1236802508/\">Automattic’s ‘Code for the People’ Documentary Is a Rallying Cry for Users to Fight for the Open Internet</a>, from the NYC premiere last week.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I’m looking forward to the <a href=\"https://luma.com/r8wbww10\">San Francisco premiere of the documentary</a>, and then tomorrow everyone <a href=\"https://codeforthepeople.com/\">can stream it for free on codeforthepeople.com</a>! Appearances by <a href=\"https://nomad.blog/\">Anne McCarthy</a>, <a href=\"https://beau.blog/\">Beau Lebens</a>, <a href=\"https://eric.blog/\">Eric Binnion</a>, <a href=\"https://iandanielstewart.com/\">Ian Stewart</a>, <a href=\"https://marjorie.blog\">Marjorie Asturias</a>, <a href=\"https://mary.blog/\">Mary Hubbard</a>, <a href=\"https://matiasventura.com/\">Matías Ventura</a>, Matthew Miller, <a href=\"https://paolo.blog/\">Paolo Belcastro</a>, and <a href=\"https://paulmaiorana.com/\">Paul Maiorana</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>We need to tell the story of Open Source in as many ways and places as possible. It’s never been more critical. </strong></p>\n\n\n\n<p class=\"wp-block-paragraph\">Film is new to us, and it’s funny how quickly things change: There’s a segment with a few “OpenAI not open” sound bites, but to their credit, they <a href=\"https://openai.com/open-models/\">have been releasing open-weight models (Safeguard is particularly interesting)</a>. That said, the <a href=\"https://artificialanalysis.ai/leaderboards/models?weights=open\">top open-weight models are all from China</a>, save for <a href=\"https://www.nvidia.com/en-us/ai-data-science/foundation-models/nemotron/\">Nvidia’s Nemotron</a>, in ~12th place. </p>\n\n\n\n<p class=\"wp-block-paragraph\">When I went to the first WordCamps <a href=\"https://ma.tt/2008/09/first-day-in-beijing/\">in Beijing</a> and <a href=\"https://ma.tt/2008/09/shanghai-wordcamp/\">Shanghai</a> in 2009, it was a very different time. They were the biggest in the world at the time! I don’t think you could <a href=\"https://ma.tt/2008/09/first-day-in-beijing/#jp-carousel-7712\">take photos in Tiananmen Square as freely as I did then</a>; now to visit I think you need an appointment, ID checks, and security checks. </p>\n\n\n\n<p class=\"wp-block-paragraph\">Even during WordCamp, it felt like the freedom of Open Source was in high demand, but it also created a lot of fear. I found out later that one of the student volunteers who helped their professor organize everything had been taken in for hours of questioning following the event.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On that trip, I saw how fine-grained the Great Firewall could be when individual posts (IIRC, about bad milk from a factory harming babies) wouldn’t load, but the rest of the site would. WordPress.com had been totally blocked, <a href=\"https://web.archive.org/web/20090601162213/http://www.google.com/hostednews/afp/article/ALeqM5igVn4hcj6ZNWlawSvzLvgEMkZmkQ\">taking about a quarter of our traffic at the time</a>, but behind the Firewall, Open Source continued to thrive and grow, and now the frontier open models are being driven by China in a way I never would have predicted!</p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Once you’ve had a taste of freedom, it’s hard to go back.</strong></p>\n\n\n\n<p class=\"wp-block-paragraph\"><em>Update: You can now watch the entire thing online:</em></p>\n\n\n\n<figure class=\"wp-block-embed alignwide is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\"><div class=\"wp-block-embed__wrapper\">\n\n</div></figure>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2026 23:16:07 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:45;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:123:\"WPTavern: #224 – David Snead on Building Trust and Collaboration in the Hosting Industry With the Secure Hosting Alliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:48:\"https://wptavern.com/?post_type=podcast&p=206201\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:137:\"https://wptavern.com/podcast/224-david-snead-on-building-trust-and-collaboration-in-the-hosting-industry-with-the-secure-hosting-alliance\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:37674:\"<details>Transcript<div>\n<p class=\"wp-block-paragraph\">[00:00:19] <strong>Nathan Wrigley:</strong> Welcome to the Jukebox Podcast from WP Tavern. My name is Nathan Wrigley.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Jukebox is a podcast which is dedicated to all things WordPress. The people, the events, the plugins, the blocks, the themes, and in this case, building trust and collaboration in the hosting industry with the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’d like to subscribe to the podcast, you can do that by searching for WP Tavern in your podcast player of choice, or by going to wptavern.com/feed/podcast, and you can copy that URL into most podcast players.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have a topic that you’d like us to feature on the podcast, I’m keen to hear from you, and hopefully get you, or your idea, featured on the show. Head to wptavern.com/contact/jukebox, and use the form there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So on the podcast today, we have David Snead. David has been involved in the hosting industry since 1999, starting out as legal counsel for one of the earliest shared hosting companies, and going on to work with over 50 others. He helped found the i2Coalition, serve as in-house counsel for cPanel and WebPros, and now leads the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re listening to this podcast, I’m sure that many of you will have worked closely with hosting companies. Perhaps you run an agency, or business, that depends on the reliability, ethics, and security of hosting providers. David is here to talk about cross-industry collaboration in the hosting world, specifically around improving security, professionalism, and communication between hosts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on why, and how, the Internet Infrastructure Forum, or IIF, is building a framework for real-time intelligence sharing and abuse reporting, aiming to help the entire ecosystem detect and prevent attacks faster than adversaries can adapt.</p>\n\n\n\n<p class=\"wp-block-paragraph\">David talks about the challenges hosting companies face, especially smaller ones, in keeping up with security, and how this evolving project hopes to ease this by sharing actionable, non-proprietary abuse information across registrars, hosting providers, DNS services, and more.</p>\n\n\n\n<p class=\"wp-block-paragraph\">He discusses the growth of both the Secure Hosting Alliance and the IIF, the business case for collaboration, and the nuances of legal and technical information sharing across borders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re in hosting, run a web agency, or just want to know how the backbone of the web is working to stay more secure and connected, this episode is for you.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re interested in finding out more, you can find all of the links in the show notes by heading to wptavern.com/podcast, where you’ll find all the other episodes as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And so, without further delay, I bring you David Snead.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I am joined on the podcast by David Snead. Hello David.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:20] <strong>David Snead:</strong> Hello.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:21] <strong>Nathan Wrigley:</strong> Very nice to have you with us. David’s got a really interesting background, and a really interesting, I’m going to use the word project. I don’t know if that’s the right word. It feels like it’s got more solidity and it’s got a lot more history than that. It’s something which is, I think going, but we’ll find out a little bit more about it. It’s all about the hosting industry and trying to get hosts to, I guess communicate with each other in ways going forwards.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:03:44] <strong>David Snead:</strong> That is a part of it. There are really two goals and one is to level up the ethics and professionalism in the hosting industry. And the second is to facilitate more comradery and interaction among hosts. Something that folks felt occurred in the early 2000s, and with all the consolidation that occurred went away. And so that’s something that we’re also trying to facilitate.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:16] <strong>Nathan Wrigley:</strong> Okay. So given that we’re going to be talking about hosting, I guess it’s a good idea to paint your credentials and find out a little bit more about you. So a short opportunity to just tell us a little about you and your background in WordPress and hosting specifically, I suppose.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:04:29] <strong>David Snead:</strong> Sure. So I have been working in the hosting industry since 1999. As I often say, I was working in the hosting industry when hosting was cool. It is not so cool anymore. In fact most people don’t really pay attention to it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">You know, and I started as a lawyer for a hosting company, and I was in-house counsel for a company that actually owned a hosting company and was one of the earliest hosting companies that specialised in shared hosting. And so I was their general counsel. And for some reason it stuck, and I’ve just kind of turned it into a career.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So after that I had a private practise as a lawyer and I worked with probably 50 different hosting companies, mostly writing policies that nobody ever reads, which makes me super fun at parties.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And then from there, my friend Christian Dawson and I formed the i2Coalition as a response to some legislation in the US that would’ve been kind of the death nail for internet providers. So we started the i2Coalition. I then went in-house for cPanel and worked at cPanel and WebPros for 10 years, and then started the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:52] <strong>Nathan Wrigley:</strong> Okay. So you’ve got all all the history. That’s pretty good. You know, if we’re going to talk about hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:05:57] <strong>David Snead:</strong> All the hosting history in one person. That’s kind of a very scary idea, no?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:02] <strong>Nathan Wrigley:</strong> But that’s excellent. So do you still offer counsel? Is that still, so you haven’t sort of sidestepped and do half of the week on a sort of more technical basis? It’s still the legal side that you’re involved in.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:13] <strong>David Snead:</strong> I do. Right now I’m doing mostly M&A work for, it’s weird. So I don’t know if anybody has ever said this to you before, but web hosting is kind of like the Hotel California. It’s like, once you start in the web hosting industry, you never leave. And so I have all these clients from 15 years ago who are now running like little baby hosts, and they’re talking to bigger hosts and they want to get acquired. So I’m doing some of that now. I am not writing any of the policies that nobody ever reads because that was just, I did that for too long.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:51] <strong>Nathan Wrigley:</strong> There were too many moments parties.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:53] <strong>David Snead:</strong> Yes, exactly. Yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:06:55] <strong>Nathan Wrigley:</strong> Okay, so I’m going to read into the record the title and the blurb that went with the presentation that you are doing or done.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:02] <strong>David Snead:</strong> I did it yesterday.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:07:03] <strong>Nathan Wrigley:</strong> Okay, we’ll get into that in a moment. So the title is coordinating the fight, cross industry collaboration, and the blurb goes as follows. WordPress hosting threats cross company lines. When one provider falls victim, the entire ecosystem suffers. This session explores how the Internet Infrastructure Forum, or IFF, enables hosting providers, registrars and registries to coordinate abuse response through real time intelligence sharing. Learn how operational collaboration helps responsible operators detect and stop attacks faster than adversaries can adapt. And why working together produces results no single provider could achieve alone.</p>\n\n\n\n<p class=\"wp-block-paragraph\">When I read that, immediately was, yeah, that’s a really sensible idea. Why are we separately, as hosting companies, I say we, I mean the hosting companies. Why are they all trying to do the same work over and over again, separately? When presumably this aspect of the work, the security bit is something they all have in common.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:08:05] <strong>David Snead:</strong> Right? So that’s the fundamental question, right? So the IIF is a voluntary organisation that is made up of everyone in the infrastructure stack. So from registrars, registries, DNS providers, hosting providers, cloud providers, everyone in the stack. So it is facilitated by the Internet and Jurisdiction Foundation. They’re based in Paris, and they’re the actually the secretariat for it.</p>\n\n\n\n<p class=\"wp-block-paragraph\">And what it’s designed to do is create a common way for everyone who’s in the infrastructure stack to share information about abuse and abuse issues. And it’s one of the fundamental problems that you referred to is everybody is operating in a silo, right? And that’s mostly because that’s the way the internet is architected, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the internet is architected, so it’s distributed, right? Registrars and registries basically do their own thing with domain names. They might have a small hosting component or maybe a cloud component, but by and large, all they do is domain names.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Hosting providers probably resell domain names, but they’re not part of that industry. And so how do they all coordinate? And that’s what the IIF is trying to facilitate, is more information sharing among the participants.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:09:39] <strong>Nathan Wrigley:</strong> Well I imagine some of the hosting companies are probably fairly good. You know, they’ve got a giant customer base. Let’s imagine hosting company X over there, they’ve got millions of customers. They’ve got a huge budget that they can put over to, let’s say, security things. Well that’s all well and good, brilliant. But then there are other companies who are much scrappier. You know, they maybe have only a few thousand customers. And so their budget for the exact same work is going to be reduced.</p>\n\n\n\n<p class=\"wp-block-paragraph\">How will this work? Is it going to be like a subscription service basically? Will you have a membership, which is in some way equal to the number of clients that you’ve got? Will there be some expectation that, okay, we’ll look at your revenue, your membership will be equivalent to a percentage of your revenue? How will that all work?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:10:20] <strong>David Snead:</strong> We don’t know. This is a very early stage project. Right now we are in a prototype phase where we have just figured out what information folks should submit to the secretariat.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So the way it works is, you submit the information that you collect for a particular abuse issue to the secretariat, who then enriches it with all the other information that’s been submitted and sends it to the right person.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So a great example is, let’s say a registrar reported a phishing domain. They turn off the phishing domain and they have maybe a timestamp, an IP address where it was submitted from. They submit that to the secretariat, who then finds the hosting company who is providing the services for the hosting and says, this came in about this particular site. Can you take action on that? So that’s the way it works.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Right now it’s very early stage. It’s in the first phase of a test, and we’re going to look at whether the way we’ve architected it, or the way the group has architected it, actually makes sense.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:11:39] <strong>Nathan Wrigley:</strong> Is this going to be then a sort of slow on ramp whereby you bring a few companies in at the beginning, hopefully. And then one or two more and iron out the wrinkles, and then some more and some more? Because I imagine, if you just threw the switch, everybody’s in, a lot could go wrong at that point. And I’m guessing there’s going to be more of a slow on ramp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:12:00] <strong>David Snead:</strong> So you’ve pointed out my particular frustration with the IIF, and the reason that the secretariat is moving slowly, right? So fortunately, or unfortunately, based on my cultural background, I’m just sitting here going, this needs to move faster. We need to have everybody involved, we need to have all the hosts involved, we need to have all the registrars and registries. And other folks who are a little bit more skilled in this type of work say, no, we need to figure out what we’re doing and that requires a small number of people.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The phase that we’re in right now is looking for more folks who are interested in sitting at the table and being part of the discussion. Particularly in the hosting industry and in the web design and marketing industry. Those are folks who don’t generally participate in these kind of industry led collaboration exercises. And that’s the reason that I’m at WordCamp, is to talk to web designers, marketing agencies about why they should participate in something like this.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:13] <strong>Nathan Wrigley:</strong> So this really isn’t bound in any way to WordPress, is it? It just so happens that WordPress has a significant chunk of the internet, so this is a good place to start. But if you happen to be a, I don’t know, Drupal user, or you’re just into writing PHP code or whatever it may be, this is still applicable. There’s no real WordPress layer to this. This is just a good place for you to come because, well, there’s probably, what, 30 hosts, 100 yards away from us out there.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:37] <strong>David Snead:</strong> I know. And I haven’t seen all of them yet.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:39] <strong>Nathan Wrigley:</strong> Yeah, there’s work to do. But agnostic to any platform, basically.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:42] <strong>David Snead:</strong> It is completely platform agnostic, yeah.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:13:43] <strong>Nathan Wrigley:</strong> Okay. Okay, that’s interesting. But WordPress is a, is certainly a good place to start.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Now, I’m imagining, if I was a hosting company and I was the chief executive, I definitely have some questions for you in terms of, okay, we’re going to share our valuable intel with you, what are you going to do with that? How can we trust you? How do we know that the sharing is going to be done effectively and what have you?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So I guess really what I’m getting to is, what is the assurances or checks and balances that you, in the end, will hope to offer the host? That you can assure them that, look, if you hand us this body of work, you don’t need to think about it again. You can trust us to do it honourably, effectively, collaboratively. You get where going.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:14:26] <strong>David Snead:</strong> Yeah, yeah. And I suspect that you wanted to be a lawyer at some time, because that’s one of the issues that we’re facing. Information that can be shared freely, as an example, in the United States, might not be capable of being shared so freely in the European Union, or in Brazil, or in India or someplace like that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So one of the things that’s being done, not by me, but by another group, another working group that’s part of this, is analysing the legal issues around information sharing.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The information that’s being shared, to answer the proprietary and confidentiality question, is not proprietary or confidential information. So it’s things like timestamps, domain names, IP addresses for the initial abuse submission. Things like that that really don’t indicate some sort of company confidential information. And it’s further abstracted into xarf, which is a language that’s used for abuse reporting, that we all can share. And so I think that the only thing that would be of concern is whether that information is personal information that’s subject to jurisdictional restrictions around the world.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:15:48] <strong>Nathan Wrigley:</strong> Would the idea be that this organisation would do the remedial work? So is there any notion that, let’s say for example, some sort of security problem was discovered by hosting company A over there, and they share that intel with you. Maybe the question is kind of asking, will you then appoint people to figure out what the patch is for that? Or is your idea just to, oh, red flag, we’ve got this problem, now you all know about it. Is it just information sharing as opposed to fixes?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:17] <strong>David Snead:</strong> Yeah, it’s the latter. So the thing that we’re solving for right now, so there’s just one issue that, one abuse issue, that we’re testing out and it’s issues related to fake shops. And so the fake shop issue is the test abuse issue for the project, and where folks are sharing information. It’s a particular problem right now with credentials harvesting. And so that’s what we’re trying to look at.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:43] <strong>Nathan Wrigley:</strong> And how has the conversations that you’ve had thus far, how have they gone? Has this been warmly received or are you facing a little bit of pushback?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:16:50] <strong>David Snead:</strong> So, look, I’ll be very direct with you. If something isn’t just an immediate threat to them, it’s very difficult to conceptualise why you should participate. And I am pretty used to answering that question simply based on the political work that I do with the i2Coalition. But once you talk about, so let’s use fake shops as an example. Fake shops, and you’re providing services to fake shops, actually has an impact on your bottom line.</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you are providing, let’s say, payment processing to an entity that is running a fake shop, it very easily can make your credit card processing charges higher. It ends up eating bandwidth. It will tax your abuse resources.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the things that you referred to initially is, you know, larger hosts have a lot of money. I wouldn’t say they have a lot of money, but they have more bandwidth to handle a vast fire hose of abuse issues. Most smaller hosting companies might only get five or six abuse issues in a month. But if you have a fake shop, that’s going to generate a huge amount of abuse, and it’s taking away resources that you can use to actually grow your business. So that argument actually is relatively persuasive in getting folks to pay attention.</p>\n\n\n\n<p class=\"wp-block-paragraph\">I find that the business argument around abuse is a much more compelling discussion than kind of moral persuasion. I don’t think moral persuasion works in the context of a community that is trying very hard just to keep their heads above water.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:18:42] <strong>Nathan Wrigley:</strong> It feels to me from what you’ve just said, and I could be reading too much between the lines, but it feels to me as if a good target audience would be smaller hosts to begin with, simply because they’re probably going to be more receptive because they have less bandwidth themselves. And so would welcome anything that can make the burden of sharing this information easier. So 10 of the small hosts combined is, well, it’s much bigger than each of them individually would be, whereas I suppose you’ll have to get a critical mass of them on board until maybe some of the bigger hosts start to look at you with favourable eyes, let’s say that.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:19:15] <strong>David Snead:</strong> Well, so we have some pretty large hosting companies who are participating. So as an example, both GoDaddy and Newfold are participating. But we also have smaller hosts. But I agree with you, the information that’s being provided, particularly since it is actionable, realistic information that can be adapted for bespoke systems, is invaluable, right?</p>\n\n\n\n<p class=\"wp-block-paragraph\">So if you only get five or six abuse complaints and you get an abuse complaint, and you can go to the secretariat and say, we got a complaint about this domain, and the secretariat says, here’s what the registrar did. Here’s what Cloudflare did. Here’s the information they provided us. And you can use that to make a decision on how to address that problem. It saved you hours and hours and hours of research time.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:09] <strong>Nathan Wrigley:</strong> Technically speaking, what would the conduit of information both toward you and away from you look like? So if I’m hosting company X, how are you imagining that I will supply you with that information? But also, if I’m just looking for information from you on a daily, weekly basis, whatever it may be, how do I receive that? Is this like a, I don’t know, a website or an API or?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:33] <strong>David Snead:</strong> It’s an API. So it’s a file. It’s just a general file download.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:37] <strong>Nathan Wrigley:</strong> Right, okay. So it’s readily available 24/7?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:40] <strong>David Snead:</strong> Right. That’s the goal. Right now it’s not, but the goal is to kind of figure out a way to make something like that possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:20:47] <strong>Nathan Wrigley:</strong> Yeah, okay. I also suppose that the hosting companies, whilst this is good for their business if they can minimise costs and hand a lot of this work over to you, there’s a part of them which would also probably like to put some sort of badge on their website to say, this is what we’re doing. We’re part of this alliance, for want of a better word. Is that something that you are looking to develop as well, you know, some sort of credentialing system to demonstrate that you’re in this?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:21:12] <strong>David Snead:</strong> So that’s not something that the IIF is working on. It’s something that the Secure Hosting Alliance does. The Secure Hosting Alliance has a trust seal that we give to hosts who fulfil our Trust Seal Certification provisions. But that’s not something that the IIF does.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Talking about like why, other than business reasons, folks should participate in this, one of the things that is going on that I would suggest that most hosts know about, is there’s a little bit of a moral panic going on in the world about what contents you have. And regulation is actually a very real thing for the hosting industry, who has not ever been regulated. This is the time where you can say, hey, this is what we’re doing, right? We’re dealing with issues. This way a trust seal is the same thing, right? It’s something that you can say, we are actually taking steps to make the internet a better place.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:18] <strong>Nathan Wrigley:</strong> I think if you are a general agency owner or, I don’t know, just a freelancer, hosting is one of those things that you, once you’ve done it once, you’re in it for the long haul until something goes wrong. But you’re also browsing around for any tiny indication of why is this host slightly different? You know, what is it that they’re doing that, I don’t know, is faster? What is it that they’re doing that’s more secure? So it feels to me if you had a credentialing system and I began to hear about it and see it pop up again and again, it would be one of the metrics which I would weigh up when looking at hosting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:22:51] <strong>David Snead:</strong> I would think so. One of the things that a trust seal does is it indicates that there’s been some vetting of the host. That someone has determined the things that are important to the hosting industry and are important to the web design industry. The agency industry are also important to the host.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Great example of that is one of the provisions of the Secure Hosting Alliances’ Trust Seal Certification is that a contract is presented to the customer before they sign up, which is super customer friendly.</p>\n\n\n\n<p class=\"wp-block-paragraph\">One of the things as a lawyer that you hear about all the time when people are dissatisfied with their services is, yeah, well, I never saw that contract. Or it was just a hyperlink in an email that I got. That’s one of the differentiators for a Trust Seal certified host is that the contract is actually presented to them, to the customer beforehand.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:23:57] <strong>Nathan Wrigley:</strong> So in terms of the WordPress crowd, is this a thing that you are pitching only to hosts? Like when you step out of here, are you trying to have conversations only with hosts? Or is there some bit of the WordPress community, the freelance, the agency owners? Are you trying to communicate with them just to scope out what they need?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:15] <strong>David Snead:</strong> So for both the Secure Hosting Alliance and for the IIF, it is that. I really enjoy talking to agencies and developers about whether this is important to them, or why it might be important to them.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:31] <strong>Nathan Wrigley:</strong> In terms of how long this project’s been going, I’ve only heard of it because of your participation here, but I don’t know if you’ve been banging this gong for a decade or, I mean you’ve been in the industry for long enough to have been banging it for decades. Is this a new initiative or is this something which has a long and storied history?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:24:49] <strong>David Snead:</strong> So the Secure Hosting Alliance has only been active for a year, a little bit over a year. I’ve been talking about abuse for a long time, but the Secure Hosting Alliance has only been around for a year.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:01] <strong>Nathan Wrigley:</strong> And have you, in that year, got any intuitions that you’ll be here for another year? Is it basically going in the right direction?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:09] <strong>David Snead:</strong> It is going in the right direction. So we started out with two or three charter members. We now have 25 hosting members. We have three security vendors who are members as well. We have, I think, 17 Trust Seal Certified members, and we’re launching in 2027 a trust seal for security vendors who provide services to hosting companies.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:25:40] <strong>Nathan Wrigley:</strong> I know that several owners of hosting companies listen to this podcast. They may very well be the people that you’ve spoken to already, but if they are not, and they are people who would like to investigate this further, I suppose the thing that’s going to be in their head is, okay, Nathan and David, you’ve explained what I’ll get out of it, what do I need to put into it? So is this an annual financial commitment? How does it all work from that point of view?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:02] <strong>David Snead:</strong> Yeah, so you become a member of the i2Coalition. And so the Secure Hosting Alliance is a working group of the i2Coalition. So you would be a general member and you would participate in the Secure Hosting Alliances’ working groups. You also have the ability to participate in the i2Coalition as a whole, which is a much larger trade association that represents almost everyone in the internet infrastructure vertical. Mostly doing policy work, primarily in the US and the EU. Although there’s, we’re doing some work in India right now as well.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:40] <strong>Nathan Wrigley:</strong> And does membership allow you to steer the future of the project? I know that lots of chefs in the kitchen results in terrible food, but that, I fear, is something that could happen. You’ve got 87 members, 260 members. And then the 260 members all start to bicker and, you know, we want this, no. You see how it goes.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:59] <strong>David Snead:</strong> I do.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:26:59] <strong>Nathan Wrigley:</strong> What’s the position there? You know, is there sort of gated levels of membership? How are you organising all of that?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:27:04] <strong>David Snead:</strong> There are not. The membership is based on self-reported revenue. The membership is not horrifically expensive from my perspective. And I think that that, most of our members would say that it is, it’s actually relatively affordable, particularly for the small to medium sized hosts. And registrars or design agencies, anyone who’s participating.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The question about, who’s running the show, comes up quite a bit. We haven’t really faced that issue, particularly in the Secure Hosting Alliance. Folks seem to get along. But the organisation runs on the idea of rough consensus. And so decisions end up not being controlled by one member or not. Some of the i2Coalition has some very large companies who everybody knows about, who get along with startups, and folks against whom they compete directly. And policies still get made. The organisation still moves forward.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:11] <strong>Nathan Wrigley:</strong> Yeah, I guess you’re in a space where, obviously all of these hosting companies commercially are vying for everybody else’s business. But in this particular situation, that is not the case. Nobody’s vying for their websites to be less secure. They all want the same level of security. So at least in that sense, you would hope that consensus could be maintained even if, commercially, the two companies that are in the room, the 10 companies that are in the room might be commercially at loggerheads with each other. At least on this they could agree. That would be the hope, I suppose, anyway.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:28:47] <strong>David Snead:</strong> It seems to be, not only the hope, but the actual way that things work. You ask about how compromise is reached. What comes to mind is I have a much different concept of privacy than, particularly when I was at WebPros, than other folks in the i2Coalition had. And another company just called me up and we worked through our disagreements about how privacy should be handled within the i2Coalition and were able to move forward.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The industry I’ve found to be hugely collaborative, particularly the hosting industry. Everybody knows what their competitor is doing. But when it comes to addressing an issue like, how are we going to deal with abuse as a community? Folks come together. CEOs of hosting companies while they compete tend to be relatively good friends.</p>\n\n\n\n<p class=\"wp-block-paragraph\">As I said at the very beginning, it really is like the Hotel California, right? You come in as a CEO of a hosting company, you grow it and you sell it to another company. All of a sudden you’re at the bottom again with a server in your grandma’s basement, you know, trying to start again.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:08] <strong>Nathan Wrigley:</strong> It’s a really curious effort. I suppose really at the bottom of this entire podcast is your endeavour to be heard and to reach out and get some conversations going. So with that in mind, where do people find the information about this? So maybe there’s a website that we could mention. But also, is there a specific place where you hang out? Is there a place where you would like to be contacted most?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:30:33] <strong>David Snead:</strong> Sure. So our website is hostingsecurity.net. I’m not too afraid of getting too much spam. So folks can email me at snead@i2coalition.com And the two is the numeral two. So it’s snead@i2coalition.com. And I’m happy to answer questions.</p>\n\n\n\n<p class=\"wp-block-paragraph\">In terms of hanging out, I am at most industry conferences in the hosting industry. In the WordPress industry, I’ll be at WordCamp US. We also participate very heavily in ICANN. So there is an i2Coalition member at every single ICANN meeting.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:12] <strong>Nathan Wrigley:</strong> So if you go to wptavern.com and you search for the episode with David Snead, S-N-E-A-D, you’ll be able to find those details. I’ll put everything into the show notes. So anything that I missed? Was there a particular focus that we didn’t touch?</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:26] <strong>David Snead:</strong> No, this is actually one of the most thorough podcasts I’ve been on recently.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:31] <strong>Nathan Wrigley:</strong> That’s love to hear it. Well, David Snead, thank you very much for joining me today.</p>\n\n\n\n<p class=\"wp-block-paragraph\">[00:31:35] <strong>David Snead:</strong> Glad to be here. Thanks for having me.</p>\n</div></details>\n\n\n\n<p class=\"wp-block-paragraph\">On the podcast today we have David Snead.</p>\n\n\n\n<p class=\"wp-block-paragraph\">David has been involved in the hosting industry since 1999, starting out as legal counsel for one of the earliest shared hosting companies and going on to work with over 50 others. He helped found the i2Coalition, serve as in-house counsel for cPanel and WebPros, and now leads the Secure Hosting Alliance.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re listening to this podcast, I’m sure that many of you will have worked closely with hosting companies. Perhaps you run an agency or business that depends on the reliability, ethics, and security of hosting providers. David is here to talk about cross-industry collaboration in the hosting world, specifically around improving security, professionalism, and communication between hosts.</p>\n\n\n\n<p class=\"wp-block-paragraph\">The conversation focused on why and how the Internet Infrastructure Forum (IIF) is building a framework for real-time intelligence sharing and abuse reporting, aiming to help the entire ecosystem detect and prevent attacks faster than adversaries can adapt.</p>\n\n\n\n<p class=\"wp-block-paragraph\">David talks about the challenges hosting companies face, especially smaller ones, in keeping up with security, and how this evolving project hopes to ease this by sharing actionable, non-proprietary abuse information across registrars, hosting providers, DNS services, and more. He discusses the growth of both the Secure Hosting Alliance and the IIF, the business case for collaboration, and the nuances of legal and technical information sharing across borders.</p>\n\n\n\n<p class=\"wp-block-paragraph\">If you’re in hosting, run a web agency, or just want to know how the backbone of the web is working to stay more secure and connected, this episode is for you.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Useful links</h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://i2coalition.com\">i2coalition website</a></p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https://hostingsecurity.net\">Secure Hosting Alliance website</a></p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2026 14:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:14:\"Nathan Wrigley\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:46;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:118:\"HeroPress: “Listen… the birds are already singing” – “Послухай… пташки заспівали”\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:56:\"https://heropress.com/?post_type=heropress-essays&p=8704\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:146:\"https://heropress.com/essays/listen-the-birds-are-already-singing/#utm_source=rss&utm_medium=rss&utm_campaign=listen-the-birds-are-already-singing\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:37329:\"<img alt=\"Pull Quote: WordCamp Europe has become one of the few places where [Ukranians] can reassemble in person. WordCamp Europe став одним із небагатьох місць, де [українці] можуть знову зібратися разом наживо.\" class=\"attachment-large size-large wp-post-image\" height=\"512\" src=\"https://heropress.com/wp-content/uploads/3026/07/volodymyr_banner.webp\" width=\"1024\" /><p class=\"wp-block-paragraph\"><a href=\"https://heropress.com/feed/#ukranian\">Це есе також доступно українською</a>.</p>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/07/volodomyr_english_recording.mp3\"></audio><figcaption class=\"wp-element-caption\">Listen to Volodymyr read his own story aloud.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">“Listen… the birds are already singing,” said Danylo — a Ukrainian I’d met at a previous WordCamp — as we were wrapping up the last hour of the WCEU afterparty in Krakow. “It’s time for us to go.” He started singing “Hei! Hei! Hei, sokoly! Omynaite hory, lisy, doly.” I started singing with him. The Polish guys next to us continued singing in Polish “Dzwoń, dzwoń, dzwoń dzwoneczku, Mój stepowy skowroneczku.” Some people behind us joined the choir. That was “Hey Sokoly” — a Ukrainian-Polish folk song — carrying us out of Bastion III, a 19th-century Austrian fortress on the edge of Krakow’s Old Town, as the night turned to morning.</p>\n\n\n\n<p class=\"wp-block-paragraph\">But to explain how I ended up there, I need to go back to where it all began.</p>\n\n\n\n<figure class=\"wp-block-image size-full\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/krakow_castle2.webp\"><img alt=\"Krakow Castle in morning light\" class=\"wp-image-8713\" height=\"1606\" src=\"https://heropress.com/wp-content/uploads/3026/07/krakow_castle2.webp\" width=\"1402\" /></a><figcaption class=\"wp-element-caption\">The view of the Krakow castle, taken on the morning after the after-party, around the time when birds were singing. Photo by Volodymyr Melnychenko.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-mykolaiv\">Mykolaiv</h2>\n\n\n\n<p class=\"wp-block-paragraph\">It all started in Mykolaiv, the city of shipbuilders and brides, where I spent my childhood. I graduated from two universities I had been attending simultaneously and started looking for a job during a gap year. I planned to find work to earn some money for further education while preparing for the entrance exams to one of the Finnish universities. Mykolaiv didn’t provide good opportunities for graduates unless you had very good connections, but I managed to find a job at an “IT” company. In 2011, the term “IT” didn’t mean much to me, but they required English, which was my major, so I thought — why not. The work wasn’t particularly difficult: I had to pretend to be “Bob” from the United States, helping customers who had purchased physical products by tracking their orders and walking them through setup instructions. I was fired after a month and a half. Maybe I underperformed, or maybe somebody just didn’t like me — either way, it’s water under the bridge.<br /><br />The first job I’d gotten entirely on my own, the first paycheck that proved I could be independent, and the first time being fired — all of it hit me at once. The last part was devastating, made worse by comments like “it was too good to be true,” “we told you they’d trick you,” and “look at so-and-so, doing such-and-such and earning properly.” It was hard to sit with feeling like a failure. But somewhere in that difficulty, I got tougher — and more determined to prove everyone wrong.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-templatemonster\">TemplateMonster</h2>\n\n\n\n<p class=\"wp-block-paragraph\">The first job was a failure, but it gave me one clear answer: I needed to stay in IT. The next job was TemplateMonster.com — well known in certain circles. It was the complete opposite of what I’d experienced before. In 2012 they were selling templates for the most popular CMS platforms of the time: WordPress, Joomla, Drupal, and various e-commerce solutions. The onboarding alone took two months, which tells you something about how seriously they took their people — staff rarely left, and when they did, it was for personal reasons, not because they were pushed out.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />My job was to help customers with their templates: installation, editing, customization. Difficult, but genuinely interesting — I liked it. This was the first time I encountered WordPress. I worked six nights a week, and Sundays were the strangest — your day off, but your body had adjusted to night shifts and refused to cooperate. None of that bothered me much. Being able to build sites and make things look exactly right was addictive. I overworked, learned constantly, pestered developers with questions, all just to quench my thirst for knowledge. It ended quickly: I got accepted into three master’s programs in Finland, chose one, and left for Central Finland.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-helsinki\">Helsinki</h2>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image3.webp\"><img alt=\"Closeup of a glass of orange juice with croissants next to it, and a projection screen in the background.\" class=\"wp-image-8715\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/3026/07/image3-1024x1024.webp\" style=\"width: 400px;\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Morning “Weekly” at booncon PIXELS, my first workplace in Helsinki. Photo by Volodymyr Melnychenko.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">Studying in Finland was genuinely different from anything I’d known in Ukraine — in the best possible way. Once the mandatory courses were done, I started looking for work. It was harder than I expected: a year of passive searching, then six months of applying every day. Eventually, I landed at a Helsinki-based agency building WordPress websites — which is still what I do today. A friendly team, around ten people — I’m still close with many of them. We built sites of varying complexity during the day and spent evenings playing board games, swapping stories, and throwing the occasional party.</p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s also where I attended my first WordPress event: WordCamp Helsinki 2017, a two-day conference. It didn’t blow me away, but it opened something. When you work in a small agency, you live inside your own bubble — and then suddenly a whole other world appears. You see the other side of WordPress: the community, the people pushing it forward, the people wrestling with the same problems you are and finding creative ways through.<br /><br />That first local WordCamp was enough to make us want to go further. In 2019 the team went to Berlin for WCEU — my first trip abroad outside of the Finland-Ukraine route I knew well. We spent a few days exploring the city and attending the event. WordCamp Europe is a different scale entirely: thousands of attendees, hundreds of volunteers making it happen. Standing in that crowd, I knew I wanted to be part of it — not just as a visitor. And then corona happened.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-porto\">Porto</h2>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image1.webp\"><img alt=\"Volodymyr leaning on a handrail with Krakow in the background.\" class=\"wp-image-8718\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/3026/07/image1-768x1024.webp\" style=\"width: 400px;\" width=\"768\" /></a><figcaption class=\"wp-element-caption\">Me, standing on the roof the Super Bock Arena, where the WCEU 2022 took place. Photo by Oleksandr Misyats.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WCEU 2020 and 2021 were online, and I felt they were missing the whole point — thousands of people in one place, feeding off each other’s energy. So when Porto was announced for 2022, I started packing. This time, I joined as a volunteer, to see WordCamp from the inside. It was the right call. It was also a difficult time for Ukrainians — the full-scale invasion was by then well into its second year, and everyone was finding their own way to cope. For me, this event became a source of strength. I connected with the Ukrainian community, had real conversations with speakers, and came away feeling like I’d experienced what WCEU is actually for.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />That trip also clarified something I’d been circling around for a while. I’ve always loved traveling, but there was a barrier that had nothing to do with visas or money — though those were factors too. It was a justification problem. Coming from a culture where time should be spent purposefully, traveling for its own sake felt hard to defend. A work conference, though? Completely justifiable. Nobody asks how much fun you had. I’ve been to Germany, Portugal, Italy, Switzerland, and Poland this way. Spain is next.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Attending WordCamps is one thing. Building a similar event is another.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-suomi\">WP Suomi</h2>\n\n\n\n<p class=\"wp-block-paragraph\">In 2025 I became the lead organizer of <a href=\"https://wpsuomi.fi/\">WP Suomi</a> — the first independent Finnish WordPress event, held in Helsinki. The months before October 10th were intensive in ways I hadn’t anticipated: budgets, logistics, gifts, merch, catering, venue coordination, a hundred small details that needed to be right simultaneously. I remember waking up at midnight worrying that I hadn’t ordered something in time and it wouldn’t arrive before the event. Most of the work that goes into an event like this is invisible to the people attending. They see the schedule, the food, the afterparty. They don’t see the half a year of pieces being polished before the puzzle comes together.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image5.webp\"><img alt=\"Banner for WP Suomi\" class=\"wp-image-8721\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/3026/07/image5-1024x576.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">WP Suomi hall screen graphics. Graphics by Sergei Shchegrinets.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">On the day of the event, there was nothing left to worry about. Whatever needed doing had been done — if something had been missed in the preparation, it would show up now and there would be little we could do about it. So why worry? The time for that was the preparation, not the day itself. The team — experienced, reliable, no hand-holding required — knew exactly what they were there for.<br /><br />Around 300 people attended WP Suomi. Forty filled out our feedback form afterward, giving an overall score of 4.47 out of 5. But the number mattered less than what people wrote: networking, atmosphere, meeting old friends and new ones, a community that welcomes everyone openly. Reading that, I recognized the same feeling I’d had at WordCamp Helsinki 2017 — something new, interesting, and full of possibility.<br /><br />Organizing WP Suomi gave me a clearer understanding of what goes into making these events happen. Having been a volunteer at WCEU and then a lead organizer at WP Suomi, I arrived in Krakow with a slightly different perspective — a better sense of what the people around me were going through. This year I’m back on the WP Suomi organizing team as speakers coordinator — a different role, another angle.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image2.webp\"><img alt=\"Milania Cap near a presentation podium.\" class=\"wp-image-8723\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/3026/07/image2-1024x683.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Milana Cap is ready to show some magic with HTML API. She is one of two people who convinced Vladimir to become the lead organizer of WP Suomi ‘25. Photo by Asanka Hettiarachchi.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-krakow\">Krakow</h2>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamps have changed for me over the years — less about the sessions on stage, more about what happens between them. As an organizer, you miss most of the talks anyway, pulled in ten directions at once. But real life happens in the corridors, and at the parties in the evenings. </p>\n\n\n\n<p class=\"wp-block-paragraph\">This matters especially for the Ukrainian community. The war has scattered us across Europe — different countries, different companies, different lives. WordCamp Europe has become one of the few places where we reassemble in person: to share what the year brought, to meet people we only knew online, to see the community still growing despite everything. Many couldn’t make it to Krakow, some would not be able to visit these events anymore. For those of us who could, the room carried extra weight. </p>\n\n\n\n<p class=\"wp-block-paragraph\">That’s what Danylo and I were singing about at dawn outside Bastion III, even if neither of us said it out loud. I hope to do that someday in the afterparties in Helsinki and Kyiv — whenever that becomes possible again.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/3026/07/image4.webp\"><img alt=\"Ukrainian team at WordCamp Torino 2024.\" class=\"wp-image-8725\" height=\"684\" src=\"https://heropress.com/wp-content/uploads/3026/07/image4-1024x684.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Ukrainian team at WordCamp Torino 2024. More and more Ukrainians visit this event every year despite the war. Photo by Maksym Kaharlytskyi. </figcaption></figure>\n\n\n\n<div class=\"wp-block-group has-background is-vertical is-nowrap is-layout-flex wp-container-core-group-is-layout-ff19e26b wp-block-group-is-layout-flex\" id=\"desktop\">\n<h2 class=\"kt-adv-heading8704_097876-99 wp-block-kadence-advancedheading\" id=\"work-environment\">Volodymyr’s Work Environment</h2>\n\n\n\n<p class=\"wp-block-paragraph\">We asked Volodymyr for a view into his development life and this is what he sent!</p>\n\n\n <div class=\"hotspots-image-container\">\n <img alt=\"Volodymyr’s Desk\" class=\"hotspots-image skip-lazy\" height=\"1890\" src=\"https://heropress.com/wp-content/uploads/2026/07/img_5363.webp\" width=\"2560\" />\n </div>\n\n\n\n\n<p class=\"has--font-size wp-block-paragraph\">HeroPress would like to thank <a href=\"https://wpdrawattention.com/\">Draw Attention</a> for their donation of the plugin to make this interactive image!</p>\n</div>\n\n\n\n<h1 class=\"wp-block-heading\" id=\"ukranian\">“Послухай… пташки заспівали”</h1>\n\n\n\n<figure class=\"wp-block-audio\"><audio controls=\"controls\" src=\"https://heropress.com/wp-content/uploads/3026/07/volodomyr_ukrainian_recording.mp3\"></audio><figcaption class=\"wp-element-caption\">Слухайте власну історію Володимира вголос.</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">«Послухай… пташки заспівали», — сказав Данило, українець, з яким я познайомився на попередньому WordCamp — ми якраз протеревенили останню годину afterparty WCEU у Кракові. «Значить нам теж час іти». І тут він від душі почав співати «Гей, гей, гей, соколи, оминайте гори, ліси, доли». Я підхопив пісню разом із ним. Поляки, що ішли поруч продовжили польською: «Dzwoń, dzwoń, dzwoń dzwoneczku, mój stepowy skowroneczku». Хтось позаду теж приєднався до хору. Це була «Гей, соколи» — українсько-польська народна пісня — під акомпанемент якої нас виносив натовп із Бастіону III, австрійської фортеці XIX століття на околиці краківського Старого міста, саме тоді, коли вже ніч переходила у ранок.<br /><br />Щоб пояснити, як я там опинився, доведеться повернутися до самого початку цієї історії.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/krakow_castle2.webp\"><img alt=\"\" class=\"wp-image-8748\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/07/krakow_castle2-894x1024.webp\" width=\"894\" /></a><figcaption class=\"wp-element-caption\">Вид на Краківський замок, фото зроблене зранку після вечірки, приблизно в той час коли “вже заспівали пташки”. Фото зроблене Володимиром Мельниченко. </figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-миколаїв\">Миколаїв</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Ця історія бере свій початок у Миколаєві – місті суднобудівельників і наречених, де я виріс. Здобув освіту у двох університетах, де навчався одночасно і почав шукати роботу під час року перерви перед продовженням навчання. Я планував знайти собі роботу, щоб заробити грошенят для продовження навчання, готуючись до вступу в один із фінських університетів. У Миколаєві було важко знайти якісь серйозні перспективи для випускника, хіба що в тебе є зв’язки, але я примудрився знайти роботу в “IT” компанії. У 2011 термін “АйТі” нічого мені не говорив, але там потрібна була англійська, яка була моїм основним предметом в університеті, тому я подумав, а чом би й ні? Робота не була важкою: треба було казати, що я “Боб” із США і допомагати клієнтам, які купували фізичні продукти, відслідковувати їх замовлення і давати інструкції, як використовувати оте, що вони поназамовляли. Мене звільнили через півтора місяці. Можливо, я щось не так робив, можливо, просто не вдався обличчям — у будь-якому випадку, що було, то загуло. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />На цю роботу я влаштувався самостійно, без будь-якої підтримки, перша заробітна плата була символом моєї незалежності, і перше звільнення — це був бурхливий вир емоцій. Але остання частина просто вибила землю з-під моїх ніг, гірше тільки зробили коментарі на кшталт: “це було занадто добре, щоб бути правдою”, “та ми тобі казали, що там надурять”, і “подивись на нього — він робить те та й се, ще й добре заробляє”. Дуже важко було бути вдома і відчувати себе невдахою. Але це відчуття зробило набагато більше ніж будь-яка ефемерна підтримка — воно мене загартувало і пробудило палке бажання довести, що всі помилялися щодо мене.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-templatemonster-0\">TemplateMonster</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Хоч перша робота виявилась провалом, вона дала мені чітке розуміння, що треба продовжувати шукати роботу в IT. Наступну роботу я знайшов у TemplateMonster.com — добре відому у певних колах. Вона була повною протилежністю моєму минулому досвіду. У 2012 році вони продавали шаблони для більшості популярних CMS-ок того часу: WordPress, Joomla, Drupal, і для різних рішень електронної комерції. Лише ознайомлення з роботою і навчання зайняло два місяці, що промовисто свідчить про те, наскільки серйозно компанія сприймала своїх людей — майже ніколи не звільняли, а якщо люди й ішли з роботи, то з власних причин.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Моїм завданням було допомагати клієнтам із шаблонами, які вони придбали: встановлення, налаштування, редагування. Було доволі складно, але дуже цікаво — мені подобалося. Тоді я вперше познайомився із WordPress. Я працював шість ночей на тиждень, а неділі були найважчими, бо тіло звикало до активності вночі і відмовлялося спати. Хоча такий графік мене не дуже турбував. Можливість створювати будь-які сайти і кастомізувати їх саме під себе — оце було до дідька захопливо. Я багато перепрацьовував, вивчав щось нове, заколупував розробників питаннями, щоб хоч трохи вгамувати жагу до знань. Але усе закінчилося несподівано швидко: я отримав три листи про зарахування на магістратуру у Фінляндії, вибрав один університет і поїхав до Центральної Фінляндії.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-гельсінкі\">Гельсінкі</h2>\n\n\n\n<p class=\"wp-block-paragraph\">Система навчання у Фінляндії побудована зовсім по-іншому — і, на мою думку, на краще. Коли я закінчив основні курси моєї спеціальності, я почав шукати роботу. Завдання було не з легких: рік я шукав пасивно, де-не-де подаючи заявки на роботу, і ще пів року я зайнявся цим активно, відгукуючись на декілька вакансій щодня. Зрештою, доля занесла мене у Гельсінське агентство, що розробляло сайти на WordPress — цим я займаюся і сьогодні. У нас була дуже дружня команда, приблизно з десяти людей, з більшістю з них я досі дружу. Ми будували сайти дуже різного рівня складності, удень, вечорами грали в настолки, ділились історіями зі свого життя і влаштовували грандіозні вечірки.</p>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image3.webp\"><img alt=\"\" class=\"wp-image-8751\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/07/image3-1024x1024.webp\" style=\"width: 400px;\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Вранішній “Weekly” у booncon PIXELS, моєму першому агентстві у Гельсінкі. Фото зроблене Володимиром Мельниченко. </figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">З цією командою я вперше відвідав подію WordPress: WordCamp Helsinki 2017 — дводенну конференцію. Я не був вражений наповал, але вона відкрила мої очі на дещо. Коли ти працюєш у маленькому агентстві, і живеш у своїй бульбашці, а тут неочікувано відкривається цілий всесвіт. Ти бачиш іншу сторону WordPress — спільноту, людей, які рухають увесь проект вперед, людей, які стикаються з тими самими проблемами, які знаходять творчі способи ці проблеми вирішити. </p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Того першого місцевого WordCamp’у було достатньо, щоб нам захотілося рухатися далі. У 2019 році наша команда поїхала до Берліна на WordCamp Europe — це була моя перша закордонна поїздка за межі звичного для мене маршруту між Фінляндією та Україною. Ми провели кілька днів, досліджуючи місто й відвідуючи конференцію. Масштаб відчувався зовсім по-іншому: тисячі учасників і сотні волонтерів, які усе організовують. Стоячи серед цього натовпу, я зрозумів, що хочу бути частиною цього, і не просто як відвідувач.</p>\n\n\n\n<p class=\"wp-block-paragraph\">А потім почалася пандемія коронавірусу.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-порто\">Порто</h2>\n\n\n\n<figure class=\"wp-block-image alignright size-large is-resized\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image1.webp\"><img alt=\"\" class=\"wp-image-8754\" height=\"1024\" src=\"https://heropress.com/wp-content/uploads/2026/07/image1-768x1024.webp\" style=\"width: 400px;\" width=\"768\" /></a><figcaption class=\"wp-element-caption\">Я, стою на даху Super Bock Arena, де проводився WCEU 2022. Фото зроблене Олександром Місяц</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WordCamp Europe 2020 і 2021 років проходили онлайн, і мені здавалося, що вони втратили найголовніше — тисячі людей, зібраних в одному місці, які заряджають одне одного своєю енергією. Тож коли оголосили, що WCEU 2022 відбудеться в Порту, я почав збирати валізу. Цього разу я приєднався до команди волонтерів, щоб побачити WordCamp зсередини. І це було правильне рішення. Для українців це був непростий час — повномасштабне вторгнення вже тривало, і кожен шукав свій спосіб впоратися з новою реальністю. Для мене цей захід став джерелом сили. Я ближче познайомився з українською спільнотою, жваво дискутував зі спікерами й повернувся з відчуттям, що нарешті зрозумів, нашо той WordCamp.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Та поїздка також допомогла мені усвідомити дещо, над чим я давно розмірковував. Я завжди любив подорожувати, але існував бар’єр, який не мав стосунку ні до віз, ні до грошей — хоча й вони теж відігравали свою роль. Проблема була в тому, як виправдати саму подорож. Я виріс у культурі, де час потрібно витрачати з користю, тому подорожувати просто заради подорожі здавалося чимось, що важко пояснити. А ось робоча конференція — зовсім інша справа. Це цілком виправдана причина. Ніхто не питає, скільки задоволення ти на ній отримав. Саме так я побував у Німеччині, Португалії, Італії, Швейцарії та Польщі. Наступна — Іспанія.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Відвідувати WordCamp — це одне. Створювати подібний захід — зовсім інше.</p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-wp-suomi-0\">WP Suomi</h2>\n\n\n\n<p class=\"wp-block-paragraph\">У 2025 році я став головним організатором <a href=\"https://wpsuomi.fi/\">WP Suomi</a> — першого незалежного фінського заходу, присвяченого WordPress, що відбувся в Гельсінкі. Місяці, які передували 10 жовтня, виявилися набагато напруженішими, ніж я очікував. Бюджет, логістика, подарунки, мерч, кейтеринг, координація локації — і сотні дрібниць, які мали зійтися в потрібний момент. Пам’ятаю, як прокидався посеред ночі з думкою, що не встиг замовити щось вчасно і воно не приїде до початку події. Більшість роботи, яка стоїть за такими заходами, залишається непомітною для учасників. Вони бачать програму, їжу, афтепаті. Але не бачать тих пів року, протягом яких окремі деталі поступово складаються в єдину картину.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image5.webp\"><img alt=\"\" class=\"wp-image-8758\" height=\"576\" src=\"https://heropress.com/wp-content/uploads/2026/07/image5-1024x576.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Графіка WP Suomi на великому екрані у холі місця проведення. Графіка створена Сергієм Шенгрінцем</figcaption></figure>\n\n\n\n<p class=\"wp-block-paragraph\">WP Suomi відвідали близько 300 людей. Після заходу сорок учасників заповнили форму зворотного зв’язку, оцінивши його в середньому на 4,47 із 5. Але для мене важливішою була не сама оцінка, а те, що люди писали: нетворкінг, атмосфера, зустрічі зі старими друзями й нові знайомства, спільнота, яка відкрито приймає кожного. Читаючи ці відгуки, я згадав себе і те саме відчуття, яке пережив на WordCamp Helsinki 2017, — це щось нове, захопливе й сповнене можливостей.</p>\n\n\n\n<p class=\"wp-block-paragraph\"><br />Організація WP Suomi допомогла мені значно краще зрозуміти, що стоїть за проведенням таких заходів. Після досвіду волонтера на WCEU, а згодом і головного організатора WP Suomi, я приїхав до Кракова вже з іншим поглядом — набагато краще розуміючи, через що проходять люди, які працюють поруч. Цього року я знову в команді організаторів WP Suomi, але вже в ролі координатора спікерів. Інша відповідальність, інший погляд.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image2.webp\"><img alt=\"\" class=\"wp-image-8760\" height=\"683\" src=\"https://heropress.com/wp-content/uploads/2026/07/image2-1024x683.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Milana Cap готова показати магію з HTML API. Вона одна із двох людей, винних у тому, що я став головним організатором WP Suomi ‘25. Фото зроблене Asanka Hettiarachchi.</figcaption></figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-краків\">Краків</h2>\n\n\n\n<p class=\"wp-block-paragraph\">За ці роки WordCamp для мене змінився. Тепер він менше про доповіді на сцені й більше про те, що відбувається між ними. Як організатор, ти все одно пропускаєш більшість виступів, адже тебе одночасно тягнуть у десять різних боків. Але справжнє життя вирує в коридорах і на вечірках після завершення основних сесій.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Особливо важливо це для української спільноти. Війна розкидала нас по всій Європі — різні країни, різні компанії, різні життя. WordCamp Europe став одним із небагатьох місць, де ми можемо знову зустрітися наживо: поділитися тим, що приніс цей рік, побачитися з людьми, яких досі знали лише онлайн, і переконатися, що наша спільнота продовжує зростати попри все. Багато хто не зміг приїхати до Кракова, на жаль дехто вже ніколи не зможе побувати на цих заходах. Для тих із нас, кому це вдалося, ці зустрічі мають особливе значення.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Саме про це ми з Данилом співали на світанку біля Bastion III, хоча ніхто з нас не сказав цього вголос. Сподіваюся, колись мені ще доведеться робити це на афтепаті в Гельсінкі та Києві — щойно це знову стане можливим.</p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https://heropress.com/wp-content/uploads/2026/07/image4.webp\"><img alt=\"\" class=\"wp-image-8761\" height=\"684\" src=\"https://heropress.com/wp-content/uploads/2026/07/image4-1024x684.webp\" width=\"1024\" /></a><figcaption class=\"wp-element-caption\">Українська команда на WordCamp Europe Torino 2024. Все більше і більше українців приїжджає на цей захід незважаючи на війну. Фото зроблене Максимом Кагарлицьким. </figcaption></figure>\n<p>The post <a href=\"https://heropress.com/essays/listen-the-birds-are-already-singing/\">“Listen… the birds are already singing” – “Послухай… пташки заспівали”</a> appeared first on <a href=\"https://heropress.com\">HeroPress</a>.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Wed, 08 Jul 2026 05:00:00 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:21:\"Volodymyr Melnychenko\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:47;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:39:\"BuddyPress: BuddyPress 14.5, 12.7, 11.6\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:32:\"https://buddypress.org/?p=339549\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:60:\"https://buddypress.org/2026/07/buddypress-14-5-0-and-12-7-0/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2951:\"<p class=\"wp-block-paragraph\">BuddyPress <a href=\"https://downloads.wordpress.org/plugin/buddypress.14.5.0.zip\">14.5.0</a>, <a href=\"https://downloads.wordpress.org/plugin/buddypress.12.7.0.zip\">12.7.0</a>, and <a href=\"https://downloads.wordpress.org/plugin/buddypress.11.6.0.zip\">11.6.0 </a>are now available.</p>\n\n\n\n<p class=\"wp-block-paragraph\">These are security and maintenance releases that include two security fixes, along with a number of compatibility improvements, bug fixes, and code modernization updates. We strongly recommend updating your sites as soon as possible.</p>\n\n\n\n<h2 class=\"wp-block-heading\">Highlights</h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Two security issues:\n<ul class=\"wp-block-list\">\n<li>Prevent user ID spoofing in the Messages REST API endpoint via improved validation.</li>\n\n\n\n<li>Restrict Component management to Users with the appropriate Capabilities.</li>\n</ul>\n</li>\n\n\n\n<li>Improves compatibility with WordPress 6.9, including support for block style loading optimizations and replacement of deprecated WordPress APIs where appropriate.</li>\n\n\n\n<li>Includes numerous bug fixes across BuddyPress, including BP Nouveau, Groups, Friends, Activity, Administration, and several PHP 8.x compatibility improvements.</li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\">Download</h2>\n\n\n\n<p class=\"wp-block-paragraph\">You can update automatically from your WordPress Dashboard, or download BuddyPress 14.5.0 directly:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://wordpress.org/plugins/buddypress/\">https://wordpress.org/plugins/buddypress/</a></li>\n\n\n\n<li><a href=\"https://buddypress.org/download/\">https://buddypress.org/download/</a></li>\n</ul>\n\n\n\n<p class=\"wp-block-paragraph\">For the complete list of changes included in this release, see the changelog:</p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https://codex.buddypress.org/releases/version-14-5-0/\">https://codex.buddypress.org/releases/version-14-5-0/</a></li>\n</ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"block-8935e1e5-ef63-42ee-8c08-67fad827159a\">Many thanks to our 14.5.0 contributors </h2>\n\n\n\n<p class=\"wp-block-paragraph\">Thanks to everyone who contributed patches, testing, reviews, bug reports, and responsible security disclosures that helped make this release possible.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Contributors include: emaralive, vapvarun, westonruter, joelkarunungan, nikunj8866, shawfactor, r-a-y, t.schwarz, dcavins, noruzzaman, rollybueno, potcus, pratiklondhe, yatesa01, bhargavbhandari90, amitraj2203, GaryJ., espellcaste, needle, and johnjamesjacoby.</p>\n\n\n\n<p class=\"wp-block-paragraph\">Security issues were responsibly disclosed via the <a href=\"https://hackerone.com/wordpress\">WordPress Bounty Program over at HackerOne</a> and through the <a href=\"https://make.wordpress.org/plugins/\">WordPress Plugins Team.</a> If you were not properly attributed for your contribution here, leave a comment and we’ll get you added.</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2026 17:57:32 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:17:\"John James Jacoby\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:48;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:37:\"Open Channels FM: Signal – Issue 16\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:34:\"https://openchannels.fm/?p=2556589\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:40:\"https://openchannels.fm/signal-issue-16/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:172:\"Insights into the DevRel role\'s importance, explore endless API possibilities, and consider the balance of digital freedom, cost, and usability in today’s tech landscape.\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Tue, 07 Jul 2026 13:04:10 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:8:\"Bob Dunn\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}i:49;a:6:{s:4:\"data\";s:21:\"\n \n \n \n \n \n \n \n \n \n \n\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";s:5:\"child\";a:2:{s:0:\"\";a:5:{s:5:\"title\";a:1:{i:0;a:5:{s:4:\"data\";s:13:\"Matt: USA 250\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"guid\";a:1:{i:0;a:5:{s:4:\"data\";s:23:\"https://ma.tt/?p=153462\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:4:\"link\";a:1:{i:0;a:5:{s:4:\"data\";s:30:\"https://ma.tt/2026/07/usa-250/\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:11:\"description\";a:1:{i:0;a:5:{s:4:\"data\";s:2410:\"<p class=\"wp-block-paragraph\">This auspicious 250th Independence Day, I find myself thinking of what <a href=\"https://om.co/2013/08/13/iamerican/\">Om wrote in iAMerican when he became a US citizen in 2013</a>.</p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">On a globe, America is a landmass, a country. In an immigrant’s heart it is a belief that future is almost always better. It may not be perfect and it is certainly not equal, but it still is one of a kind — the only place where an absolute stranger with a funny name and a funny accent with no friends or contacts can show up, work hard and actually get to do what he was destined to do. […]</p>\n\n\n\n<p class=\"wp-block-paragraph\">In most places in the world, outsiders like me don’t have that chance. That simple truth is what makes America so special. A chance – to be somebody even if you are nobody. America is a state of mind and I have opted-in!</p>\n</blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I feel lucky to have been born here, and if I hadn’t been, I think I would have gotten here as fast as I could. I’m grateful to the public schools that educated me, the <a href=\"https://ma.tt/about/#teachers\">teachers</a> who pushed me, the internet that freed my mind, and the culture of risk and innovation in technology that <a href=\"https://ma.tt/2006/04/a-little-funding/\">invested a million dollars</a> in a 21-year-old dropout kid trying to <a href=\"https://automattic.com/\">build a company</a> around (but not replacing) <a href=\"https://wordpress.org/\">an Open Source project</a>.</p>\n\n\n\n<p class=\"wp-block-paragraph\">It’s not unimaginable that these things could have happened someplace else, but it would have been a long shot.</p>\n\n\n\n<p class=\"wp-block-paragraph\">On the lighter side, <a href=\"https://www.youtube.com/watch?v=JYqfVE-fykk\">SNL’s Washington’s Dream skit is one of their best ever</a>, <a href=\"https://www.youtube.com/watch?v=Q3RjZY-rSsc\">Google has a pretty funny commercial reimagining the Declaration being written</a>, and <a href=\"https://www.youtube.com/watch?v=ezs9h7Td8Zg\">another famous Matthew (McConaughey) gives a great 2-minute speech</a>. “We need skeptics. Yes, we do. We do not need cynics. One cares enough to question, which we should, and the other one’s already quit.”</p>\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}s:7:\"pubDate\";a:1:{i:0;a:5:{s:4:\"data\";s:31:\"Sun, 05 Jul 2026 06:59:52 +0000\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}s:32:\"http://purl.org/dc/elements/1.1/\";a:1:{s:7:\"creator\";a:1:{i:0;a:5:{s:4:\"data\";s:4:\"Matt\";s:7:\"attribs\";a:0:{}s:8:\"xml_base\";s:0:\"\";s:17:\"xml_base_explicit\";b:0;s:8:\"xml_lang\";s:0:\"\";}}}}}}}}}}}}}}}}s:4:\"type\";i:128;s:7:\"headers\";a:9:{s:6:\"server\";s:5:\"nginx\";s:4:\"date\";s:29:\"Wed, 29 Jul 2026 21:53:13 GMT\";s:12:\"content-type\";s:8:\"text/xml\";s:13:\"last-modified\";s:29:\"Wed, 29 Jul 2026 21:45:30 GMT\";s:4:\"vary\";s:15:\"Accept-Encoding\";s:15:\"x-frame-options\";s:10:\"SAMEORIGIN\";s:16:\"content-encoding\";s:2:\"br\";s:7:\"alt-svc\";s:5:\"clear\";s:4:\"x-nc\";s:9:\"HIT dca 1\";}s:5:\"build\";i:1764771750;s:21:\"cache_expiration_time\";i:1785405193;s:23:\"__cache_expiration_time\";i:1785405193;}','off'),(285623,'_transient_timeout_dash_v2_88ae138922fe95674369b1cb3d215a2b','1785405193','off'),(285624,'_transient_dash_v2_88ae138922fe95674369b1cb3d215a2b','<div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/07/wordpress-7-1-beta-4/\'>WordPress 7.1 Beta 4</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/07/wordpress-7-1-beta-3/\'>WordPress 7.1 Beta 3</a></li></ul></div><div class=\"rss-widget\"><ul><li><a class=\'rsswidget\' href=\'https://openchannels.fm/signal-issue-18/\'>Open Channels FM: Signal – Issue 18</a></li><li><a class=\'rsswidget\' href=\'https://wordpress.org/news/2026/07/wordpress-7-1-beta-4/\'>WordPress.org blog: WordPress 7.1 Beta 4</a></li><li><a class=\'rsswidget\' href=\'https://wptavern.com/podcast/227-maciek-palmowski-on-testing-secure-wordpress-hosting-does-the-marketing-match-reality\'>WPTavern: #227 – Maciek Palmowski on Testing Secure WordPress Hosting: Does the Marketing Match Reality?</a></li></ul></div>','off'),(285631,'_site_transient_timeout_browser_a11f5da7336cfe2e2fd950a3d968fdb0','1785968528','off'),(285632,'_site_transient_browser_a11f5da7336cfe2e2fd950a3d968fdb0','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:9:\"131.0.0.0\";s:8:\"platform\";s:5:\"Linux\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285657,'_site_transient_timeout_browser_a44e7ab8cc69f9e2b9db9430df373653','1785989706','off'),(285658,'_site_transient_browser_a44e7ab8cc69f9e2b9db9430df373653','a:10:{s:4:\"name\";s:6:\"Chrome\";s:7:\"version\";s:12:\"94.0.4606.71\";s:8:\"platform\";s:7:\"Windows\";s:10:\"update_url\";s:29:\"https://www.google.com/chrome\";s:7:\"img_src\";s:43:\"http://s.w.org/images/browsers/chrome.png?1\";s:11:\"img_src_ssl\";s:44:\"https://s.w.org/images/browsers/chrome.png?1\";s:15:\"current_version\";s:2:\"18\";s:7:\"upgrade\";b:0;s:8:\"insecure\";b:0;s:6:\"mobile\";b:0;}','off'),(285659,'_site_transient_timeout_theme_roots','1785386714','off'),(285660,'_site_transient_theme_roots','a:6:{s:6:\"enfold\";s:7:\"/themes\";s:15:\"hello-elementor\";s:7:\"/themes\";s:16:\"twentytwentyfive\";s:7:\"/themes\";s:16:\"twentytwentyfour\";s:7:\"/themes\";s:17:\"twentytwentythree\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','off'); INSERT INTO `wp_options` VALUES (285662,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1785384921;s:8:\"response\";a:40:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:37:\"w.org/plugins/all-in-one-wp-migration\";s:4:\"slug\";s:23:\"all-in-one-wp-migration\";s:6:\"plugin\";s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:11:\"new_version\";s:5:\"7.107\";s:3:\"url\";s:54:\"https://wordpress.org/plugins/all-in-one-wp-migration/\";s:7:\"package\";s:72:\"https://downloads.wordpress.org/plugin/all-in-one-wp-migration.7.107.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-256x256.png?rev=2458334\";s:2:\"1x\";s:76:\"https://ps.w.org/all-in-one-wp-migration/assets/icon-128x128.png?rev=2458334\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:79:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-1544x500.png?rev=3490368\";s:2:\"1x\";s:78:\"https://ps.w.org/all-in-one-wp-migration/assets/banner-772x250.png?rev=3490368\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.3\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"5.3\";s:16:\"requires_plugins\";a:0:{}}s:47:\"better-search-replace/better-search-replace.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/better-search-replace\";s:4:\"slug\";s:21:\"better-search-replace\";s:6:\"plugin\";s:47:\"better-search-replace/better-search-replace.php\";s:11:\"new_version\";s:6:\"1.4.11\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/better-search-replace/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/better-search-replace.1.4.11.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-256x256.png?rev=2706527\";s:2:\"1x\";s:74:\"https://ps.w.org/better-search-replace/assets/icon-128x128.png?rev=2706527\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/better-search-replace/assets/banner-1544x500.png?rev=2706527\";s:2:\"1x\";s:76:\"https://ps.w.org/better-search-replace/assets/banner-772x250.jpg?rev=2706527\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.2\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"8.1\";s:16:\"requires_plugins\";a:0:{}}s:21:\"bunnycdn/bunnycdn.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:22:\"w.org/plugins/bunnycdn\";s:4:\"slug\";s:8:\"bunnycdn\";s:6:\"plugin\";s:21:\"bunnycdn/bunnycdn.php\";s:11:\"new_version\";s:5:\"3.1.0\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/bunnycdn/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/bunnycdn.3.1.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:61:\"https://ps.w.org/bunnycdn/assets/icon-256x256.png?rev=3051114\";s:2:\"1x\";s:61:\"https://ps.w.org/bunnycdn/assets/icon-256x256.png?rev=3051114\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/bunnycdn/assets/banner-1544x500.png?rev=3051114\";s:2:\"1x\";s:63:\"https://ps.w.org/bunnycdn/assets/banner-772x250.png?rev=3051114\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.7\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"8.1\";s:16:\"requires_plugins\";a:0:{}}s:33:\"classic-editor/classic-editor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/classic-editor\";s:4:\"slug\";s:14:\"classic-editor\";s:6:\"plugin\";s:33:\"classic-editor/classic-editor.php\";s:11:\"new_version\";s:5:\"1.7.0\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/classic-editor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/classic-editor.1.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-256x256.png?rev=1998671\";s:2:\"1x\";s:67:\"https://ps.w.org/classic-editor/assets/icon-128x128.png?rev=1998671\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/classic-editor/assets/banner-1544x500.png?rev=1998671\";s:2:\"1x\";s:69:\"https://ps.w.org/classic-editor/assets/banner-772x250.png?rev=1998676\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:23:\"elementor/elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:23:\"w.org/plugins/elementor\";s:4:\"slug\";s:9:\"elementor\";s:6:\"plugin\";s:23:\"elementor/elementor.php\";s:11:\"new_version\";s:5:\"4.2.1\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/elementor/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/elementor.4.2.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:62:\"https://ps.w.org/elementor/assets/icon-256x256.gif?rev=3444228\";s:2:\"1x\";s:62:\"https://ps.w.org/elementor/assets/icon-128x128.gif?rev=3444228\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/elementor/assets/banner-1544x500.png?rev=3443226\";s:2:\"1x\";s:64:\"https://ps.w.org/elementor/assets/banner-772x250.png?rev=3443226\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:49:\"w.org/plugins/essential-addons-for-elementor-lite\";s:4:\"slug\";s:35:\"essential-addons-for-elementor-lite\";s:6:\"plugin\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:11:\"new_version\";s:5:\"6.7.2\";s:3:\"url\";s:66:\"https://wordpress.org/plugins/essential-addons-for-elementor-lite/\";s:7:\"package\";s:84:\"https://downloads.wordpress.org/plugin/essential-addons-for-elementor-lite.6.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-256x256.gif?rev=3182943\";s:2:\"1x\";s:88:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/icon-128x128.gif?rev=3182943\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:91:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-1544x500.png?rev=3625253\";s:2:\"1x\";s:90:\"https://ps.w.org/essential-addons-for-elementor-lite/assets/banner-772x250.png?rev=3625253\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.0\";s:16:\"requires_plugins\";a:0:{}}s:71:\"headers-security-advanced-hsts-wp/headers-security-advanced-hsts-wp.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:47:\"w.org/plugins/headers-security-advanced-hsts-wp\";s:4:\"slug\";s:33:\"headers-security-advanced-hsts-wp\";s:6:\"plugin\";s:71:\"headers-security-advanced-hsts-wp/headers-security-advanced-hsts-wp.php\";s:11:\"new_version\";s:5:\"5.3.3\";s:3:\"url\";s:64:\"https://wordpress.org/plugins/headers-security-advanced-hsts-wp/\";s:7:\"package\";s:82:\"https://downloads.wordpress.org/plugin/headers-security-advanced-hsts-wp.5.3.3.zip\";s:5:\"icons\";a:2:{s:2:\"1x\";s:78:\"https://ps.w.org/headers-security-advanced-hsts-wp/assets/icon.svg?rev=3102785\";s:3:\"svg\";s:78:\"https://ps.w.org/headers-security-advanced-hsts-wp/assets/icon.svg?rev=3102785\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:89:\"https://ps.w.org/headers-security-advanced-hsts-wp/assets/banner-1544x500.png?rev=3102792\";s:2:\"1x\";s:88:\"https://ps.w.org/headers-security-advanced-hsts-wp/assets/banner-772x250.png?rev=3102777\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.7\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:42:\"w.org/plugins/premium-addons-for-elementor\";s:4:\"slug\";s:28:\"premium-addons-for-elementor\";s:6:\"plugin\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:11:\"new_version\";s:7:\"4.11.91\";s:3:\"url\";s:59:\"https://wordpress.org/plugins/premium-addons-for-elementor/\";s:7:\"package\";s:79:\"https://downloads.wordpress.org/plugin/premium-addons-for-elementor.4.11.91.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:81:\"https://ps.w.org/premium-addons-for-elementor/assets/icon-128x128.gif?rev=3495451\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:84:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-1544x500.png?rev=3495451\";s:2:\"1x\";s:83:\"https://ps.w.org/premium-addons-for-elementor/assets/banner-772x250.png?rev=3495451\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"mzkitbq/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"mzkitbq/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"vrrftcs/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"vrrftcs/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"yylpjbc/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"yylpjbc/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"puaedab/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"puaedab/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"xkprbpn/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"xkprbpn/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"olglfnl/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"olglfnl/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"cbdndff/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"cbdndff/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"tbvsaaa/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"tbvsaaa/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"rlmtxqm/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"rlmtxqm/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"zcqnzdc/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"zcqnzdc/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"ohcczdr/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"ohcczdr/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"nngkkrn/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"nngkkrn/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"ndcsbzj/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"ndcsbzj/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"qrdjemb/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"qrdjemb/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"ltgixup/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"ltgixup/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"phspabu/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"phspabu/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"pqgwtig/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"pqgwtig/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"wmoaqrt/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"wmoaqrt/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"uzviaps/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"uzviaps/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"htfzhcl/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"htfzhcl/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"kwiyapv/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"kwiyapv/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"iujvzgg/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"iujvzgg/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:27:\"bmdzduq/protect-uploads.php\";O:8:\"stdClass\":14:{s:2:\"id\";s:29:\"w.org/plugins/protect-uploads\";s:4:\"slug\";s:15:\"protect-uploads\";s:6:\"plugin\";s:27:\"bmdzduq/protect-uploads.php\";s:11:\"new_version\";s:5:\"0.7.0\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/protect-uploads/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/protect-uploads.0.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-256x256.png?rev=2779778\";s:2:\"1x\";s:68:\"https://ps.w.org/protect-uploads/assets/icon-128x128.png?rev=2779778\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:71:\"https://ps.w.org/protect-uploads/assets/banner-1544x500.png?rev=2779778\";s:2:\"1x\";s:70:\"https://ps.w.org/protect-uploads/assets/banner-772x250.png?rev=2779778\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}s:14:\"upgrade_notice\";s:98:\"<p>Adds Site Health checks for uploads protection and updates compatibility for WordPress 7.0.</p>\";}s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:31:\"w.org/plugins/really-simple-ssl\";s:4:\"slug\";s:17:\"really-simple-ssl\";s:6:\"plugin\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:11:\"new_version\";s:5:\"9.7.0\";s:3:\"url\";s:48:\"https://wordpress.org/plugins/really-simple-ssl/\";s:7:\"package\";s:66:\"https://downloads.wordpress.org/plugin/really-simple-ssl.9.7.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-256x256.png?rev=2839720\";s:2:\"1x\";s:70:\"https://ps.w.org/really-simple-ssl/assets/icon-128x128.png?rev=2839720\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/really-simple-ssl/assets/banner-1544x500.png?rev=3100992\";s:2:\"1x\";s:72:\"https://ps.w.org/really-simple-ssl/assets/banner-772x250.png?rev=3100992\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.9.0\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/redirection.5.9.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"6.6\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}s:35:\"responsive-menu/responsive-menu.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/responsive-menu\";s:4:\"slug\";s:15:\"responsive-menu\";s:6:\"plugin\";s:35:\"responsive-menu/responsive-menu.php\";s:11:\"new_version\";s:5:\"4.7.2\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/responsive-menu/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/plugin/responsive-menu.4.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:68:\"https://ps.w.org/responsive-menu/assets/icon-256x256.png?rev=1782326\";s:2:\"1x\";s:68:\"https://ps.w.org/responsive-menu/assets/icon-128x128.png?rev=1782326\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/responsive-menu/assets/banner-772x250.png?rev=1782326\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:31:\"custom-css-js/custom-css-js.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/custom-css-js\";s:4:\"slug\";s:13:\"custom-css-js\";s:6:\"plugin\";s:31:\"custom-css-js/custom-css-js.php\";s:11:\"new_version\";s:4:\"3.53\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/custom-css-js/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/custom-css-js.3.53.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/custom-css-js/assets/icon-128x128.png?rev=1303730\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/custom-css-js/assets/banner-1544x500.png?rev=1770945\";s:2:\"1x\";s:68:\"https://ps.w.org/custom-css-js/assets/banner-772x250.png?rev=1303730\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.0.1\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:43:\"strong-testimonials/strong-testimonials.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:33:\"w.org/plugins/strong-testimonials\";s:4:\"slug\";s:19:\"strong-testimonials\";s:6:\"plugin\";s:43:\"strong-testimonials/strong-testimonials.php\";s:11:\"new_version\";s:5:\"3.3.4\";s:3:\"url\";s:50:\"https://wordpress.org/plugins/strong-testimonials/\";s:7:\"package\";s:68:\"https://downloads.wordpress.org/plugin/strong-testimonials.3.3.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:72:\"https://ps.w.org/strong-testimonials/assets/icon-256x256.png?rev=3134855\";s:2:\"1x\";s:72:\"https://ps.w.org/strong-testimonials/assets/icon-256x256.png?rev=3134855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:74:\"https://ps.w.org/strong-testimonials/assets/banner-772x250.png?rev=3134855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"5.2\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:25:\"sucuri-scanner/sucuri.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:28:\"w.org/plugins/sucuri-scanner\";s:4:\"slug\";s:14:\"sucuri-scanner\";s:6:\"plugin\";s:25:\"sucuri-scanner/sucuri.php\";s:11:\"new_version\";s:5:\"2.7.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/sucuri-scanner/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/sucuri-scanner.2.7.4.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/sucuri-scanner/assets/icon-256x256.png?rev=2875755\";s:2:\"1x\";s:67:\"https://ps.w.org/sucuri-scanner/assets/icon-128x128.png?rev=2875755\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:69:\"https://ps.w.org/sucuri-scanner/assets/banner-772x250.png?rev=2875755\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"3.6\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";b:0;s:16:\"requires_plugins\";a:0:{}}s:31:\"tracking-code-manager/index.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:35:\"w.org/plugins/tracking-code-manager\";s:4:\"slug\";s:21:\"tracking-code-manager\";s:6:\"plugin\";s:31:\"tracking-code-manager/index.php\";s:11:\"new_version\";s:5:\"2.6.0\";s:3:\"url\";s:52:\"https://wordpress.org/plugins/tracking-code-manager/\";s:7:\"package\";s:70:\"https://downloads.wordpress.org/plugin/tracking-code-manager.2.6.0.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:74:\"https://ps.w.org/tracking-code-manager/assets/icon-256x256.jpg?rev=2749278\";s:2:\"1x\";s:74:\"https://ps.w.org/tracking-code-manager/assets/icon-128x128.jpg?rev=2749278\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:77:\"https://ps.w.org/tracking-code-manager/assets/banner-1544x500.png?rev=2749278\";s:2:\"1x\";s:76:\"https://ps.w.org/tracking-code-manager/assets/banner-772x250.png?rev=2749278\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:5:\"3.6.0\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"5.6\";s:16:\"requires_plugins\";a:0:{}}s:39:\"wp-file-manager/file_folder_manager.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:29:\"w.org/plugins/wp-file-manager\";s:4:\"slug\";s:15:\"wp-file-manager\";s:6:\"plugin\";s:39:\"wp-file-manager/file_folder_manager.php\";s:11:\"new_version\";s:5:\"8.0.4\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/wp-file-manager/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/plugin/wp-file-manager.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:68:\"https://ps.w.org/wp-file-manager/assets/icon-128x128.png?rev=2491299\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:70:\"https://ps.w.org/wp-file-manager/assets/banner-772x250.jpg?rev=2491299\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.0\";s:6:\"tested\";s:5:\"6.9.5\";s:12:\"requires_php\";s:5:\"5.2.4\";s:16:\"requires_plugins\";a:0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":13:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:4:\"28.1\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/wordpress-seo.28.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.gif?rev=3419908\";s:2:\"1x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-128x128.gif?rev=3419908\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=3257862\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=3257862\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=3257862\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=3257862\";}s:8:\"requires\";s:3:\"6.8\";s:6:\"tested\";s:5:\"7.0.2\";s:12:\"requires_php\";s:3:\"7.4\";s:16:\"requires_plugins\";a:0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:35:\"classic-widgets/classic-widgets.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:29:\"w.org/plugins/classic-widgets\";s:4:\"slug\";s:15:\"classic-widgets\";s:6:\"plugin\";s:35:\"classic-widgets/classic-widgets.php\";s:11:\"new_version\";s:3:\"0.3\";s:3:\"url\";s:46:\"https://wordpress.org/plugins/classic-widgets/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/plugin/classic-widgets.0.3.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:59:\"https://s.w.org/plugins/geopattern-icon/classic-widgets.svg\";}s:7:\"banners\";a:0:{}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.9\";}}s:7:\"checked\";a:75:{s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";s:5:\"7.102\";s:91:\"all-in-one-wp-migration-unlimited-extension/all-in-one-wp-migration-unlimited-extension.php\";s:4:\"2.58\";s:55:\"AVRIL_JANCOK-a8f769d501e0/AVRIL_JANCOK-a8f769d501e0.php\";s:0:\"\";s:33:\"post-base-nyuo/post-base-nyuo.php\";s:5:\"2.1.3\";s:47:\"better-search-replace/better-search-replace.php\";s:6:\"1.4.10\";s:21:\"bunnycdn/bunnycdn.php\";s:5:\"2.3.8\";s:45:\"cache-optimizer-7d77/cache-optimizer-7d77.php\";s:5:\"2.1.4\";s:45:\"cache-optimizer-3002/cache-optimizer-3002.php\";s:5:\"2.1.4\";s:33:\"classic-editor/classic-editor.php\";s:5:\"1.6.7\";s:35:\"classic-widgets/classic-widgets.php\";s:3:\"0.3\";s:69:\"database-repair-assistant-ffb32a/database-repair-assistant-ffb32a.php\";s:5:\"2.1.4\";s:23:\"pagespeed/pagespeed.php\";s:5:\"1.2.2\";s:23:\"elementor/elementor.php\";s:6:\"3.35.0\";s:31:\"elementor-pro/elementor-pro.php\";s:6:\"3.21.3\";s:65:\"essential-addons-for-elementor-lite/essential_adons_elementor.php\";s:5:\"6.5.9\";s:56:\"essential-addons-elementor/essential_adons_elementor.php\";s:6:\"5.8.17\";s:31:\"galex_6e5078f5/cox_dad6122f.php\";s:5:\"1.0.0\";s:31:\"galex_7e7d31d8/cox_7c3e31e5.php\";s:5:\"1.0.0\";s:31:\"galex_9c8477e9/cox_1d7e1cfb.php\";s:5:\"1.0.0\";s:31:\"galex_73266249/cox_8c3a93b2.php\";s:5:\"1.0.0\";s:29:\"gravityforms/gravityforms.php\";s:6:\"2.4.17\";s:71:\"headers-security-advanced-hsts-wp/headers-security-advanced-hsts-wp.php\";s:5:\"5.2.5\";s:25:\"iptjocjedn/iptjocjedn.php\";s:6:\"2.12.1\";s:21:\"7b864f4f/7b864f4f.php\";s:3:\"1.0\";s:21:\"445620d4/445620d4.php\";s:3:\"1.0\";s:21:\"648452de/648452de.php\";s:3:\"1.0\";s:21:\"d5aaa79e/d5aaa79e.php\";s:3:\"1.0\";s:37:\"h2ok_up_9a1e84dd/h2ok_up_9a1e84dd.php\";s:3:\"1.0\";s:37:\"h2ok_up_38c75b3b/h2ok_up_38c75b3b.php\";s:3:\"1.0\";s:33:\"nx_up_04f98789/nx_up_04f98789.php\";s:3:\"1.0\";s:33:\"nx_up_7b448659/nx_up_7b448659.php\";s:3:\"1.0\";s:33:\"nx_up_f9a4dbd5/nx_up_f9a4dbd5.php\";s:3:\"1.0\";s:33:\"page-lite-hdib/page-lite-hdib.php\";s:5:\"2.7.6\";s:61:\"premium-addons-for-elementor/premium-addons-for-elementor.php\";s:7:\"4.11.67\";s:55:\"premium-addons-pro/premium-addons-pro-for-elementor.php\";s:5:\"2.7.2\";s:27:\"mzkitbq/protect-uploads.php\";s:3:\"0.3\";s:27:\"vrrftcs/protect-uploads.php\";s:3:\"0.3\";s:27:\"yylpjbc/protect-uploads.php\";s:3:\"0.3\";s:27:\"puaedab/protect-uploads.php\";s:3:\"0.3\";s:27:\"xkprbpn/protect-uploads.php\";s:3:\"0.3\";s:27:\"olglfnl/protect-uploads.php\";s:3:\"0.3\";s:27:\"cbdndff/protect-uploads.php\";s:3:\"0.3\";s:27:\"tbvsaaa/protect-uploads.php\";s:3:\"0.3\";s:27:\"rlmtxqm/protect-uploads.php\";s:3:\"0.3\";s:27:\"zcqnzdc/protect-uploads.php\";s:3:\"0.3\";s:27:\"ohcczdr/protect-uploads.php\";s:3:\"0.3\";s:27:\"nngkkrn/protect-uploads.php\";s:3:\"0.3\";s:27:\"ndcsbzj/protect-uploads.php\";s:3:\"0.3\";s:27:\"qrdjemb/protect-uploads.php\";s:3:\"0.3\";s:27:\"ltgixup/protect-uploads.php\";s:3:\"0.3\";s:27:\"phspabu/protect-uploads.php\";s:3:\"0.3\";s:27:\"pqgwtig/protect-uploads.php\";s:3:\"0.3\";s:27:\"wmoaqrt/protect-uploads.php\";s:3:\"0.3\";s:27:\"uzviaps/protect-uploads.php\";s:3:\"0.3\";s:27:\"htfzhcl/protect-uploads.php\";s:3:\"0.3\";s:27:\"kwiyapv/protect-uploads.php\";s:3:\"0.3\";s:27:\"iujvzgg/protect-uploads.php\";s:3:\"0.3\";s:27:\"bmdzduq/protect-uploads.php\";s:3:\"0.3\";s:47:\"really-simple-ssl/rlrsssl-really-simple-ssl.php\";s:5:\"9.5.6\";s:27:\"redirection/redirection.php\";s:5:\"5.6.1\";s:35:\"responsive-menu/responsive-menu.php\";s:5:\"4.6.0\";s:37:\"post-helper-46n6/post-helper-46n6.php\";s:5:\"1.6.5\";s:31:\"custom-css-js/custom-css-js.php\";s:6:\"3.51.3\";s:43:\"strong-testimonials/strong-testimonials.php\";s:6:\"3.2.22\";s:25:\"sucuri-scanner/sucuri.php\";s:3:\"2.6\";s:31:\"tracking-code-manager/index.php\";s:5:\"2.5.0\";s:15:\"pb0SbFH/ubh.php\";s:3:\"1.0\";s:15:\"ivZwcbb/ubh.php\";s:3:\"1.0\";s:29:\"wp-fast-oqo0/wp-fast-oqo0.php\";s:5:\"2.1.8\";s:39:\"wp2shell_28fcf087/wp2shell_28fcf087.php\";s:0:\"\";s:47:\"wp2shell-78bdda7086bc/wp2shell-78bdda7086bc.php\";s:0:\"\";s:23:\"wp-compat/wp-compat.php\";s:5:\"1.3.3\";s:39:\"wp-file-manager/file_folder_manager.php\";s:5:\"8.0.2\";s:35:\"wp-cache-7369ea/wp-cache-7369ea.php\";s:5:\"1.3.3\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"26.9\";}}','off'),(285663,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1785384921;s:7:\"checked\";a:6:{s:6:\"enfold\";s:5:\"4.7.4\";s:15:\"hello-elementor\";s:5:\"2.6.1\";s:16:\"twentytwentyfive\";s:3:\"1.0\";s:16:\"twentytwentyfour\";s:3:\"1.1\";s:17:\"twentytwentythree\";s:3:\"1.4\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:5:{s:15:\"hello-elementor\";a:6:{s:5:\"theme\";s:15:\"hello-elementor\";s:11:\"new_version\";s:5:\"3.4.9\";s:3:\"url\";s:45:\"https://wordpress.org/themes/hello-elementor/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/hello-elementor.3.4.9.zip\";s:8:\"requires\";s:3:\"6.0\";s:12:\"requires_php\";s:3:\"7.4\";}s:16:\"twentytwentyfive\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfive\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfive/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfive.1.5.zip\";s:8:\"requires\";s:3:\"6.7\";s:12:\"requires_php\";s:3:\"7.2\";}s:16:\"twentytwentyfour\";a:6:{s:5:\"theme\";s:16:\"twentytwentyfour\";s:11:\"new_version\";s:3:\"1.5\";s:3:\"url\";s:46:\"https://wordpress.org/themes/twentytwentyfour/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/twentytwentyfour.1.5.zip\";s:8:\"requires\";s:3:\"6.4\";s:12:\"requires_php\";s:3:\"7.0\";}s:17:\"twentytwentythree\";a:6:{s:5:\"theme\";s:17:\"twentytwentythree\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:47:\"https://wordpress.org/themes/twentytwentythree/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/theme/twentytwentythree.1.6.zip\";s:8:\"requires\";s:3:\"6.1\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.2.1.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','off'),(285678,'_site_transient_timeout_wp_theme_files_patterns-5dea2b608e7075ea86a65c8a21c4fbe3','1785400056','off'),(285679,'_site_transient_wp_theme_files_patterns-5dea2b608e7075ea86a65c8a21c4fbe3','a:2:{s:7:\"version\";s:5:\"2.6.1\";s:8:\"patterns\";a:0:{}}','off'); /*!40000 ALTER TABLE `wp_options` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_postmeta` -- DROP TABLE IF EXISTS `wp_postmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_postmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `post_id` (`post_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=7571 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_postmeta` -- LOCK TABLES `wp_postmeta` WRITE; /*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */; INSERT INTO `wp_postmeta` VALUES (1056,131,'_wp_old_slug','macbook-air-ssd-drive'),(1057,131,'_aviaLayoutBuilder_active','active'),(1058,131,'_aviaLayoutBuilderCleanData','[av_two_third first av_uid=\'av-acn83\']\n[av_slideshow size=\'no scaling\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' av_uid=\'av-2psjar\']\n[av_slide id=\'869\' av_uid=\'av-975eb\'][/av_slide]\n[av_slide id=\'868\' av_uid=\'av-2dw9uz\'][/av_slide]\n[av_slide id=\'867\' av_uid=\'av-27r24j\'][/av_slide]\n[av_slide id=\'866\' av_uid=\'av-24kwk3\'][/av_slide]\n[/av_slideshow]\n[/av_two_third]\n\n[av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1yf4rf\']\n[av_heading heading=\'Classic Single Entry\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1piyiz\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'25px\' custom_margin_bottom=\'25px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1kx98z\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-1dnq4j\']\nNulla <strong>consequat</strong> massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu <strong>pede</strong> mollis pretium. Integer tincidunt. Cras dapibus.\n[/av_textblock]\n\n[av_toggle_container initial=\'1\' mode=\'accordion\' av_uid=\'av-16hpjn\']\n[av_toggle title=\'Client\' av_uid=\'av-137eab\']\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n[/av_toggle]\n[av_toggle title=\'Our Task\' av_uid=\'av-vap23\']\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_toggle]\n[av_toggle title=\'Skills Involved\' av_uid=\'av-oxldf\']\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n[/av_toggle_container]\n[/av_one_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kx37n\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'40\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-gztkb\'][/av_heading]\n\n[av_portfolio columns=\'4\' one_column_template=\'special\' items=\'4\' contents=\'title\' preview_mode=\'auto\' image_size=\'portfolio\' linking=\'\' sort=\'no\' paginate=\'no\' query_orderby=\'date\' query_order=\'DESC\' av_uid=\'av-94duz\']\n[/av_section]\n\n'),(1059,131,'_portfolio_custom_link',''),(1060,131,'_portfolio_custom_link_url','http://'),(1061,131,'_preview_ids','864,870,871,865,869,867'),(1062,131,'_preview_display','gallery'),(1063,131,'_preview_autorotation','disabled'),(1064,131,'_preview_columns','6'),(1065,131,'_preview_text','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1066,131,'layout','fullsize'),(1067,131,'sidebar',''),(1068,131,'footer',''),(1069,131,'header_title_bar',''),(1070,131,'header_transparency',''),(1071,131,'breadcrumb_parent',''),(1072,131,'_avia_hide_featured_image','0'),(1073,131,'_avia_builder_shortcode_tree','a:3:{i:0;a:3:{s:3:\"tag\";s:12:\"av_two_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_slideshow\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:3;a:3:{s:3:\"tag\";s:19:\"av_toggle_container\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:1;a:3:{s:3:\"tag\";s:12:\"av_portfolio\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:7;}}'),(1075,139,'_aviaLayoutBuilder_active','active'),(1076,139,'_aviaLayoutBuilderCleanData','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-4o6efv\']\n[av_heading heading=\'This is a single portfolio entry<br/>Style it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-4kdhff\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-4dqghn\']\n\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-fexqb\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-42p4h7\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3us9uj\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-3otykj\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3k6jkb\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-3ci8sz\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-36yc1n\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-31gkg3\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2wvvfn\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2pdpcr\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2j41wb\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2f4g57\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-2977g3\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-22cnob\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-1z1f8j\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1rfjo3\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1l8j4b\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1fw0kb\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-1bfe5n\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-3wwmz\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-vzwgz\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\' av_uid=\'av-s8qqb\']\n\n[/av_one_full][/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-lx1yz\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-eopab\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\' av_uid=\'av-pdor\']\n\n'),(1077,139,'_portfolio_custom_link',''),(1078,139,'_portfolio_custom_link_url','http://'),(1079,139,'_preview_ids','863,866,865,864'),(1080,139,'_preview_display','slideshow'),(1081,139,'_preview_autorotation','6'),(1082,139,'_preview_columns','6'),(1083,139,'_preview_text','[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1084,139,'layout','fullsize'),(1085,139,'sidebar',''),(1086,139,'footer',''),(1087,139,'header_title_bar','hidden_title_bar'),(1088,139,'header_transparency','header_transparent header_with_border'),(1089,139,'breadcrumb_parent',''),(1090,139,'_avia_hide_featured_image','0'),(1091,139,'_avia_builder_shortcode_tree','a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}}s:5:\"index\";i:3;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}}s:5:\"index\";i:7;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}}s:5:\"index\";i:9;}i:4;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}}s:5:\"index\";i:11;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:13;}i:6;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:16;}}s:5:\"index\";i:15;}i:7;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}}s:5:\"index\";i:17;}i:8;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}}s:5:\"index\";i:19;}i:9;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:22;}}s:5:\"index\";i:21;}i:10;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:15:\"av_social_share\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}}s:5:\"index\";i:23;}}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:18:\"av_masonry_entries\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}'),(1092,139,'_wp_old_slug','macbook-air-ssd-drive'),(1093,139,'_dp_original','131'),(1094,139,'_wp_old_slug','macbook-air-juice'),(1095,139,'_wp_old_slug','coffe-juice'),(1097,143,'_aviaLayoutBuilder_active','active'),(1098,143,'_aviaLayoutBuilderCleanData','[av_slideshow_full size=\'featured_large\' min_height=\'0px\' stretch=\'\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' src=\'\' attachment=\'\' attachment_size=\'\' position=\'top left\' repeat=\'no-repeat\' attach=\'scroll\' av_uid=\'av-32uw6f\']\n[av_slide_full id=\'973\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-2vhm0v\'][/av_slide_full]\n[av_slide_full id=\'965\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-2swebb\'][/av_slide_full]\n[/av_slideshow_full]\n\n[av_one_third first av_uid=\'av-2i5e7r\']\n[av_heading tag=\'h1\' padding=\'10\' heading=\'Single Portfolio\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-2c1yiv\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-sw8f\']\nLorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n\nAommodo ipsum dolor sit amet, consec tetuer adipiscing elit. Aenean <strong>emigula</strong> eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n[/av_textblock]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-20y8v3\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-1w2nvj\']\n<ul>\n <li>Client: Max Power</li>\n <li>Skills: Photoshop</li>\n <li>Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a></li>\n</ul>\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1qlplj\']\n[/av_one_third]\n\n[av_two_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1kiwa7\']\n[av_heading heading=\'More Info\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1dcruf\'][/av_heading]\n\n[av_tab_container position=\'top_tab\' boxed=\'border_tabs\' initial=\'1\' av_uid=\'av-1a5w1j\']\n[av_tab title=\'Short Summary\' icon_select=\'no\' icon=\'1\' av_uid=\'av-13izqf\']\nLorem ipsum <strong>dolor</strong> sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n<blockquote>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</blockquote>\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer <strong>tincidunt</strong>. Cras dapibus. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_tab]\n[av_tab title=\'More Info\' icon_select=\'no\' icon=\'1\' av_uid=\'av-unhf3\']\n<ol>\n <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>\n <li>Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</li>\n <li>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>\n <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</li>\n <li>Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>\n</ol>\n[/av_tab]\n[av_tab title=\'Even More Info\' icon_select=\'no\' icon=\'\' av_uid=\'av-p0cx3\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient</strong> montes, nascetur ridiculus mus. <strong>Donec</strong> quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, <strong>venenatis</strong> vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\n[/av_tab]\n[/av_tab_container]\n[/av_two_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1vvs7\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1cvdb\'][/av_heading]\n[/av_section]\n\n[av_portfolio columns=\'4\' items=\'4\' contents=\'excerpt\' linking=\'\' sort=\'no\' paginate=\'no\' av_uid=\'av-aprgf\']\n\n'),(1099,143,'_portfolio_custom_link',''),(1100,143,'_portfolio_custom_link_url','http://'),(1101,143,'_preview_ids','871,870,864,869'),(1102,143,'_preview_display','slideshow'),(1103,143,'_preview_autorotation','disabled'),(1104,143,'_preview_columns','6'),(1105,143,'_preview_text','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1106,143,'layout','fullsize'),(1107,143,'sidebar',''),(1108,143,'footer',''),(1109,143,'header_title_bar','hidden_title_bar'),(1110,143,'header_transparency',''),(1111,143,'breadcrumb_parent',''),(1112,143,'_avia_hide_featured_image','0'),(1113,143,'_avia_builder_shortcode_tree','a:5:{i:0;a:3:{s:3:\"tag\";s:17:\"av_slideshow_full\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:3;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:4;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:12:\"av_two_third\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:1;a:3:{s:3:\"tag\";s:16:\"av_tab_container\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:7;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}}s:5:\"index\";i:10;}i:4;a:3:{s:3:\"tag\";s:12:\"av_portfolio\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}}'),(1114,143,'_wp_old_slug','macbook-air-ssd-drive'),(1115,143,'_dp_original','131'),(1117,150,'_aviaLayoutBuilder_active','active'),(1118,150,'_aviaLayoutBuilderCleanData','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-4r172e\']\n[av_heading heading=\'This is a single portfolio entry<br/>Style it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-4k8lie\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-g15w6\']\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-eyjgm\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-3zirz2\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3yajdq\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-dfe4e\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3kpxvi\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-3c4t0m\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-37lqna\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-30xbjy\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2urhfy\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2pqtl2\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2m04ti\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2eerrq\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-28h3n2\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-21te0e\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-1x1zhi\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1savri\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1nazom\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1gjfxq\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-18ej6m\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-11tqhq\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-uxx72\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\' av_uid=\'av-sp50m\']\n\n[/av_one_full]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-lfi1a\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-fkq2m\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\' av_uid=\'av-b9b5y\']\n\n'),(1119,150,'_portfolio_custom_link',''),(1120,150,'_portfolio_custom_link_url','http://'),(1121,150,'_preview_ids','870,864,867,868,869,863,862'),(1122,150,'_preview_display','gallery'),(1123,150,'_preview_autorotation','disabled'),(1124,150,'_preview_columns','6'),(1125,150,'_preview_text','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1126,150,'layout','fullsize'),(1127,150,'sidebar',''),(1128,150,'footer',''),(1129,150,'header_title_bar','hidden_title_bar'),(1130,150,'header_transparency','header_transparent header_with_border'),(1131,150,'breadcrumb_parent',''),(1132,150,'_avia_hide_featured_image','0'),(1133,150,'_avia_builder_shortcode_tree','a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:10:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}}s:5:\"index\";i:1;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}}s:5:\"index\";i:6;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:8;}i:4;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}}s:5:\"index\";i:10;}i:5;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}}s:5:\"index\";i:12;}i:6;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:14;}i:7;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}}s:5:\"index\";i:16;}i:8;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}}s:5:\"index\";i:18;}i:9;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:15:\"av_social_share\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:20;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}}s:5:\"index\";i:22;}i:2;a:3:{s:3:\"tag\";s:18:\"av_masonry_entries\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}}'),(1134,150,'_wp_old_slug','macbook-air-ssd-drive'),(1135,150,'_dp_original','131'),(1136,150,'_wp_old_slug','juicey'),(1138,152,'_aviaLayoutBuilder_active','active'),(1139,152,'_aviaLayoutBuilderCleanData','[av_slideshow_full size=\'featured_large\' min_height=\'0px\' stretch=\'\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' src=\'\' attachment=\'\' attachment_size=\'\' position=\'top left\' repeat=\'no-repeat\' attach=\'scroll\' av_uid=\'av-34avbs\']\n[av_slide_full id=\'973\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-2u3ra0\'][/av_slide_full]\n[av_slide_full id=\'965\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-2qxcg8\'][/av_slide_full]\n[/av_slideshow_full]\n\n[av_one_third first av_uid=\'av-2j9miw\']\n[av_heading tag=\'h1\' padding=\'10\' heading=\'Single Portfolio\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-2c6bxs\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-28twag\']\nLorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n\nAommodo ipsum dolor sit amet, consec tetuer adipiscing elit. Aenean <strong>emigula</strong> eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n[/av_textblock]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-25cn14\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-1xa35k\']\n<ul>\n <li>Client: Max Power</li>\n <li>Skills: Photoshop</li>\n <li>Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a></li>\n</ul>\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-lvxc\']\n[/av_one_third]\n\n[av_two_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1j0b0g\']\n[av_heading heading=\'More Info\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1hbfnk\'][/av_heading]\n\n[av_tab_container position=\'top_tab\' boxed=\'border_tabs\' initial=\'1\' av_uid=\'av-1809ao\']\n[av_tab title=\'Short Summary\' icon_select=\'no\' icon=\'1\' av_uid=\'av-13h2ao\']\nLorem ipsum <strong>dolor</strong> sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n<blockquote>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</blockquote>\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer <strong>tincidunt</strong>. Cras dapibus. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_tab]\n[av_tab title=\'More Info\' icon_select=\'no\' icon=\'1\' av_uid=\'av-x4y3s\']\n<ol>\n <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>\n <li>Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</li>\n <li>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>\n <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</li>\n <li>Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>\n</ol>\n[/av_tab]\n[av_tab title=\'Even More Info\' icon_select=\'no\' icon=\'\' av_uid=\'av-2j9m0\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient</strong> montes, nascetur ridiculus mus. <strong>Donec</strong> quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, <strong>venenatis</strong> vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\n[/av_tab]\n[/av_tab_container]\n[/av_two_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-mise0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-dr3f4\'][/av_heading]\n[/av_section]\n\n[av_portfolio columns=\'4\' items=\'4\' contents=\'excerpt\' linking=\'\' sort=\'no\' paginate=\'no\' av_uid=\'av-pw7s\']\n\n'),(1140,152,'_portfolio_custom_link',''),(1141,152,'_portfolio_custom_link_url','http://'),(1142,152,'_preview_ids','862,869,868,867'),(1143,152,'_preview_display','slideshow'),(1144,152,'_preview_autorotation','disabled'),(1145,152,'_preview_columns','6'),(1146,152,'_preview_text','[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1147,152,'layout','fullsize'),(1148,152,'sidebar',''),(1149,152,'footer',''),(1150,152,'header_title_bar','hidden_title_bar'),(1151,152,'header_transparency',''),(1152,152,'breadcrumb_parent',''),(1153,152,'_avia_hide_featured_image','0'),(1154,152,'_avia_builder_shortcode_tree','a:5:{i:0;a:3:{s:3:\"tag\";s:17:\"av_slideshow_full\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:3;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:4;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:12:\"av_two_third\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:1;a:3:{s:3:\"tag\";s:16:\"av_tab_container\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:7;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}}s:5:\"index\";i:10;}i:4;a:3:{s:3:\"tag\";s:12:\"av_portfolio\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}}'),(1155,152,'_wp_old_slug','macbook-air-ssd-drive'),(1156,152,'_wp_old_slug','macbook-air-juice'),(1157,152,'_wp_old_slug','coffe-juice'),(1158,152,'_dp_original','145'),(1410,140,'_aviaLayoutBuilder_active','active'),(1411,140,'_aviaLayoutBuilderCleanData','[av_two_third first av_uid=\'av-2y65bw\']\n[av_slideshow size=\'no scaling\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' av_uid=\'av-2o0wes\']\n[av_slide id=\'869\' av_uid=\'av-2n020s\'][/av_slide]\n[av_slide id=\'868\' av_uid=\'av-2h4z98\'][/av_slide]\n[av_slide id=\'867\' av_uid=\'av-29n5is\'][/av_slide]\n[av_slide id=\'866\' av_uid=\'av-20j10s\'][/av_slide]\n[/av_slideshow]\n[/av_two_third]\n\n[av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1xjoto\']\n[av_heading heading=\'Classic Single Entry\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1seyd0\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'25px\' custom_margin_bottom=\'25px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1lcgbo\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-1f3kn8\']\nNulla <strong>consequat</strong> massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu <strong>pede</strong> mollis pretium. Integer tincidunt. Cras dapibus.\n[/av_textblock]\n\n[av_toggle_container initial=\'1\' mode=\'accordion\' av_uid=\'av-4gd98\']\n[av_toggle title=\'Client\' av_uid=\'av-10m3hw\']\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n[/av_toggle]\n[av_toggle title=\'Our Task\' av_uid=\'av-y7ahw\']\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_toggle]\n[av_toggle title=\'Skills Involved\' av_uid=\'av-rx9x8\']\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n[/av_toggle_container]\n[/av_one_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-jrj2s\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'40\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-d3gbw\'][/av_heading]\n\n[av_portfolio columns=\'4\' one_column_template=\'special\' items=\'4\' contents=\'title\' preview_mode=\'auto\' image_size=\'portfolio\' linking=\'\' sort=\'no\' paginate=\'no\' query_orderby=\'date\' query_order=\'DESC\' av_uid=\'av-a6nyc\']\n[/av_section]\n\n'),(1412,140,'_portfolio_custom_link',''),(1413,140,'_portfolio_custom_link_url','http://'),(1414,140,'_preview_ids','965,973'),(1415,140,'_preview_display','list'),(1416,140,'_preview_autorotation','disabled'),(1417,140,'_preview_columns','6'),(1418,140,'_preview_text','[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1419,140,'layout','fullsize'),(1420,140,'sidebar',''),(1421,140,'footer',''),(1422,140,'header_title_bar',''),(1423,140,'header_transparency',''),(1424,140,'breadcrumb_parent',''),(1425,140,'_avia_hide_featured_image','0'),(1426,140,'_avia_builder_shortcode_tree','a:3:{i:0;a:3:{s:3:\"tag\";s:12:\"av_two_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_slideshow\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:3;a:3:{s:3:\"tag\";s:19:\"av_toggle_container\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:1;a:3:{s:3:\"tag\";s:12:\"av_portfolio\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:7;}}'),(1427,140,'_wp_old_slug','macbook-air-ssd-drive'),(1428,140,'_wp_old_slug','macbook-air-juice'),(1429,140,'_wp_old_slug','coffe-juice'),(1430,140,'_dp_original','139'),(1432,142,'_aviaLayoutBuilder_active','active'),(1433,142,'_aviaLayoutBuilderCleanData','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-4qedau\']\n[av_heading heading=\'This is a single portfolio entry<br/>Style it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-gnu8u\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-4eeuku\']\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-467mhq\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-3zq332\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3x0a92\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-3ocg66\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3iev4m\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-3ewllq\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-397dhi\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-34zvs6\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2woxfq\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-9lgu6\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2mmpba\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2ca4i6\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-86v2u\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-24dqum\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-pjv2\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1teca6\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-5qccm\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1fvo7y\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-16d4fi\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-13syj2\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-vhyn2\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\' av_uid=\'av-tn38e\']\n\n[/av_one_full]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-myr86\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-edoom\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\' av_uid=\'av-a21ae\']\n\n'),(1434,142,'_portfolio_custom_link',''),(1435,142,'_portfolio_custom_link_url','http://'),(1436,142,'_preview_ids','871,870,869,868,867,866,865,864'),(1437,142,'_preview_display','gallery'),(1438,142,'_preview_autorotation','disabled'),(1439,142,'_preview_columns','8'),(1440,142,'_preview_text','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1441,142,'layout','fullsize'),(1442,142,'sidebar',''),(1443,142,'footer',''),(1444,142,'header_title_bar','hidden_title_bar'),(1445,142,'header_transparency','header_transparent header_with_border'),(1446,142,'breadcrumb_parent',''),(1447,142,'_avia_hide_featured_image','0'),(1448,142,'_avia_builder_shortcode_tree','a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}}s:5:\"index\";i:3;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}}s:5:\"index\";i:7;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}}s:5:\"index\";i:9;}i:4;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}}s:5:\"index\";i:11;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:13;}i:6;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:16;}}s:5:\"index\";i:15;}i:7;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}}s:5:\"index\";i:17;}i:8;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}}s:5:\"index\";i:19;}i:9;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:22;}}s:5:\"index\";i:21;}i:10;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:15:\"av_social_share\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}}s:5:\"index\";i:23;}}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:18:\"av_masonry_entries\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}'),(1449,142,'_wp_old_slug','coffe-notebook-2'),(1450,142,'_wp_old_slug','macbook-air-ssd-drive'),(1451,142,'_wp_old_slug','macbook-air-juice'),(1452,142,'_wp_old_slug','coffe-juice'),(1453,142,'_dp_original','139'),(1455,144,'_aviaLayoutBuilder_active','active'),(1456,144,'_aviaLayoutBuilderCleanData','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-4pdcqo\']\n[av_heading heading=\'This is a single portfolio entry<br/>Style it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-4isk1s\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-4dmnx4\']\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-47bxvs\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-44p7e0\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3ydfjk\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' av_uid=\'av-3r2pzc\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-3jfeps\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-3g0dpc\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-37h728\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-30vl1s\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-allrk\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-large-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2ovw5k\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2k2y2o\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-2c6ivk\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-28ktw8\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-21qwi0\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-1x14m8\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1r2fg8\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1kww54\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1c99s0\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-17ln20\']\n\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\' av_uid=\'av-1121ko\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-yx5ts\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\' av_uid=\'av-qhmcw\']\n\n[/av_one_full]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kytq0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1icwg\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\' av_uid=\'av-b7zbk\']\n\n'),(1457,144,'_portfolio_custom_link',''),(1458,144,'_portfolio_custom_link_url','http://'),(1459,144,'_preview_ids','867,866,865,864,863,862,868'),(1460,144,'_preview_display','gallery'),(1461,144,'_preview_autorotation','disabled'),(1462,144,'_preview_columns','7'),(1463,144,'_preview_text','[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1464,144,'layout','fullsize'),(1465,144,'sidebar',''),(1466,144,'footer',''),(1467,144,'header_title_bar','hidden_title_bar'),(1468,144,'header_transparency','header_transparent header_with_border'),(1469,144,'breadcrumb_parent',''),(1470,144,'_avia_hide_featured_image','0'),(1471,144,'_avia_builder_shortcode_tree','a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}}s:5:\"index\";i:3;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}}s:5:\"index\";i:7;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}}s:5:\"index\";i:9;}i:4;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}}s:5:\"index\";i:11;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:13;}i:6;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:16;}}s:5:\"index\";i:15;}i:7;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}}s:5:\"index\";i:17;}i:8;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}}s:5:\"index\";i:19;}i:9;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:22;}}s:5:\"index\";i:21;}i:10;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:15:\"av_social_share\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}}s:5:\"index\";i:23;}}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:18:\"av_masonry_entries\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}'),(1472,144,'_wp_old_slug','macbook-air-ssd-drive'),(1473,144,'_dp_original','143'),(1475,145,'_aviaLayoutBuilder_active','active'),(1476,145,'_aviaLayoutBuilderCleanData','[av_slideshow_full size=\'featured_large\' min_height=\'0px\' stretch=\'\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' src=\'\' attachment=\'\' attachment_size=\'\' position=\'top left\' repeat=\'no-repeat\' attach=\'scroll\' av_uid=\'av-3057z5\']\n[av_slide_full id=\'973\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-2vgvsh\'][/av_slide_full]\n[av_slide_full id=\'965\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_uid=\'av-2ps4nd\'][/av_slide_full]\n[/av_slideshow_full]\n\n[av_one_third first av_uid=\'av-2lp5r5\']\n[av_heading tag=\'h1\' padding=\'10\' heading=\'Single Portfolio\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-2g25vt\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-86ub5\']\nLorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n\nAommodo ipsum dolor sit amet, consec tetuer adipiscing elit. Aenean <strong>emigula</strong> eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n[/av_textblock]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-255svt\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-1yx3dl\']\n<ul>\n <li>Client: Max Power</li>\n <li>Skills: Photoshop</li>\n <li>Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a></li>\n</ul>\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1obas1\']\n[/av_one_third]\n\n[av_two_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1nbxmp\']\n[av_heading heading=\'More Info\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-57ugh\'][/av_heading]\n\n[av_tab_container position=\'top_tab\' boxed=\'border_tabs\' initial=\'1\' av_uid=\'av-19jnw1\']\n[av_tab title=\'Short Summary\' icon_select=\'no\' icon=\'1\' av_uid=\'av-10zn5l\']\nLorem ipsum <strong>dolor</strong> sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n<blockquote>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</blockquote>\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer <strong>tincidunt</strong>. Cras dapibus. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_tab]\n[av_tab title=\'More Info\' icon_select=\'no\' icon=\'1\' av_uid=\'av-v34ox\']\n<ol>\n <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>\n <li>Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</li>\n <li>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>\n <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</li>\n <li>Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>\n</ol>\n[/av_tab]\n[av_tab title=\'Even More Info\' icon_select=\'no\' icon=\'\' av_uid=\'av-2seb5\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient</strong> montes, nascetur ridiculus mus. <strong>Donec</strong> quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, <strong>venenatis</strong> vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\n[/av_tab]\n[/av_tab_container]\n[/av_two_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-lskpl\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1f6pd\'][/av_heading]\n[/av_section]\n\n[av_portfolio columns=\'4\' items=\'4\' contents=\'excerpt\' linking=\'\' sort=\'no\' paginate=\'no\' av_uid=\'av-9m72p\']\n\n'),(1477,145,'_portfolio_custom_link',''),(1478,145,'_portfolio_custom_link_url','http://'),(1479,145,'_preview_ids','868,871,870,869,867,866'),(1480,145,'_preview_display','slideshow'),(1481,145,'_preview_autorotation','6'),(1482,145,'_preview_columns','6'),(1483,145,'_preview_text','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1484,145,'layout','fullsize'),(1485,145,'sidebar',''),(1486,145,'footer',''),(1487,145,'header_title_bar','hidden_title_bar'),(1488,145,'header_transparency',''),(1489,145,'breadcrumb_parent',''),(1490,145,'_avia_hide_featured_image','0'),(1491,145,'_avia_builder_shortcode_tree','a:5:{i:0;a:3:{s:3:\"tag\";s:17:\"av_slideshow_full\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:3;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:4;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:12:\"av_two_third\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:1;a:3:{s:3:\"tag\";s:16:\"av_tab_container\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:7;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}}s:5:\"index\";i:10;}i:4;a:3:{s:3:\"tag\";s:12:\"av_portfolio\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}}'),(1492,145,'_wp_old_slug','macbook-air-ssd-drive'),(1493,145,'_wp_old_slug','macbook-air-juice'),(1494,145,'_wp_old_slug','coffe-juice'),(1495,145,'_dp_original','139'),(1497,146,'_aviaLayoutBuilder_active','active'),(1498,146,'_aviaLayoutBuilderCleanData','[av_two_third first av_uid=\'av-2yqq2q\']\n[av_slideshow size=\'no scaling\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' av_uid=\'av-2pfm16\']\n[av_slide id=\'869\' av_uid=\'av-2lofiq\'][/av_slide]\n[av_slide id=\'868\' av_uid=\'av-2crsb6\'][/av_slide]\n[av_slide id=\'867\' av_uid=\'av-26a3i2\'][/av_slide]\n[av_slide id=\'866\' av_uid=\'av-24155e\'][/av_slide]\n[/av_slideshow]\n[/av_two_third]\n\n[av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-1uepp6\']\n\n[av_heading heading=\'Classic Single Entry\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-1pvh5m\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'25px\' custom_margin_bottom=\'25px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1mkvv6\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-1ck82i\']\nNulla <strong>consequat</strong> massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu <strong>pede</strong> mollis pretium. Integer tincidunt. Cras dapibus.\n[/av_textblock]\n\n[av_toggle_container initial=\'1\' mode=\'accordion\' av_uid=\'av-18ytw2\']\n[av_toggle title=\'Client\' av_uid=\'av-148rz6\']\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n[/av_toggle]\n[av_toggle title=\'Our Task\' av_uid=\'av-wcwua\']\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_toggle]\n[av_toggle title=\'Skills Involved\' av_uid=\'av-rwpv6\']\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n[/av_toggle_container]\n\n[/av_one_third][av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-mif9m\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'40\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\' av_uid=\'av-dinei\'][/av_heading]\n\n[av_portfolio columns=\'4\' one_column_template=\'special\' items=\'4\' contents=\'title\' preview_mode=\'auto\' image_size=\'portfolio\' linking=\'\' sort=\'no\' paginate=\'no\' query_orderby=\'date\' query_order=\'DESC\' av_uid=\'av-7i0si\']\n[/av_section]\n\n'),(1499,146,'_portfolio_custom_link',''),(1500,146,'_portfolio_custom_link_url','http://'),(1501,146,'_preview_ids','973,965'),(1502,146,'_preview_display','list'),(1503,146,'_preview_autorotation','disabled'),(1504,146,'_preview_columns','6'),(1505,146,'_preview_text','[av_toggle_container initial=\'1\' mode=\'accordion\']\n\n[av_toggle title=\'Client\']\n\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, conseeget dolor. Aeneanscetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n\n[/av_toggle]\n\n[av_toggle title=\'Our Task\']\n\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenet, arcu.\n\n[/av_toggle]\n\n[av_toggle title=\'Skills Involved\']\n\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n\n[/av_toggle_container]'),(1506,146,'layout','fullsize'),(1507,146,'sidebar',''),(1508,146,'footer',''),(1509,146,'header_title_bar',''),(1510,146,'header_transparency',''),(1511,146,'breadcrumb_parent',''),(1512,146,'_avia_hide_featured_image','0'),(1513,146,'_avia_builder_shortcode_tree','a:3:{i:0;a:3:{s:3:\"tag\";s:12:\"av_two_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_slideshow\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:3;a:3:{s:3:\"tag\";s:19:\"av_toggle_container\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:1;a:3:{s:3:\"tag\";s:12:\"av_portfolio\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}}s:5:\"index\";i:7;}}'),(1514,146,'_wp_old_slug','macbook-air-ssd-drive'),(1515,146,'_dp_original','131'),(2885,142,'_av_alb_posts_elements_state','a:9:{s:10:\"av_heading\";b:1;s:8:\"av_image\";b:1;s:18:\"av_masonry_entries\";b:1;s:15:\"av_social_share\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;}'),(2886,142,'_av_el_mgr_version','1.0'),(2887,142,'_av_alb_element_mgr_version','1.0.1'),(2888,146,'_av_alb_posts_elements_state','a:11:{s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_portfolio\";b:1;s:12:\"av_slideshow\";b:1;s:19:\"av_toggle_container\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:8:\"av_slide\";b:1;s:9:\"av_toggle\";b:1;}'),(2889,146,'_av_el_mgr_version','1.0'),(2890,146,'_av_alb_element_mgr_version','1.0.1'),(2891,145,'_av_alb_posts_elements_state','a:11:{s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_portfolio\";b:1;s:17:\"av_slideshow_full\";b:1;s:16:\"av_tab_container\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:13:\"av_slide_full\";b:1;s:6:\"av_tab\";b:1;}'),(2892,145,'_av_el_mgr_version','1.0'),(2893,145,'_av_alb_element_mgr_version','1.0.1'),(2894,144,'_av_alb_posts_elements_state','a:9:{s:10:\"av_heading\";b:1;s:8:\"av_image\";b:1;s:18:\"av_masonry_entries\";b:1;s:15:\"av_social_share\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;}'),(2895,144,'_av_el_mgr_version','1.0'),(2896,144,'_av_alb_element_mgr_version','1.0.1'),(2897,140,'_av_alb_posts_elements_state','a:11:{s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_portfolio\";b:1;s:12:\"av_slideshow\";b:1;s:19:\"av_toggle_container\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:8:\"av_slide\";b:1;s:9:\"av_toggle\";b:1;}'),(2898,140,'_av_el_mgr_version','1.0'),(2899,140,'_av_alb_element_mgr_version','1.0.1'),(2900,143,'_av_alb_posts_elements_state','a:11:{s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_portfolio\";b:1;s:17:\"av_slideshow_full\";b:1;s:16:\"av_tab_container\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:13:\"av_slide_full\";b:1;s:6:\"av_tab\";b:1;}'),(2901,143,'_av_el_mgr_version','1.0'),(2902,143,'_av_alb_element_mgr_version','1.0.1'),(2903,139,'_av_alb_posts_elements_state','a:9:{s:10:\"av_heading\";b:1;s:8:\"av_image\";b:1;s:18:\"av_masonry_entries\";b:1;s:15:\"av_social_share\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;}'),(2904,139,'_av_el_mgr_version','1.0'),(2905,139,'_av_alb_element_mgr_version','1.0.1'),(2906,131,'_av_alb_posts_elements_state','a:11:{s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_portfolio\";b:1;s:12:\"av_slideshow\";b:1;s:19:\"av_toggle_container\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:8:\"av_slide\";b:1;s:9:\"av_toggle\";b:1;}'),(2907,131,'_av_el_mgr_version','1.0'),(2908,131,'_av_alb_element_mgr_version','1.0.1'),(2912,152,'_av_alb_posts_elements_state','a:11:{s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_portfolio\";b:1;s:17:\"av_slideshow_full\";b:1;s:16:\"av_tab_container\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_two_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:13:\"av_slide_full\";b:1;s:6:\"av_tab\";b:1;}'),(2913,152,'_av_el_mgr_version','1.0'),(2914,152,'_av_alb_element_mgr_version','1.0.1'),(2918,150,'_av_alb_posts_elements_state','a:9:{s:10:\"av_heading\";b:1;s:8:\"av_image\";b:1;s:18:\"av_masonry_entries\";b:1;s:15:\"av_social_share\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;}'),(2919,150,'_av_el_mgr_version','1.0'),(2920,150,'_av_alb_element_mgr_version','1.0.1'),(2957,3138,'_wp_attached_file','2020/05/SolSculptingWideLogoFinalWhite.png'),(2958,3138,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:181;s:4:\"file\";s:42:\"2020/05/SolSculptingWideLogoFinalWhite.png\";s:5:\"sizes\";a:8:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-300x181.png\";s:5:\"width\";i:300;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-300x109.png\";s:5:\"width\";i:300;s:6:\"height\";i:109;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:40:\"SolSculptingWideLogoFinalWhite-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-495x181.png\";s:5:\"width\";i:495;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:42:\"SolSculptingWideLogoFinalWhite-260x181.png\";s:5:\"width\";i:260;s:6:\"height\";i:181;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2959,3139,'_wp_attached_file','2020/05/SolSculptingWebColor.png'),(2960,3139,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:156;s:4:\"file\";s:32:\"2020/05/SolSculptingWebColor.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"SolSculptingWebColor-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebColor-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebColor-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebColor-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"SolSculptingWebColor-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebColor-180x156.png\";s:5:\"width\";i:180;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebColor-260x156.png\";s:5:\"width\";i:260;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(2961,3140,'_wp_attached_file','2020/05/SolSculptingWebWhite.png'),(2962,3140,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:156;s:4:\"file\";s:32:\"2020/05/SolSculptingWebWhite.png\";s:5:\"sizes\";a:7:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"SolSculptingWebWhite-300x156.png\";s:5:\"width\";i:300;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebWhite-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebWhite-300x138.png\";s:5:\"width\";i:300;s:6:\"height\";i:138;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebWhite-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"SolSculptingWebWhite-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebWhite-180x156.png\";s:5:\"width\";i:180;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"SolSculptingWebWhite-260x156.png\";s:5:\"width\";i:260;s:6:\"height\";i:156;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3135,3199,'_wp_attached_file','2020/05/Background-scaled.jpg'),(3136,3199,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2560;s:6:\"height\";i:1265;s:4:\"file\";s:29:\"2020/05/Background-scaled.jpg\";s:5:\"sizes\";a:21:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"Background-scaled-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"Background-scaled-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"Background-scaled-600x296.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:296;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"Background-300x148.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"Background-1024x506.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:506;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"Background-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"Background-768x379.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"Background-1536x759.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:759;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:24:\"Background-2048x1012.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1012;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:20:\"Background-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:22:\"Background-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:23:\"Background-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:23:\"Background-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:23:\"Background-1500x741.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:741;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"Background-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:22:\"Background-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:22:\"Background-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:22:\"Background-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:22:\"Background-705x348.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:348;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:22:\"Background-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:23:\"Background-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:31:\"©rcfotostock - stock.adobe.com\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3137,3200,'_wp_attached_file','2020/05/Swing.png'),(3138,3200,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:3000;s:6:\"height\";i:1482;s:4:\"file\";s:17:\"2020/05/Swing.png\";s:5:\"sizes\";a:21:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"Swing-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"Swing-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:17:\"Swing-600x296.png\";s:5:\"width\";i:600;s:6:\"height\";i:296;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Swing-300x148.png\";s:5:\"width\";i:300;s:6:\"height\";i:148;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"Swing-1024x506.png\";s:5:\"width\";i:1024;s:6:\"height\";i:506;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Swing-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"Swing-768x379.png\";s:5:\"width\";i:768;s:6:\"height\";i:379;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"Swing-1536x759.png\";s:5:\"width\";i:1536;s:6:\"height\";i:759;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:19:\"Swing-2048x1012.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1012;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:15:\"Swing-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:17:\"Swing-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:18:\"Swing-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:18:\"Swing-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:18:\"Swing-1500x741.png\";s:5:\"width\";i:1500;s:6:\"height\";i:741;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:17:\"Swing-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:17:\"Swing-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:17:\"Swing-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:17:\"Swing-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:17:\"Swing-705x348.png\";s:5:\"width\";i:705;s:6:\"height\";i:348;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:17:\"Swing-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:18:\"Swing-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3139,3201,'_wp_attached_file','2020/05/RedLightNewsMockup.png'),(3140,3201,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:30:\"2020/05/RedLightNewsMockup.png\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"RedLightNewsMockup-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"RedLightNewsMockup-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:28:\"RedLightNewsMockup-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:31:\"RedLightNewsMockup-1200x430.png\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:31:\"RedLightNewsMockup-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-705x705.png\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:30:\"RedLightNewsMockup-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:31:\"RedLightNewsMockup-1200x423.png\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3144,3202,'_aviaLayoutBuilder_active','active'),(3145,3202,'_aviaLayoutBuilderCleanData','[av_layerslider id=\'4\' av_uid=\'av-3dajdi\']\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'\' color=\'main_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' id=\'Best Rated\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-wdjr32\']\r\n\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background_color=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-w69tau\']\r\n\r\n[av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-vy3aoe\']\r\n\r\n[av_heading heading=\'Scientifically-proven to help practically anyone\' tag=\'h1\' style=\'blockquote modern-quote\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-ka4v6s0g\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\nRed light has the power to reverse skin aging, reduce cellulite, combat fibromyaligia, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vf3oc6\']\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' link=\'\' linktarget=\'\' animation=\'\' id=\'\' custom_class=\'\' av_uid=\'av-v75kye\' admin_preview_bg=\'\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-v0on5i\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ux8yzq\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-unuh1a\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ul1yza\'][/av_font_icon]\r\n\r\n[av_hr class=\'invisible\' height=\'42\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-ucwva6\']\r\n\r\n[av_button label=\'VISIT THE STORE\' icon_select=\'yes\' icon=\'ue859\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'500px,0px,500px,0px\' background=\'bg_color\' background_color=\'#f8f8f8\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockup.png\' attachment=\'3201\' attachment_size=\'full\' background_attachment=\'scroll\' background_position=\'bottom left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'av-hide-on-mobile\' custom_class=\'\' av_uid=\'av-u07xfq\']\r\n\r\n[/av_cell_one_half][/av_layout_row][av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Intro\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'A theme packed with great features\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#000000\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' av_uid=\'av-2ybdni\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/multi_apple-1.jpg\' attachment=\'376\' attachment_size=\'full\' animation=\'bottom-to-top\' hotspot_layout=\'numbered\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'13.7,27.8\' av_uid=\'av-t3ip1a\']\r\nBeautiful new demos with each release\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'21,69.9\' av_uid=\'av-svejae\']\r\nFree Stock Pictures included in all demos\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'48.6,85.3\' av_uid=\'av-ac5ja\']\r\nRetina ready and responsive - works great on devices of any size\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'87.1,40.1\' av_uid=\'av-shj3cm\']\r\nAmazing Theme Options for unlimited colors and styles\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'63.2,11.3\' av_uid=\'av-sficiu\']\r\nPowerful Visual Layout Editor\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-s6pesu\']\r\n\r\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-s2aw0e\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-rw9c7y\']\r\nEnfold is the best rated top seller on Themeforest for a reason. It comes with <strong>a lot of great features and demos</strong>, but at the same time we always try to keep things as simple and intuitive as possible, so that users with little WordPress or theming experience have no problem using it as well.\r\n[/av_textblock]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-rn44da\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-2r5n3q\']\r\nIn addition to that, we offer high quality support in our forum around the clock. 40.000 registered users and more than <strong>120.000 entries</strong> show that we care that your site runs as smooth as possible. You got a question? Don\'t hesitate to get in touch :)\r\n[/av_textblock]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_masonry_gallery ids=\'352,350,355,353,354,351\' items=\'6\' columns=\'6\' paginate=\'none\' size=\'fixed\' gap=\'large\' overlay_fx=\'active\' container_links=\'active\' id=\'\' caption_elements=\'title\' caption_styling=\'\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#35383c\' av_uid=\'av-reu7ty\']\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Feature List\' color=\'main_color\' custom_bg=\'#35383c\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-r7gwwm\']\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Can’t get enough?<br/>Here are even more features!\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' av_uid=\'av-r2g1by\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qv8cke\']\r\n\r\n[av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-qplbxa\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' custom_content_size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qkwe4u\']\r\n[av_iconlist_item title=\'Clean and modern Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-2n0bby\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Drag and Drop Template Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q5w85a\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Ajax Instant Search\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q0thfy\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Translation ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ptjbxy\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'WooCommerce ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ps16va\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'WooCommerce Bookings Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-pigiou\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'WPML ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-pc4j4m\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Responsive design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-pa3jta\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Child theme support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-p4dq3a\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-oxm0xy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' custom_content_size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-or16pi\']\r\n[av_iconlist_item title=\'Retina Ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-oliv1q\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Events Calendar Integration\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-of9ie6\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'2D + 3D Layerslider Slideshow\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o88cyu\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Video Support + Slideshows\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o0lmja\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Unlimited Color Options\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-nys4ie\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Unique unlimited sidebars\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-2d9mby\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Portfolio Pages & Ajax Portfolios\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-nn4oz2\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Free Lifetime Updates\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ngcxie\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Contact Form Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-n6i4d2\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-n2fmfy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' custom_content_size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-mxw99q\']\r\n[av_iconlist_item title=\'Easy One Page Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mr9x0u\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'More than 2 dozen Demos\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mj8vxi\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Single click Demo import\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mdubau\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Top Notch Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mbj4pa\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Regular Updates and Improvements\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-m1b0dy\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Strong SEO foundation\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-lxpjw6\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Compatible with major SEO plugins\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-lsj6se\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'bbPress Forum ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ln4mxi\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Parallax Effects\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-lhkj86\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Demos\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/isometric-1.jpg\' attachment=\'447\' attachment_size=\'full\' attach=\'scroll\' position=\'center left\' repeat=\'contain\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l87mda\']\r\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'50px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-l4dz4e\']\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'50px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'rgba(255,255,255,0.85)\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-238cxi\']\r\n\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'A growing library of more than 2 dozen demos\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' av_uid=\'av-krk97i\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-knhh9a\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-21ow0m\']\r\nOur demos are one of a kind: we only offer<strong> full concept demos</strong> with multiple pages that show whole projects, unlike others who only include a single page and call that a demo ;)\r\n\r\nYou can import them with <strong>a single click</strong>, they are easily adaptable to your needs and you can chose from a variety of layouts and niche designs. In addition to that you can also use the <strong>demo images used in our demo for your own project</strong>!\r\n[/av_textblock]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Visual Editor\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-k84rvq\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Our great Visual Layout Editor just got better:<br/>Now with live previews!\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#000000\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-k3vjoe\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-jx1xuu\']\r\n\r\n[av_image_hotspot src=\'http://www.kriesi.at/themes/enfold-2017/files/2017/02/layout_editor.jpg\' attachment=\'3001\' attachment_size=\'full\' animation=\'bottom-to-top\' hotspot_layout=\'numbered\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' av_uid=\'av-ju5x9a\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-left\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#22689e\' custom_font=\'#ffffff\' custom_pulse=\'#22689e\' hotspot_pos=\'22.1,29\' av_uid=\'av-jkolg6\']\r\n<strong>Step 1:</strong> Add an element to the visual editor canvas\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-left\' tooltip_width=\'av-tt-xlarge-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#22689e\' custom_font=\'#ffffff\' custom_pulse=\'#22689e\' hotspot_pos=\'63.8,8.3\' av_uid=\'av-jibs7i\']\r\n<strong>Step 2:</strong> Edit the element to your likings. A visual preview will be shown to the right for most content elements.\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'39.7,78.6\' av_uid=\'av-jbasye\']\r\n<strong>Step 3:</strong> Rinse and repeat, until you got a great website ;)\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-j2z88e\']\r\n\r\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-ixldu6\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-irw6hq\']\r\nThere are several approaches when it comes to content editing but we consider our Advanced Layout Editor one of the best.\r\n\r\nWe prefer a backend editor to one that is placed on the frontend, because there is less clutter and the layout process is usually much easier.\r\n[/av_textblock]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-iky8t2\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-ieeeu6\']\r\nHowever, there are merits to a frontend editor. The biggest one is that you can see how the element your are editing looks like at any given time.\r\n\r\nThis is why we have implemented a live preview window for our content elements. So now you got the best of both worlds: easy layout building and visual content editing :)\r\n[/av_textblock]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Newsletter\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-i7oena\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-i5tgxa\'][/av_heading]\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hvugji\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hr69ra\']\r\n\r\n[av_contact email=\'newsletter@test.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks for subscribing! \' link=\'manually,http://\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' form_align=\'\' color=\'av-custom-form-color av-light-form\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-ho42xq\']\r\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-1quppy\'][/av_contact_field]\r\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-haih5y\'][/av_contact_field]\r\n[/av_contact]\r\n\r\n[av_textblock size=\'\' font_color=\'custom\' color=\'#cecece\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-h39p1q\']\r\n<p style=\"text-align: center;\">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-gxvuni\']\r\n\r\n[/av_one_fifth]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Plugin Header\' color=\'main_color\' custom_bg=\'#f1f1f1\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-gqqjja\']\r\n[av_hr class=\'invisible\' height=\'40\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-thin\' custom_width=\'50px\' custom_border_color=\'\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'yes\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-gmt612\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Deep integration for market-leading plugins.<br/>And of course working out of the box with thousands more...\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-ghn9we\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'70px\' custom_margin_bottom=\'5px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-gbz9ri\']\r\n[/av_section]\r\n\r\n[av_tab_section transition=\'av-tab-slide-transition\' padding=\'large\' tab_pos=\'av-tab-above-content\' tab_padding=\'none\' initial=\'5\' id=\'Plugins\' av_element_hidden_in_editor=\'0\' av_admin_tab_active=\'9\' bg_color=\'#f1f1f1\' color=\'#919191\' av_uid=\'av-1m9rg6\']\r\n[av_tab_sub_section tab_title=\'bbPress Forums\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3004\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-g170wu\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-fusoh2\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/bbpress-ipad.jpg\' attachment=\'541\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-fnr6pa\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-fiuq2u\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Easily build and manage your community with the bbPress forum plugin\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-fd8jj2\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-f30t3q\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-exihfy\']\r\n<strong>bbPress</strong> is a forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress powered site.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-erq8j2\']\r\n\r\n[av_button label=\'Learn more about bbPress\' link=\'manually,https://bbpress.org/\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue80b\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#8dc770\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-eprf5a\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Yoast SEO for WP\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3012\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-ehe70e\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-eagu5q\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Optimize your site for search engines with Yoast SEO for WordPress\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-e7nggu\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1eddsm\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-dvy0ee\']\r\n<strong>Yoast SEO</strong> allows you to easily optimize your WordPress site with one plugin for all search engines. It allows for real time content analysis of your blog entries and has many more features to streamline your site. A premium version of the plugin is also available.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-dnr3vy\']\r\n\r\n[av_button label=\'Learn more about Yoast SEO\' link=\'manually,https://yoast.com/wordpress/plugins/seo/\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue803\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#0075b3\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-di8p52\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-dcvo2e\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/yoast-ipad.jpg\' attachment=\'548\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-d6ggri\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Gravity Forms\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3007\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-d0w29a\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-ct8q7y\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/gravity-ipad.jpg\' attachment=\'543\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-cn9r0u\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-cfrd86\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Build great forms with GravityForms\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-c9686u\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-c4ovjq\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-bypnv2\']\r\nAlthough Enfold has a great and simple form builder for everyday contact forms, sometimes what you need is something more sophisticated with a lot more options. Thats where <strong>GravityForms</strong> shines!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-buyrdq\']\r\n\r\n[av_button label=\'Learn more about GravityForms\' link=\'manually,https://woocommerce.com/?ref=84\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue849\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#365666\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-bo6w26\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Slider Revolution\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3009\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-bjtb7y\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-baembi\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Use Slider Revolution for beautiful slides\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-b6pyuu\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-az9md2\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-au1wna\']\r\nAlthough the plugin is not included as part of the theme (other than the Layerslider Plugin, which is) the theme will show an extra template builder element for the Slider Revolution Plugin for easier integration with our layouts. No Matter with Layer Based Slider you prefer, we got you covered!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-aphu0e\']\r\n\r\n[av_button label=\'Learn more about Slider Revolution\' link=\'manually,https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380?ref=Kriesi\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue891\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#c50000\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-agb8ry\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-acusu6\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/revslider-ipad.jpg\' attachment=\'546\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-a61hti\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Woo Commerce\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3010\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-a1em3q\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-9wl4qe\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/woo-ipad.jpg\' attachment=\'522\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-z3j1i\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-9it7c6\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Open your own WooCommerce Online Store\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-9achfi\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-942rnq\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-937jfi\']\r\n<strong>WooCommerce</strong> is now the most popular eCommerce platform on the web, so you can rest assured you\'re in good company. Build beautiful and functional stores without any hassle by using our Enfold Theme in conjunction with WooCommerce.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-8vxxzq\']\r\n\r\n[av_button label=\'Learn more about WooCommerce\' link=\'manually,https://woocommerce.com/?ref=84\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue859\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#a46497\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-8meepi\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Layer Slider Plugin\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3008\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-8gsvb2\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-8f507q\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Use LayerSlider for amazing custom animations. The plugin is the only one included in the theme\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-852o8e\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-834xfi\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-7xja66\']\r\nOur goto slider when it comes to complex layer-based animation sliders. The Plugin is included as part of the theme but no worries, if you don\'t use we wont load it, to take care of your server resources.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-7qfkxa\']\r\n\r\n[av_button label=\'Learn more about the LayerSlider\' link=\'manually,https://codecanyon.net/item/layerslider-responsive-wordpress-slider-plugin/1362246?ref=Kriesi\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue84e\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#312853\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-qx6la\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-qpupa\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/layerslider-ipad.jpg\' attachment=\'544\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-7571ry\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Mailchimp Newsletter\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3005\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-73b9ym\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-ohml2\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/mailchimp-ipad-1.jpg\' attachment=\'545\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-6omwcu\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-6j52fy\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Mailchimp Newsletter Integration\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-n7tny\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-68rzvy\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-63fjna\']\r\nNot technically a plugin but only the most popular newsletter service there is. And Enfold allows you to create subscription forms out of the box. Just enter your <strong>Mailchimp</strong> API key and start collecting subscribers!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-5tdx4m\']\r\n\r\n[av_button label=\'Learn more about Mailchimp\' link=\'manually,https://mailchimp.com\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue836\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#f58eac\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-5q7q0m\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'The Events Calendar\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3006\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-5hb8za\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-5cqn1y\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Manage and organize events with this amazing plugin\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-56v0zy\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-50mc9i\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-4vfpwe\']\r\nA solid, feature-rich calendar and events management suite that’s scalable from soup to nuts. Also comes with a Pro version and a ton of extensions. Definitely check it out!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-4pc41a\']\r\n\r\n[av_button label=\'Learn more about the Evens Calendar\' link=\'manually,http://mbsy.co/6cr37\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue84e\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#1173b3\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-4kv6tq\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-4d2wjq\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/events-ipad.jpg\' attachment=\'542\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-4ajkqm\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Multi Language\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3011\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-439mye\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-3xrvcu\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/wpml-ipad.jpg\' attachment=\'547\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-3rhnu6\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-3jruam\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Create sites with multiple languages with Enfold and WPML\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-3dn85y\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-39lv52\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-b3l6u\']\r\nWPML allows running fully multilingual websites with WordPress, making it easy to translate WordPress pages, posts, tags, categories and themes. And since our Themes are optimised for <strong>WPML</strong> the whole experience gets even better!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-2wq68m\']\r\n\r\n[av_button label=\'Learn more about WPML\' link=\'manually,http://bit.ly/kwpml\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue859\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#307a9b\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-9mk8m\']\r\n\r\n[/av_one_half][/av_tab_sub_section]\r\n[/av_tab_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Testimonials\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-2lvc0u\']\r\n[av_heading heading=\'What our customer say\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-2c4pc6\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-7w63i\']\r\n\r\n[av_testimonials style=\'slider_large\' columns=\'2\' interval=\'5\' font_color=\'custom\' custom_title=\'#ffffff\' custom_content=\'#e8e8e8\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-24ot1q\']\r\n[av_testimonial_single src=\'\' name=\'Macky Mac\' subtitle=\'\' link=\'\' linktext=\'\' av_uid=\'av-1vu752\']\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n[/av_testimonial_single]\r\n[av_testimonial_single src=\'\' name=\'Franco Moriti\' subtitle=\'\' link=\'\' linktext=\'\' av_uid=\'av-1svyam\']\r\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\r\n[/av_testimonial_single]\r\n[/av_testimonials]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Support\' color=\'main_color\' custom_bg=\'#ffffff\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1k6sdi\']\r\n[av_hr class=\'invisible\' height=\'70\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1dywym\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Real support by real people\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-17phzq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-13co5q\']\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-xj46e\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-tlvau\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-nknuu\']\r\n<p style=\"text-align: center;\">We offer the best support and service you can imagine. Use our support forum if you got any question and our team will respond, thats for sure! We got thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-gmj86\']\r\n\r\n[/av_one_fifth][av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg\' attachment=\'582\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'bottom-to-top\' admin_preview_bg=\'\' av_uid=\'av-9p8ou\'][/av_image]\r\n[/av_section]\r\n\r\n'),(3146,3202,'_avia_builder_shortcode_tree','a:12:{i:0;a:3:{s:3:\"tag\";s:14:\"av_layerslider\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}i:4;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:5;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}i:6;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:7;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:8;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:9;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}i:10;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:3;}}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}i:5;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}}s:5:\"index\";i:22;}i:6;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}}s:5:\"index\";i:24;}}s:5:\"index\";i:16;}i:3;a:3:{s:3:\"tag\";s:18:\"av_masonry_gallery\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:28;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:29;}i:2;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:31;}}s:5:\"index\";i:30;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:33;}}s:5:\"index\";i:32;}i:4;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:35;}}s:5:\"index\";i:34;}}s:5:\"index\";i:27;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:37;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:40;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:41;}}s:5:\"index\";i:38;}}s:5:\"index\";i:36;}i:6;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:6:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:44;}i:2;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:45;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:46;}i:4;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:48;}}s:5:\"index\";i:47;}i:5;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:50;}}s:5:\"index\";i:49;}}s:5:\"index\";i:42;}i:7;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:52;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:53;}i:2;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_contact\";s:7:\"content\";a:0:{}s:5:\"index\";i:55;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:56;}}s:5:\"index\";i:54;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:57;}}s:5:\"index\";i:51;}i:8;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:59;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:60;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:61;}}s:5:\"index\";i:58;}i:9;a:3:{s:3:\"tag\";s:14:\"av_tab_section\";s:7:\"content\";a:9:{i:0;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:65;}}s:5:\"index\";i:64;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:67;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:68;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:69;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:70;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:71;}}s:5:\"index\";i:66;}}s:5:\"index\";i:63;}i:1;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:74;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:75;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:76;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:77;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:78;}}s:5:\"index\";i:73;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:80;}}s:5:\"index\";i:79;}}s:5:\"index\";i:72;}i:2;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:83;}}s:5:\"index\";i:82;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:85;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:86;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:87;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:88;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:89;}}s:5:\"index\";i:84;}}s:5:\"index\";i:81;}i:3;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:92;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:93;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:94;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:95;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:96;}}s:5:\"index\";i:91;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:98;}}s:5:\"index\";i:97;}}s:5:\"index\";i:90;}i:4;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:101;}}s:5:\"index\";i:100;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:103;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:104;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:105;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:106;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:107;}}s:5:\"index\";i:102;}}s:5:\"index\";i:99;}i:5;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:110;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:111;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:112;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:113;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:114;}}s:5:\"index\";i:109;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:116;}}s:5:\"index\";i:115;}}s:5:\"index\";i:108;}i:6;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:119;}}s:5:\"index\";i:118;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:121;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:122;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:123;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:124;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:125;}}s:5:\"index\";i:120;}}s:5:\"index\";i:117;}i:7;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:128;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:129;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:130;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:131;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:132;}}s:5:\"index\";i:127;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:134;}}s:5:\"index\";i:133;}}s:5:\"index\";i:126;}i:8;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:137;}}s:5:\"index\";i:136;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:139;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:140;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:141;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:142;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:143;}}s:5:\"index\";i:138;}}s:5:\"index\";i:135;}}s:5:\"index\";i:62;}i:10;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:145;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:146;}i:2;a:3:{s:3:\"tag\";s:15:\"av_testimonials\";s:7:\"content\";a:0:{}s:5:\"index\";i:147;}}s:5:\"index\";i:144;}i:11;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:149;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:150;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:151;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:152;}i:4;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:154;}}s:5:\"index\";i:153;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:155;}i:6;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:156;}}s:5:\"index\";i:148;}}'),(3147,3202,'_avia_sc_parser_state','check_only'),(3148,3202,'_av_alb_posts_elements_state','a:26:{s:9:\"av_button\";b:1;s:10:\"av_contact\";b:1;s:16:\"av_cell_one_half\";b:1;s:13:\"av_layout_row\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_font_icon\";b:1;s:11:\"av_iconlist\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:18:\"av_masonry_gallery\";b:1;s:14:\"av_layerslider\";b:1;s:18:\"av_tab_sub_section\";b:1;s:14:\"av_tab_section\";b:1;s:15:\"av_testimonials\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_one_fifth\";b:1;s:14:\"av_three_fifth\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:16:\"av_contact_field\";b:1;s:16:\"av_iconlist_item\";b:1;s:13:\"av_image_spot\";b:1;s:21:\"av_testimonial_single\";b:1;}'),(3149,3202,'_av_el_mgr_version','1.0'),(3150,3203,'_wp_attached_file','2020/05/SolSculptingWideIconFinal.png'),(3151,3203,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:208;s:4:\"file\";s:37:\"2020/05/SolSculptingWideIconFinal.png\";s:5:\"sizes\";a:5:{s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingWideIconFinal-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingWideIconFinal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideIconFinal-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:37:\"SolSculptingWideIconFinal-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:37:\"SolSculptingWideIconFinal-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3152,3204,'_wp_attached_file','woocommerce-placeholder.png'),(3153,3204,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:27:\"woocommerce-placeholder.png\";s:5:\"sizes\";a:18:{s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"woocommerce-placeholder-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"woocommerce-placeholder-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x430.png\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-705x705.png\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"woocommerce-placeholder-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"woocommerce-placeholder-1200x423.png\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3154,3205,'_wp_attached_file','2020/05/SolSculptingAntiAgingGroup.jpg'),(3155,3205,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:775;s:4:\"file\";s:38:\"2020/05/SolSculptingAntiAgingGroup.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"SolSculptingAntiAgingGroup-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:36:\"SolSculptingAntiAgingGroup-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:39:\"SolSculptingAntiAgingGroup-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:39:\"SolSculptingAntiAgingGroup-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-705x364.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:39:\"SolSculptingAntiAgingGroup-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3156,3206,'_aviaLayoutBuilder_active','active'),(3157,3206,'_aviaLayoutBuilderCleanData','[av_layerslider id=\'4\' av_uid=\'av-3dajdi\']\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'\' color=\'main_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' id=\'Best Rated\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-wdjr32\']\r\n\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background_color=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-w69tau\']\r\n\r\n[av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-vy3aoe\']\r\n\r\n[av_heading heading=\'Scientifically-proven to help practically anyone\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-136db2\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\nRed light has the power to reverse skin aging, reduce cellulite, combat fibromyaligia, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vf3oc6\']\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' link=\'\' linktarget=\'\' animation=\'\' id=\'\' custom_class=\'\' av_uid=\'av-v75kye\' admin_preview_bg=\'\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-v0on5i\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ux8yzq\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-unuh1a\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ul1yza\'][/av_font_icon]\r\n\r\n[av_hr class=\'invisible\' height=\'42\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-ucwva6\']\r\n\r\n[av_button label=\'VISIT THE STORE\' icon_select=\'yes\' icon=\'ue859\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'500px,0px,500px,0px\' background=\'bg_color\' background_color=\'#f8f8f8\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockup.png\' attachment=\'3201\' attachment_size=\'full\' background_attachment=\'scroll\' background_position=\'bottom left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'av-hide-on-mobile\' custom_class=\'\' av_uid=\'av-u07xfq\']\r\n\r\n[/av_cell_one_half][/av_layout_row][av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Intro\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-ka4vqyph\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup.jpg\' attachment=\'3205\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'26.6,34.5\' av_uid=\'av-z9vfq\']\r\nOptical Energy: 5000 Joules\r\nWavelength: 660 Nanometers\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'21,54.3\' av_uid=\'av-2ggkm\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'66.6,14.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,75\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.5,71.7\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-s6pesu\']\r\n\r\n[/av_section][av_button label=\'VISIT THE STORE\' icon_select=\'yes\' icon=\'ue859\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[av_masonry_gallery ids=\'352,350,355,353,354,351\' items=\'6\' columns=\'6\' paginate=\'none\' size=\'fixed\' gap=\'large\' overlay_fx=\'active\' container_links=\'active\' id=\'\' caption_elements=\'title\' caption_styling=\'\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#35383c\' av_uid=\'av-reu7ty\']\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Feature List\' color=\'main_color\' custom_bg=\'#35383c\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-r7gwwm\']\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Can’t get enough?<br/>Here are even more features!\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' av_uid=\'av-r2g1by\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qv8cke\']\r\n\r\n[av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-qplbxa\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' custom_content_size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qkwe4u\']\r\n[av_iconlist_item title=\'Clean and modern Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-2n0bby\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Drag and Drop Template Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q5w85a\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Ajax Instant Search\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q0thfy\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Translation ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ptjbxy\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'WooCommerce ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ps16va\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'WooCommerce Bookings Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-pigiou\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'WPML ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-pc4j4m\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Responsive design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-pa3jta\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Child theme support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-p4dq3a\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-oxm0xy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' custom_content_size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-or16pi\']\r\n[av_iconlist_item title=\'Retina Ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-oliv1q\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Events Calendar Integration\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-of9ie6\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'2D + 3D Layerslider Slideshow\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o88cyu\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Video Support + Slideshows\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o0lmja\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Unlimited Color Options\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-nys4ie\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Unique unlimited sidebars\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-2d9mby\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Portfolio Pages & Ajax Portfolios\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-nn4oz2\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Free Lifetime Updates\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ngcxie\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Contact Form Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-n6i4d2\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-n2fmfy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' custom_content_size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-mxw99q\']\r\n[av_iconlist_item title=\'Easy One Page Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mr9x0u\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'More than 2 dozen Demos\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mj8vxi\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Single click Demo import\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mdubau\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Top Notch Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mbj4pa\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Regular Updates and Improvements\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-m1b0dy\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Strong SEO foundation\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-lxpjw6\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Compatible with major SEO plugins\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-lsj6se\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'bbPress Forum ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ln4mxi\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Parallax Effects\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-lhkj86\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Demos\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/isometric-1.jpg\' attachment=\'447\' attachment_size=\'full\' attach=\'scroll\' position=\'center left\' repeat=\'contain\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l87mda\']\r\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'50px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-l4dz4e\']\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'50px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'rgba(255,255,255,0.85)\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-238cxi\']\r\n\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'A growing library of more than 2 dozen demos\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' av_uid=\'av-krk97i\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-knhh9a\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-21ow0m\']\r\nOur demos are one of a kind: we only offer<strong> full concept demos</strong> with multiple pages that show whole projects, unlike others who only include a single page and call that a demo ;)\r\n\r\nYou can import them with <strong>a single click</strong>, they are easily adaptable to your needs and you can chose from a variety of layouts and niche designs. In addition to that you can also use the <strong>demo images used in our demo for your own project</strong>!\r\n[/av_textblock]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Visual Editor\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-k84rvq\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Our great Visual Layout Editor just got better:<br/>Now with live previews!\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#000000\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-k3vjoe\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-jx1xuu\']\r\n\r\n[av_image_hotspot src=\'http://www.kriesi.at/themes/enfold-2017/files/2017/02/layout_editor.jpg\' attachment=\'3001\' attachment_size=\'full\' animation=\'bottom-to-top\' hotspot_layout=\'numbered\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' av_uid=\'av-ju5x9a\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-left\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#22689e\' custom_font=\'#ffffff\' custom_pulse=\'#22689e\' hotspot_pos=\'22.1,29\' av_uid=\'av-jkolg6\']\r\n<strong>Step 1:</strong> Add an element to the visual editor canvas\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-left\' tooltip_width=\'av-tt-xlarge-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#22689e\' custom_font=\'#ffffff\' custom_pulse=\'#22689e\' hotspot_pos=\'63.8,8.3\' av_uid=\'av-jibs7i\']\r\n<strong>Step 2:</strong> Edit the element to your likings. A visual preview will be shown to the right for most content elements.\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' hotspot_pos=\'39.7,78.6\' av_uid=\'av-jbasye\']\r\n<strong>Step 3:</strong> Rinse and repeat, until you got a great website ;)\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-j2z88e\']\r\n\r\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-ixldu6\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-irw6hq\']\r\nThere are several approaches when it comes to content editing but we consider our Advanced Layout Editor one of the best.\r\n\r\nWe prefer a backend editor to one that is placed on the frontend, because there is less clutter and the layout process is usually much easier.\r\n[/av_textblock]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-iky8t2\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-ieeeu6\']\r\nHowever, there are merits to a frontend editor. The biggest one is that you can see how the element your are editing looks like at any given time.\r\n\r\nThis is why we have implemented a live preview window for our content elements. So now you got the best of both worlds: easy layout building and visual content editing :)\r\n[/av_textblock]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Newsletter\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-i7oena\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-i5tgxa\'][/av_heading]\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hvugji\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hr69ra\']\r\n\r\n[av_contact email=\'newsletter@test.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks for subscribing! \' link=\'manually,http://\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' form_align=\'\' color=\'av-custom-form-color av-light-form\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-ho42xq\']\r\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-1quppy\'][/av_contact_field]\r\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-haih5y\'][/av_contact_field]\r\n[/av_contact]\r\n\r\n[av_textblock size=\'\' font_color=\'custom\' color=\'#cecece\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-h39p1q\']\r\n<p style=\"text-align: center;\">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-gxvuni\']\r\n\r\n[/av_one_fifth]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Plugin Header\' color=\'main_color\' custom_bg=\'#f1f1f1\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-gqqjja\']\r\n[av_hr class=\'invisible\' height=\'40\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-thin\' custom_width=\'50px\' custom_border_color=\'\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'yes\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-gmt612\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Deep integration for market-leading plugins.<br/>And of course working out of the box with thousands more...\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-ghn9we\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'70px\' custom_margin_bottom=\'5px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-gbz9ri\']\r\n[/av_section]\r\n\r\n[av_tab_section transition=\'av-tab-slide-transition\' padding=\'large\' tab_pos=\'av-tab-above-content\' tab_padding=\'none\' initial=\'5\' id=\'Plugins\' av_element_hidden_in_editor=\'0\' av_admin_tab_active=\'9\' bg_color=\'#f1f1f1\' color=\'#919191\' av_uid=\'av-1m9rg6\']\r\n[av_tab_sub_section tab_title=\'bbPress Forums\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3004\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-g170wu\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-fusoh2\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/bbpress-ipad.jpg\' attachment=\'541\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-fnr6pa\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-fiuq2u\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Easily build and manage your community with the bbPress forum plugin\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-fd8jj2\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-f30t3q\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-exihfy\']\r\n<strong>bbPress</strong> is a forum software with a twist from the creators of WordPress. Easily setup discussion forums inside your WordPress powered site.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-erq8j2\']\r\n\r\n[av_button label=\'Learn more about bbPress\' link=\'manually,https://bbpress.org/\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue80b\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#8dc770\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-eprf5a\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Yoast SEO for WP\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3012\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-ehe70e\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-eagu5q\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Optimize your site for search engines with Yoast SEO for WordPress\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-e7nggu\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1eddsm\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-dvy0ee\']\r\n<strong>Yoast SEO</strong> allows you to easily optimize your WordPress site with one plugin for all search engines. It allows for real time content analysis of your blog entries and has many more features to streamline your site. A premium version of the plugin is also available.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-dnr3vy\']\r\n\r\n[av_button label=\'Learn more about Yoast SEO\' link=\'manually,https://yoast.com/wordpress/plugins/seo/\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue803\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#0075b3\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-di8p52\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-dcvo2e\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/yoast-ipad.jpg\' attachment=\'548\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-d6ggri\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Gravity Forms\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3007\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-d0w29a\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-ct8q7y\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/gravity-ipad.jpg\' attachment=\'543\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-cn9r0u\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-cfrd86\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Build great forms with GravityForms\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-c9686u\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-c4ovjq\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-bypnv2\']\r\nAlthough Enfold has a great and simple form builder for everyday contact forms, sometimes what you need is something more sophisticated with a lot more options. Thats where <strong>GravityForms</strong> shines!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-buyrdq\']\r\n\r\n[av_button label=\'Learn more about GravityForms\' link=\'manually,https://woocommerce.com/?ref=84\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue849\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#365666\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-bo6w26\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Slider Revolution\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3009\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-bjtb7y\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-baembi\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Use Slider Revolution for beautiful slides\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-b6pyuu\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-az9md2\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-au1wna\']\r\nAlthough the plugin is not included as part of the theme (other than the Layerslider Plugin, which is) the theme will show an extra template builder element for the Slider Revolution Plugin for easier integration with our layouts. No Matter with Layer Based Slider you prefer, we got you covered!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-aphu0e\']\r\n\r\n[av_button label=\'Learn more about Slider Revolution\' link=\'manually,https://codecanyon.net/item/slider-revolution-responsive-wordpress-plugin/2751380?ref=Kriesi\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue891\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#c50000\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-agb8ry\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-acusu6\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/revslider-ipad.jpg\' attachment=\'546\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-a61hti\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Woo Commerce\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3010\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-a1em3q\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-9wl4qe\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/woo-ipad.jpg\' attachment=\'522\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-z3j1i\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-9it7c6\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Open your own WooCommerce Online Store\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-9achfi\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-942rnq\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-937jfi\']\r\n<strong>WooCommerce</strong> is now the most popular eCommerce platform on the web, so you can rest assured you\'re in good company. Build beautiful and functional stores without any hassle by using our Enfold Theme in conjunction with WooCommerce.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-8vxxzq\']\r\n\r\n[av_button label=\'Learn more about WooCommerce\' link=\'manually,https://woocommerce.com/?ref=84\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue859\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#a46497\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-8meepi\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Layer Slider Plugin\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3008\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-8gsvb2\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-8f507q\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Use LayerSlider for amazing custom animations. The plugin is the only one included in the theme\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-852o8e\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-834xfi\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-7xja66\']\r\nOur goto slider when it comes to complex layer-based animation sliders. The Plugin is included as part of the theme but no worries, if you don\'t use we wont load it, to take care of your server resources.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-7qfkxa\']\r\n\r\n[av_button label=\'Learn more about the LayerSlider\' link=\'manually,https://codecanyon.net/item/layerslider-responsive-wordpress-slider-plugin/1362246?ref=Kriesi\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue84e\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#312853\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-qx6la\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-qpupa\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/layerslider-ipad.jpg\' attachment=\'544\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-7571ry\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Mailchimp Newsletter\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3005\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-73b9ym\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-ohml2\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/mailchimp-ipad-1.jpg\' attachment=\'545\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-6omwcu\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-6j52fy\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Mailchimp Newsletter Integration\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-n7tny\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-68rzvy\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-63fjna\']\r\nNot technically a plugin but only the most popular newsletter service there is. And Enfold allows you to create subscription forms out of the box. Just enter your <strong>Mailchimp</strong> API key and start collecting subscribers!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-5tdx4m\']\r\n\r\n[av_button label=\'Learn more about Mailchimp\' link=\'manually,https://mailchimp.com\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue836\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#f58eac\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-5q7q0m\']\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'The Events Calendar\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3006\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-5hb8za\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-5cqn1y\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Manage and organize events with this amazing plugin\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-56v0zy\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-50mc9i\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-4vfpwe\']\r\nA solid, feature-rich calendar and events management suite that’s scalable from soup to nuts. Also comes with a Pro version and a ton of extensions. Definitely check it out!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-4pc41a\']\r\n\r\n[av_button label=\'Learn more about the Evens Calendar\' link=\'manually,http://mbsy.co/6cr37\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue84e\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#1173b3\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-4kv6tq\']\r\n\r\n[/av_one_half][av_one_half min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-4d2wjq\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/events-ipad.jpg\' attachment=\'542\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-4ajkqm\'][/av_image]\r\n\r\n[/av_one_half][/av_tab_sub_section][av_tab_sub_section tab_title=\'Multi Language\' vertical_align=\'middle\' icon_select=\'image_top\' icon=\'ue800\' font=\'entypo-fontello\' tab_image=\'3011\' tab_image_style=\'\' color=\'#333333\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' av_uid=\'av-439mye\']\r\n\r\n[av_one_half first min_height=\'av-equal-height-column\' vertical_alignment=\'av-align-middle\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-3xrvcu\']\r\n\r\n[av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/wpml-ipad.jpg\' attachment=\'547\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-3rhnu6\'][/av_image]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-3jruam\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Create sites with multiple languages with Enfold and WPML\' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-3dn85y\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-39lv52\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-b3l6u\']\r\nWPML allows running fully multilingual websites with WordPress, making it easy to translate WordPress pages, posts, tags, categories and themes. And since our Themes are optimised for <strong>WPML</strong> the whole experience gets even better!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-2wq68m\']\r\n\r\n[av_button label=\'Learn more about WPML\' link=\'manually,http://bit.ly/kwpml\' link_target=\'_blank\' size=\'large\' position=\'left\' icon_select=\'yes-right-icon\' icon_hover=\'aviaTBicon_hover\' icon=\'ue859\' font=\'entypo-fontello\' color=\'custom\' custom_bg=\'#307a9b\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-9mk8m\']\r\n\r\n[/av_one_half][/av_tab_sub_section]\r\n[/av_tab_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Testimonials\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-2lvc0u\']\r\n[av_heading heading=\'What our customer say\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-2c4pc6\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-7w63i\']\r\n\r\n[av_testimonials style=\'slider_large\' columns=\'2\' interval=\'5\' font_color=\'custom\' custom_title=\'#ffffff\' custom_content=\'#e8e8e8\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-24ot1q\']\r\n[av_testimonial_single src=\'\' name=\'Macky Mac\' subtitle=\'\' link=\'\' linktext=\'\' av_uid=\'av-1vu752\']\r\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\r\n[/av_testimonial_single]\r\n[av_testimonial_single src=\'\' name=\'Franco Moriti\' subtitle=\'\' link=\'\' linktext=\'\' av_uid=\'av-1svyam\']\r\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\r\n[/av_testimonial_single]\r\n[/av_testimonials]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Support\' color=\'main_color\' custom_bg=\'#ffffff\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1k6sdi\']\r\n[av_hr class=\'invisible\' height=\'70\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1dywym\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Real support by real people\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-17phzq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-13co5q\']\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-xj46e\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-tlvau\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-nknuu\']\r\n<p style=\"text-align: center;\">We offer the best support and service you can imagine. Use our support forum if you got any question and our team will respond, thats for sure! We got thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-gmj86\']\r\n\r\n[/av_one_fifth][av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg\' attachment=\'582\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'bottom-to-top\' admin_preview_bg=\'\' av_uid=\'av-9p8ou\'][/av_image]\r\n[/av_section]\r\n\r\n'),(3158,3206,'_avia_builder_shortcode_tree','a:13:{i:0;a:3:{s:3:\"tag\";s:14:\"av_layerslider\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}i:4;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:5;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}i:6;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:7;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:8;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:9;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}i:10;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:3;}}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:3;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:22;}i:4;a:3:{s:3:\"tag\";s:18:\"av_masonry_gallery\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}i:2;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:28;}}s:5:\"index\";i:27;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:30;}}s:5:\"index\";i:29;}i:4;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:32;}}s:5:\"index\";i:31;}}s:5:\"index\";i:24;}i:6;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:34;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:36;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:37;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:38;}}s:5:\"index\";i:35;}}s:5:\"index\";i:33;}i:7;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:6:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:40;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:41;}i:2;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:42;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}i:4;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:45;}}s:5:\"index\";i:44;}i:5;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:47;}}s:5:\"index\";i:46;}}s:5:\"index\";i:39;}i:8;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:49;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:50;}i:2;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_contact\";s:7:\"content\";a:0:{}s:5:\"index\";i:52;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:53;}}s:5:\"index\";i:51;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:54;}}s:5:\"index\";i:48;}i:9;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:56;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:57;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:58;}}s:5:\"index\";i:55;}i:10;a:3:{s:3:\"tag\";s:14:\"av_tab_section\";s:7:\"content\";a:9:{i:0;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:62;}}s:5:\"index\";i:61;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:64;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:65;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:66;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:67;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:68;}}s:5:\"index\";i:63;}}s:5:\"index\";i:60;}i:1;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:71;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:72;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:73;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:74;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:75;}}s:5:\"index\";i:70;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:77;}}s:5:\"index\";i:76;}}s:5:\"index\";i:69;}i:2;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:80;}}s:5:\"index\";i:79;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:82;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:83;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:84;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:85;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:86;}}s:5:\"index\";i:81;}}s:5:\"index\";i:78;}i:3;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:89;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:90;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:91;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:92;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:93;}}s:5:\"index\";i:88;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:95;}}s:5:\"index\";i:94;}}s:5:\"index\";i:87;}i:4;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:98;}}s:5:\"index\";i:97;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:100;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:101;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:102;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:103;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:104;}}s:5:\"index\";i:99;}}s:5:\"index\";i:96;}i:5;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:107;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:108;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:109;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:110;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:111;}}s:5:\"index\";i:106;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:113;}}s:5:\"index\";i:112;}}s:5:\"index\";i:105;}i:6;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:116;}}s:5:\"index\";i:115;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:118;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:119;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:120;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:121;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:122;}}s:5:\"index\";i:117;}}s:5:\"index\";i:114;}i:7;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:125;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:126;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:127;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:128;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:129;}}s:5:\"index\";i:124;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:131;}}s:5:\"index\";i:130;}}s:5:\"index\";i:123;}i:8;a:3:{s:3:\"tag\";s:18:\"av_tab_sub_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:134;}}s:5:\"index\";i:133;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:136;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:137;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:138;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:139;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:140;}}s:5:\"index\";i:135;}}s:5:\"index\";i:132;}}s:5:\"index\";i:59;}i:11;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:142;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:143;}i:2;a:3:{s:3:\"tag\";s:15:\"av_testimonials\";s:7:\"content\";a:0:{}s:5:\"index\";i:144;}}s:5:\"index\";i:141;}i:12;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:146;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:147;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:148;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:149;}i:4;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:151;}}s:5:\"index\";i:150;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:152;}i:6;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:153;}}s:5:\"index\";i:145;}}'),(3159,3206,'_avia_sc_parser_state','check_only'),(3160,3206,'_av_alb_posts_elements_state','a:26:{s:9:\"av_button\";b:1;s:10:\"av_contact\";b:1;s:16:\"av_cell_one_half\";b:1;s:13:\"av_layout_row\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_font_icon\";b:1;s:11:\"av_iconlist\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:18:\"av_masonry_gallery\";b:1;s:14:\"av_layerslider\";b:1;s:18:\"av_tab_sub_section\";b:1;s:14:\"av_tab_section\";b:1;s:15:\"av_testimonials\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_one_fifth\";b:1;s:14:\"av_three_fifth\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:16:\"av_contact_field\";b:1;s:16:\"av_iconlist_item\";b:1;s:13:\"av_image_spot\";b:1;s:21:\"av_testimonial_single\";b:1;}'),(3161,3206,'_av_el_mgr_version','1.0'),(3162,3208,'_aviaLayoutBuilder_active','active'),(3163,3208,'_aviaLayoutBuilderCleanData','[av_layerslider id=\'4\' av_uid=\'av-3dajdi\']\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'\' color=\'main_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' id=\'Best Rated\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-wdjr32\']\r\n\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background_color=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-w69tau\']\r\n\r\n[av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-vy3aoe\']\r\n\r\n[av_heading heading=\'Scientifically-proven to help practically anyone\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-kar9a\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\nRed light has the power to reverse skin aging, reduce cellulite, combat fibromyaligia, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vf3oc6\']\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' link=\'\' linktarget=\'\' animation=\'\' id=\'\' custom_class=\'\' av_uid=\'av-v75kye\' admin_preview_bg=\'\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-v0on5i\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ux8yzq\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-unuh1a\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ul1yza\'][/av_font_icon]\r\n\r\n[av_hr class=\'invisible\' height=\'42\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-ucwva6\']\r\n\r\n[av_button label=\'VISIT THE STORE\' icon_select=\'yes\' icon=\'ue859\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'500px,0px,500px,0px\' background=\'bg_color\' background_color=\'#f8f8f8\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockup.png\' attachment=\'3201\' attachment_size=\'full\' background_attachment=\'scroll\' background_position=\'bottom left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'av-hide-on-mobile\' custom_class=\'\' av_uid=\'av-u07xfq\']\r\n\r\n[/av_cell_one_half][/av_layout_row][av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Intro\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-1myue\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup.jpg\' attachment=\'3205\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'26.6,34.5\' av_uid=\'av-z9vfq\']\r\nOptical Energy: 5000 Joules\r\nWavelength: 660 Nanometers\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'26.2,57.9\' av_uid=\'av-2ggkm\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'66.6,14.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'48.5,75.9\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'74.9,72.1\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_button label=\'MORE INFORMATION\' icon_select=\'yes\' icon=\'ue82b\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Feature List\' color=\'main_color\' custom_bg=\'#35383c\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-r7gwwm\']\r\n\r\n[av_heading heading=\'Calling All Entrepreneurs!?\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-ka4x4bdv\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#ffffff\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\nDo you love helping people? Are you interested in health, wellness, and beauty? Are you looking for a turn-key and affordable business to launch in your community? Look no further than SolSculpting by Avanti Body. Priced so real people can afford to start their business.\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qv8cke\']\r\n\r\n[av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-qplbxa\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-qkwe4u\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Clean and modern Design\' icon=\'ue871\' font=\'entypo-fontello\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' av_uid=\'av-bvuxq\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Drag and Drop Template Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q5w85a\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Ajax Instant Search\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q0thfy\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Translation ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ptjbxy\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-oxm0xy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-or16pi\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Retina Ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-oliv1q\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Events Calendar Integration\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-of9ie6\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'2D + 3D Layerslider Slideshow\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o88cyu\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Video Support + Slideshows\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o0lmja\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-n2fmfy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-mxw99q\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Easy One Page Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mr9x0u\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'More than 2 dozen Demos\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mj8vxi\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Single click Demo import\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mdubau\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Top Notch Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mbj4pa\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_button label=\'LEARN ABOUT BUSINESS OPPORTUNTIY\' icon_select=\'yes\' icon=\'ue8bc\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Newsletter\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-i7oena\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-i5tgxa\'][/av_heading]\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hvugji\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hr69ra\']\r\n\r\n[av_contact email=\'newsletter@test.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks for subscribing! \' link=\'manually,http://\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' form_align=\'\' color=\'av-custom-form-color av-light-form\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-ho42xq\']\r\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-1quppy\'][/av_contact_field]\r\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-haih5y\'][/av_contact_field]\r\n[/av_contact]\r\n\r\n[av_textblock size=\'\' font_color=\'custom\' color=\'#cecece\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-h39p1q\']\r\n<p style=\"text-align: center;\">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-gxvuni\']\r\n\r\n[/av_one_fifth]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Support\' color=\'main_color\' custom_bg=\'#ffffff\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1k6sdi\']\r\n[av_hr class=\'invisible\' height=\'70\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1dywym\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Real support by real people\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-17phzq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-13co5q\']\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-xj46e\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-tlvau\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-nknuu\']\r\n<p style=\"text-align: center;\">We offer the best support and service you can imagine. Use our support forum if you got any question and our team will respond, thats for sure! We got thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-gmj86\']\r\n\r\n[/av_one_fifth][av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg\' attachment=\'582\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'bottom-to-top\' admin_preview_bg=\'\' av_uid=\'av-9p8ou\'][/av_image]\r\n[/av_section]\r\n\r\n'),(3164,3208,'_avia_builder_shortcode_tree','a:6:{i:0;a:3:{s:3:\"tag\";s:14:\"av_layerslider\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}i:4;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:5;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}i:6;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:7;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:8;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:9;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}i:10;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:3;}}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:29;}}s:5:\"index\";i:28;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:31;}}s:5:\"index\";i:30;}i:6;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:32;}}s:5:\"index\";i:22;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:34;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:35;}i:2;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_contact\";s:7:\"content\";a:0:{}s:5:\"index\";i:37;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:38;}}s:5:\"index\";i:36;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}}s:5:\"index\";i:33;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:41;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:42;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:44;}i:4;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:46;}}s:5:\"index\";i:45;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:47;}i:6;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:48;}}s:5:\"index\";i:40;}}'),(3165,3208,'_avia_sc_parser_state','check_only'),(3166,3208,'_av_alb_posts_elements_state','a:20:{s:9:\"av_button\";b:1;s:10:\"av_contact\";b:1;s:16:\"av_cell_one_half\";b:1;s:13:\"av_layout_row\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_font_icon\";b:1;s:11:\"av_iconlist\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:14:\"av_layerslider\";b:1;s:11:\"av_one_full\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_one_fifth\";b:1;s:14:\"av_three_fifth\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:16:\"av_contact_field\";b:1;s:16:\"av_iconlist_item\";b:1;s:13:\"av_image_spot\";b:1;}'),(3167,3208,'_av_el_mgr_version','1.0'),(3168,3209,'_aviaLayoutBuilder_active','active'),(3169,3209,'_aviaLayoutBuilderCleanData','[av_layerslider id=\'4\' av_uid=\'av-3dajdi\']\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'\' color=\'main_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' id=\'Best Rated\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-wdjr32\']\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background_color=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-w69tau\']\r\n\r\n[av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-vy3aoe\']\r\n\r\n[av_heading heading=\'Scientifically-proven to help practically anyone\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-kar9a\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\nRed light has the power to reverse skin aging, reduce cellulite, combat fibromyaligia, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vf3oc6\']\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' link=\'\' linktarget=\'\' animation=\'\' id=\'\' custom_class=\'\' av_uid=\'av-v75kye\' admin_preview_bg=\'\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-v0on5i\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ux8yzq\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-unuh1a\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ul1yza\'][/av_font_icon]\r\n\r\n[av_hr class=\'invisible\' height=\'42\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-ucwva6\']\r\n\r\n[av_button label=\'VISIT THE STORE\' icon_select=\'yes\' icon=\'ue859\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'500px,0px,500px,0px\' background=\'bg_color\' background_color=\'#f8f8f8\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockup.png\' attachment=\'3201\' attachment_size=\'full\' background_attachment=\'scroll\' background_position=\'bottom left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'av-hide-on-mobile\' custom_class=\'\' av_uid=\'av-u07xfq\']\r\n\r\n[/av_cell_one_half]\r\n[/av_layout_row]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Intro\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-1myue\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup.jpg\' attachment=\'3205\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'26.6,34.5\' av_uid=\'av-z9vfq\']\r\nOptical Energy: 5000 Joules\r\nWavelength: 660 Nanometers\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'26.2,57.9\' av_uid=\'av-2ggkm\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'66.6,14.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'48.5,75.9\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'74.9,72.1\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_button label=\'MORE INFORMATION\' icon_select=\'yes\' icon=\'ue82b\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Feature List\' color=\'main_color\' custom_bg=\'#35383c\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-r7gwwm\']\r\n\r\n[av_heading heading=\'Calling All Entrepreneurs!?\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-bwnhi\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#ffffff\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n<p style=\"text-align: center;\">Do you love helping people? Are you interested in health, wellness, and beauty? Are you looking for a turn-key and affordable business to launch in your community? Look no further than SolSculpting by Avanti Body. Priced so real people can afford to start their business.</p>\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qv8cke\']\r\n\r\n[av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-qplbxa\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-qkwe4u\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Clean and modern Design\' icon=\'ue871\' font=\'entypo-fontello\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' av_uid=\'av-bvuxq\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Drag and Drop Template Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q5w85a\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Ajax Instant Search\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q0thfy\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Translation ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ptjbxy\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-oxm0xy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-or16pi\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Retina Ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-oliv1q\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Events Calendar Integration\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-of9ie6\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'2D + 3D Layerslider Slideshow\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o88cyu\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Video Support + Slideshows\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o0lmja\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-n2fmfy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-mxw99q\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Easy One Page Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mr9x0u\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'More than 2 dozen Demos\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mj8vxi\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Single click Demo import\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mdubau\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Top Notch Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mbj4pa\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_hr class=\'invisible\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' custom_border_color=\'#ffffff\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-qv8cke\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n\r\n[av_button label=\'LEARN ABOUT THE BUSINESS OPPORTUNTIY\' icon_select=\'yes\' icon=\'ue8bc\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'light\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Newsletter\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-i7oena\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-i5tgxa\'][/av_heading]\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hvugji\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hr69ra\']\r\n\r\n[av_contact email=\'newsletter@test.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks for subscribing! \' link=\'manually,http://\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' form_align=\'\' color=\'av-custom-form-color av-light-form\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-ho42xq\']\r\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-1quppy\'][/av_contact_field]\r\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-haih5y\'][/av_contact_field]\r\n[/av_contact]\r\n\r\n[av_textblock size=\'\' font_color=\'custom\' color=\'#cecece\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-h39p1q\']\r\n<p style=\"text-align: center;\">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-gxvuni\']\r\n\r\n[/av_one_fifth]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Support\' color=\'main_color\' custom_bg=\'#ffffff\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1k6sdi\']\r\n[av_hr class=\'invisible\' height=\'70\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1dywym\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Real support by real people\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-17phzq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-13co5q\']\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-xj46e\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-tlvau\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-nknuu\']\r\n<p style=\"text-align: center;\">We offer the best support and service you can imagine. Use our support forum if you got any question and our team will respond, thats for sure! We got thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-gmj86\']\r\n\r\n[/av_one_fifth][av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg\' attachment=\'582\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'bottom-to-top\' admin_preview_bg=\'\' av_uid=\'av-9p8ou\'][/av_image]\r\n[/av_section]\r\n\r\n'),(3170,3209,'_avia_builder_shortcode_tree','a:6:{i:0;a:3:{s:3:\"tag\";s:14:\"av_layerslider\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}i:4;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:5;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}i:6;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:7;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:8;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:9;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}i:10;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:3;}}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:8:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:29;}}s:5:\"index\";i:28;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:31;}}s:5:\"index\";i:30;}i:6;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:32;}i:7;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:33;}}s:5:\"index\";i:22;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:35;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:36;}i:2;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_contact\";s:7:\"content\";a:0:{}s:5:\"index\";i:38;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}}s:5:\"index\";i:37;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:40;}}s:5:\"index\";i:34;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:42;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:44;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:45;}i:4;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:47;}}s:5:\"index\";i:46;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:48;}i:6;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:49;}}s:5:\"index\";i:41;}}'),(3171,3209,'_avia_sc_parser_state','check_only'),(3172,3209,'_av_alb_posts_elements_state','a:20:{s:9:\"av_button\";b:1;s:10:\"av_contact\";b:1;s:16:\"av_cell_one_half\";b:1;s:13:\"av_layout_row\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_font_icon\";b:1;s:11:\"av_iconlist\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:14:\"av_layerslider\";b:1;s:11:\"av_one_full\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_one_fifth\";b:1;s:14:\"av_three_fifth\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:16:\"av_contact_field\";b:1;s:16:\"av_iconlist_item\";b:1;s:13:\"av_image_spot\";b:1;}'),(3173,3209,'_av_el_mgr_version','1.0'),(3174,3210,'_aviaLayoutBuilder_active','active'),(3175,3210,'_aviaLayoutBuilderCleanData','[av_layerslider id=\'4\' av_uid=\'av-3dajdi\']\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'\' color=\'main_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' id=\'Best Rated\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-wdjr32\']\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background_color=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-w69tau\']\r\n\r\n[av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'left-to-right\' mobile_display=\'\' av_uid=\'av-vy3aoe\']\r\n\r\n[av_heading heading=\'Scientifically-proven to help practically anyone\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-kar9a\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\nRed light has the power to reverse skin aging, reduce cellulite, combat fibromyaligia, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!\r\n[/av_textblock]\r\n\r\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vf3oc6\']\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' link=\'\' linktarget=\'\' animation=\'\' id=\'\' custom_class=\'\' av_uid=\'av-v75kye\' admin_preview_bg=\'\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-v0on5i\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ux8yzq\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-unuh1a\'][/av_font_icon]\r\n\r\n[av_font_icon icon=\'ue808\' font=\'entypo-fontello\' style=\'\' caption=\'\' link=\'\' linktarget=\'\' size=\'40px\' position=\'left\' color=\'#e2bc12\' av_uid=\'av-ul1yza\'][/av_font_icon]\r\n\r\n[av_hr class=\'invisible\' height=\'42\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-ucwva6\']\r\n\r\n[av_button label=\'VISIT THE STORE\' icon_select=\'yes\' icon=\'ue859\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_one_full][/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'500px,0px,500px,0px\' background=\'bg_color\' background_color=\'#f8f8f8\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockup.png\' attachment=\'3201\' attachment_size=\'full\' background_attachment=\'scroll\' background_position=\'bottom left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'av-hide-on-mobile\' custom_class=\'\' av_uid=\'av-u07xfq\']\r\n\r\n[/av_cell_one_half]\r\n[/av_layout_row]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Intro\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-8y8gu\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup.jpg\' attachment=\'3205\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,32.7\' av_uid=\'av-z9vfq\']\r\nOptical Energy: 5000 Joules\r\nWavelength: 660 Nanometers\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.8,58.8\' av_uid=\'av-2ggkm\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'66.6,14.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,75\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.9,71.6\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_button label=\'MORE INFORMATION\' icon_select=\'yes\' icon=\'ue82b\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n\r\n[/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#ffffff\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Feature List\' color=\'main_color\' custom_bg=\'#35383c\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-r7gwwm\']\r\n[av_heading heading=\'Calling All Entrepreneurs!?\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-bwnhi\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#ffffff\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n<p style=\"text-align: center;\">Do you love helping people? Are you interested in health, wellness, and beauty? Are you looking for a turn-key and affordable business to launch in your community? Look no further than SolSculpting by Avanti Body. Priced so real people can afford to start their business.</p>\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-qv8cke\']\r\n\r\n[av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-qplbxa\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-qkwe4u\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Clean and modern Design\' icon=\'ue871\' font=\'entypo-fontello\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' av_uid=\'av-bvuxq\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Drag and Drop Template Builder\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q5w85a\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Ajax Instant Search\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-q0thfy\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Translation ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-ptjbxy\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-oxm0xy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-or16pi\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Retina Ready\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-oliv1q\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Events Calendar Integration\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-of9ie6\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'2D + 3D Layerslider Slideshow\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o88cyu\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Video Support + Slideshows\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-o0lmja\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'bottom-to-top\' mobile_display=\'\' av_uid=\'av-n2fmfy\']\r\n\r\n[av_iconlist position=\'left\' iconlist_styling=\'av-iconlist-small\' custom_title_size=\'18\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' custom_content_size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#ffffff\' custom_border=\'\' animation=\'\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-mxw99q\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n[av_iconlist_item title=\'Easy One Page Design\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mr9x0u\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'More than 2 dozen Demos\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mj8vxi\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Single click Demo import\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mdubau\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[av_iconlist_item title=\'Top Notch Support\' link=\'\' linktarget=\'\' linkelement=\'\' icon=\'ue871\' font=\'entypo-fontello\' av_uid=\'av-mbj4pa\' heading_tag=\'\' heading_class=\'\'][/av_iconlist_item]\r\n[/av_iconlist]\r\n\r\n[/av_one_third][av_hr class=\'invisible\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'45px\' custom_margin_bottom=\'45px\' custom_border_color=\'#ffffff\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-qv8cke\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n\r\n[av_button label=\'LEARN ABOUT THE BUSINESS OPPORTUNTIY\' icon_select=\'yes\' icon=\'ue8bc\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'light\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Newsletter\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-office-work.jpg\' attachment=\'480\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-i7oena\']\r\n[av_heading tag=\'h1\' padding=\'20\' heading=\'Another great feature included in the theme:<br/>Mailchimp Newsletter Sign Up\' color=\'custom-color-heading\' style=\'blockquote modern-quote modern-centered\' custom_font=\'#ffffff\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-i5tgxa\'][/av_heading]\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hvugji\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-hr69ra\']\r\n\r\n[av_contact email=\'newsletter@test.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks for subscribing! \' link=\'manually,http://\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' form_align=\'\' color=\'av-custom-form-color av-light-form\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-ho42xq\']\r\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-1quppy\'][/av_contact_field]\r\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-haih5y\'][/av_contact_field]\r\n[/av_contact]\r\n\r\n[av_textblock size=\'\' font_color=\'custom\' color=\'#cecece\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-h39p1q\']\r\n<p style=\"text-align: center;\">Use either normal contact forms, like the one above, or similar looking mailchimp forms that let your customer directly subscribe to your mailchimp newsletter!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-gxvuni\']\r\n\r\n[/av_one_fifth]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'no-padding\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Support\' color=\'main_color\' custom_bg=\'#ffffff\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1k6sdi\']\r\n[av_hr class=\'invisible\' height=\'70\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-1dywym\']\r\n\r\n[av_heading tag=\'h1\' padding=\'0\' heading=\'Real support by real people\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-17phzq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\' av_uid=\'av-13co5q\']\r\n\r\n[av_one_fifth first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-xj46e\']\r\n\r\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-tlvau\']\r\n\r\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-nknuu\']\r\n<p style=\"text-align: center;\">We offer the best support and service you can imagine. Use our support forum if you got any question and our team will respond, thats for sure! We got thousands of solved threads and a customer satisfaction of 97%. We do care that your site runs great!</p>\r\n[/av_textblock]\r\n\r\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-gmj86\']\r\n\r\n[/av_one_fifth][av_image src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/business-support-1.jpg\' attachment=\'582\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'bottom-to-top\' admin_preview_bg=\'\' av_uid=\'av-9p8ou\'][/av_image]\r\n[/av_section]\r\n\r\n'),(3176,3210,'_avia_builder_shortcode_tree','a:6:{i:0;a:3:{s:3:\"tag\";s:14:\"av_layerslider\";s:7:\"content\";a:0:{}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:11:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:4;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}i:4;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:8;}i:5;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:9;}i:6;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:7;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:8;a:3:{s:3:\"tag\";s:12:\"av_font_icon\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:9;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}i:10;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:14;}}s:5:\"index\";i:3;}}s:5:\"index\";i:2;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:1;}i:2;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:8:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:29;}}s:5:\"index\";i:28;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_third\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_iconlist\";s:7:\"content\";a:0:{}s:5:\"index\";i:31;}}s:5:\"index\";i:30;}i:6;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:32;}i:7;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:33;}}s:5:\"index\";i:22;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:35;}i:1;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:36;}i:2;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_contact\";s:7:\"content\";a:0:{}s:5:\"index\";i:38;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}}s:5:\"index\";i:37;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:40;}}s:5:\"index\";i:34;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:7:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:42;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:44;}i:3;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:45;}i:4;a:3:{s:3:\"tag\";s:14:\"av_three_fifth\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:47;}}s:5:\"index\";i:46;}i:5;a:3:{s:3:\"tag\";s:12:\"av_one_fifth\";s:7:\"content\";a:0:{}s:5:\"index\";i:48;}i:6;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:49;}}s:5:\"index\";i:41;}}'),(3177,3210,'_avia_sc_parser_state','check_only'),(3178,3210,'_av_alb_posts_elements_state','a:20:{s:9:\"av_button\";b:1;s:10:\"av_contact\";b:1;s:16:\"av_cell_one_half\";b:1;s:13:\"av_layout_row\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:12:\"av_font_icon\";b:1;s:11:\"av_iconlist\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:14:\"av_layerslider\";b:1;s:11:\"av_one_full\";b:1;s:12:\"av_one_third\";b:1;s:12:\"av_one_fifth\";b:1;s:14:\"av_three_fifth\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:16:\"av_contact_field\";b:1;s:16:\"av_iconlist_item\";b:1;s:13:\"av_image_spot\";b:1;}'),(3179,3210,'_av_el_mgr_version','1.0'),(3190,3207,'_edit_last','3'),(3191,3207,'_edit_lock','1590644828:3'),(3192,3207,'_aviaLayoutBuilder_active','active'),(3193,3207,'_avia_sc_parser_state','check_only'),(3194,3207,'_regular_price','1850'),(3195,3207,'total_sales','0'),(3196,3207,'_tax_status','taxable'),(3197,3207,'_tax_class',''),(3198,3207,'_manage_stock','no'),(3199,3207,'_backorders','no'),(3200,3207,'_sold_individually','no'),(3201,3207,'_virtual','no'),(3202,3207,'_downloadable','no'),(3203,3207,'_download_limit','-1'),(3204,3207,'_download_expiry','-1'),(3205,3207,'_stock',NULL),(3206,3207,'_stock_status','instock'),(3207,3207,'_wc_average_rating','0'),(3208,3207,'_wc_review_count','0'),(3209,3207,'_product_version','4.1.1'),(3210,3207,'_price','1850'),(3211,3207,'_wc_facebook_sync_enabled','no'),(3212,3207,'_yoast_wpseo_primary_product_cat','33'),(3213,3207,'_aviaLayoutBuilderCleanData','[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingHeader.jpg\' attachment=\'3307\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™<br/>by Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaneqwav\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for Anti-Aging</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingHeader.jpg\' attachment=\'3307\' attachment_size=\'full\' attach=\'scroll\' position=\'center left\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™<br/>by Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaneqwav\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for Anti-Aging</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-19znxll\']\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'100px,0px,100px,150px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-184xo49\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-84su2f\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Anti-Aging is a <strong>revolutionary LED Red Light phototherapy device</strong> that is light weight, thin, flexible and super powerful with 1800 Low Level Laser LED’s.\r\n\r\nDelivers same amount of light energy to front and sides of the face. Gentle and may be used daily for 5-10 minutes or used every other day for 15 to 20 minutes. Effective at fighting the signs of aging such as fine line, wrinkles, and sagging skin. <strong>Medical grade and clinically proven.</strong>\r\n\r\nSolSculpting™ Anti-Aging delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n\r\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAging-1.jpg\' attachment=\'3312\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_cell_one_half]\r\n[/av_layout_row]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-5haox3\']\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingMobile-1024x578.jpg\' attachment=\'3532\' attachment_size=\'large\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-4x3o2v\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Anti-Aging is a <strong>revolutionary LED Red Light phototherapy device</strong> that is light weight, thin, flexible and super powerful with 1800 Low Level Laser LED’s.\r\n\r\nDelivers same amount of light energy to front and sides of the face. Gentle and may be used daily for 5-10 minutes or used every other day for 15 to 20 minutes. Effective at fighting the signs of aging such as fine line, wrinkles, and sagging skin. <strong>Medical grade and clinically proven.</strong>\r\n\r\nSolSculpting™ Anti-Aging delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-66nraf\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup-1.jpg\' attachment=\'3308\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,38.1\' av_uid=\'av-4ct02f\']\r\n1800 LED Red Lights\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'32.7,63.2\' av_uid=\'av-275v2u\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'65.3,19.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,80\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.3,76.6\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2mf7av\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroupWeb-1.jpg\' attachment=\'3309\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n• 1800 LED Red Lights\r\n• Wavelength: 660 Nanometers\r\n• Active Area: 18.5″ x 11.5″\r\n• Sturdy Protective Carrying Case\r\n• Protective Eyewear\r\n• Convenient Foot Remote\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\r\n[av_one_half first av_uid=\'av-s0qje1\']\r\n\r\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\r\nEvery mat is shipped FREE in the United States!\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\r\n\r\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\r\nIf your mats fail to function within a year of purchase we will replace it.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\r\n\r\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\r\nOur site uses an encryption algorithm that ensures your payment is processed securely.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\r\n\r\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\r\nAsk for details!\r\n[/av_icon_box]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\r\n[av_heading heading=\'All our products\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaa78kwz\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_productgrid wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\r\n[/av_section]\r\n\r\n'),(3214,3207,'_avia_builder_shortcode_tree','a:8:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:3;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}}s:5:\"index\";i:9;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:14;}}s:5:\"index\";i:8;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}s:5:\"index\";i:22;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:30;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:31;}i:2;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:32;}}s:5:\"index\";i:29;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:33;}i:2;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:34;}}s:5:\"index\";i:28;}i:6;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:37;}}s:5:\"index\";i:36;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}}s:5:\"index\";i:38;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:41;}}s:5:\"index\";i:40;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}}s:5:\"index\";i:42;}}s:5:\"index\";i:35;}i:7;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:45;}i:1;a:3:{s:3:\"tag\";s:14:\"av_productgrid\";s:7:\"content\";a:0:{}s:5:\"index\";i:46;}}s:5:\"index\";i:44;}}'),(3215,3207,'_av_el_mgr_version','1.0'),(3216,3207,'_av_alb_posts_elements_state','a:14:{s:13:\"av_layout_row\";b:1;s:16:\"av_cell_one_half\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:11:\"av_icon_box\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:17:\"av_product_button\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:14:\"av_productgrid\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:13:\"av_image_spot\";b:1;}'),(3217,3207,'layout',''),(3218,3207,'sidebar',''),(3219,3207,'footer',''),(3220,3207,'header_title_bar',''),(3221,3207,'header_transparency',''),(3222,3207,'_product_hover',''),(3223,3213,'_wp_attached_file','2020/05/IMG_1642-scaled.jpeg'),(3224,3213,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1920;s:6:\"height\";i:2560;s:4:\"file\";s:28:\"2020/05/IMG_1642-scaled.jpeg\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_1642-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_1642-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_1642-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"IMG_1642-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"IMG_1642-1152x1536.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:23:\"IMG_1642-1536x2048.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:2048;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"IMG_1642-36x36.jpeg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"IMG_1642-180x180.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:22:\"IMG_1642-1500x430.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:22:\"IMG_1642-1500x630.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:23:\"IMG_1642-1125x1500.jpeg\";s:5:\"width\";i:1125;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"IMG_1642-495x400.jpeg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"IMG_1642-260x185.jpeg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:21:\"IMG_1642-845x684.jpeg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:21:\"IMG_1642-710x375.jpeg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:21:\"IMG_1642-529x705.jpeg\";s:5:\"width\";i:529;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:21:\"IMG_1642-845x321.jpeg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:22:\"IMG_1642-1210x423.jpeg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_1642-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"IMG_1642-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"IMG_1642-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"IMG_1642-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"IMG_1642-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_1642-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1566645770\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:17:\"0.058823529411765\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_1642.jpeg\";}'),(3225,3214,'_wp_attached_file','2020/05/AntiAging.jpg'),(3226,3214,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:21:\"2020/05/AntiAging.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"AntiAging-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"AntiAging-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"AntiAging-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"AntiAging-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:21:\"AntiAging-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"AntiAging-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"AntiAging-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:21:\"AntiAging-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:21:\"AntiAging-600x321.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:21:\"AntiAging-600x423.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"AntiAging-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"AntiAging-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"AntiAging-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"AntiAging-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3227,3215,'_wp_attached_file','2020/05/AntiAging3.jpg'),(3228,3215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:22:\"2020/05/AntiAging3.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"AntiAging3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"AntiAging3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:20:\"AntiAging3-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:22:\"AntiAging3-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:22:\"AntiAging3-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"AntiAging3-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:22:\"AntiAging3-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:22:\"AntiAging3-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:22:\"AntiAging3-600x321.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:22:\"AntiAging3-600x423.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"AntiAging3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"AntiAging3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"AntiAging3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"AntiAging3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3229,3216,'_wp_attached_file','2020/05/RedLightFace.jpg'),(3230,3216,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2020/05/RedLightFace.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"RedLightFace-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"RedLightFace-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"RedLightFace-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"RedLightFace-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:24:\"RedLightFace-600x430.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"RedLightFace-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"RedLightFace-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"RedLightFace-600x375.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"RedLightFace-600x321.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:24:\"RedLightFace-600x423.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"RedLightFace-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"RedLightFace-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"RedLightFace-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"RedLightFace-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3231,3217,'_wp_attached_file','2020/05/AntiAgingHomeSystem.png'),(3232,3217,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1215;s:6:\"height\";i:720;s:4:\"file\";s:31:\"2020/05/AntiAgingHomeSystem.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-300x178.png\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"AntiAgingHomeSystem-1024x607.png\";s:5:\"width\";i:1024;s:6:\"height\";i:607;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-768x455.png\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:29:\"AntiAgingHomeSystem-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:32:\"AntiAgingHomeSystem-1215x430.png\";s:5:\"width\";i:1215;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:32:\"AntiAgingHomeSystem-1215x630.png\";s:5:\"width\";i:1215;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-705x418.png\";s:5:\"width\";i:705;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:32:\"AntiAgingHomeSystem-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-600x356.png\";s:5:\"width\";i:600;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-600x356.png\";s:5:\"width\";i:600;s:6:\"height\";i:356;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"AntiAgingHomeSystem-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3233,3218,'_wp_attached_file','2020/05/PainWellnessHomeSystem2.jpg'),(3234,3218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1215;s:6:\"height\";i:720;s:4:\"file\";s:35:\"2020/05/PainWellnessHomeSystem2.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-300x178.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:178;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"PainWellnessHomeSystem2-1024x607.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:607;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-768x455.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:455;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"PainWellnessHomeSystem2-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"PainWellnessHomeSystem2-1215x430.jpg\";s:5:\"width\";i:1215;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"PainWellnessHomeSystem2-1215x630.jpg\";s:5:\"width\";i:1215;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-705x418.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:418;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"PainWellnessHomeSystem2-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-600x356.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-600x356.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:356;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"PainWellnessHomeSystem2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"3.5\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587219117\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"16\";s:3:\"iso\";s:3:\"640\";s:13:\"shutter_speed\";s:17:\"0.016666666666667\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3235,3219,'_wp_attached_file','2020/05/Edited-20-copy-scaled.jpg'),(3236,3219,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1597;s:4:\"file\";s:33:\"2020/05/Edited-20-copy-scaled.jpg\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-300x187.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:187;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Edited-20-copy-1024x639.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-768x479.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:479;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"Edited-20-copy-1536x958.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:958;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:28:\"Edited-20-copy-2048x1277.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1277;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"Edited-20-copy-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:27:\"Edited-20-copy-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:27:\"Edited-20-copy-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:27:\"Edited-20-copy-1500x936.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:936;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-705x440.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:27:\"Edited-20-copy-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-600x374.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Edited-20-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-600x374.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:374;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Edited-20-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:9:\"ILCE-6000\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587219665\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"22\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.004\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:18:\"Edited-20-copy.jpg\";}'),(3237,3220,'_wp_attached_file','2020/05/IMG_2106-rotated.jpeg'),(3238,3220,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1512;s:6:\"height\";i:2016;s:4:\"file\";s:29:\"2020/05/IMG_2106-rotated.jpeg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"IMG_2106-225x300.jpeg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"IMG_2106-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_2106-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"IMG_2106-768x1024.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:23:\"IMG_2106-1152x1536.jpeg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"IMG_2106-36x36.jpeg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"IMG_2106-180x180.jpeg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:22:\"IMG_2106-1500x430.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:22:\"IMG_2106-1500x630.jpeg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:23:\"IMG_2106-1125x1500.jpeg\";s:5:\"width\";i:1125;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"IMG_2106-495x400.jpeg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"IMG_2106-260x185.jpeg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:21:\"IMG_2106-845x684.jpeg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:21:\"IMG_2106-710x375.jpeg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:21:\"IMG_2106-529x705.jpeg\";s:5:\"width\";i:529;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:21:\"IMG_2106-845x321.jpeg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:22:\"IMG_2106-1210x423.jpeg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_2106-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"IMG_2106-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"IMG_2106-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"IMG_2106-300x300.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"IMG_2106-600x800.jpeg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"IMG_2106-100x100.jpeg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587126691\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:17:\"0.020833333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";i:1;s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:13:\"IMG_2106.jpeg\";}'),(3239,3221,'_wp_attached_file','2020/05/IMG_7612.jpg'),(3240,3221,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:2000;s:4:\"file\";s:20:\"2020/05/IMG_7612.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_7612-225x300.jpg\";s:5:\"width\";i:225;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_7612-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_7612-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"IMG_7612-768x1024.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_7612-1152x1536.jpg\";s:5:\"width\";i:1152;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:18:\"IMG_7612-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:20:\"IMG_7612-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:21:\"IMG_7612-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:21:\"IMG_7612-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:22:\"IMG_7612-1125x1500.jpg\";s:5:\"width\";i:1125;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:20:\"IMG_7612-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:20:\"IMG_7612-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:20:\"IMG_7612-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:20:\"IMG_7612-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:20:\"IMG_7612-529x705.jpg\";s:5:\"width\";i:529;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:20:\"IMG_7612-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:21:\"IMG_7612-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_7612-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_7612-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_7612-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_7612-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_7612-600x800.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:800;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_7612-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3241,3207,'_thumbnail_id','3221'),(3242,3207,'_product_image_gallery','3219,3217,3214,3215,3216'),(3243,3207,'_yoast_wpseo_content_score','60'),(3244,3222,'_edit_last','3'),(3245,3222,'_edit_lock','1590644570:3'),(3246,3223,'_wp_attached_file','2020/05/IMG_5877.jpg'),(3247,3223,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:1500;s:4:\"file\";s:20:\"2020/05/IMG_5877.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_5877-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"IMG_5877-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_5877-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"IMG_5877-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:22:\"IMG_5877-1536x1152.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:18:\"IMG_5877-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:20:\"IMG_5877-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:21:\"IMG_5877-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:21:\"IMG_5877-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:22:\"IMG_5877-1500x1125.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1125;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:20:\"IMG_5877-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:20:\"IMG_5877-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:20:\"IMG_5877-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:20:\"IMG_5877-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:20:\"IMG_5877-705x529.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:20:\"IMG_5877-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:21:\"IMG_5877-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_5877-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_5877-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_5877-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_5877-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_5877-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_5877-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3248,3222,'_aviaLayoutBuilder_active','active'),(3249,3222,'_avia_sc_parser_state','check_only'),(3250,3222,'_thumbnail_id','3220'),(3251,3222,'_regular_price','2500'),(3252,3222,'total_sales','0'),(3253,3222,'_tax_status','taxable'),(3254,3222,'_tax_class',''),(3255,3222,'_manage_stock','no'),(3256,3222,'_backorders','no'),(3257,3222,'_sold_individually','no'),(3258,3222,'_virtual','no'),(3259,3222,'_downloadable','no'),(3260,3222,'_download_limit','-1'),(3261,3222,'_download_expiry','-1'),(3262,3222,'_stock',NULL),(3263,3222,'_stock_status','instock'),(3264,3222,'_wc_average_rating','0'),(3265,3222,'_wc_review_count','0'),(3266,3222,'_product_version','4.1.1'),(3267,3222,'_price','2500'),(3268,3222,'_product_image_gallery','3219,3218,3223'),(3269,3222,'_wc_facebook_sync_enabled','no'),(3270,3222,'_yoast_wpseo_primary_product_cat','34'),(3271,3222,'_aviaLayoutBuilderCleanData','[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/KneePain.jpg\' attachment=\'3232\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™<br/>by Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanendpy\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for pain, inflammation, and wellness</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/KneePain.jpg\' attachment=\'3232\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™<br/>by Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanendpy\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for pain, inflammation, and wellness</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-19znxll\']\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-184xo49\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-9vfmx2\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <strong>science-based and clinically-proven</strong> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system is safe and effective with no known side effects.\r\n\r\nThe <strong>benefits</strong> of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades. Including research supporting its benefits for supporting both the lymphatic and immune system.\r\n\r\nSolSculpting™ Self-Care delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n\r\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BackPain.jpg\' attachment=\'3233\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_cell_one_half]\r\n[/av_layout_row]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-7a6q5i\']\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BackPainMobile-1-1024x578.jpg\' attachment=\'3531\' attachment_size=\'large\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2p1anq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <strong>science-based and clinically-proven</strong> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system is safe and effective with no known side effects.\r\n\r\nThe <strong>benefits</strong> of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades. Including research supporting its benefits for supporting both the lymphatic and immune system.\r\n\r\nSolSculpting™ Self-Care delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaacyt5h\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSelfCareGroup-1.jpg\' attachment=\'3242\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,38.1\' av_uid=\'av-4h8oja\']\r\n2400 LED Red and Near-Infrared Lights\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'32.7,63.2\' av_uid=\'av-275v2u\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'65.3,19.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,80\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.3,76.6\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-471b86\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSelfCareGroupWeb-1.jpg\' attachment=\'3243\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n• 2400 LED Red and Near-Infrared Lights\r\n• Wavelength: 660 and 850 Nanometers\r\n• Active Area: 18.5″ x 11.5″\r\n• Sturdy Protective Carrying Case\r\n• Protective Eyewear\r\n• Convenient Foot Remote\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\r\n[av_one_half first av_uid=\'av-s0qje1\']\r\n\r\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\r\nEvery mat is shipped FREE in the United States!\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\r\n\r\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\r\nIf your mats fail to function within a year of purchase we will replace it.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\r\n\r\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\r\nOur site uses an encryption algorithm that ensures your payment is processed securely.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\r\n\r\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\r\nAsk for details!\r\n[/av_icon_box]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\r\n[av_heading heading=\'All our products\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaa78kwz\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_productgrid wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\r\n[/av_section]\r\n\r\n'),(3272,3222,'_avia_builder_shortcode_tree','a:8:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:3;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}}s:5:\"index\";i:9;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:14;}}s:5:\"index\";i:8;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}}s:5:\"index\";i:22;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:30;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:31;}i:2;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:32;}}s:5:\"index\";i:29;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:33;}i:2;a:3:{s:3:\"tag\";s:17:\"av_product_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:34;}}s:5:\"index\";i:28;}i:6;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:37;}}s:5:\"index\";i:36;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}}s:5:\"index\";i:38;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:41;}}s:5:\"index\";i:40;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:43;}}s:5:\"index\";i:42;}}s:5:\"index\";i:35;}i:7;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:45;}i:1;a:3:{s:3:\"tag\";s:14:\"av_productgrid\";s:7:\"content\";a:0:{}s:5:\"index\";i:46;}}s:5:\"index\";i:44;}}'),(3273,3222,'_av_el_mgr_version','1.0'),(3274,3222,'_av_alb_posts_elements_state','a:14:{s:13:\"av_layout_row\";b:1;s:16:\"av_cell_one_half\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:11:\"av_icon_box\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:17:\"av_product_button\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:14:\"av_productgrid\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:13:\"av_image_spot\";b:1;}'),(3275,3222,'layout',''),(3276,3222,'sidebar',''),(3277,3222,'footer',''),(3278,3222,'header_title_bar',''),(3279,3222,'header_transparency',''),(3280,3222,'_product_hover',''),(3281,3222,'_yoast_wpseo_content_score','30'),(3282,3226,'_edit_lock','1589566778:2'),(3283,3226,'_edit_last','2'),(3284,3226,'discount_type','percent'),(3285,3226,'coupon_amount','15'),(3286,3226,'individual_use','no'),(3287,3226,'product_ids','3207,3222'),(3288,3226,'usage_limit','0'),(3289,3226,'usage_limit_per_user','0'),(3290,3226,'limit_usage_to_x_items','0'),(3291,3226,'usage_count','0'),(3292,3226,'date_expires',NULL),(3293,3226,'free_shipping','no'),(3294,3226,'exclude_sale_items','no'),(3295,2483,'_avia_builder_template_anti-aging_mat','{{{Anti-aging mat}}}[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'Intro\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\n\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-8y8gu\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\n\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup.jpg\' attachment=\'3205\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,32.7\' av_uid=\'av-z9vfq\']\nOptical Energy: 5000 Joules\nWavelength: 660 Nanometers\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.8,58.8\' av_uid=\'av-2ggkm\']\nActive Area: 18.5″ x 11.5″\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'66.6,14.1\' av_uid=\'av-khqsu\']\nComes with a sturdy protective carrying case\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,75\' av_uid=\'av-eigsu\']\nProtective eyewear\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.9,71.6\' av_uid=\'av-159hy\']\nConvenient foot remote\n[/av_image_spot]\n[/av_image_hotspot]\n\n[av_button label=\'MORE INFORMATION\' icon_select=\'yes\' icon=\'ue82b\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,http://themeforest.net/item/enfold-responsive-multipurpose-theme/4519990?license=regular&open_purchase_for_item_id=4519990&purchasable=source&ref=Kriesi\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\n[/av_section]'),(3300,2483,'_avia_builder_template_individual_product','{{{Individual Product}}}[av_section min_height=\'\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-cc.jpg\' attachment=\'1183\' attachment_size=\'full\' attach=\'scroll\' position=\'bottom center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.6\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\n[av_heading heading=\'Custom Shop<br/>This is a shop overview page built with the layout editor\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1ijy6mx\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\n\n[av_textblock size=\'\' font_color=\'custom\' color=\'#dddddd\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1dz5m3t\']\n<p style=\"text-align: center;\">Hey there! We are Enfold and we make really beautiful and amazing stuff.\nThis can be used to describe what you do, how you do it, & who you do it for.</p>\n[/av_textblock]\n[/av_section]\n\n[av_layout_row border=\'\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' id=\'\' av_uid=\'av-19znxll\']\n[av_cell_one_half vertical_align=\'middle\' padding=\'60px,130px,60px,130px\' background_color=\'#f3f3f3\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-184xo49\']\n\n[av_heading tag=\'h2\' padding=\'10\' heading=\'Lorem ipsum dolor sit amet, consectetuer adipiscing elit. \' color=\'\' style=\'blockquote modern-quote\' custom_font=\'\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-160ajex\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\' av_uid=\'av-40ka95\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque <strong>penatibus</strong> et magnis dis parturient montes, nascetur ridiculus mus.\n\nDonec quam felis, ultricies nec, pellentesque eu, <strong>pretium</strong> quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'0px\' padding_sync=\'true\' background_color=\'#f3f3f3\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-13kaghl\']\n\n[av_image_hotspot src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' animation=\'fade-in\' hotspot_layout=\'numbered\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' av_uid=\'av-115tw0p\']\n[av_image_spot tooltip_pos=\'av-tt-pos-left av-tt-align-centered\' tooltip_width=\'av-tt-default-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#9cc2df\' custom_font=\'#ffffff\' custom_pulse=\'\' hotspot_pos=\'9.1,70.6\' av_uid=\'av-10ds5pl\']\nCandle by Roger Ramoni\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-left av-tt-align-centered\' tooltip_width=\'av-tt-default-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#9cc2df\' custom_font=\'#ffffff\' custom_pulse=\'\' hotspot_pos=\'33,31.1\' av_uid=\'av-xvn4q1\']\nSextant by Victor Secreni\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-left av-tt-align-centered\' tooltip_width=\'av-tt-default-width\' tooltip_style=\'main_color av-tooltip-shadow\' link=\'\' link_target=\'\' hotspot_color=\'custom\' custom_bg=\'#9cc2df\' custom_font=\'#ffffff\' custom_pulse=\'\' hotspot_pos=\'78.4,54\' av_uid=\'av-w2xyex\']\nMap by Sandra Sounders\n[/av_image_spot]\n[/av_image_hotspot]\n\n[/av_cell_one_half]\n[/av_layout_row]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\n[av_productgrid wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\n[av_one_half first av_uid=\'av-s0qje1\']\n\n[av_icon_box position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' icon=\'ue8b1\' font=\'entypo-fontello\' title=\'Worldwide delivery\' link=\'\' linktarget=\'\' linkelement=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' admin_preview_bg=\'\' av_uid=\'av-q0ndgp\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor.\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\n\n[av_icon_box position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' icon=\'ue8e2\' font=\'entypo-fontello\' title=\'Free shipping\' link=\'\' linktarget=\'\' linkelement=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' admin_preview_bg=\'\' av_uid=\'av-lvc2nt\']\nAenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n[/av_icon_box]\n\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\n\n[av_icon_box position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' icon=\'ue824\' font=\'entypo-fontello\' title=\'Secure Payment\' link=\'\' linktarget=\'\' linkelement=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' admin_preview_bg=\'\' av_uid=\'av-j2tw15\']\nDonec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\n\n[av_icon_box position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' icon=\'ue8b9\' font=\'entypo-fontello\' title=\'24/7 Support\' link=\'\' linktarget=\'\' linkelement=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' admin_preview_bg=\'\' av_uid=\'av-gaxcq1\']\nenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus.\n[/av_icon_box]\n\n[/av_one_half]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'sign-up\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-cc.jpg\' attachment=\'1183\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-erwwfd\']\n[av_heading heading=\'Want to stay up to date?<br/>Subscribe to our Newsletter!\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'30\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-c61p6x\'][/av_heading]\n\n[av_one_fifth first av_uid=\'av-bkay6h\']\n\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-8r9h3t\']\n\n[av_contact email=\'office@enfold-shop.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks! You will receive an email soon!\' link=\'page,74\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' color=\'av-custom-form-color av-light-form\' av_uid=\'av-7yn621\']\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_uid=\'av-587cw9\'][/av_contact_field]\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_uid=\'av-4f01o9\'][/av_contact_field]\n[/av_contact]\n\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2y6oll\']\n\n[/av_one_fifth]\n[/av_section]'),(3301,3232,'_wp_attached_file','2020/05/KneePain.jpg'),(3302,3232,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:20:\"2020/05/KneePain.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"KneePain-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:21:\"KneePain-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"KneePain-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"KneePain-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:21:\"KneePain-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:18:\"KneePain-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:20:\"KneePain-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:21:\"KneePain-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:21:\"KneePain-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:21:\"KneePain-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:20:\"KneePain-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:20:\"KneePain-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:20:\"KneePain-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:20:\"KneePain-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:20:\"KneePain-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:20:\"KneePain-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:21:\"KneePain-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"KneePain-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"KneePain-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"KneePain-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"KneePain-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"KneePain-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"KneePain-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3303,3233,'_wp_attached_file','2020/05/BackPain.jpg'),(3304,3233,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:775;s:6:\"height\";i:825;s:4:\"file\";s:20:\"2020/05/BackPain.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"BackPain-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"BackPain-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:20:\"BackPain-768x818.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:18:\"BackPain-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:20:\"BackPain-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:20:\"BackPain-775x430.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:20:\"BackPain-775x630.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:20:\"BackPain-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:20:\"BackPain-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:20:\"BackPain-775x684.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:20:\"BackPain-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:20:\"BackPain-662x705.jpg\";s:5:\"width\";i:662;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:20:\"BackPain-775x321.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:20:\"BackPain-775x423.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"BackPain-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"BackPain-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"BackPain-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"BackPain-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"BackPain-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"BackPain-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3305,3237,'_wp_attached_file','2020/05/SolSculptingWebWhiteTight.png'),(3306,3237,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:350;s:6:\"height\";i:100;s:4:\"file\";s:37:\"2020/05/SolSculptingWebWhiteTight.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"SolSculptingWebWhiteTight-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-150x100.png\";s:5:\"width\";i:150;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:35:\"SolSculptingWebWhiteTight-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-180x100.png\";s:5:\"width\";i:180;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-260x100.png\";s:5:\"width\";i:260;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-300x100.png\";s:5:\"width\";i:300;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingWebWhiteTight-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3309,3239,'_wp_attached_file','2020/05/SolSculptingAntiAgingGroupWeb.jpg'),(3310,3239,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1069;s:6:\"height\";i:712;s:4:\"file\";s:41:\"2020/05/SolSculptingAntiAgingGroupWeb.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"SolSculptingAntiAgingGroupWeb-1024x682.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:682;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:39:\"SolSculptingAntiAgingGroupWeb-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:42:\"SolSculptingAntiAgingGroupWeb-1069x430.jpg\";s:5:\"width\";i:1069;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:42:\"SolSculptingAntiAgingGroupWeb-1069x630.jpg\";s:5:\"width\";i:1069;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:42:\"SolSculptingAntiAgingGroupWeb-1069x423.jpg\";s:5:\"width\";i:1069;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3311,3240,'_wp_attached_file','2020/05/SolSculptingSelfCareGroup.jpg'),(3312,3240,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:775;s:4:\"file\";s:37:\"2020/05/SolSculptingSelfCareGroup.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:38:\"SolSculptingSelfCareGroup-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:35:\"SolSculptingSelfCareGroup-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:38:\"SolSculptingSelfCareGroup-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:38:\"SolSculptingSelfCareGroup-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-705x364.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:38:\"SolSculptingSelfCareGroup-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3313,3241,'_wp_attached_file','2020/05/SolSculptingSelfCareGroupWeb.jpg'),(3314,3241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1122;s:6:\"height\";i:720;s:4:\"file\";s:40:\"2020/05/SolSculptingSelfCareGroupWeb.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-300x193.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:193;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"SolSculptingSelfCareGroupWeb-1024x657.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-768x493.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:493;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:38:\"SolSculptingSelfCareGroupWeb-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:41:\"SolSculptingSelfCareGroupWeb-1122x430.jpg\";s:5:\"width\";i:1122;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:41:\"SolSculptingSelfCareGroupWeb-1122x630.jpg\";s:5:\"width\";i:1122;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-705x452.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:452;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:41:\"SolSculptingSelfCareGroupWeb-1122x423.jpg\";s:5:\"width\";i:1122;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-600x385.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-600x385.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:385;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3315,3242,'_wp_attached_file','2020/05/SolSculptingSelfCareGroup-1.jpg'),(3316,3242,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:775;s:4:\"file\";s:39:\"2020/05/SolSculptingSelfCareGroup-1.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroup-1-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:37:\"SolSculptingSelfCareGroup-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroup-1-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroup-1-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-705x364.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroup-1-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"SolSculptingSelfCareGroup-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3317,3243,'_wp_attached_file','2020/05/SolSculptingSelfCareGroupWeb-1.jpg'),(3318,3243,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:466;s:4:\"file\";s:42:\"2020/05/SolSculptingSelfCareGroupWeb-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:40:\"SolSculptingSelfCareGroupWeb-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-700x375.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-700x321.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-700x423.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:42:\"SolSculptingSelfCareGroupWeb-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3321,3246,'_wp_attached_file','2020/05/StoreHeader.jpg'),(3322,3246,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2020/05/StoreHeader.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"StoreHeader-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"StoreHeader-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"StoreHeader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"StoreHeader-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"StoreHeader-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"StoreHeader-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"StoreHeader-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:24:\"StoreHeader-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:24:\"StoreHeader-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:24:\"StoreHeader-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"StoreHeader-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"StoreHeader-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:23:\"StoreHeader-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:23:\"StoreHeader-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:23:\"StoreHeader-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:23:\"StoreHeader-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:24:\"StoreHeader-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"StoreHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"StoreHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"StoreHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"StoreHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"StoreHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"StoreHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3343,3252,'_wp_attached_file','2020/05/Kim.jpg'),(3344,3252,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:15:\"2020/05/Kim.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:15:\"Kim-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Kim-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:13:\"Kim-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:15:\"Kim-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:15:\"Kim-500x430.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:15:\"Kim-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:15:\"Kim-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:15:\"Kim-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:15:\"Kim-500x321.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:15:\"Kim-500x423.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"Kim-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:15:\"Kim-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:15:\"Kim-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"Kim-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3345,3253,'_wp_attached_file','2020/05/Terri.jpg'),(3346,3253,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:500;s:6:\"height\";i:500;s:4:\"file\";s:17:\"2020/05/Terri.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"Terri-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Terri-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:15:\"Terri-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:17:\"Terri-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:17:\"Terri-500x430.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:17:\"Terri-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:17:\"Terri-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:17:\"Terri-500x375.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:17:\"Terri-500x321.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:17:\"Terri-500x423.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"Terri-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:17:\"Terri-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:17:\"Terri-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"Terri-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3347,3254,'_wp_attached_file','2020/05/Kim.png'),(3348,3254,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:15:\"2020/05/Kim.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Kim-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:13:\"Kim-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:15:\"Kim-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:15:\"Kim-200x185.png\";s:5:\"width\";i:200;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"Kim-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"Kim-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3349,3255,'_wp_attached_file','2020/05/Terri.png'),(3350,3255,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:17:\"2020/05/Terri.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"Terri-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:15:\"Terri-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:17:\"Terri-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:17:\"Terri-200x185.png\";s:5:\"width\";i:200;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:17:\"Terri-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:17:\"Terri-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3354,3256,'_wp_attached_file','2020/05/ContactHeader.jpg'),(3355,3256,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2020/05/ContactHeader.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"ContactHeader-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"ContactHeader-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"ContactHeader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"ContactHeader-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:26:\"ContactHeader-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:23:\"ContactHeader-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:25:\"ContactHeader-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"ContactHeader-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:26:\"ContactHeader-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:26:\"ContactHeader-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:25:\"ContactHeader-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:25:\"ContactHeader-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:25:\"ContactHeader-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:25:\"ContactHeader-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:25:\"ContactHeader-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:25:\"ContactHeader-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"ContactHeader-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"ContactHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"ContactHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"ContactHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"ContactHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"ContactHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"ContactHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3369,3260,'_wp_attached_file','2020/05/my-icons-collection.zip'),(3370,3261,'_wp_attached_file','2020/05/my-icons-collection-1.zip'),(3371,3262,'_wp_attached_file','2020/05/VideoStill.png'),(3372,3262,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1030;s:6:\"height\";i:574;s:4:\"file\";s:22:\"2020/05/VideoStill.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"VideoStill-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"VideoStill-1024x571.png\";s:5:\"width\";i:1024;s:6:\"height\";i:571;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"VideoStill-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"VideoStill-768x428.png\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:20:\"VideoStill-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:22:\"VideoStill-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:23:\"VideoStill-1030x430.png\";s:5:\"width\";i:1030;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:22:\"VideoStill-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:22:\"VideoStill-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:22:\"VideoStill-845x574.png\";s:5:\"width\";i:845;s:6:\"height\";i:574;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:22:\"VideoStill-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:22:\"VideoStill-705x393.png\";s:5:\"width\";i:705;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:22:\"VideoStill-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:23:\"VideoStill-1030x423.png\";s:5:\"width\";i:1030;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:22:\"VideoStill-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:22:\"VideoStill-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"VideoStill-600x334.png\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:22:\"VideoStill-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"VideoStill-600x334.png\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:22:\"VideoStill-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3373,3264,'_wp_attached_file','2020/05/IMG_1357.jpg'),(3374,3264,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:480;s:4:\"file\";s:20:\"2020/05/IMG_1357.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"IMG_1357-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1357-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:18:\"IMG_1357-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:20:\"IMG_1357-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:20:\"IMG_1357-640x430.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:20:\"IMG_1357-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:20:\"IMG_1357-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:20:\"IMG_1357-640x375.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:20:\"IMG_1357-640x321.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:20:\"IMG_1357-640x423.jpg\";s:5:\"width\";i:640;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1357-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:20:\"IMG_1357-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:20:\"IMG_1357-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:20:\"IMG_1357-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:20:\"IMG_1357-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:20:\"IMG_1357-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:13:\"iPhone 8 Plus\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1561370320\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:4:\"3.99\";s:3:\"iso\";s:2:\"80\";s:13:\"shutter_speed\";s:5:\"0.125\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3379,3272,'_wp_attached_file','2020/05/BusinessInvestment.jpg'),(3380,3272,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:30:\"2020/05/BusinessInvestment.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:28:\"BusinessInvestment-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"BusinessInvestment-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3381,2483,'_avia_builder_template_testimonial','{{{Testimonial}}}[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-556dm\']\n[av_heading tag=\'h2\' padding=\'0\' heading=\'What others say about us...\' color=\'\' style=\'blockquote modern-quote modern-centered\' custom_font=\'\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\' av_uid=\'av-16yzua\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'50px\' custom_margin_bottom=\'50px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(255, 255, 255)\' av_uid=\'av-42t7e\']\n\n[av_testimonials style=\'grid\' columns=\'2\' grid_style=\'av-minimal-grid-style\' interval=\'5\' font_color=\'\' custom_title=\'\' custom_content=\'\' admin_preview_bg=\'\' av_uid=\'av-wuo3m\']\n[av_testimonial_single src=\'1961\' name=\'Martha M. Masters\' subtitle=\'Marketing\' link=\'http://www.wikipedia.com\' linktext=\'WikiTravel\' av_uid=\'av-oj4x6\']\nNulla consequat massa quis enim. Donec pede justo, frinnec, vulputate eget, arcu. In enim juerdiet a, venenatis vitae, justo. Lorem ipsum dolor sit amet, consectetuer adipiscing elit.\n[/av_testimonial_single]\n[av_testimonial_single src=\'1959\' name=\'Anna Vandana\' subtitle=\'CEO\' link=\'http://www.wikipedia.com\' linktext=\'Media Wiki\' av_uid=\'av-jbw6i\']\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Aenean commodo ligula eget dolor. Aenean massa.\n[/av_testimonial_single]\n[av_testimonial_single src=\'1960\' name=\'Maxi Milli\' subtitle=\'Public Relations\' link=\'http://www.wikipedia.com\' linktext=\'Max Mobilcom\' av_uid=\'av-d63m2\']\nNulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n[/av_testimonial_single]\n[av_testimonial_single src=\'1958\' name=\'Dr. Dosist\' subtitle=\'Dean of Medicine\' link=\'http://www.wikipedia.com\' linktext=\'Doom Inc\' av_uid=\'av-r8f6\']\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.\n[/av_testimonial_single]\n[/av_testimonials]\n[/av_section]'),(3382,3273,'_wp_attached_file','2020/05/my-icons-collection-2.zip'),(3386,3277,'_wp_attached_file','2020/05/BusinessInvestment-1.jpg'),(3387,3277,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:32:\"2020/05/BusinessInvestment-1.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"BusinessInvestment-1-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:33:\"BusinessInvestment-1-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"BusinessInvestment-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"BusinessInvestment-1-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:33:\"BusinessInvestment-1-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:33:\"BusinessInvestment-1-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"BusinessInvestment-1-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"BusinessInvestment-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3423,3282,'_wp_attached_file','2020/05/Testimonials.jpg'),(3424,3282,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2020/05/Testimonials.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Testimonials-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Testimonials-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"Testimonials-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"Testimonials-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"Testimonials-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"Testimonials-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"Testimonials-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"Testimonials-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:25:\"Testimonials-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"Testimonials-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"Testimonials-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"Testimonials-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"Testimonials-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"Testimonials-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"Testimonials-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"Testimonials-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Testimonials-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Testimonials-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Testimonials-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"Testimonials-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Testimonials-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3425,3283,'_wp_attached_file','2020/05/JenniferHeadshot.jpg'),(3426,3283,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:28:\"2020/05/JenniferHeadshot.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:26:\"JenniferHeadshot-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-450x430.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-450x400.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-450x375.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-450x321.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-450x423.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"JenniferHeadshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"JenniferHeadshot-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3427,3284,'_wp_attached_file','2020/05/JeanneHeadshot.jpg'),(3428,3284,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:26:\"2020/05/JeanneHeadshot.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"JeanneHeadshot-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-450x430.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-450x400.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-450x375.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-450x321.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-450x423.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"JeanneHeadshot-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3429,3285,'_wp_attached_file','2020/05/JeanneHeadshot-1.jpg'),(3430,3285,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:450;s:6:\"height\";i:450;s:4:\"file\";s:28:\"2020/05/JeanneHeadshot-1.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:26:\"JeanneHeadshot-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-450x430.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-450x400.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-450x375.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-450x321.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-450x423.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"JeanneHeadshot-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"JeanneHeadshot-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3459,3289,'_wp_attached_file','2020/05/VideosHeader.jpg'),(3460,3289,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2020/05/VideosHeader.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"VideosHeader-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"VideosHeader-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"VideosHeader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"VideosHeader-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"VideosHeader-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"VideosHeader-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"VideosHeader-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"VideosHeader-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"VideosHeader-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:25:\"VideosHeader-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"VideosHeader-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"VideosHeader-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"VideosHeader-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"VideosHeader-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"VideosHeader-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"VideosHeader-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"VideosHeader-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"VideosHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"VideosHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"VideosHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"VideosHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"VideosHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"VideosHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3487,3294,'_wp_attached_file','2020/05/Screen-Shot-2020-05-17-at-12.33.10-AM.png'),(3488,3294,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1296;s:6:\"height\";i:724;s:4:\"file\";s:49:\"2020/05/Screen-Shot-2020-05-17-at-12.33.10-AM.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.33.10-AM-1024x572.png\";s:5:\"width\";i:1024;s:6:\"height\";i:572;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-768x429.png\";s:5:\"width\";i:768;s:6:\"height\";i:429;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-05-17-at-12.33.10-AM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.33.10-AM-1296x430.png\";s:5:\"width\";i:1296;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.33.10-AM-1296x630.png\";s:5:\"width\";i:1296;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-705x394.png\";s:5:\"width\";i:705;s:6:\"height\";i:394;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.33.10-AM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-600x335.png\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-600x335.png\";s:5:\"width\";i:600;s:6:\"height\";i:335;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.33.10-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3489,3296,'_wp_attached_file','2020/05/Screen-Shot-2020-05-17-at-12.34.55-AM.png'),(3490,3296,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1300;s:6:\"height\";i:724;s:4:\"file\";s:49:\"2020/05/Screen-Shot-2020-05-17-at-12.34.55-AM.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.34.55-AM-1024x570.png\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-768x428.png\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-05-17-at-12.34.55-AM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.34.55-AM-1300x430.png\";s:5:\"width\";i:1300;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.34.55-AM-1300x630.png\";s:5:\"width\";i:1300;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-705x393.png\";s:5:\"width\";i:705;s:6:\"height\";i:393;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.34.55-AM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-600x334.png\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-600x334.png\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.34.55-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3491,3297,'_wp_attached_file','2020/05/Screen-Shot-2020-05-17-at-12.35.41-AM.png'),(3492,3297,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5112;s:6:\"height\";i:2874;s:4:\"file\";s:49:\"2020/05/Screen-Shot-2020-05-17-at-12.35.41-AM.png\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.35.41-AM-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.35.41-AM-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:51:\"Screen-Shot-2020-05-17-at-12.35.41-AM-2048x1151.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1151;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:47:\"Screen-Shot-2020-05-17-at-12.35.41-AM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.35.41-AM-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.35.41-AM-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.35.41-AM-1500x843.png\";s:5:\"width\";i:1500;s:6:\"height\";i:843;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-705x396.png\";s:5:\"width\";i:705;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-17-at-12.35.41-AM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-600x337.png\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-600x337.png\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-17-at-12.35.41-AM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3493,3301,'_wp_attached_file','2020/05/BusinessInvestment2.jpg'),(3494,3301,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:31:\"2020/05/BusinessInvestment2.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment2-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment2-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:29:\"BusinessInvestment2-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment2-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment2-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment2-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:32:\"BusinessInvestment2-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"BusinessInvestment2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"BusinessInvestment2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3495,3302,'_wp_attached_file','2020/05/ImageSection.jpg'),(3496,3302,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2020/05/ImageSection.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ImageSection-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"ImageSection-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ImageSection-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ImageSection-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"ImageSection-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"ImageSection-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"ImageSection-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"ImageSection-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"ImageSection-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"ImageSection-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"ImageSection-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"ImageSection-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"ImageSection-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"ImageSection-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"ImageSection-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"ImageSection-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"ImageSection-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"ImageSection-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"ImageSection-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"ImageSection-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"ImageSection-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3497,2483,'_avia_builder_template_self-care_product','{{{Self-care product}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/KneePain.jpg\' attachment=\'3232\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\n[av_heading heading=\'INTRODUCING SolSculpting<br/>by Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaa4re4f\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\n<p style=\"text-align: center;\">The at-home system for Pain, Inflammation and Wellness</p>\n[/av_textblock]\n[/av_section]\n\n[av_layout_row border=\'\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' id=\'\' av_uid=\'av-19znxll\']\n[av_cell_one_half vertical_align=\'middle\' padding=\'60px,130px,60px,130px\' background_color=\'#f3f3f3\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' mobile_display=\'\' av_uid=\'av-184xo49\']\n\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' style=\'blockquote modern-quote\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'\' custom_font=\'\' margin=\'\' margin_sync=\'true\' padding=\'10\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaacw76x\' admin_preview_bg=\'\'][/av_heading]\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\nSolSculpting Red Light Therapy is <strong>science-based and clinically-proven</strong> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system is safe and effective with no known side effects.\n\nThe <strong>benefits</strong> of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades. Including research supporting its benefits for supporting both the lymphatic and immune system.\n\nSolSculpting Personal Care delivers <strong>10 times more light energy</strong> than any other light product on the market.\n[/av_textblock]\n\n[av_product_button av_uid=\'av-ea1km\']\n\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BackPain.jpg\' attachment=\'3233\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'bottom-to-top\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\n\n[/av_cell_one_half]\n[/av_layout_row]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\n\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaacyt5h\' admin_preview_bg=\'\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\n\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSelfCareGroup-1.jpg\' attachment=\'3242\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,38.1\' av_uid=\'av-4h8oja\']\n2400 LED Red and Near-Infrared Lights\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'32.7,63.2\' av_uid=\'av-275v2u\']\nActive Area: 18.5″ x 11.5″\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'65.3,19.1\' av_uid=\'av-khqsu\']\nComes with a sturdy protective carrying case\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,80\' av_uid=\'av-eigsu\']\nProtective eyewear\n[/av_image_spot]\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.3,76.6\' av_uid=\'av-159hy\']\nConvenient foot remote\n[/av_image_spot]\n[/av_image_hotspot]\n\n[av_product_button av_uid=\'av-ea1km\']\n[/av_section]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\n\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaacyhax\' admin_preview_bg=\'\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSelfCareGroupWeb-1.jpg\' attachment=\'3243\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\n• 2400 LED Red and Near-Infrared Lights\n• Wavelength: 660 and 850 Nanometers\n• Active Area: 18.5″ x 11.5″\n• Sturdy Protective Carrying Case\n• Protective Eyewear\n• Convenient Foot Remote\n[/av_textblock]\n\n[av_product_button av_uid=\'av-ea1km\']\n[/av_section]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\n[av_heading heading=\'All our products\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaa78kwz\' admin_preview_bg=\'\'][/av_heading]\n\n[av_productgrid wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\n[/av_section]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\n\n[av_one_half first av_uid=\'av-s0qje1\']\n\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\nEvery mat is shipped FREE in the United States!\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\n\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\nIf your mats fail to function within a year of purchase we will replace it.\n[/av_icon_box]\n\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\n\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\nOur site uses an encryption algorithm that ensures your payment is processed securely.\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\n\n[av_icon_box icon=\'ue8b9\' font=\'entypo-fontello\' title=\'???\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\nenean leo ligula, porttitor eu, consequat vitae, eleifend ac, enim. Aliquam lorem ante, dapibus.\n[/av_icon_box]\n\n[/av_one_half][/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'sign-up\' color=\'main_color\' custom_bg=\'\' src=\'http://test.kriesi.at/enfold-2017/wp-content/uploads/sites/24/2017/02/banner-cc.jpg\' attachment=\'1183\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-erwwfd\']\n[av_heading heading=\'Want to stay up to date?<br/>Subscribe to our Newsletter!\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'30\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'\' av_uid=\'av-c61p6x\'][/av_heading]\n\n[av_one_fifth first av_uid=\'av-bkay6h\']\n\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-8r9h3t\']\n\n[av_contact email=\'office@enfold-shop.com\' title=\'\' button=\'Subscribe\' on_send=\'\' sent=\'Thanks! You will receive an email soon!\' link=\'page,74\' subject=\'\' autorespond=\'\' captcha=\'\' hide_labels=\'aviaTBhide_labels\' color=\'av-custom-form-color av-light-form\' av_uid=\'av-7yn621\']\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_uid=\'av-587cw9\'][/av_contact_field]\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_uid=\'av-4f01o9\'][/av_contact_field]\n[/av_contact]\n\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-2y6oll\']\n\n[/av_one_fifth]\n[/av_section]'),(3498,3307,'_wp_attached_file','2020/05/AntiAgingHeader.jpg'),(3499,3307,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:27:\"2020/05/AntiAgingHeader.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"AntiAgingHeader-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:28:\"AntiAgingHeader-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:25:\"AntiAgingHeader-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:28:\"AntiAgingHeader-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:28:\"AntiAgingHeader-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:28:\"AntiAgingHeader-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:28:\"AntiAgingHeader-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"AntiAgingHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"AntiAgingHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3500,3308,'_wp_attached_file','2020/05/SolSculptingAntiAgingGroup-1.jpg'),(3501,3308,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:775;s:4:\"file\";s:40:\"2020/05/SolSculptingAntiAgingGroup-1.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroup-1-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:38:\"SolSculptingAntiAgingGroup-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroup-1-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroup-1-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-705x364.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroup-1-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"SolSculptingAntiAgingGroup-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3502,3309,'_wp_attached_file','2020/05/SolSculptingAntiAgingGroupWeb-1.jpg'),(3503,3309,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:466;s:4:\"file\";s:43:\"2020/05/SolSculptingAntiAgingGroupWeb-1.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:41:\"SolSculptingAntiAgingGroupWeb-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-700x375.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-700x321.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-700x423.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:43:\"SolSculptingAntiAgingGroupWeb-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3504,3310,'_wp_attached_file','2020/05/AntiAging-copy.jpg'),(3505,3310,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:775;s:6:\"height\";i:825;s:4:\"file\";s:26:\"2020/05/AntiAging-copy.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-768x818.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"AntiAging-copy-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-775x430.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-775x630.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-775x684.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-662x705.jpg\";s:5:\"width\";i:662;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-775x321.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-775x423.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"AntiAging-copy-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"AntiAging-copy-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587151891\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0208333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3506,3312,'_wp_attached_file','2020/05/AntiAging-1.jpg'),(3507,3312,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:775;s:6:\"height\";i:825;s:4:\"file\";s:23:\"2020/05/AntiAging-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-768x818.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"AntiAging-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-775x430.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-775x630.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-775x684.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-662x705.jpg\";s:5:\"width\";i:662;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-775x321.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-775x423.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"AntiAging-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"AntiAging-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587151891\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0208333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3510,3314,'_wp_attached_file','2020/05/TerriKimHeader.jpg'),(3511,3314,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2020/05/TerriKimHeader.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"TerriKimHeader-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"TerriKimHeader-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"TerriKimHeader-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:27:\"TerriKimHeader-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:27:\"TerriKimHeader-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:27:\"TerriKimHeader-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:27:\"TerriKimHeader-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"TerriKimHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"TerriKimHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3572,3320,'_wp_attached_file','2020/05/ImageSection-1.jpg'),(3573,3320,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:26:\"2020/05/ImageSection-1.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"ImageSection-1-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"ImageSection-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:27:\"ImageSection-1-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:27:\"ImageSection-1-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:27:\"ImageSection-1-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"ImageSection-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"ImageSection-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3576,3348,'_wp_attached_file','2020/05/SolSculptingRegions.png'),(3577,3348,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:628;s:4:\"file\";s:31:\"2020/05/SolSculptingRegions.png\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-300x188.png\";s:5:\"width\";i:300;s:6:\"height\";i:188;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-768x482.png\";s:5:\"width\";i:768;s:6:\"height\";i:482;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:29:\"SolSculptingRegions-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:32:\"SolSculptingRegions-1000x430.png\";s:5:\"width\";i:1000;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-845x628.png\";s:5:\"width\";i:845;s:6:\"height\";i:628;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-705x443.png\";s:5:\"width\";i:705;s:6:\"height\";i:443;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:32:\"SolSculptingRegions-1000x423.png\";s:5:\"width\";i:1000;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-600x377.png\";s:5:\"width\";i:600;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:31:\"SolSculptingRegions-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-600x377.png\";s:5:\"width\";i:600;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3581,3355,'_wp_attached_file','2020/05/SolSculptingRegions-1.png'),(3582,3355,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:754;s:4:\"file\";s:33:\"2020/05/SolSculptingRegions-1.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-300x189.png\";s:5:\"width\";i:300;s:6:\"height\";i:189;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"SolSculptingRegions-1-1024x643.png\";s:5:\"width\";i:1024;s:6:\"height\";i:643;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-768x483.png\";s:5:\"width\";i:768;s:6:\"height\";i:483;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:31:\"SolSculptingRegions-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:34:\"SolSculptingRegions-1-1200x430.png\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:34:\"SolSculptingRegions-1-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-705x443.png\";s:5:\"width\";i:705;s:6:\"height\";i:443;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:34:\"SolSculptingRegions-1-1200x423.png\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-600x377.png\";s:5:\"width\";i:600;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:33:\"SolSculptingRegions-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-600x377.png\";s:5:\"width\";i:600;s:6:\"height\";i:377;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:33:\"SolSculptingRegions-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3583,2483,'_avia_builder_template_cta','{{{CTA}}}[av_button_big label=\'DID WE PIQUE YOUR INTEREST? Schedule a lightning-round discovery call.\' description_pos=\'below\' icon_select=\'no\' icon=\'ue800\' font=\'entypo-fontello\' title_attr=\'\' color=\'custom\' custom_bg=\'#bf003b\' color_hover=\'custom\' custom_bg_hover=\'#e20531\' custom_font=\'#ffffff\' link=\'manually,https://calendly.com/terri-77/15min\' link_target=\'_blank\' id=\'\' custom_class=\'\' av_uid=\'av-kabxof4u\' admin_preview_bg=\'\']\nSecure your 15-minute call!\n[/av_button_big]'),(3584,3359,'_wp_attached_file','2020/05/StayInTheLoopSection.jpg'),(3585,3359,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:32:\"2020/05/StayInTheLoopSection.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"StayInTheLoopSection-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"StayInTheLoopSection-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"StayInTheLoopSection-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:33:\"StayInTheLoopSection-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"StayInTheLoopSection-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"StayInTheLoopSection-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"StayInTheLoopSection-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3599,2483,'_avia_builder_template_sign_up','{{{Sign Up}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/StayInTheLoopSection.jpg\' attachment=\'3359\' attachment_size=\'full\' attach=\'fixed\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.9\' overlay_color=\'#35383c\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'Newsletter\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jy4z4\']\n[av_heading heading=\'Want to stay in the loop?<br/>Sign up for discounts and specials.\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-qpwo\'][/av_heading]\n\n[av_one_fifth first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-19i0uo\']\n\n[/av_one_fifth][av_three_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-10z48o\']\n\n[av_contact title=\'\' button=\'Stay Notified\' on_send=\'\' sent=\'Thank you! \' link=\'manually,http://\' captcha=\'\' captcha_theme=\'light\' captcha_size=\'normal\' captcha_score=\'0.5\' email=\'terri@avantibody.com\' from_email=\'\' subject=\'\' autoresponder_email=\'terri@avantibody.com\' autoresponder_reply_to=\'\' autorespond=\'\' hide_labels=\'aviaTBhide_labels\' form_align=\'centered\' color=\'av-custom-form-color av-light-form\' heading_tag=\'\' heading_class=\'\' alb_description=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-vg7qw\' admin_preview_bg=\'rgb(34, 34, 34)\']\n[av_contact_field label=\'Name\' type=\'text\' options=\'\' check=\'is_empty\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-kko2g\'][/av_contact_field]\n[av_contact_field label=\'E-Mail\' type=\'text\' options=\'\' check=\'is_email\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-1gjow\'][/av_contact_field]\n[av_contact_field label=\'Phone\' type=\'text\' options=\'\' check=\'is_phone\' width=\'element_third\' multi_select=\'\' av_contact_preselect=\'\' av_uid=\'av-6p8wg\'][/av_contact_field]\n[/av_contact]\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#cecece\' id=\'\' custom_class=\'\' av_uid=\'av-desw0\' admin_preview_bg=\'rgb(34, 34, 34)\']\n<p style=\"text-align: center;\">We value your privacy. We never send you any spam or pass your information to 3rd parties.</p>\n[/av_textblock]\n\n[/av_three_fifth][av_one_fifth min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' margin=\'0px\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'fade-in\' mobile_display=\'\' av_uid=\'av-9gzy8\']\n\n[/av_one_fifth]\n[/av_section]'),(3600,2483,'_avia_builder_template_half_section','{{{Half section}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'left-to-right\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-qplbxa\']\n\n[av_video src=\'https://vimeo.com/388621488\' mobile_image=\'https://solsculpting.com/wp-content/uploads/2020/05/VideoStill.png\' attachment=\'3262\' attachment_size=\'full\' format=\'16-9\' width=\'16\' height=\'9\' conditional_play=\'lightbox\' id=\'\' custom_class=\'\' av_uid=\'av-kaahhc0q\']\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px,100px,0px,0px\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'right-to-left\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-vy3aoe\']\n\n[av_heading heading=\'Start a Red Light Therapy business\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-b78d2\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\nWe designed our equipment and custom business program based on our successful spa in California. Whether you are seeking a full-spa buildout or a \"side hustle\" that requires little start-up capital and features big results, SolSculpting by Avanti Body is the answer.\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'20\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vf3oc6\']\n\n[av_button label=\'SEE OUR PERSONAL STORIES\' icon_select=\'yes\' icon=\'ue885\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'page,3317\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-u4zsxq\' admin_preview_bg=\'rgb(255, 255, 255)\']\n\n[/av_one_half]\n[/av_section]'),(3601,3380,'_wp_attached_file','2020/05/Red-light-rooms.jpg'),(3602,3380,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:27:\"2020/05/Red-light-rooms.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Red-light-rooms-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:25:\"Red-light-rooms-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:28:\"Red-light-rooms-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:28:\"Red-light-rooms-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Red-light-rooms-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Red-light-rooms-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3603,3387,'_wp_attached_file','2020/05/Terri-After.jpg'),(3604,3387,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:1084;s:4:\"file\";s:23:\"2020/05/Terri-After.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"Terri-After-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"Terri-After-578x1024.jpg\";s:5:\"width\";i:578;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"Terri-After-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"Terri-After-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"Terri-After-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:23:\"Terri-After-612x430.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:23:\"Terri-After-612x630.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"Terri-After-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"Terri-After-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:23:\"Terri-After-612x684.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:23:\"Terri-After-612x375.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:23:\"Terri-After-398x705.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:23:\"Terri-After-612x321.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:23:\"Terri-After-612x423.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"Terri-After-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"Terri-After-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"Terri-After-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"Terri-After-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"Terri-After-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"Terri-After-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3605,3388,'_wp_attached_file','2020/05/Terri-Before.jpg'),(3606,3388,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:1084;s:4:\"file\";s:24:\"2020/05/Terri-Before.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Terri-Before-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"Terri-Before-578x1024.jpg\";s:5:\"width\";i:578;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Terri-Before-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"Terri-Before-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"Terri-Before-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:24:\"Terri-Before-612x430.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:24:\"Terri-Before-612x630.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"Terri-Before-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"Terri-Before-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"Terri-Before-612x684.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"Terri-Before-612x375.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"Terri-Before-398x705.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"Terri-Before-612x321.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:24:\"Terri-Before-612x423.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Terri-Before-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Terri-Before-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"Terri-Before-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Terri-Before-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"Terri-Before-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Terri-Before-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3607,3389,'_wp_attached_file','2020/05/Terri-After-1.jpg'),(3608,3389,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:1084;s:4:\"file\";s:25:\"2020/05/Terri-After-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Terri-After-1-578x1024.jpg\";s:5:\"width\";i:578;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:23:\"Terri-After-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-612x430.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-612x630.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-612x684.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-612x375.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-398x705.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-612x321.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-612x423.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Terri-After-1-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Terri-After-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Terri-After-1-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Terri-After-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3609,3390,'_wp_attached_file','2020/05/Terri-Before-1.jpg'),(3610,3390,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:1084;s:4:\"file\";s:26:\"2020/05/Terri-Before-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"Terri-Before-1-578x1024.jpg\";s:5:\"width\";i:578;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"Terri-Before-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-612x430.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-612x630.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-612x684.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-612x375.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-398x705.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-612x321.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-612x423.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"Terri-Before-1-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Terri-Before-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"Terri-Before-1-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Terri-Before-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3616,3398,'_wp_attached_file','2020/05/Screen-Shot-2020-05-25-at-1.20.37-PM.png'),(3617,3398,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1818;s:6:\"height\";i:974;s:4:\"file\";s:48:\"2020/05/Screen-Shot-2020-05-25-at-1.20.37-PM.png\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-300x161.png\";s:5:\"width\";i:300;s:6:\"height\";i:161;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-1.20.37-PM-1024x549.png\";s:5:\"width\";i:1024;s:6:\"height\";i:549;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-768x411.png\";s:5:\"width\";i:768;s:6:\"height\";i:411;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-1.20.37-PM-1536x823.png\";s:5:\"width\";i:1536;s:6:\"height\";i:823;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-05-25-at-1.20.37-PM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-1.20.37-PM-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-1.20.37-PM-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-1.20.37-PM-1500x804.png\";s:5:\"width\";i:1500;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-705x378.png\";s:5:\"width\";i:705;s:6:\"height\";i:378;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-1.20.37-PM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-600x321.png\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-600x321.png\";s:5:\"width\";i:600;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-1.20.37-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3620,3400,'_wp_attached_file','2020/05/FrontDesk.jpg'),(3621,3400,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:21:\"2020/05/FrontDesk.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"FrontDesk-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"FrontDesk-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"FrontDesk-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:21:\"FrontDesk-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"FrontDesk-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"FrontDesk-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:22:\"FrontDesk-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"FrontDesk-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"FrontDesk-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:21:\"FrontDesk-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:21:\"FrontDesk-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:21:\"FrontDesk-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:21:\"FrontDesk-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:22:\"FrontDesk-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"FrontDesk-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"FrontDesk-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:21:\"FrontDesk-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"FrontDesk-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:21:\"FrontDesk-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"FrontDesk-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3632,3404,'_wp_attached_file','2020/05/BusinessInABox.jpg'),(3633,3404,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:26:\"2020/05/BusinessInABox.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"BusinessInABox-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"BusinessInABox-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:27:\"BusinessInABox-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:27:\"BusinessInABox-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"BusinessInABox-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"BusinessInABox-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3634,3405,'_wp_attached_file','2020/05/BusinessInABoxManual.jpg'),(3635,3405,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:32:\"2020/05/BusinessInABoxManual.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"BusinessInABoxManual-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"BusinessInABoxManual-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"BusinessInABoxManual-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"BusinessInABoxManual-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"BusinessInABoxManual-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxManual-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3636,3406,'_wp_attached_file','2020/05/BusinessInABoxAlicia.jpg'),(3637,3406,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:32:\"2020/05/BusinessInABoxAlicia.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"BusinessInABoxAlicia-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"BusinessInABoxAlicia-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"BusinessInABoxAlicia-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"BusinessInABoxAlicia-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"BusinessInABoxAlicia-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3651,3412,'_wp_attached_file','2020/05/KimAndSon.jpg'),(3652,3412,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:612;s:6:\"height\";i:1084;s:4:\"file\";s:21:\"2020/05/KimAndSon.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"KimAndSon-169x300.jpg\";s:5:\"width\";i:169;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:22:\"KimAndSon-578x1024.jpg\";s:5:\"width\";i:578;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"KimAndSon-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"KimAndSon-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"KimAndSon-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:21:\"KimAndSon-612x430.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:21:\"KimAndSon-612x630.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:21:\"KimAndSon-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"KimAndSon-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:21:\"KimAndSon-612x684.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:21:\"KimAndSon-612x375.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:21:\"KimAndSon-398x705.jpg\";s:5:\"width\";i:398;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:21:\"KimAndSon-612x321.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:21:\"KimAndSon-612x423.jpg\";s:5:\"width\";i:612;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"KimAndSon-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"KimAndSon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:22:\"KimAndSon-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"KimAndSon-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:22:\"KimAndSon-600x1063.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:1063;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"KimAndSon-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3653,3414,'_wp_attached_file','2020/05/Screen-Shot-2020-05-25-at-2.39.10-PM.png'),(3654,3414,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1568;s:6:\"height\";i:882;s:4:\"file\";s:48:\"2020/05/Screen-Shot-2020-05-25-at-2.39.10-PM.png\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.39.10-PM-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.39.10-PM-1536x864.png\";s:5:\"width\";i:1536;s:6:\"height\";i:864;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-05-25-at-2.39.10-PM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.39.10-PM-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.39.10-PM-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.39.10-PM-1500x844.png\";s:5:\"width\";i:1500;s:6:\"height\";i:844;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-705x397.png\";s:5:\"width\";i:705;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.39.10-PM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.39.10-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3655,3415,'_wp_attached_file','2020/05/Screen-Shot-2020-05-25-at-2.41.58-PM.png'),(3656,3415,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1570;s:6:\"height\";i:880;s:4:\"file\";s:48:\"2020/05/Screen-Shot-2020-05-25-at-2.41.58-PM.png\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-300x168.png\";s:5:\"width\";i:300;s:6:\"height\";i:168;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.41.58-PM-1024x574.png\";s:5:\"width\";i:1024;s:6:\"height\";i:574;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-768x430.png\";s:5:\"width\";i:768;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.41.58-PM-1536x861.png\";s:5:\"width\";i:1536;s:6:\"height\";i:861;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-05-25-at-2.41.58-PM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.41.58-PM-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.41.58-PM-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.41.58-PM-1500x841.png\";s:5:\"width\";i:1500;s:6:\"height\";i:841;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-705x395.png\";s:5:\"width\";i:705;s:6:\"height\";i:395;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.41.58-PM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-600x336.png\";s:5:\"width\";i:600;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-600x336.png\";s:5:\"width\";i:600;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.41.58-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3659,3418,'_wp_attached_file','2020/05/Screen-Shot-2020-05-25-at-2.47.10-PM.png'),(3660,3418,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2092;s:6:\"height\";i:1068;s:4:\"file\";s:48:\"2020/05/Screen-Shot-2020-05-25-at-2.47.10-PM.png\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-300x153.png\";s:5:\"width\";i:300;s:6:\"height\";i:153;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.47.10-PM-1024x523.png\";s:5:\"width\";i:1024;s:6:\"height\";i:523;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-768x392.png\";s:5:\"width\";i:768;s:6:\"height\";i:392;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.47.10-PM-1536x784.png\";s:5:\"width\";i:1536;s:6:\"height\";i:784;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:50:\"Screen-Shot-2020-05-25-at-2.47.10-PM-2048x1046.png\";s:5:\"width\";i:2048;s:6:\"height\";i:1046;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-05-25-at-2.47.10-PM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.47.10-PM-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.47.10-PM-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.47.10-PM-1500x766.png\";s:5:\"width\";i:1500;s:6:\"height\";i:766;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-705x360.png\";s:5:\"width\";i:705;s:6:\"height\";i:360;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-05-25-at-2.47.10-PM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-600x306.png\";s:5:\"width\";i:600;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-600x306.png\";s:5:\"width\";i:600;s:6:\"height\";i:306;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-05-25-at-2.47.10-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3681,2483,'_avia_builder_template_biz_investment','{{{Biz investment}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInvestment2.jpg\' attachment=\'3301\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.6\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\n[av_heading heading=\'Business Investment\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-99r56\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\n<p style=\"text-align: center;\">Estimated costs associated with a SolSculpting by Avanti Body opportunity</p>\n[/av_textblock]\n[/av_section]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'left-to-right\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-s0qje1\']\n\n[av_heading heading=\'In our health-conscious world, this is the business you want to be in.\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-7l9oa\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\n\n[av_icon_box icon=\'uf115\' font=\'flaticon\' title=\'Available locations\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\nSingle and multi-unit opportunities available across the United States\n[/av_icon_box]\n\n[av_icon_box icon=\'uf113\' font=\'flaticon\' title=\'Training provided\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\nYes, plus collaboration\n[/av_icon_box]\n\n[av_icon_box icon=\'uf11a\' font=\'flaticon\' title=\'Minimum cash required\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\n$35,000\n[/av_icon_box]\n\n[av_icon_box icon=\'uf118\' font=\'flaticon\' title=\'Total investment range\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\n$30,000 – $150,000\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'right-to-left\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-qplbxa\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInABoxManual.jpg\' attachment=\'3405\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kamsh7o4\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half]\n[/av_section]\n\n[av_button_big label=\'DID WE PIQUE YOUR INTEREST? Click to schedule a lightning-round discovery call.\' description_pos=\'below\' icon_select=\'no\' icon=\'ue800\' font=\'entypo-fontello\' title_attr=\'\' color=\'custom\' custom_bg=\'#bf003b\' color_hover=\'custom\' custom_bg_hover=\'#e20531\' custom_font=\'#ffffff\' link=\'manually,https://calendly.com/terri-77/15min\' link_target=\'_blank\' id=\'\' custom_class=\'\' av_uid=\'av-kabxof4u\' admin_preview_bg=\'\']\nSecure your 15-minute call!\n[/av_button_big]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'left-to-right\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-qplbxa\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInABoxAlicia.jpg\' attachment=\'3406\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kamsh7o4\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px,50px,0px,50px\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'right-to-left\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-vy3aoe\']\n\n[av_heading heading=\'What you get with SolSculpting Business in a Box:\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-7iftm\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kamqrayy\' admin_preview_bg=\'\']\n<ul>\n <li>Tools and Digital Resources</li>\n <li>Business Training</li>\n <li>Equipment Training</li>\n <li>Customer Intake Forms</li>\n <li>Customer Liability Release Forms</li>\n <li>Consultation coaching</li>\n <li>Consultation booklet</li>\n <li>Customer preparation protocols</li>\n <li>Customer pricing and packaging</li>\n <li>Website content and design template.</li>\n <li>Library of images and photos</li>\n <li>Facebook advertisements</li>\n <li>Facebook social posts</li>\n <li>Instagram advertisements</li>\n <li>Instagram social posts</li>\n <li>Customer appreciation tools</li>\n <li>Demographic and psychographic data to reach your target customers</li>\n <li>Flyers and brochures</li>\n <li>Radio ads</li>\n <li>Magazine ads</li>\n <li>Social Influencer Guide</li>\n <li>SolSculpting Monthly Video Conference Call. Provides ongoing training and seasonal marketing tips.</li>\n <li>Tracking tools – monthly 3rd party fees not included\n*Customize how many systems you want in your package</li>\n</ul>\n[/av_textblock]\n\n[/av_one_half]\n[/av_section]\n\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\n[av_font_icon icon=\'uf10c\' font=\'flaticon\' style=\'\' caption=\'\' size=\'50px\' position=\'center\' color=\'#686868\' link=\'\' linktarget=\'\' animation=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaaj4eyo\' admin_preview_bg=\'\'][/av_font_icon]\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#686868\' id=\'\' custom_class=\'\' av_uid=\'av-kaaj4sjc\' admin_preview_bg=\'\']\n<p style=\"text-align: center;\"><strong>SPECIAL OFFER FOR VETERANS, MILITARY, FIRST RESPONDERS & FRONTLINE WORKERS</strong></p>\n[/av_textblock]\n\n[av_button label=\'Thank you for your service. CALL FOR DETAILS!\' icon_select=\'no\' icon=\'ue800\' font=\'entypo-fontello\' size=\'medium\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,https://calendly.com/terri-77/15min\' link_target=\'_blank\' id=\'\' custom_class=\'\' av_uid=\'av-kalxub6q\' admin_preview_bg=\'\']\n[/av_section]'),(3684,3438,'_wp_attached_file','2020/05/WhyRedLightHeader.jpg'),(3685,3438,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:29:\"2020/05/WhyRedLightHeader.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:30:\"WhyRedLightHeader-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:30:\"WhyRedLightHeader-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:27:\"WhyRedLightHeader-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:30:\"WhyRedLightHeader-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:30:\"WhyRedLightHeader-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:30:\"WhyRedLightHeader-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:30:\"WhyRedLightHeader-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"WhyRedLightHeader-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"WhyRedLightHeader-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3717,3447,'total_sales','0'),(3718,3447,'_tax_status','taxable'),(3719,3447,'_tax_class',''),(3720,3447,'_manage_stock','no'),(3721,3447,'_backorders','no'),(3722,3447,'_sold_individually','no'),(3723,3447,'_virtual','no'),(3724,3447,'_downloadable','no'),(3726,3447,'_download_limit','-1'),(3727,3447,'_download_expiry','-1'),(3728,3447,'_thumbnail_id','3477'),(3729,3447,'_stock',NULL),(3730,3447,'_stock_status','instock'),(3731,3447,'_wc_average_rating','0'),(3732,3447,'_wc_review_count','0'),(3733,3447,'_product_version','4.2.0'),(3734,3447,'_price',''),(3735,3447,'_aviaLayoutBuilder_active','active'),(3736,3447,'_avia_sc_parser_state','check_only'),(3737,3447,'_wc_facebook_sync_enabled','no'),(3738,3447,'_yoast_wpseo_primary_product_cat','35'),(3739,3447,'_aviaLayoutBuilderCleanData','[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLightHeader.jpg\' attachment=\'3438\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™<br/>by Avanti Body\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-5yj72f\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">Professional Red Light Mat System</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLightHeader.jpg\' attachment=\'3438\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™<br/>by Avanti Body\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-5yj72f\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">Professional Red Light Mat System</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-19znxll\']\r\n\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-184xo49\']\r\n\r\n[av_heading heading=\'Professional Red Light Mat System\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-9r5jr\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <strong>science-based and clinically-proven </strong>to decrease pain and inflammation, speed up wound and injury healing, aid in muscle recovery, and provide powerful anti-aging effects. This FDA-registered and cleared system for pain is safe and effective with no known side effects.<strong>\r\n</strong>\r\n\r\nThe benefits of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades, <strong>including research supporting its benefits for assisting both the lymphatic and the immune system.</strong>\r\n\r\n<span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'no\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n\r\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystem-1.jpg\' attachment=\'3477\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_cell_one_half][/av_layout_row][av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaqc1pkm\']\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystemMobile-1024x578.jpg\' attachment=\'3528\' attachment_size=\'large\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[av_heading heading=\'Professional Red Light Mat System\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2gqqdj\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <b>science-based and clinically-proven</b> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system for pain is safe and effective with no known side effects.\r\n\r\nThe benefits of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades, <strong>including research supporting its benefits for assisting both the lymphatic and the immune system.</strong>\r\n\r\n<span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'no\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included in each system\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-26skuv\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kand12fc\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\">Choose the number of SolSculpting™ Mat Systems you need to support your current wellness business or to start a stand-alone therapy business system. We offer an eight mat system, which is more body coverage than any other system.</p>\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_hr class=\'invisible\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystemGroup.jpg\' attachment=\'3493\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'16,27.3\' av_uid=\'av-a92w9z\']\r\nProprietary SolSculpting™ Control Panel\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'23.2,61.5\' av_uid=\'av-8mlwyf\']\r\n5 LARGE - Body Red Light & Infrared Light Mat (2400 lights per mat)\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'48.2,52.6\' av_uid=\'av-7k4vuf\']\r\n2 MEDIUM Red Light & Infrared Light Mate (1800 lights per mat)\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'68.8,31.1\' av_uid=\'av-6dq6fb\']\r\n1 SMALL Chin/Neck Red Light & Infrared Light Mate (600 lights)\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'78,82.3\' av_uid=\'av-952sn\']\r\nAll mats include wavelengths of 660 and 850 nanometers\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\"><span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span></p>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'yes\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included in each system\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2hag93\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kand12fc\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\">Choose the number of SolSculpting™ Mat Systems you need to support your current wellness business or to start a stand-alone therapy business system. We offer an eight mat system, which is more body coverage than any other system.</p>\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystemGroupWeb.jpg\' attachment=\'3480\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n<ul>\r\n <li>Proprietary SolSculpting™ Control Panel</li>\r\n <li>5 LARGE Body Red Light & Infrared Light Mate (2400 lights per mat)</li>\r\n <li>2 MEDIUM Red Light & Infrared Light Mate (1800 lights per mat)</li>\r\n <li>1 SMALL Chin/Neck Red Light & Infrared Light Mate (600 lights)</li>\r\n <li>All mats include wavelengths of 660 and 850 nanometers</li>\r\n</ul>\r\n[/av_textblock]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\"><span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span></p>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'yes\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\r\n[av_one_half first av_uid=\'av-s0qje1\']\r\n\r\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\r\nEvery mat is shipped FREE in the United States!\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\r\n\r\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\r\nIf your mats fail to function within a year of purchase we will replace it.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\r\n\r\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\r\nOur site uses an encryption algorithm that ensures your payment is processed securely.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\r\n\r\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\r\nAsk for details!\r\n[/av_icon_box]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\r\n[av_heading heading=\'All our products\' tag=\'h2\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-33ukd3\'][/av_heading]\r\n\r\n[av_productgrid categories=\'33,35,34\' wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\r\n[/av_section]\r\n\r\n'),(3740,3447,'_avia_builder_shortcode_tree','a:8:{i:0;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:1;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:2;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:3;}}s:5:\"index\";i:0;}i:1;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:3:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:5;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:6;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:7;}}s:5:\"index\";i:4;}i:2;a:3:{s:3:\"tag\";s:13:\"av_layout_row\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:10;}i:1;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:11;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:12;}i:3;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:13;}}s:5:\"index\";i:9;}i:1;a:3:{s:3:\"tag\";s:16:\"av_cell_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:15;}}s:5:\"index\";i:14;}}s:5:\"index\";i:8;}i:3;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:5:{i:0;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:17;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:18;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:19;}i:3;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:20;}i:4;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:21;}}s:5:\"index\";i:16;}i:4;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:8:{i:0;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:23;}i:1;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:24;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:25;}i:3;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:26;}i:4;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:27;}i:5;a:3:{s:3:\"tag\";s:16:\"av_image_hotspot\";s:7:\"content\";a:0:{}s:5:\"index\";i:28;}i:6;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:29;}i:7;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:30;}}s:5:\"index\";i:22;}i:5;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_full\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:33;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:34;}i:2;a:3:{s:3:\"tag\";s:5:\"av_hr\";s:7:\"content\";a:0:{}s:5:\"index\";i:35;}i:3;a:3:{s:3:\"tag\";s:8:\"av_image\";s:7:\"content\";a:0:{}s:5:\"index\";i:36;}}s:5:\"index\";i:32;}i:1;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:37;}i:2;a:3:{s:3:\"tag\";s:12:\"av_textblock\";s:7:\"content\";a:0:{}s:5:\"index\";i:38;}i:3;a:3:{s:3:\"tag\";s:9:\"av_button\";s:7:\"content\";a:0:{}s:5:\"index\";i:39;}}s:5:\"index\";i:31;}i:6;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:4:{i:0;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:42;}}s:5:\"index\";i:41;}i:1;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:44;}}s:5:\"index\";i:43;}i:2;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:46;}}s:5:\"index\";i:45;}i:3;a:3:{s:3:\"tag\";s:11:\"av_one_half\";s:7:\"content\";a:1:{i:0;a:3:{s:3:\"tag\";s:11:\"av_icon_box\";s:7:\"content\";a:0:{}s:5:\"index\";i:48;}}s:5:\"index\";i:47;}}s:5:\"index\";i:40;}i:7;a:3:{s:3:\"tag\";s:10:\"av_section\";s:7:\"content\";a:2:{i:0;a:3:{s:3:\"tag\";s:10:\"av_heading\";s:7:\"content\";a:0:{}s:5:\"index\";i:50;}i:1;a:3:{s:3:\"tag\";s:14:\"av_productgrid\";s:7:\"content\";a:0:{}s:5:\"index\";i:51;}}s:5:\"index\";i:49;}}'),(3741,3447,'_av_el_mgr_version','1.0'),(3742,3447,'_av_alb_posts_elements_state','a:14:{s:9:\"av_button\";b:1;s:13:\"av_layout_row\";b:1;s:16:\"av_cell_one_half\";b:1;s:10:\"av_heading\";b:1;s:5:\"av_hr\";b:1;s:11:\"av_icon_box\";b:1;s:8:\"av_image\";b:1;s:16:\"av_image_hotspot\";b:1;s:11:\"av_one_full\";b:1;s:11:\"av_one_half\";b:1;s:14:\"av_productgrid\";b:1;s:10:\"av_section\";b:1;s:12:\"av_textblock\";b:1;s:13:\"av_image_spot\";b:1;}'),(3743,3447,'layout',''),(3744,3447,'sidebar',''),(3745,3447,'footer',''),(3746,3447,'header_title_bar',''),(3747,3447,'header_transparency',''),(3748,3447,'_product_hover',''),(3749,3447,'_yoast_wpseo_content_score','30'),(3750,3447,'_edit_lock','1592700919:4'),(3751,3447,'_edit_last','4'),(3752,3449,'_wp_attached_file','2020/05/WhyRedLight.jpg'),(3753,3449,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2020/05/WhyRedLight.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"WhyRedLight-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:24:\"WhyRedLight-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"WhyRedLight-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:24:\"WhyRedLight-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:24:\"WhyRedLight-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:24:\"WhyRedLight-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:24:\"WhyRedLight-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"WhyRedLight-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"WhyRedLight-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3754,3452,'_wp_attached_file','2020/05/RealPeopleRealSupport-1.png'),(3755,3452,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1066;s:6:\"height\";i:292;s:4:\"file\";s:35:\"2020/05/RealPeopleRealSupport-1.png\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"RealPeopleRealSupport-1-300x82.png\";s:5:\"width\";i:300;s:6:\"height\";i:82;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"RealPeopleRealSupport-1-1024x280.png\";s:5:\"width\";i:1024;s:6:\"height\";i:280;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-768x210.png\";s:5:\"width\";i:768;s:6:\"height\";i:210;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"RealPeopleRealSupport-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-495x292.png\";s:5:\"width\";i:495;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-845x292.png\";s:5:\"width\";i:845;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-710x292.png\";s:5:\"width\";i:710;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-705x193.png\";s:5:\"width\";i:705;s:6:\"height\";i:193;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-845x292.png\";s:5:\"width\";i:845;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-300x292.png\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-600x164.png\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-300x292.png\";s:5:\"width\";i:300;s:6:\"height\";i:292;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-600x164.png\";s:5:\"width\";i:600;s:6:\"height\";i:164;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"RealPeopleRealSupport-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3756,3453,'_wp_attached_file','2020/05/Dr-Fritz-Albert-Popp.jpg'),(3757,3453,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:32:\"2020/05/Dr-Fritz-Albert-Popp.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"Dr-Fritz-Albert-Popp-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"Dr-Fritz-Albert-Popp-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"Dr-Fritz-Albert-Popp-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"Dr-Fritz-Albert-Popp-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"Dr-Fritz-Albert-Popp-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3760,3457,'_wp_attached_file','2020/05/WhyRedLight3.jpg'),(3761,3457,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:800;s:4:\"file\";s:24:\"2020/05/WhyRedLight3.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-300x150.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"WhyRedLight3-1024x512.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-768x384.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:384;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:25:\"WhyRedLight3-1536x768.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"WhyRedLight3-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"WhyRedLight3-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"WhyRedLight3-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:25:\"WhyRedLight3-1500x750.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:750;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-705x353.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:353;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"WhyRedLight3-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"WhyRedLight3-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-600x300.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"WhyRedLight3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3762,2483,'_avia_builder_template_see_our_spa','{{{See our spa}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'no_margin\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'aviaTBcustom_margin\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px,50px,0px,50px\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'left-to-right\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-vy3aoe\']\n\n[av_heading heading=\'See a red light spa in action\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2eizvl\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\nWe designed our equipment and custom business program based on our successful spa in California. Whether you are seeking a full-spa buildout or a \"side hustle\" that requires little start-up capital and features big results, SolSculpting by Avanti Body is the answer.\n\n<font color=\"#bf003c\">CLICK VIDEO TO PLAY</font>\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'right-to-left\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-qplbxa\']\n\n[av_video src=\'https://vimeo.com/388621488\' mobile_image=\'https://solsculpting.com/wp-content/uploads/2020/05/VideoStill.png\' attachment=\'3262\' attachment_size=\'full\' format=\'16-9\' width=\'16\' height=\'9\' conditional_play=\'lightbox\' id=\'\' custom_class=\'\' av_uid=\'av-kaahhc0q\']\n\n[/av_one_half]\n[/av_section]'),(3763,3447,'_sale_price',''),(3764,2483,'_avia_builder_template_4_icons_group','{{{4 icons group}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\n\n[av_one_half first av_uid=\'av-s0qje1\']\n\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\nEvery mat is shipped FREE in the United States!\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\n\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\nIf your mats fail to function within a year of purchase we will replace it.\n[/av_icon_box]\n\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\n\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\nOur site uses an encryption algorithm that ensures your payment is processed securely.\n[/av_icon_box]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\n\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\nAsk for details!\n[/av_icon_box]\n\n[/av_one_half][/av_section]'),(3766,3476,'_wp_attached_file','2020/05/SolSculptingSystem.jpg'),(3767,3476,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:775;s:6:\"height\";i:825;s:4:\"file\";s:30:\"2020/05/SolSculptingSystem.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-768x818.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:28:\"SolSculptingSystem-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-775x430.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-775x630.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-775x684.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-662x705.jpg\";s:5:\"width\";i:662;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-775x321.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-775x423.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"SolSculptingSystem-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587151891\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0208333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3768,3477,'_wp_attached_file','2020/05/SolSculptingSystem-1.jpg'),(3769,3477,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:775;s:6:\"height\";i:825;s:4:\"file\";s:32:\"2020/05/SolSculptingSystem-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-282x300.jpg\";s:5:\"width\";i:282;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-768x818.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:818;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"SolSculptingSystem-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-775x430.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-775x630.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-775x684.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-662x705.jpg\";s:5:\"width\";i:662;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-775x321.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-775x423.jpg\";s:5:\"width\";i:775;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"SolSculptingSystem-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-600x639.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:639;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingSystem-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"2.4\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:8:\"iPhone X\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:10:\"1587151891\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"6\";s:3:\"iso\";s:3:\"500\";s:13:\"shutter_speed\";s:15:\"0.0208333333333\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3774,3480,'_wp_attached_file','2020/05/SolSculptingSystemGroupWeb.jpg'),(3775,3480,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:700;s:6:\"height\";i:466;s:4:\"file\";s:38:\"2020/05/SolSculptingSystemGroupWeb.jpg\";s:5:\"sizes\";a:16:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemGroupWeb-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-700x430.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-700x375.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-700x321.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-700x423.jpg\";s:5:\"width\";i:700;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-600x399.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:399;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"SolSculptingSystemGroupWeb-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3782,3493,'_wp_attached_file','2020/05/SolSculptingSystemGroup.jpg'),(3783,3493,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:775;s:4:\"file\";s:35:\"2020/05/SolSculptingSystemGroup.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemGroup-1024x529.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-768x397.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"SolSculptingSystemGroup-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemGroup-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemGroup-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-705x364.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemGroup-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"SolSculptingSystemGroup-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3788,3500,'_wp_attached_file','2020/05/RedLightNewsMockupMobile2-1.png'),(3789,3500,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:39:\"2020/05/RedLightNewsMockupMobile2-1.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"RedLightNewsMockupMobile2-1-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:40:\"RedLightNewsMockupMobile2-1-1200x430.png\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:40:\"RedLightNewsMockupMobile2-1-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-705x705.png\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:40:\"RedLightNewsMockupMobile2-1-1200x423.png\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3790,3502,'_wp_attached_file','2020/05/RedLightNewsMockupMobile2.png'),(3791,3502,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:37:\"2020/05/RedLightNewsMockupMobile2.png\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:35:\"RedLightNewsMockupMobile2-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:38:\"RedLightNewsMockupMobile2-1200x430.png\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:38:\"RedLightNewsMockupMobile2-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-705x705.png\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:38:\"RedLightNewsMockupMobile2-1200x423.png\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:24:\"elementor_custom_600x600\";a:4:{s:4:\"file\";s:89:\"elementor/thumbs/RedLightNewsMockupMobile2-plxfx150a0v07o35bfomsojrh6k6ahnqdf1b88efe8.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3792,3503,'_wp_attached_file','2020/05/RedLightNewsMockupMobile2-2.png'),(3793,3503,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:39:\"2020/05/RedLightNewsMockupMobile2-2.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"RedLightNewsMockupMobile2-2-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:37:\"RedLightNewsMockupMobile2-2-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:40:\"RedLightNewsMockupMobile2-2-1200x430.png\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:40:\"RedLightNewsMockupMobile2-2-1200x630.png\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-705x705.png\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:40:\"RedLightNewsMockupMobile2-2-1200x423.png\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:39:\"RedLightNewsMockupMobile2-2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3794,2483,'_avia_builder_template_spa_mobile','{{{Spa mobile}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_heading heading=\'See a red light spa in action\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2z80vc\'][/av_heading]\n\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vjkpem\' admin_preview_bg=\'rgb(255, 255, 255)\']\nWe designed our equipment and custom business program based on our successful spa in California. Whether you are seeking a full-spa buildout or a \"side hustle\" that requires little start-up capital and features big results, SolSculpting by Avanti Body is the answer.\n\n<font color=\"#bf003c\">CLICK VIDEO TO PLAY</font>\n[/av_textblock]\n\n[av_video src=\'https://vimeo.com/388621488\' mobile_image=\'https://solsculpting.com/wp-content/uploads/2020/05/VideoStill.png\' attachment=\'3262\' attachment_size=\'full\' format=\'16-9\' width=\'16\' height=\'9\' conditional_play=\'lightbox\' id=\'\' custom_class=\'\' av_uid=\'av-kaahhc0q\']\n[/av_section]'),(3795,3528,'_wp_attached_file','2020/05/SolSculptingSystemMobile.jpg'),(3796,3528,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:36:\"2020/05/SolSculptingSystemMobile.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"SolSculptingSystemMobile-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:34:\"SolSculptingSystemMobile-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:37:\"SolSculptingSystemMobile-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:37:\"SolSculptingSystemMobile-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"SolSculptingSystemMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3797,3530,'_wp_attached_file','2020/05/BackPainMobile.jpg'),(3798,3530,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:26:\"2020/05/BackPainMobile.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"BackPainMobile-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"BackPainMobile-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:27:\"BackPainMobile-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:27:\"BackPainMobile-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"BackPainMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3799,3531,'_wp_attached_file','2020/05/BackPainMobile-1.jpg'),(3800,3531,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:28:\"2020/05/BackPainMobile-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:29:\"BackPainMobile-1-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:26:\"BackPainMobile-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:29:\"BackPainMobile-1-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:29:\"BackPainMobile-1-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:28:\"BackPainMobile-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:28:\"BackPainMobile-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3801,3532,'_wp_attached_file','2020/05/AntiAgingMobile.jpg'),(3802,3532,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1084;s:6:\"height\";i:612;s:4:\"file\";s:27:\"2020/05/AntiAgingMobile.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"AntiAgingMobile-1024x578.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:578;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-768x434.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:434;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:25:\"AntiAgingMobile-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:28:\"AntiAgingMobile-1084x430.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-845x612.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:612;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-705x398.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:398;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:28:\"AntiAgingMobile-1084x423.jpg\";s:5:\"width\";i:1084;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"AntiAgingMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-600x339.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:339;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"AntiAgingMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(3803,3540,'_wp_attached_file','2020/06/Screen-Shot-2020-06-13-at-4.54.56-PM.png'),(3804,3540,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:977;s:4:\"file\";s:48:\"2020/06/Screen-Shot-2020-06-13-at-4.54.56-PM.png\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-300x155.png\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-06-13-at-4.54.56-PM-1024x528.png\";s:5:\"width\";i:1024;s:6:\"height\";i:528;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-768x396.png\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-06-13-at-4.54.56-PM-1536x792.png\";s:5:\"width\";i:1536;s:6:\"height\";i:792;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2020-06-13-at-4.54.56-PM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-06-13-at-4.54.56-PM-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-06-13-at-4.54.56-PM-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-06-13-at-4.54.56-PM-1500x774.png\";s:5:\"width\";i:1500;s:6:\"height\";i:774;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-705x364.png\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2020-06-13-at-4.54.56-PM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-600x310.png\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-600x310.png\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2020-06-13-at-4.54.56-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3839,3559,'_wp_attached_file','2021/02/GradientBackground.jpg'),(3840,3559,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:430;s:4:\"file\";s:30:\"2021/02/GradientBackground.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"GradientBackground-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"GradientBackground-1024x294.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"GradientBackground-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"GradientBackground-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:28:\"GradientBackground-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:30:\"GradientBackground-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:31:\"GradientBackground-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:30:\"GradientBackground-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:30:\"GradientBackground-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:30:\"GradientBackground-845x430.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:30:\"GradientBackground-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:30:\"GradientBackground-705x202.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:30:\"GradientBackground-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:31:\"GradientBackground-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:30:\"GradientBackground-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:30:\"GradientBackground-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:30:\"GradientBackground-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:30:\"GradientBackground-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:30:\"GradientBackground-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:30:\"GradientBackground-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3841,3560,'_wp_attached_file','2021/02/GradientBackground-1.jpg'),(3842,3560,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:430;s:4:\"file\";s:32:\"2021/02/GradientBackground-1.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"GradientBackground-1-300x86.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"GradientBackground-1-1024x294.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:294;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-768x220.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"GradientBackground-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"GradientBackground-1-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-845x430.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-705x202.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:202;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"GradientBackground-1-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"GradientBackground-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-600x172.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:172;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"GradientBackground-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3843,2483,'_avia_builder_template_about_red_light_1','{{{About red light 1}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLight3.jpg\' attachment=\'3457\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.6\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\n[av_heading heading=\'About Red Light\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanb3llt\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\n<p style=\"text-align: center;\">Learn about the profound affects red light therapy has on the body</p>\n[/av_textblock]\n[/av_section]'),(3844,2483,'_avia_builder_template_about_red_light_2','{{{About red light 2}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLight3.jpg\' attachment=\'3457\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.6\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\n[av_heading heading=\'About Red Light\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanb3llt\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\n<p style=\"text-align: center;\">Learn about the profound affects red light therapy has on the body</p>\n[/av_textblock]\n[/av_section]'),(3845,2483,'_avia_builder_template_about_red_light_3','{{{About red light 3}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'left-to-right\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-qplbxa\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp.jpg\' attachment=\'3453\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kan934qp\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'right-to-left\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-s0qje1\']\n\n[av_heading heading=\'A life dedicated to the research of bio-photons\' tag=\'h1\' style=\'blockquote modern-quote\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanb59zq\' admin_preview_bg=\'\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kamqrayy\' admin_preview_bg=\'\']\n“We are still on the threshold of fully understanding the complex relationship between light and life, but we can now say emphatically, that the function of our entire metabolism is dependent on light.”\n\n- Dr. Fritz Albert Popp\n[/av_textblock]\n\n[av_hr class=\'invisible\' icon_select=\'yes\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'20\' custom_border=\'av-border-thin\' custom_width=\'50px\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' custom_border_color=\'\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanakond\' admin_preview_bg=\'\']\n\n[av_button label=\'DR. POPP’S WIKIPEDIA PAGE \' icon_select=\'yes\' icon=\'ue925\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,https://en.wikipedia.org/wiki/Fritz-Albert_Popp\' link_target=\'_blank\' id=\'\' custom_class=\'\' av_uid=\'av-kan96bf4\' admin_preview_bg=\'\']\n\n[/av_one_half]\n[/av_section]'),(3846,2483,'_avia_builder_template_about_red_light_4','{{{About red light 4}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp.jpg\' attachment=\'3453\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kan934qp\' admin_preview_bg=\'\'][/av_image]\n\n[av_heading heading=\'A life dedicated to the research of bio-photons\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-4pxtul\'][/av_heading]\n\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kamqrayy\' admin_preview_bg=\'\']\n“We are still on the threshold of fully understanding the complex relationship between light and life, but we can now say emphatically, that the function of our entire metabolism is dependent on light.”\n\n- Dr. Fritz Albert Popp\n[/av_textblock]\n\n[av_hr class=\'invisible\' icon_select=\'yes\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'20\' custom_border=\'av-border-thin\' custom_width=\'50px\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' custom_border_color=\'\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanakond\' admin_preview_bg=\'\']\n\n[av_button label=\'DR. POPP’S WIKIPEDIA PAGE \' icon_select=\'yes\' icon=\'ue925\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'dark\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,https://en.wikipedia.org/wiki/Fritz-Albert_Popp\' link_target=\'_blank\' id=\'\' custom_class=\'\' av_uid=\'av-kan96bf4\' admin_preview_bg=\'\']\n[/av_section]'),(3847,2483,'_avia_builder_template_about_red_light_5','{{{About red light 5}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'left-to-right\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-s0qje1\']\n\n[av_heading heading=\'The science of red light therapy - photo-bio-modulation\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-3x4vlp\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kamqrayy\' admin_preview_bg=\'\']\n\"Photo-bio-modulation (PBM) modulating the biological processes of the body with light energy (photons)\"\n\n<span style=\"color: #bf003c;\">CLICK VIDEO TO PLAY</span>\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' margin=\'0px\' margin_sync=\'true\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' padding=\'0px\' padding_sync=\'true\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight_size=\'1.1\' animation=\'right-to-left\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-qplbxa\']\n\n[av_video src=\'https://vimeo.com/422517294\' mobile_image=\'https://solsculpting.com/wp-content/uploads/2020/06/Screen-Shot-2020-06-13-at-4.54.56-PM-1024x528.png\' attachment=\'3540\' attachment_size=\'large\' format=\'16-9\' width=\'16\' height=\'9\' conditional_play=\'lightbox\' id=\'\' custom_class=\'\' av_uid=\'av-kan8xew5\']\n\n[/av_one_half]\n[/av_section]'),(3848,2483,'_avia_builder_template_about_red_light_6','{{{About red light 6}}}[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'border-extra-arrow-down\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-l7t2m\']\n[av_video src=\'https://vimeo.com/422517294\' mobile_image=\'https://solsculpting.com/wp-content/uploads/2020/06/Screen-Shot-2020-06-13-at-4.54.56-PM-1024x528.png\' attachment=\'3540\' attachment_size=\'large\' format=\'16-9\' width=\'16\' height=\'9\' conditional_play=\'lightbox\' id=\'\' custom_class=\'\' av_uid=\'av-kan8xew5\']\n\n[av_heading heading=\'The science of red light therapy - photo-bio-modulation\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2mwkh9\'][/av_heading]\n\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kamqrayy\' admin_preview_bg=\'\']\n\"Photo-bio-modulation (PBM) modulating the biological processes of the body with light energy (photons)\"\n\n<span style=\"color: #bf003c;\">CLICK VIDEO TO PLAY</span>\n[/av_textblock]\n[/av_section]'),(3849,3564,'_wp_attached_file','2021/02/Number1.png'),(3850,3564,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:198;s:4:\"file\";s:19:\"2021/02/Number1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Number1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:17:\"Number1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:19:\"Number1-150x180.png\";s:5:\"width\";i:150;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:19:\"Number1-150x185.png\";s:5:\"width\";i:150;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Number1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Number1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3851,3565,'_wp_attached_file','2021/02/Number2.png'),(3852,3565,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:198;s:4:\"file\";s:19:\"2021/02/Number2.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Number2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:17:\"Number2-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:19:\"Number2-150x180.png\";s:5:\"width\";i:150;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:19:\"Number2-150x185.png\";s:5:\"width\";i:150;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Number2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Number2-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3853,3566,'_wp_attached_file','2021/02/Number3.png'),(3854,3566,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:198;s:4:\"file\";s:19:\"2021/02/Number3.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"Number3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:17:\"Number3-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:19:\"Number3-150x180.png\";s:5:\"width\";i:150;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:19:\"Number3-150x185.png\";s:5:\"width\";i:150;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:19:\"Number3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:19:\"Number3-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3855,3568,'_wp_attached_file','2021/02/Number1-1.png'),(3856,3568,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:198;s:4:\"file\";s:21:\"2021/02/Number1-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Number1-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"Number1-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"Number1-1-150x180.png\";s:5:\"width\";i:150;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"Number1-1-150x185.png\";s:5:\"width\";i:150;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Number1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Number1-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3857,3569,'_wp_attached_file','2021/02/Number3-1.png'),(3858,3569,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:198;s:4:\"file\";s:21:\"2021/02/Number3-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Number3-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"Number3-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"Number3-1-150x180.png\";s:5:\"width\";i:150;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"Number3-1-150x185.png\";s:5:\"width\";i:150;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Number3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Number3-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3859,3570,'_wp_attached_file','2021/02/Number2-1.png'),(3860,3570,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:150;s:6:\"height\";i:198;s:4:\"file\";s:21:\"2021/02/Number2-1.png\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Number2-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"Number2-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"Number2-1-150x180.png\";s:5:\"width\";i:150;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"Number2-1-150x185.png\";s:5:\"width\";i:150;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Number2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Number2-1-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3861,3572,'_wp_attached_file','2021/02/GradientBackgroundMobile.jpg'),(3862,3572,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1030;s:4:\"file\";s:36:\"2021/02/GradientBackgroundMobile.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-300x206.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:206;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"GradientBackgroundMobile-1024x703.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:703;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-768x527.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:527;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:34:\"GradientBackgroundMobile-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:37:\"GradientBackgroundMobile-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:37:\"GradientBackgroundMobile-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-705x484.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:484;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:37:\"GradientBackgroundMobile-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-600x412.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:36:\"GradientBackgroundMobile-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-600x412.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:412;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3863,3573,'_wp_attached_file','2021/02/GradientBackgroundMobile-1.jpg'),(3864,3573,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1467;s:4:\"file\";s:38:\"2021/02/GradientBackgroundMobile-1.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-204x300.jpg\";s:5:\"width\";i:204;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"GradientBackgroundMobile-1-698x1024.jpg\";s:5:\"width\";i:698;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"GradientBackgroundMobile-1-768x1127.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:1127;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:36:\"GradientBackgroundMobile-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:39:\"GradientBackgroundMobile-1-1000x430.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:39:\"GradientBackgroundMobile-1-1000x630.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-481x705.jpg\";s:5:\"width\";i:481;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:39:\"GradientBackgroundMobile-1-1000x423.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-600x880.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-600x880.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:880;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:38:\"GradientBackgroundMobile-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3917,3588,'_wp_attached_file','2021/02/MiracleDrug1500x850edit.png'),(3918,3588,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:835;s:4:\"file\";s:35:\"2021/02/MiracleDrug1500x850edit.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-300x167.png\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"MiracleDrug1500x850edit-1024x570.png\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-768x428.png\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"MiracleDrug1500x850edit-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"MiracleDrug1500x850edit-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"MiracleDrug1500x850edit-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-705x392.png\";s:5:\"width\";i:705;s:6:\"height\";i:392;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"MiracleDrug1500x850edit-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-600x334.png\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-600x334.png\";s:5:\"width\";i:600;s:6:\"height\";i:334;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"MiracleDrug1500x850edit-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3919,3590,'_wp_attached_file','2021/02/Red-light-mat.jpg'),(3920,3590,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1242;s:6:\"height\";i:864;s:4:\"file\";s:25:\"2021/02/Red-light-mat.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:26:\"Red-light-mat-1024x712.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-768x534.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:23:\"Red-light-mat-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"Red-light-mat-1242x430.jpg\";s:5:\"width\";i:1242;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:26:\"Red-light-mat-1242x630.jpg\";s:5:\"width\";i:1242;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-705x490.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"Red-light-mat-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-600x417.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"Red-light-mat-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-600x417.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3921,3591,'_wp_attached_file','2021/02/Red-light-mat-1.jpg'),(3922,3591,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1242;s:6:\"height\";i:864;s:4:\"file\";s:27:\"2021/02/Red-light-mat-1.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:28:\"Red-light-mat-1-1024x712.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:712;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-768x534.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:534;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:25:\"Red-light-mat-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:28:\"Red-light-mat-1-1242x430.jpg\";s:5:\"width\";i:1242;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:28:\"Red-light-mat-1-1242x630.jpg\";s:5:\"width\";i:1242;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-705x490.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:28:\"Red-light-mat-1-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-600x417.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:27:\"Red-light-mat-1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-600x417.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:27:\"Red-light-mat-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3923,3595,'_wp_attached_file','2021/03/Screen-Shot-2021-03-17-at-9.44.14-PM.png'),(3924,3595,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1244;s:6:\"height\";i:700;s:4:\"file\";s:48:\"2021/03/Screen-Shot-2021-03-17-at-9.44.14-PM.png\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-300x169.png\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-17-at-9.44.14-PM-1024x576.png\";s:5:\"width\";i:1024;s:6:\"height\";i:576;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-768x432.png\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:46:\"Screen-Shot-2021-03-17-at-9.44.14-PM-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-17-at-9.44.14-PM-1244x430.png\";s:5:\"width\";i:1244;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-17-at-9.44.14-PM-1244x630.png\";s:5:\"width\";i:1244;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-705x397.png\";s:5:\"width\";i:705;s:6:\"height\";i:397;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:49:\"Screen-Shot-2021-03-17-at-9.44.14-PM-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-600x338.png\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:48:\"Screen-Shot-2021-03-17-at-9.44.14-PM-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3925,3596,'_wp_attached_file','2021/03/BrightFutureVideoStill.jpg'),(3926,3596,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:563;s:4:\"file\";s:34:\"2021/03/BrightFutureVideoStill.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-768x432.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:432;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:32:\"BrightFutureVideoStill-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:35:\"BrightFutureVideoStill-1000x430.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-845x563.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:563;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-705x397.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:397;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:35:\"BrightFutureVideoStill-1000x423.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"BrightFutureVideoStill-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-600x338.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:338;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"BrightFutureVideoStill-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3949,3607,'_wp_attached_file','2021/03/ControlPanel.jpg'),(3950,3607,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2021/03/ControlPanel.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"ControlPanel-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"ControlPanel-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"ControlPanel-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"ControlPanel-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"ControlPanel-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"ControlPanel-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"ControlPanel-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"ControlPanel-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"ControlPanel-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"ControlPanel-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"ControlPanel-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"ControlPanel-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"ControlPanel-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"ControlPanel-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"ControlPanel-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"ControlPanel-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"ControlPanel-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"ControlPanel-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"ControlPanel-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"ControlPanel-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"ControlPanel-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3951,3608,'_wp_attached_file','2021/03/MatSystemOff.jpg'),(3952,3608,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:24:\"2021/03/MatSystemOff.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"MatSystemOff-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"MatSystemOff-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:25:\"MatSystemOff-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:25:\"MatSystemOff-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:25:\"MatSystemOff-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"MatSystemOff-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"MatSystemOff-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3953,3609,'_wp_attached_file','2021/03/MatSystemOn.jpg'),(3954,3609,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2021/03/MatSystemOn.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MatSystemOn-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"MatSystemOn-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:24:\"MatSystemOn-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:24:\"MatSystemOn-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:24:\"MatSystemOn-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"MatSystemOn-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"MatSystemOn-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3979,3611,'_wp_attached_file','2021/05/SolSculptingWideLogoPR.jpg'),(3980,3611,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1436;s:6:\"height\";i:585;s:4:\"file\";s:34:\"2021/05/SolSculptingWideLogoPR.jpg\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-300x122.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideLogoPR-1024x417.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:417;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-768x313.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:32:\"SolSculptingWideLogoPR-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideLogoPR-1436x430.jpg\";s:5:\"width\";i:1436;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-845x585.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:585;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-705x287.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:287;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideLogoPR-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-600x244.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-600x244.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3981,3612,'_wp_attached_file','2021/05/Fav.jpg'),(3982,3612,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:195;s:6:\"height\";i:199;s:4:\"file\";s:15:\"2021/05/Fav.jpg\";s:5:\"sizes\";a:6:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:15:\"Fav-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:13:\"Fav-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:15:\"Fav-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:15:\"Fav-195x185.jpg\";s:5:\"width\";i:195;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:15:\"Fav-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:15:\"Fav-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3983,3613,'_wp_attached_file','2021/05/SolSculptingWideLogoPR.png'),(3984,3613,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1436;s:6:\"height\";i:585;s:4:\"file\";s:34:\"2021/05/SolSculptingWideLogoPR.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-300x122.png\";s:5:\"width\";i:300;s:6:\"height\";i:122;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideLogoPR-1024x417.png\";s:5:\"width\";i:1024;s:6:\"height\";i:417;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-768x313.png\";s:5:\"width\";i:768;s:6:\"height\";i:313;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:32:\"SolSculptingWideLogoPR-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideLogoPR-1436x430.png\";s:5:\"width\";i:1436;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-845x585.png\";s:5:\"width\";i:845;s:6:\"height\";i:585;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-705x287.png\";s:5:\"width\";i:705;s:6:\"height\";i:287;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:35:\"SolSculptingWideLogoPR-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-600x244.png\";s:5:\"width\";i:600;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-600x244.png\";s:5:\"width\";i:600;s:6:\"height\";i:244;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculptingWideLogoPR-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3989,3616,'_wp_attached_file','2021/05/White-Logo-PNG.png'),(3990,3616,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:5037;s:6:\"height\";i:1461;s:4:\"file\";s:26:\"2021/05/White-Logo-PNG.png\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"White-Logo-PNG-300x87.png\";s:5:\"width\";i:300;s:6:\"height\";i:87;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-1024x297.png\";s:5:\"width\";i:1024;s:6:\"height\";i:297;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-768x223.png\";s:5:\"width\";i:768;s:6:\"height\";i:223;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-1536x446.png\";s:5:\"width\";i:1536;s:6:\"height\";i:446;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-2048x594.png\";s:5:\"width\";i:2048;s:6:\"height\";i:594;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"White-Logo-PNG-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-1500x435.png\";s:5:\"width\";i:1500;s:6:\"height\";i:435;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-705x204.png\";s:5:\"width\";i:705;s:6:\"height\";i:204;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:27:\"White-Logo-PNG-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-600x174.png\";s:5:\"width\";i:600;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"White-Logo-PNG-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-600x174.png\";s:5:\"width\";i:600;s:6:\"height\";i:174;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"White-Logo-PNG-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3991,3625,'_wp_attached_file','2021/05/Screenshot-2021-05-19-220635.jpg'),(3992,3625,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1506;s:6:\"height\";i:846;s:4:\"file\";s:40:\"2021/05/Screenshot-2021-05-19-220635.jpg\";s:5:\"sizes\";a:22:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-300x169.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:169;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Screenshot-2021-05-19-220635-1024x575.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:575;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-768x431.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:431;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:38:\"Screenshot-2021-05-19-220635-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:41:\"Screenshot-2021-05-19-220635-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:41:\"Screenshot-2021-05-19-220635-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:41:\"Screenshot-2021-05-19-220635-1500x843.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:843;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-705x396.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:41:\"Screenshot-2021-05-19-220635-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-600x337.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:337;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-220635-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3993,3626,'_wp_attached_file','2021/05/Screenshot-2021-05-19-221653.jpg'),(3994,3626,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:897;s:6:\"height\";i:463;s:4:\"file\";s:40:\"2021/05/Screenshot-2021-05-19-221653.jpg\";s:5:\"sizes\";a:19:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-300x155.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:155;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-768x396.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:396;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:38:\"Screenshot-2021-05-19-221653-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-897x430.jpg\";s:5:\"width\";i:897;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-845x463.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:463;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-705x364.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:364;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-897x423.jpg\";s:5:\"width\";i:897;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-600x310.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:310;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:40:\"Screenshot-2021-05-19-221653-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3997,3631,'_wp_attached_file','2022/03/Acr19400294262272409359.jpg'),(3998,3631,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1601;s:6:\"height\";i:1601;s:4:\"file\";s:35:\"2022/03/Acr19400294262272409359.jpg\";s:5:\"sizes\";a:24:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"Acr19400294262272409359-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:37:\"Acr19400294262272409359-1536x1536.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"Acr19400294262272409359-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272409359-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272409359-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:37:\"Acr19400294262272409359-1500x1500.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-705x705.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272409359-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Acr19400294262272409359-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272409359-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"elementor_custom_600x600\";a:4:{s:4:\"file\";s:87:\"elementor/thumbs/Acr19400294262272409359-plxfx07636tpw24igxa086savsot2sk01adtqyftkg.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(3999,3632,'_wp_attached_file','2022/03/Acr19400294262272711761.jpg'),(4000,3632,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1280;s:6:\"height\";i:960;s:4:\"file\";s:35:\"2022/03/Acr19400294262272711761.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272711761-1024x768.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-768x576.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"Acr19400294262272711761-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272711761-1280x430.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272711761-1280x630.jpg\";s:5:\"width\";i:1280;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-705x529.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:529;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"Acr19400294262272711761-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"Acr19400294262272711761-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-600x450.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:450;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"Acr19400294262272711761-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4001,3633,'_wp_attached_file','2022/03/BodyScan1.jpg'),(4002,3633,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:367;s:6:\"height\";i:269;s:4:\"file\";s:21:\"2022/03/BodyScan1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BodyScan1-300x220.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:220;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"BodyScan1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"BodyScan1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"BodyScan1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"BodyScan1-300x269.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"BodyScan1-300x269.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:269;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4003,3634,'_wp_attached_file','2022/03/BodyScan2.jpg'),(4004,3634,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:363;s:6:\"height\";i:272;s:4:\"file\";s:21:\"2022/03/BodyScan2.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BodyScan2-300x225.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"BodyScan2-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"BodyScan2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"BodyScan2-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"BodyScan2-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"BodyScan2-300x272.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:272;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4005,3635,'_wp_attached_file','2022/03/BodyScan3.jpg'),(4006,3635,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:339;s:6:\"height\";i:276;s:4:\"file\";s:21:\"2022/03/BodyScan3.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"BodyScan3-300x244.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:244;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan3-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"BodyScan3-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"BodyScan3-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"BodyScan3-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"BodyScan3-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"BodyScan3-300x276.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:276;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"BodyScan3-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(4007,3636,'_wp_attached_file','2022/03/ChiropractorRoom2.jpg'),(4008,3636,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1200;s:6:\"height\";i:1200;s:4:\"file\";s:29:\"2022/03/ChiropractorRoom2.jpg\";s:5:\"sizes\";a:21:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"ChiropractorRoom2-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:27:\"ChiropractorRoom2-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:30:\"ChiropractorRoom2-1200x430.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:30:\"ChiropractorRoom2-1200x630.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-705x705.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:30:\"ChiropractorRoom2-1200x423.jpg\";s:5:\"width\";i:1200;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"ChiropractorRoom2-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"ChiropractorRoom2-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:83:\"Peter Barrot of DIgital Studio owns the Rights to this imagery.\nPhone: 415.648.6408\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4009,3637,'_wp_attached_file','2022/03/DS_2021_61233Background.png'),(4010,3637,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:1589;s:4:\"file\";s:35:\"2022/03/DS_2021_61233Background.png\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-189x300.png\";s:5:\"width\";i:189;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-644x1024.png\";s:5:\"width\";i:644;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-768x1220.png\";s:5:\"width\";i:768;s:6:\"height\";i:1220;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-967x1536.png\";s:5:\"width\";i:967;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:33:\"DS_2021_61233Background-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-1000x430.png\";s:5:\"width\";i:1000;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-1000x630.png\";s:5:\"width\";i:1000;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-944x1500.png\";s:5:\"width\";i:944;s:6:\"height\";i:1500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-444x705.png\";s:5:\"width\";i:444;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:36:\"DS_2021_61233Background-1000x423.png\";s:5:\"width\";i:1000;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-600x953.png\";s:5:\"width\";i:600;s:6:\"height\";i:953;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:35:\"DS_2021_61233Background-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-600x953.png\";s:5:\"width\";i:600;s:6:\"height\";i:953;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:35:\"DS_2021_61233Background-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4011,3638,'_wp_attached_file','2022/03/DS_2021_61350.jpg'),(4012,3638,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:4:\"file\";s:25:\"2022/03/DS_2021_61350.jpg\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"DS_2021_61350-1024x1024.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-768x768.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:23:\"DS_2021_61350-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"DS_2021_61350-1500x430.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:26:\"DS_2021_61350-1500x630.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:27:\"DS_2021_61350-1500x1500.jpg\";s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-845x684.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-705x705.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-845x321.jpg\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"DS_2021_61350-1210x423.jpg\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:25:\"DS_2021_61350-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-600x600.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:25:\"DS_2021_61350-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:24:\"elementor_custom_600x600\";a:4:{s:4:\"file\";s:77:\"elementor/thumbs/DS_2021_61350-plxfx07636tpw24igxa086savsot2sk01adtqyftkg.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:83:\"Peter Barrot of DIgital Studio owns the Rights to this imagery.\nPhone: 415.648.6408\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4013,3639,'_wp_attached_file','2022/03/Mitochondria.jpg'),(4014,3639,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:510;s:6:\"height\";i:540;s:4:\"file\";s:24:\"2022/03/Mitochondria.jpg\";s:5:\"sizes\";a:14:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"Mitochondria-283x300.jpg\";s:5:\"width\";i:283;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"Mitochondria-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"Mitochondria-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:24:\"Mitochondria-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:24:\"Mitochondria-510x430.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:24:\"Mitochondria-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:24:\"Mitochondria-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:24:\"Mitochondria-510x375.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:24:\"Mitochondria-510x321.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:24:\"Mitochondria-510x423.jpg\";s:5:\"width\";i:510;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:24:\"Mitochondria-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:24:\"Mitochondria-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:24:\"Mitochondria-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:24:\"Mitochondria-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4015,3640,'_wp_attached_file','2022/03/Mitochondria_1.jpg'),(4016,3640,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:810;s:6:\"height\";i:540;s:4:\"file\";s:26:\"2022/03/Mitochondria_1.jpg\";s:5:\"sizes\";a:18:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:24:\"Mitochondria_1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"featured\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-810x430.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:430;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-495x400.jpg\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-710x375.jpg\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-705x470.jpg\";s:5:\"width\";i:705;s:6:\"height\";i:470;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-810x321.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:321;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-810x423.jpg\";s:5:\"width\";i:810;s:6:\"height\";i:423;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:26:\"Mitochondria_1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-600x400.jpg\";s:5:\"width\";i:600;s:6:\"height\";i:400;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:26:\"Mitochondria_1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4017,3641,'_wp_attached_file','2022/03/SolSculptingUnitCart.png'),(4018,3641,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:2000;s:6:\"height\";i:2000;s:4:\"file\";s:32:\"2022/03/SolSculptingUnitCart.png\";s:5:\"sizes\";a:23:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"SolSculptingUnitCart-1024x1024.png\";s:5:\"width\";i:1024;s:6:\"height\";i:1024;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-768x768.png\";s:5:\"width\";i:768;s:6:\"height\";i:768;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"SolSculptingUnitCart-1536x1536.png\";s:5:\"width\";i:1536;s:6:\"height\";i:1536;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:30:\"SolSculptingUnitCart-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:33:\"SolSculptingUnitCart-1500x430.png\";s:5:\"width\";i:1500;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:33:\"SolSculptingUnitCart-1500x630.png\";s:5:\"width\";i:1500;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"extra_large\";a:4:{s:4:\"file\";s:34:\"SolSculptingUnitCart-1500x1500.png\";s:5:\"width\";i:1500;s:6:\"height\";i:1500;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-705x705.png\";s:5:\"width\";i:705;s:6:\"height\";i:705;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:33:\"SolSculptingUnitCart-1210x423.png\";s:5:\"width\";i:1210;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:32:\"SolSculptingUnitCart-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-600x600.png\";s:5:\"width\";i:600;s:6:\"height\";i:600;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:32:\"SolSculptingUnitCart-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4024,3642,'_elementor_edit_mode','builder'),(4025,3642,'_elementor_template_type','kit'),(4028,3644,'_edit_lock','1670027698:5'),(4029,3644,'_edit_last','6'),(4030,3644,'_elementor_edit_mode','builder'),(4031,3644,'_elementor_template_type','wp-page'),(4032,3644,'_elementor_version','3.7.8'),(4033,3644,'_elementor_pro_version','3.7.7'),(4034,3644,'_av_el_mgr_version','1.0'),(4035,3644,'_av_alb_posts_elements_state','a:0:{}'),(4037,3644,'_wp_page_template','default'); INSERT INTO `wp_postmeta` VALUES (4038,3644,'_elementor_data','[{\"id\":\"14d4196\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"48d20bb\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"custom_height\":{\"unit\":\"px\",\"size\":366,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"24b4e80\"}]},\"elements\":[{\"id\":\"ae6feb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.015,\"pa_condition_repeater\":[{\"_id\":\"c005d23\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"a78125e\"}]},\"elements\":[{\"id\":\"7a82996\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-Tall.png\",\"id\":3646,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"4498727\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5f2b6fe\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"228abe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h1>Introducing SolSculpting<\\/h1>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"3e3454c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a2b99e7\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8e4ab7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optimal power for Optimal results<\\/p>\",\"align\":\"center\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"306a3e9\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f2bf361\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"91263c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.985,\"pa_condition_repeater\":[{\"_id\":\"e81294a\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"112c6d0\"}]},\"elements\":[{\"id\":\"8ee5119\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/chri1.jpg\",\"id\":3750,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7bc43ca\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"373e10c\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edeaa07\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"a9e12d3\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"eael_cl_logics\":[{\"_id\":\"fab4619\"}]},\"elements\":[{\"id\":\"01ac430\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b2d3072\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"749240b\"}]},\"elements\":[{\"id\":\"2d3ff04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want to see \\\"less and less\\\" of your patients?<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-32\",\"left\":\"-10\",\"isLinked\":false},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a3d90af\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6fd1e4b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7450715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With SolSculpting, you will!!\\u00a0 \\u00a0Just look at these real patient progress scans!<\\/p>\",\"align\":\"center\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"83e8b5d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"47d46e1\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95683cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e4e4178\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"9c28e94\"}]},\"elements\":[{\"id\":\"f071659\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b28db88\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"1bb5f3b\"}]},\"elements\":[{\"id\":\"c2ceda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-17-inches.jpg\",\"id\":3710,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0049c6f\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"3b2a636\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"27d228c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"e31436e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"70992d4\"}]},\"elements\":[{\"id\":\"1f7ea16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-14.2-inches.jpg\",\"id\":3711,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0049c6f\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"cca68fd\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2f53757\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"ed35139\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"64f7a29\"}]},\"elements\":[{\"id\":\"4d5e281\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-12.2-inches.jpg\",\"id\":3712,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0049c6f\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5e1d49c\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b13573\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"-10\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"463d919\"}]},\"elements\":[{\"id\":\"1543ecc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"19f0621\"}]},\"elements\":[{\"id\":\"79998e59\",\"elType\":\"widget\",\"settings\":{\"title\":\"REQUEST SOLSCULPTING SYSTEM PRICING\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"870780f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60e547a9\",\"elType\":\"widget\",\"settings\":{\"text\":\"REQUEST PRICING\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"91b0fd1\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df03195\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"a7e56ce\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"93249e6\"}]},\"elements\":[{\"id\":\"ccf64b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"pa_condition_repeater\":[{\"_id\":\"f54cbef\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_inline_size_mobile\":100,\"eael_cl_logics\":[{\"_id\":\"e1cd84c\"}]},\"elements\":[{\"id\":\"770364c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Acr19400294262272409359.jpg\",\"id\":3631,\"alt\":\"\",\"source\":\"library\"},\"space\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6b0100e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"},\"align\":\"center\",\"eael_cl_logics\":[{\"_id\":\"c3726d3\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"982f7d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pa_condition_repeater\":[{\"_id\":\"5a639b8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"77\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"30d82b4\"}]},\"elements\":[{\"id\":\"7b2424b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Red Light Therapy?\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"663f11f\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"00a6664\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d88181\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Science Based\",\"_id\":\"5d51433\"},{\"text\":\"Works at Cellular Level\",\"_id\":\"3881bd5\"},{\"text\":\"Oxygenates the Cells\",\"_id\":\"bc1cbdb\"},{\"text\":\"Wavelengths of Natural Light\",\"_id\":\"a83585d\"},{\"text\":\"Tangible Results\",\"_id\":\"913744d\"},{\"text\":\"Provides Nutrients to the Cells\",\"_id\":\"1c7baf0\"}],\"icon_color\":\"#000000\",\"text_color\":\"#515151\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8ffd670\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"979874e\"}]},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a47c3a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"a7e56ce\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"c536c9d\"}]},\"elements\":[{\"id\":\"9b90bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pa_condition_repeater\":[{\"_id\":\"5a639b8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"84\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"a8df77f\"}]},\"elements\":[{\"id\":\"37e7101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Red Light Results\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fc6726c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"917c686\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58761de\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fat Reduction\",\"_id\":\"5d51433\"},{\"text\":\"Body Sculpting\",\"_id\":\"3881bd5\"},{\"text\":\"Eliminates Cellulite\",\"_id\":\"bc1cbdb\"},{\"text\":\"Skin Tightening\",\"_id\":\"a83585d\"},{\"text\":\"Skin Rejuvenation\",\"_id\":\"913744d\"},{\"text\":\"Relieves Pain & Inflammation\",\"_id\":\"1c7baf0\"},{\"text\":\"Anti-Aging\",\"_id\":\"deecb8a\"},{\"text\":\"Boost Collagen Production\",\"_id\":\"75f0d7b\"},{\"text\":\"Muscle Recovery\",\"_id\":\"454f422\"},{\"text\":\"Promotes Sleep\",\"_id\":\"0067f02\"}],\"icon_color\":\"#000000\",\"text_color\":\"#515151\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8ffd670\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c45ce58\"}]},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"f4ba0bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"pa_condition_repeater\":[{\"_id\":\"f54cbef\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"dc3ccbe\"}]},\"elements\":[{\"id\":\"1271f75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/DS_2021_61350.jpg\",\"id\":3638,\"alt\":\"\",\"source\":\"library\"},\"space\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6b0100e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"},\"eael_cl_logics\":[{\"_id\":\"f12d63c\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1886cee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"81de824\"}]},\"elements\":[{\"id\":\"0f3baa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9cbde6d\"}]},\"elements\":[{\"id\":\"8068832\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERESTED IN LEARNING MORE?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ce2c4fa\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"504957b\",\"elType\":\"widget\",\"settings\":{\"text\":\"BOOK AN APPOINTMENT\",\"link\":{\"url\":\"http:\\/\\/calendly.com\\/solsculpting-systems\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"3d2a0c6\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0da65d2\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"2efb5f6\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"9fc79ad\"}]},\"elements\":[{\"id\":\"341ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13.768,\"pa_condition_repeater\":[{\"_id\":\"42faf8c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"bda99d4\"}]},\"elements\":[],\"isInner\":false},{\"id\":\"ee48319\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":65.019,\"pa_condition_repeater\":[{\"_id\":\"0672118\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"eb3bb44\"}]},\"elements\":[{\"id\":\"1e94ae7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolVibranBenefits.png\",\"id\":3651,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a6b9773\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7754b89\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"85dd67e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.877,\"pa_condition_repeater\":[{\"_id\":\"154ccb0\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"1ae64f0\"}]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"90f00fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"ba063da\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"__globals__\":{\"background_color\":\"\"},\"hide_mobile\":\"hidden-mobile\",\"eael_cl_logics\":[{\"_id\":\"fe57338\"}]},\"elements\":[{\"id\":\"c3a4a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b4bc2e0\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7e25ec7\"}]},\"elements\":[{\"id\":\"5f663e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reduce\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"562c5ad\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"0fd1291\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac155e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tighten, tone, and reduce stubborn fat anywhere. Stimulates the fat cells to release the stored fat. The skin becomes visibly tighter.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e2ee3ba\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"4eed49b\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9cf87ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"e96304e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c9859e6\"}]},\"elements\":[{\"id\":\"9f69655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rejuvenate\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"62636a6\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"3adbf01\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cac5579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Stimulate the mitochondria\'s ATP production. Increases cellular energy, dramatically improves skin heal & boosts collagen production by up to 31%.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f8f2445\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c421a70\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d5d68d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"bae53f1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9915a34\"}]},\"elements\":[{\"id\":\"bffaf49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relieve\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"205cb66\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5db780a\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87c6cc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Decreases pain and inflammation, speeds up muscle recovery by providing stimulation to the muscle tissue resulting in enhanced blood circulation.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"11615db\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"61bc1de\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8571f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a6f4d23\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e4699ce\"}]},\"elements\":[{\"id\":\"772804e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relax\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7460c5b\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"4ec72b6\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66a28d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detoxifies the body, balances circadian rhythm & promotes deeper sleep. Calms anxiety & increases melatonin production.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ce50060\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"dac1381\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cbab525\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"ba063da\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"__globals__\":{\"background_color\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"eael_cl_logics\":[{\"_id\":\"640cdb2\"}]},\"elements\":[{\"id\":\"f13c9ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b4bc2e0\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"c834927\"}]},\"elements\":[{\"id\":\"50c438a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reduce\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"562c5ad\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e4a159f\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865075b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tighten, tone, and reduce stubborn fat anywhere. Stimulates the fat cells to release the stored fat. The skin becomes visibly tighter.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e2ee3ba\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"1460701\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b0c4b89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"e96304e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"8d89a24\"}]},\"elements\":[{\"id\":\"d46078d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rejuvenate\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"62636a6\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"3b4557c\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e43e81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Stimulate the mitochondria\'s ATP production. Increases cellular energy, dramatically improves skin heal & boosts collagen production by up to 31%.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f8f2445\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"94efccc\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68ca245\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"bae53f1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"e37da52\"}]},\"elements\":[{\"id\":\"b22a150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relieve\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"205cb66\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6c624ee\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6c8065\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Decreases pain and inflammation, speeds up muscle recovery by providing stimulation to the muscle tissue resulting in enhanced blood circulation.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"11615db\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"1e1347f\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b64902c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a6f4d23\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"24e442c\"}]},\"elements\":[{\"id\":\"7b97cad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relax\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7460c5b\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9282b2d\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c2237a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detoxifies the body, balances circadian rhythm & promotes deeper sleep. Calms anxiety & increases melatonin production.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ce50060\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d31e4b4\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c2d522c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"362c98d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"515b98d\"}]},\"elements\":[{\"id\":\"244dc14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"4d92da5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7b5dbab\"}]},\"elements\":[{\"id\":\"7c65934\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/MatControls.jpg\",\"id\":3724,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"7d78e2f\"},{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/MatsOnCart.jpg\",\"id\":3725,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0052fa0\"},{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/MatsOnTable.jpg\",\"id\":3726,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"5fe6c64\"}],\"show_arrows\":\"\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":389,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pagination\":\"\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"17bc1e3\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"418af00\"}]},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c70a16\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"027befc\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"96e22af\"}]},\"elements\":[{\"id\":\"7adf1ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.175,\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"eb05ef2\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"b9df485\"}]},\"elements\":[{\"id\":\"d27c9e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"SolSculpting System\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"582d97c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8e85574\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"395a524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Everything you need to easily transfer the system between patient rooms.<br><br>\\n\\n<strong>OVER 24,000 LIGHTS<\\/strong> (8 individual pads)\\n8 channel controller individually controls optic power\\nDigital interface with treatment set point & timer<br><br>\\n\\n<strong>8 PADS<\\/strong>\\n3 Long (32.5\\u2033 L x 11.25\\u2033 W)\\n2 Medium (25.63\\u2033 L x 11.25\\u2033 W)\\n2 Small (18.88\\u2033 L x 11.25\\u2033 W)\\n1 Neck\\/Chin (11.38\\u2033 L x 8.5\\u2033 W)<br><br>\\n\\n*Cart not included<br>\\n2-year warranty.\\n<br>Ask about our financing options.\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f68af18\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"4b04712\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"81bebed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request Pricing\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E7A900\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FC3A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"background_background\":\"gradient\",\"background_color_b\":\"#E20531\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"button_background_hover_background\":\"gradient\",\"button_background_hover_color_b\":\"#920036\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"bdc9338\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile\":\"hidden-mobile\",\"eael_cl_logics\":[{\"_id\":\"73a9976\"}]},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67e63c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request Pricing\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E7A900\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FC3A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"background_background\":\"gradient\",\"background_color_b\":\"#E20531\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"button_background_hover_background\":\"gradient\",\"button_background_hover_color_b\":\"#920036\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"bdc9338\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"center\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"eael_cl_logics\":[{\"_id\":\"e51089b\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5359378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.781,\"pa_condition_repeater\":[{\"_id\":\"ff58a88\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"4870f2a\"}]},\"elements\":[{\"id\":\"5fb1611\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/DS_2021_61233Background.png\",\"id\":3637,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"249ad4b\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a5a343f\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b370d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"731627b\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"cc008d3\"}]},\"elements\":[{\"id\":\"6a14ef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"21d690d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"3daeb06\"}]},\"elements\":[{\"id\":\"d24b250\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/422517294\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/Screenshot-2021-05-19-221653.jpg\",\"id\":3626,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"05749b4\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9981e48\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"3ad002d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"7b40dca\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"b8a4d7f\"}]},\"elements\":[{\"id\":\"ab2414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Science of Red Light Therapy - Photobiomodulation\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fde9cbb\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"aa3e861\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf75f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the 1990s NASA developed a more practical light source, to grow plants in space, named the Astroculture 3. It wasn\\u2019t long before the same LED technology would be found useful in the treatment of astronaut\\u2019s bone and muscle loss that occurs in zero gravity.<\\/p><p>The application of these high-intensity, wavelength-specific lights, would be called photobiomodulation (PBMT). Photobiomodulation (PBMT) affects the cell\\u2019s mitochondria and other key parts assisting in the optimization of the cells. A little over two decades later, these powerful light systems are being used for fat loss, pain, anti-aging, inflammation, and much more.<\\/p><p>Today photobiomodulation (PBMT) is lighting the path to well-being from the astroturf to the astronauts.<\\/p>\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d74aaa1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e853b2f\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33b25f4\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"1c055e5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"6179ca6\"}]},\"elements\":[{\"id\":\"c483c1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"501dc31\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"36bef53\"}]},\"elements\":[{\"id\":\"7592f77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"dd981c6\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"667c182\"}]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36cc3c23\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3eedb04\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"147a871\"}]},\"elements\":[{\"id\":\"7dc2bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"10c20e8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"18a795e\"}]},\"elements\":[{\"id\":\"5f163618\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We\\u2019re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting\\u2019s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JeanneHeadshot.jpg\",\"id\":3284,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jeanne McDonald\",\"testimonial_job\":\"Orange County, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c01e2df\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8d7c7fb\"}]},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"5f8f57e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"e99d893\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"73c8a50\"}]},\"elements\":[{\"id\":\"3c4c815f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can\\u2019t help but tell all their friends. I started as a boutique spa, but I know it\\u2019s going to outgrow the space I\\u2019m currently in. It\\u2019s so fulfilling to own my own spa that changes people\\u2019s lives in a tangible way.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JenniferHeadshot.jpg\",\"id\":3283,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jennifer Sharp\",\"testimonial_job\":\"Sacramento, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"1efc283\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ec8782f\"}]},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47bf88db\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"7b68014\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"9bdc347\"}]},\"elements\":[{\"id\":\"77913e61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"121c624\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"eec523f\"}]},\"elements\":[{\"id\":\"6e5c0152\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Arro-Icon-1.png\",\"id\":3664,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f63c172\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"378899fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9145017\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f4a88f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It\\u2019s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"842523c\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a4b1fef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"d591c99\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d9c8214\"}]},\"elements\":[{\"id\":\"41000b31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/bolt-icon-1.png\",\"id\":3663,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"80ecb5d\"}]},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5e835991\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f23a393\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63e3804d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.\\n<p><a name=\\\"contact\\\"><\\/a><\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"02e1c4e\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56794a63\",\"elType\":\"widget\",\"settings\":{\"text\":\"LEARN MORE\",\"link\":{\"url\":\"https:\\/\\/www.cancer.gov\\/about-cancer\\/causes-prevention\\/risk\\/radiation\\/electromagnetic-fields-fact-sheet\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#2B2B2B\",\"background_color\":\"#F8F8F8\",\"border_border\":\"solid\",\"border_color\":\"#35383C\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"50cdfa4\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7826791\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27230248\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"eael_parallax_switcher\":\"yes\",\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/ChiroBackgroundSectionV2.jpg\",\"id\":3728,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"1f588be\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"cfdd74a\"}]},\"elements\":[{\"id\":\"38c47aff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"64345d1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f1606f2\"}]},\"elements\":[{\"id\":\"18e1563b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"035ea52\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"4c84e81\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"319e3124\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"SolSculpting Request Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"_id\":\"318113a\",\"required\":\"true\"},{\"_id\":\"b5f1198\",\"field_label\":\"Company Name\",\"required\":\"true\",\"custom_id\":\"CompanyName\",\"width\":\"50\"},{\"_id\":\"e7f5ebf\",\"field_label\":\"Company Address\",\"custom_id\":\"CompanyAddress\",\"width\":\"50\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"1efb56c\",\"width\":\"50\"},{\"_id\":\"c5a9c47\",\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"Phone\",\"width\":\"50\"},{\"_id\":\"028b3d4\",\"field_type\":\"checkbox\",\"field_label\":\"Would you like to place an order?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"30\",\"custom_id\":\"PlaceOrder\"},{\"field_type\":\"checkbox\",\"field_label\":\"Would you like pricing information?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"33\",\"custom_id\":\"PricingInfo\",\"_id\":\"c56ec4f\"},{\"field_type\":\"checkbox\",\"field_label\":\"Need financing?<br\",\"field_options\":\"Yes\\nNo\",\"width\":\"33\",\"custom_id\":\"NeedFinancing\",\"_id\":\"02a580e\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer weightloss programs?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"WeightlossProgams\",\"_id\":\"e5390e4\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer body sculpting?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"BodySculpting\",\"_id\":\"6767310\",\"inline_list\":\"elementor-subgroup-inline\"},{\"_id\":\"5f4ca25\",\"field_type\":\"honeypot\",\"custom_id\":\"field_5f4ca25\"},{\"_id\":\"10032a3\",\"field_type\":\"recaptcha_v3\",\"custom_id\":\"field_10032a3\",\"recaptcha_badge\":\"inline\",\"recaptcha_style\":\"dark\"}],\"input_size\":\"xs\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"alicia@solsculpting.com\",\"email_subject\":\"New SolSculpting Request Form\",\"email_content\":\"[all-fields]\",\"email_from\":\"No-Reply@solsculptin.com\",\"email_from_name\":\"SolSculpting\",\"email_to_2\":\"hello@saramichelleds.com\",\"email_subject_2\":\"New message from "SolSculpting"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@solsculptinstg.wpengine.com\",\"email_from_name_2\":\"SolSculpting\",\"email_reply_to_2\":\"hello@saramichelleds.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#FFFFFF\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_background_color\":\"#E2053100\",\"previous_button_background_color\":\"#E2053100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f0fd6fa\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_transform_translate_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"__globals__\":{\"previous_button_background_color_hover\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_size\":\"xs\",\"submit_actions\":[\"save-to-database\",\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/11255420\\/bsdbhgm\\/\",\"webhooks_advanced_data\":\"yes\",\"label_color\":\"#FFFFFF\",\"html_color\":\"#FFFFFF\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"050\",\"bottom\":\"10\",\"left\":\"050\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"success_message_color\":\"#FFFFFF\",\"error_message_color\":\"#FF0000\",\"eael_cl_logics\":[{\"_id\":\"0ad7bfb\"}]},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"407cb5f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We value your privacy. We never send you any spam or pass your information to 3rd parties.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8523774\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6a31f45\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4040,3644,'_yoast_wpseo_content_score','90'),(4041,3644,'_yoast_wpseo_estimated-reading-time-minutes','7'),(4044,3646,'_wp_attached_file','2022/03/SolSculpting-Tall.png'),(4045,3646,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:438;s:6:\"height\";i:311;s:4:\"file\";s:29:\"2022/03/SolSculpting-Tall.png\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-300x213.png\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:27:\"SolSculpting-Tall-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"SolSculpting-Tall-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"SolSculpting-Tall-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4048,3648,'_wp_attached_file','2022/03/SpectrumRule.jpg'),(4049,3648,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:400;s:6:\"height\";i:11;s:4:\"file\";s:24:\"2022/03/SpectrumRule.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"SpectrumRule-300x8.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:8;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"SpectrumRule-150x11.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:22:\"SpectrumRule-36x11.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"SpectrumRule-180x11.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"SpectrumRule-260x11.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"SpectrumRule-100x11.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"SpectrumRule-300x11.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"SpectrumRule-300x11.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"SpectrumRule-100x11.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:11;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4050,3649,'_wp_attached_file','2022/03/Red-Light.png'),(4051,3649,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:471;s:6:\"height\";i:335;s:4:\"file\";s:21:\"2022/03/Red-Light.png\";s:5:\"sizes\";a:10:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"Red-Light-300x213.png\";s:5:\"width\";i:300;s:6:\"height\";i:213;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"Red-Light-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:19:\"Red-Light-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:21:\"Red-Light-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:21:\"Red-Light-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:21:\"Red-Light-471x321.png\";s:5:\"width\";i:471;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:21:\"Red-Light-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:21:\"Red-Light-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:21:\"Red-Light-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:21:\"Red-Light-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4064,3651,'_wp_attached_file','2022/03/SolVibranBenefits.png'),(4065,3651,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:696;s:4:\"file\";s:29:\"2022/03/SolVibranBenefits.png\";s:5:\"sizes\";a:20:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-300x209.png\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-768x535.png\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"widget\";a:4:{s:4:\"file\";s:27:\"SolVibranBenefits-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"square\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"featured\";a:4:{s:4:\"file\";s:30:\"SolVibranBenefits-1000x430.png\";s:5:\"width\";i:1000;s:6:\"height\";i:430;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"featured_large\";a:4:{s:4:\"file\";s:30:\"SolVibranBenefits-1000x630.png\";s:5:\"width\";i:1000;s:6:\"height\";i:630;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"portfolio\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-495x400.png\";s:5:\"width\";i:495;s:6:\"height\";i:400;s:9:\"mime-type\";s:9:\"image/png\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-260x185.png\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"gallery\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-845x684.png\";s:5:\"width\";i:845;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:8:\"magazine\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-710x375.png\";s:5:\"width\";i:710;s:6:\"height\";i:375;s:9:\"mime-type\";s:9:\"image/png\";}s:7:\"masonry\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-705x491.png\";s:5:\"width\";i:705;s:6:\"height\";i:491;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"entry_with_sidebar\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-845x321.png\";s:5:\"width\";i:845;s:6:\"height\";i:321;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"entry_without_sidebar\";a:4:{s:4:\"file\";s:30:\"SolVibranBenefits-1000x423.png\";s:5:\"width\";i:1000;s:6:\"height\";i:423;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"shop_single\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-600x418.png\";s:5:\"width\";i:600;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:29:\"SolVibranBenefits-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";s:9:\"uncropped\";b:0;}s:18:\"woocommerce_single\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-600x418.png\";s:5:\"width\";i:600;s:6:\"height\";i:418;s:9:\"mime-type\";s:9:\"image/png\";}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:29:\"SolVibranBenefits-100x100.png\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4068,3652,'_wp_attached_file','2022/03/BodyScan3-1.jpg'),(4069,3652,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:275;s:4:\"file\";s:23:\"2022/03/BodyScan3-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-300x243.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"BodyScan3-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BodyScan3-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan3-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4070,3653,'_wp_attached_file','2022/03/BodyScan2-1.jpg'),(4071,3653,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:275;s:4:\"file\";s:23:\"2022/03/BodyScan2-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-300x243.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"BodyScan2-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BodyScan2-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan2-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4072,3654,'_wp_attached_file','2022/03/BodyScan1-1.jpg'),(4073,3654,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:340;s:6:\"height\";i:275;s:4:\"file\";s:23:\"2022/03/BodyScan1-1.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-300x243.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:243;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"BodyScan1-1-36x36.jpg\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"square\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-180x180.jpg\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:15:\"portfolio_small\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-260x185.jpg\";s:5:\"width\";i:260;s:6:\"height\";i:185;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"shop_thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"shop_catalog\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:21:\"woocommerce_thumbnail\";a:5:{s:4:\"file\";s:23:\"BodyScan1-1-300x275.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:275;s:9:\"mime-type\";s:10:\"image/jpeg\";s:9:\"uncropped\";b:0;}s:29:\"woocommerce_gallery_thumbnail\";a:4:{s:4:\"file\";s:23:\"BodyScan1-1-100x100.jpg\";s:5:\"width\";i:100;s:6:\"height\";i:100;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4107,3663,'_wp_attached_file','2022/03/bolt-icon-1.png'),(4108,3663,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:23:\"2022/03/bolt-icon-1.png\";s:5:\"sizes\";a:1:{s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"bolt-icon-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4109,3664,'_wp_attached_file','2022/03/Arro-Icon-1.png'),(4110,3664,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:23:\"2022/03/Arro-Icon-1.png\";s:5:\"sizes\";a:1:{s:6:\"widget\";a:4:{s:4:\"file\";s:21:\"Arro-Icon-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4111,3665,'_wp_attached_file','2022/03/Report-Icon-1.png'),(4112,3665,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:65;s:6:\"height\";i:65;s:4:\"file\";s:25:\"2022/03/Report-Icon-1.png\";s:5:\"sizes\";a:1:{s:6:\"widget\";a:4:{s:4:\"file\";s:23:\"Report-Icon-1-36x36.png\";s:5:\"width\";i:36;s:6:\"height\";i:36;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4114,3644,'_oembed_66598b2e2f3d636c03560c6e54277b95','<iframe title=\"Light Therapy Explained\" src=\"https://player.vimeo.com/video/422517294?h=dc6a58e715&dnt=1&app_id=122963\" width=\"1280\" height=\"660\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(4115,3644,'_oembed_time_66598b2e2f3d636c03560c6e54277b95','1647028319'),(4170,3667,'_wp_attached_file','2021/05/cropped-SolSculptingWideLogoPR.png'),(4171,3667,'_wp_attachment_context','custom-logo'),(4172,3667,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1436;s:6:\"height\";i:411;s:4:\"file\";s:42:\"2021/05/cropped-SolSculptingWideLogoPR.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"cropped-SolSculptingWideLogoPR-300x86.png\";s:5:\"width\";i:300;s:6:\"height\";i:86;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"cropped-SolSculptingWideLogoPR-1024x293.png\";s:5:\"width\";i:1024;s:6:\"height\";i:293;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"cropped-SolSculptingWideLogoPR-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"cropped-SolSculptingWideLogoPR-768x220.png\";s:5:\"width\";i:768;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4175,3669,'_elementor_edit_mode','builder'),(4176,3669,'_elementor_template_type','header'),(4177,3669,'_elementor_version','3.6.4'),(4178,3669,'_elementor_pro_version','3.6.5'),(4179,3669,'_edit_lock','1650485629:2'),(4181,3670,'_elementor_source_image_hash','4c63b80a69770b076517700a2190de38fffa98c0'),(4182,3671,'_wp_attached_file','2022/03/logo-white-1.png'),(4183,3671,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:443;s:6:\"height\";i:98;s:4:\"file\";s:24:\"2022/03/logo-white-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"logo-white-1-300x66.png\";s:5:\"width\";i:300;s:6:\"height\";i:66;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"logo-white-1-150x98.png\";s:5:\"width\";i:150;s:6:\"height\";i:98;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4184,3671,'_elementor_source_image_hash','d3c8ec8ec5fbc0a7431926b924740a2f5f8f084d'),(4185,3669,'_wp_page_template','default'),(4186,3669,'_elementor_data','[{\"id\":\"16a8948a\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":90},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"layout\":\"full_width\",\"height\":\"min-height\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"6f14cc8\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"hide_mobile\":\"hidden-mobile\",\"eael_cl_logics\":[{\"_id\":\"119dbc1\"}]},\"elements\":[{\"id\":\"7b83f822\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[{\"_id\":\"9ae1e3b\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"hide_mobile\":\"hidden-mobile\",\"eael_cl_logics\":[{\"_id\":\"d3a2761\"}]},\"elements\":[{\"id\":\"1b9988ae\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3611,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/SolSculptingWideLogoPR.jpg\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"left\",\"space_tablet\":{\"unit\":\"%\",\"size\":35},\"space_mobile\":{\"unit\":\"%\",\"size\":100},\"width\":{\"unit\":\"px\",\"size\":249},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"53d6a27\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/solsculpting.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile\":\"hidden-mobile\",\"eael_cl_logics\":[{\"_id\":\"0693be5\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"461c1048\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":50,\"pa_condition_repeater\":[{\"_id\":\"c7c7796\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8691c79\"}]},\"elements\":[{\"id\":\"1475f421\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"toggle_align\":\"right\",\"color_menu_item\":\"rgba(255,255,255,0.42)\",\"color_menu_item_hover\":\"#00ce1b\",\"pointer_color_menu_item_hover\":\"#00ce1b\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":1},\"color_dropdown_item\":\"#757575\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"toggle_color\":\"#000000\",\"toggle_color_hover\":\"#afafaf\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"layout\":\"dropdown\",\"pointer\":\"text\",\"full_width\":\"stretch\",\"text_align\":\"center\",\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":15},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":22},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":40},\"menu\":\"main-menu\",\"dropdown_divider_color\":\"#8A8A8A\",\"toggle_background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ebc90c4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9802209\"}]},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"bb45256\",\"elType\":\"section\",\"settings\":{\"gap\":\"no\",\"custom_height\":{\"unit\":\"px\",\"size\":90},\"content_position\":\"middle\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"30\",\"bottom\":\"0\",\"left\":\"30\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"25\",\"right\":\"25\",\"bottom\":\"25\",\"left\":\"25\",\"isLinked\":true},\"layout\":\"full_width\",\"height\":\"min-height\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true},\"html_tag\":\"header\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"6f14cc8\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"315cdc0\"}],\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"0b014e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"pa_condition_repeater\":[{\"_id\":\"9ae1e3b\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"844d329\"}]},\"elements\":[{\"id\":\"6764e5a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"id\":3611,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/SolSculptingWideLogoPR.jpg\",\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"align_mobile\":\"left\",\"space_tablet\":{\"unit\":\"%\",\"size\":35},\"space_mobile\":{\"unit\":\"%\",\"size\":100},\"width\":{\"unit\":\"px\",\"size\":249},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"53d6a27\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link_to\":\"custom\",\"link\":{\"url\":\"https:\\/\\/solsculpting.com\\/\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"image_size\":\"full\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"d927a69\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"ab72758\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"_inline_size_mobile\":100,\"pa_condition_repeater\":[{\"_id\":\"c7c7796\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"435e036\"}]},\"elements\":[{\"id\":\"dbce862\",\"elType\":\"widget\",\"settings\":{\"align_items\":\"right\",\"animation_line\":\"grow\",\"animation_text\":\"none\",\"color_menu_item\":\"rgba(255,255,255,0.42)\",\"color_menu_item_hover\":\"#00ce1b\",\"pointer_color_menu_item_hover\":\"#00ce1b\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":15},\"pointer_width\":{\"unit\":\"px\",\"size\":1},\"color_dropdown_item\":\"#757575\",\"background_color_dropdown_item\":\"#FFFFFF\",\"color_dropdown_item_hover\":\"#000000\",\"background_color_dropdown_item_hover\":\"#ededed\",\"dropdown_typography_typography\":\"custom\",\"dropdown_typography_font_size\":{\"unit\":\"px\",\"size\":16},\"toggle_color\":\"#000000\",\"toggle_color_hover\":\"#afafaf\",\"toggle_size\":{\"unit\":\"px\",\"size\":30},\"toggle_border_width\":{\"unit\":\"px\",\"size\":0},\"toggle_border_radius\":{\"unit\":\"px\",\"size\":0},\"layout\":\"dropdown\",\"pointer\":\"text\",\"full_width\":\"stretch\",\"text_align\":\"center\",\"padding_vertical_dropdown_item\":{\"unit\":\"px\",\"size\":15},\"dropdown_top_distance\":{\"unit\":\"px\",\"size\":22},\"dropdown_top_distance_mobile\":{\"unit\":\"px\",\"size\":40},\"menu\":\"main-menu\",\"dropdown_divider_color\":\"#8A8A8A\",\"toggle_background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ebc90c4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"77bba25\"}]},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false}]'),(4188,3669,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(4189,3642,'_edit_lock','1647138600:2'),(4190,3642,'_wp_page_template','default'),(4191,3642,'_elementor_page_settings','a:15:{s:13:\"system_colors\";a:4:{i:0;a:3:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:5:\"color\";s:7:\"#BF003C\";}i:1;a:3:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:5:\"color\";s:7:\"#919191\";}i:2;a:3:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:5:\"color\";s:7:\"#000000\";}i:3;a:3:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:5:\"color\";s:7:\"#E20531\";}}s:13:\"custom_colors\";a:0:{}s:17:\"system_typography\";a:4:{i:0;a:5:{s:3:\"_id\";s:7:\"primary\";s:5:\"title\";s:7:\"Primary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:7:\"Raleway\";s:22:\"typography_font_weight\";s:3:\"600\";}i:1;a:5:{s:3:\"_id\";s:9:\"secondary\";s:5:\"title\";s:9:\"Secondary\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:13:\"Abril Fatface\";s:22:\"typography_font_weight\";s:3:\"400\";}i:2;a:5:{s:3:\"_id\";s:4:\"text\";s:5:\"title\";s:4:\"Text\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:10:\"Montserrat\";s:22:\"typography_font_weight\";s:3:\"400\";}i:3;a:5:{s:3:\"_id\";s:6:\"accent\";s:5:\"title\";s:6:\"Accent\";s:21:\"typography_typography\";s:6:\"custom\";s:22:\"typography_font_family\";s:21:\"Montserrat Alternates\";s:22:\"typography_font_weight\";s:3:\"500\";}}s:17:\"custom_typography\";a:0:{}s:21:\"default_generic_fonts\";s:10:\"Sans-serif\";s:26:\"body_typography_typography\";s:6:\"custom\";s:27:\"body_typography_font_family\";s:10:\"Montserrat\";s:25:\"body_typography_font_size\";a:3:{s:4:\"unit\";s:2:\"px\";s:4:\"size\";i:19;s:5:\"sizes\";a:0:{}}s:9:\"site_name\";s:12:\"SolSculpting\";s:16:\"site_description\";s:34:\"Start a Red Light Therapy Business\";s:19:\"page_title_selector\";s:14:\"h1.entry-title\";s:27:\"hello_footer_copyright_text\";s:19:\"All rights reserved\";s:15:\"activeItemIndex\";i:1;s:11:\"viewport_md\";i:768;s:11:\"viewport_lg\";i:1025;}'),(4192,3642,'_elementor_data','[]'),(4194,3642,'_elementor_version','3.5.6'),(4195,3642,'_elementor_pro_version','3.6.3'),(4196,3669,'_edit_last','2'),(4199,3672,'_elementor_edit_mode','builder'),(4200,3672,'_elementor_template_type','footer'),(4201,3672,'_elementor_version','3.6.5'),(4202,3672,'_elementor_pro_version','3.6.5'),(4203,3672,'_edit_lock','1680637855:2'),(4204,3672,'_wp_page_template','default'),(4205,3672,'_elementor_data','[{\"id\":\"12273d7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#35383C\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"010cf2f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"eael_cl_logics\":[{\"_id\":\"6c4dd77\"}]},\"elements\":[{\"id\":\"14c2b39\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"f6afe3e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"958475b\"}]},\"elements\":[{\"id\":\"22ffbbf\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/White-Logo-PNG.png\",\"id\":3616,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6109d0f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"0f05854\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"7e72f6f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"49\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"51\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3dd13aa\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"margin_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"50\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"d06fe04\"}]},\"elements\":[{\"id\":\"fb0d8fc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>GET IN TOUCH<\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"124d850\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f35ed2d\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"46292a1\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><a style=\\\"color: #ffffff;\\\" href=\\\"tel:707-804-9536\\\">(707) 804-9536<\\/a><br \\/><a style=\\\"color: #ffffff;\\\" href=\\\"mailto:alicia@solsculpting.com\\\">alicia@solsculpting.com<\\/a><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-27\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a8ff009\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"0757b4c\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"62b6b9f\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_color\":\"#35383C\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"8db68fd\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"eael_cl_logics\":[{\"_id\":\"1ebbe8c\"}]},\"elements\":[{\"id\":\"ccede8c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"acfe7dd\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a84f782\"}]},\"elements\":[{\"id\":\"946a8da\",\"elType\":\"widget\",\"settings\":{\"menu\":\"main-menu\",\"align_items\":\"center\",\"menu_typography_typography\":\"custom\",\"menu_typography_font_family\":\"Montserrat\",\"menu_typography_font_size\":{\"unit\":\"px\",\"size\":13,\"sizes\":[]},\"menu_typography_font_weight\":\"600\",\"color_menu_item\":\"#FFFFFF\",\"nav_menu_divider\":\"yes\",\"nav_menu_divider_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"bedda35\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"pointer\":\"none\",\"eael_cl_logics\":[{\"_id\":\"d5718ad\"}]},\"elements\":[],\"widgetType\":\"nav-menu\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"72ebcf0\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_color\":\"#35383C\",\"pa_condition_repeater\":[{\"_id\":\"ae3c05f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"1455c7a\"}]},\"elements\":[{\"id\":\"c16c263\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"343118b\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"467d0ef\"}]},\"elements\":[{\"id\":\"90aca76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SolSculpting, is manufactured and private labeled in the U.S. Equipment is registered General Wellness - Low Risk Devices per FDA Guidance 1300013 dated July 29, 2016 - Statements on the website, information about products contained on the website, information in marketing literature or documentation are not meant to be medical claims and should not be construed as such. Always consult your physician before use.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-2\",\"right\":\"-2\",\"bottom\":\"-2\",\"left\":\"-2\",\"isLinked\":true},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"5ea3031\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"25824d2\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8ca55b9\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"d0d3b06\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"f1c430e\"}]},\"elements\":[{\"id\":\"e686a48\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"015\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"19e14a2\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-15\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"b6afe32\"}]},\"elements\":[{\"id\":\"59b63d9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Copyright 2022-2023\\u00a9 SolSculpting by SolVibrant\\u00a0All rights reserved.<br \\/><a style=\\\"color: #ffffff;\\\" href=\\\"https:\\/\\/solsculpting.com\\/disclaimers\\/\\\">Disclaimers<\\/a><\\/p>\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0e87166\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"3022802\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4207,3672,'_elementor_conditions','a:1:{i:0;s:15:\"include/general\";}'),(4208,3672,'_edit_last','2'),(4220,3675,'_edit_lock','1669910855:6'),(4221,3675,'_edit_last','6'),(4222,3675,'_wp_page_template','default'),(4223,3675,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4224,3675,'_elementor_edit_mode','builder'),(4225,3675,'_elementor_template_type','wp-page'),(4226,3675,'_elementor_version','3.7.8'),(4227,3675,'_elementor_pro_version','3.7.7'),(4228,3675,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4229,3675,'_elementor_data','[{\"id\":\"6d1a92e\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-39\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"6a3e817\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"0a856c6\"}]},\"elements\":[{\"id\":\"747a890\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"f2dabe1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d7cd67a\"}]},\"elements\":[{\"id\":\"4774f58\",\"elType\":\"widget\",\"settings\":{\"title\":\"Disclaimers\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d855a45\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"header_size\":\"h1\",\"align\":\"center\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"ed3af26\"}]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"7f046a1\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-39\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"6a3e817\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"0a856c6\"}]},\"elements\":[{\"id\":\"d6e8cdd\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"f2dabe1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d7cd67a\"}]},\"elements\":[{\"id\":\"8384b45\",\"elType\":\"widget\",\"settings\":{\"title\":\"Professional Disclaimer\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d855a45\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ed3af26\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"35bda4c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.8,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"21ca284\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ea1cca0\"}]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"572ec09\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e41dfd8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"a8a2218\"}]},\"elements\":[{\"id\":\"538aace\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b5e55ce\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a83a971\"}]},\"elements\":[{\"id\":\"55f225a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Site cannot and does not contain medical\\/health advice. The medical\\/health information is provided for general information and educational purposes only and is not a substitute for professional advice. Accordingly, before taking any actions based upon such information, we encourage you to consult with the appropriate professionals.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ad56906\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2ec9d1e\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"22ae164\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"526a892\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d9b3d98\"}]},\"elements\":[{\"id\":\"04976bc\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We do not provide any kind of medical\\/health advice. THE USE OR RELIANCE OF ANY INFORMATION CONTAINED ON THIS SITE OR OUR MOBILE APPLICATION IS SOLELY AT YOUR OWN RISK.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"756218d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"b407706\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"ed28c68\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"4922375\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"db63c88\"}]},\"elements\":[{\"id\":\"b78ddab\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"79cc544\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"66d399f\"}]},\"elements\":[{\"id\":\"06373f9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Website Disclaimer\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c414aae\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"61fce22\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"3cbca51\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.8,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"9a19fd7\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"fb33a06\"}]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1256d5f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"9a95d4e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"791c7c5\"}]},\"elements\":[{\"id\":\"d1ebb1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"43220d4\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5539ad0\"}]},\"elements\":[{\"id\":\"96a7b2a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The information provided by Avanti Centers, LLC dba Avanti Body (\\u201cwe,\\u201d \\u201cus\\u201d or \\u201cour\\u201d) on https:\\/\\/www.avantibody.com (the \\u201cSite\\u201d) and our mobile application are for general informational purposes only. All information on the Site and our mobile application are provided in good faith, however, we make no representation or warranty of any kind, express or implied, regarding the accuracy, adequacy, validity, reliability, availability, or completeness of any information on the Site or our mobile application.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"abeca13\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"0ab1f96\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"d24d972\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"8be7c55\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ab52cc0\"}]},\"elements\":[{\"id\":\"bae185f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"av_section_2\\\" class=\\\"avia-section alternate_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-7 el_after_av_section el_before_av_section container_wrap fullsize\\\"><div class=\\\"container\\\"><div class=\\\"template-page content av-content-full alpha units\\\"><div class=\\\"post-entry post-entry-type-page post-entry-613\\\"><div class=\\\"entry-content-wrapper clearfix\\\"><div class=\\\"flex_column av_one_half flex_column_div av-zero-column-padding avia-builder-el-12 el_after_av_one_half avia-builder-el-last \\\"><section class=\\\"av_textblock_section \\\"><div class=\\\"avia_textblock \\\"><p>UNDER NO CIRCUMSTANCE SHALL WE HAVE ANY LIABILITY TO YOU FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF THE SITE OR OUR MOBILE APPLICATION OR RELIANCE ON ANY INFORMATION PROVIDED ON THE SITE AND OUR MOBILE APPLICATION. YOUR USE OF THE SITE AND OUR MOBILE APPLICATION AND YOUR RELIANCE ON ANY INFORMATION ON THE SITE AND OUR MOBILE APPLICATION IS SOLELY AT YOUR OWN RISK.<\\/p><\\/div><\\/section><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div id=\\\"av_section_3\\\" class=\\\"avia-section main_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-14 el_after_av_section el_before_av_section container_wrap fullsize\\\"><div class=\\\"container\\\"><div class=\\\"template-page content av-content-full alpha units\\\"><div class=\\\"post-entry post-entry-type-page post-entry-613\\\"><div class=\\\"entry-content-wrapper clearfix\\\"><div class=\\\"av-special-heading av-special-heading-h2 blockquote modern-quote avia-builder-el-15 el_before_av_hr avia-builder-el-first av-inherit-size \\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6080691\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"fae8e14\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e8efc59\",\"elType\":\"section\",\"settings\":{\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"-39\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"952e8f2\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"2233c73\"}]},\"elements\":[{\"id\":\"700c392\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"ef8abd5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"16b8961\"}]},\"elements\":[{\"id\":\"2ab03b6\",\"elType\":\"widget\",\"settings\":{\"title\":\"External Link Disclaimer\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ade5157\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"b74960c\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"a92f49e\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.8,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ec42bbb\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ae78b0c\"}]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"2a8c8f6\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"f983290\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"d108a8e\"}]},\"elements\":[{\"id\":\"7395540\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"4ccf097\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d6e776d\"}]},\"elements\":[{\"id\":\"ee0f6f6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Site and our mobile application may contain (or you may be sent through the Site or our mobile application) links to other websites or content belonging to or originating from third parties or links to websites and features in banners or other advertising. Such external links are not investigated, monitored, or checked for accuracy, adequacy, validity, reliability, availability or completeness by us.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6195643\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9b2b5d5\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9858200\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a6a9a86\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5ae1e8e\"}]},\"elements\":[{\"id\":\"c15aa76\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"av_section_3\\\" class=\\\"avia-section main_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-14 el_after_av_section el_before_av_section container_wrap fullsize\\\"><div class=\\\"container\\\"><div class=\\\"template-page content av-content-full alpha units\\\"><div class=\\\"post-entry post-entry-type-page post-entry-613\\\"><div class=\\\"entry-content-wrapper clearfix\\\"><div class=\\\"flex_column av_one_half flex_column_div av-zero-column-padding avia-builder-el-19 el_after_av_one_half avia-builder-el-last \\\"><section class=\\\"av_textblock_section \\\"><div class=\\\"avia_textblock \\\"><p>WE DO NOT WARRANT, ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR THE ACCURACY OR RELIABILITY OF ANY INFORMATION OFFERED BY THIRD-PARTY WEBSITES LINKED THROUGH THE SITE OR ANY WEBSITE OR FEATURE LINKED IN ANY BANNER OR OTHER ADVERTISING. WE WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE FOR MONITORING ANY TRANSACTION BETWEEN YOU AND THIRD-PARTY PROVIDERS OF PRODUCTS OR SERVICES.<\\/p><\\/div><\\/section><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div id=\\\"av_section_4\\\" class=\\\"avia-section alternate_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-21 el_after_av_section avia-builder-el-last container_wrap fullsize\\\"><div class=\\\"container\\\"><div class=\\\"template-page content av-content-full alpha units\\\"><div class=\\\"post-entry post-entry-type-page post-entry-613\\\"><div class=\\\"entry-content-wrapper clearfix\\\"><div class=\\\"av-special-heading av-special-heading-h2 blockquote modern-quote avia-builder-el-22 el_before_av_hr avia-builder-el-first av-inherit-size \\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d98457e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"fa02516\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4fc7dd8\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"2222384\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"2996523\"}]},\"elements\":[{\"id\":\"0f95719\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"d80d706\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"fe61b67\"}]},\"elements\":[{\"id\":\"f28cd16\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials Disclaimer\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"text_stroke_text_stroke_type\":\"yes\",\"text_stroke_text_stroke\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"32422ed\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"0a1abb0\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"c21dc87\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.8,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"dd9a002\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ca1f4c2\"}]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"e330917\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e60a1a6\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"376db73\"}]},\"elements\":[{\"id\":\"83562b9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"fe06d23\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"4ce98a3\"}]},\"elements\":[{\"id\":\"361e571\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>The Site may contain testimonials by users of our products and\\/or services. These testimonials reflect the real-life experiences and opinions of such users. However, the experiences are personal to those particular users, and may not necessarily be representative of all users of our products and\\/or services. We do not claim, and you should not assume, that all users will have the same experiences. YOUR INDIVIDUAL RESULTS MAY VARY.<\\/p><p>The testimonials on the Site are submitted in various forms such as text, audio and\\/or video, and are reviewed by us before being posted. They appear on the Site verbatim as given by the users, except for the correction of grammar or typing errors. Some testimonials may have been shortened for the sake of brevity where the full testimonial contained extraneous information not relevant to the general public.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c2cfde7\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7c333b5\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"4e15cc5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a1ac245\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"674ea1c\"}]},\"elements\":[{\"id\":\"c579dc2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<div id=\\\"av_section_2\\\" class=\\\"avia-section alternate_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-7 el_after_av_section el_before_av_section container_wrap fullsize\\\"><div class=\\\"container\\\"><div class=\\\"template-page content av-content-full alpha units\\\"><div class=\\\"post-entry post-entry-type-page post-entry-613\\\"><div class=\\\"entry-content-wrapper clearfix\\\"><div class=\\\"flex_column av_one_half flex_column_div av-zero-column-padding avia-builder-el-12 el_after_av_one_half avia-builder-el-last \\\"><section class=\\\"av_textblock_section \\\"><div class=\\\"avia_textblock \\\"><p>The views and opinions contained in the testimonials belong solely to the individual user and do not reflect our views and opinions. We are not affiliated with users who provide testimonials, and users are not paid or otherwise compensated for their testimonials.<\\/p><p>The testimonials on the Site are not intended, nor should they be construed, as claims that our products and\\/or services can be used to diagnose, treat, mitigate, cure, prevent or otherwise be used for any disease or medical condition. No testimonials have been clinically proven or evaluated.<\\/p><\\/div><\\/section><\\/div><\\/div><\\/div><\\/div><\\/div><\\/div><div id=\\\"av_section_3\\\" class=\\\"avia-section main_color avia-section-large avia-no-border-styling avia-bg-style-scroll avia-builder-el-14 el_after_av_section el_before_av_section container_wrap fullsize\\\"><div class=\\\"container\\\"><div class=\\\"template-page content av-content-full alpha units\\\"><div class=\\\"post-entry post-entry-type-page post-entry-613\\\"><div class=\\\"entry-content-wrapper clearfix\\\"><div class=\\\"av-special-heading av-special-heading-h2 blockquote modern-quote avia-builder-el-15 el_before_av_hr avia-builder-el-first av-inherit-size \\\">\\u00a0<\\/div><\\/div><\\/div><\\/div><\\/div><\\/div>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"72eca29\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/01\",\"pa_condition_date_range\":\"2022\\/12\\/01\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c8a1e3f\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4232,3675,'_yoast_wpseo_content_score','30'),(4240,3644,'_oembed_23179cc71c784d7d1a5d960a2bc60fda','<iframe title=\"Light Therapy Explained\" src=\"https://player.vimeo.com/video/422517294?h=dc6a58e715&dnt=1&app_id=122963\" width=\"800\" height=\"413\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(4241,3644,'_oembed_time_23179cc71c784d7d1a5d960a2bc60fda','1666280175'),(4242,3677,'_edit_lock','1670027208:5'),(4243,3677,'_edit_last','2'),(4244,3677,'_wp_page_template','default'),(4245,3677,'_yoast_wpseo_metadesc','If you invented a miracle drug that was scientifically proven to help people look 10 years younger, lose fat, improve hormonal health, fight pain and inflammation, increase strength/endurance, heal faster, improve your brain health and increase your energy levels, do you think people would line up to buy it from you?'),(4246,3677,'_yoast_wpseo_estimated-reading-time-minutes','6'),(4247,3677,'_elementor_edit_mode','builder'),(4248,3677,'_elementor_template_type','wp-page'),(4249,3677,'_elementor_version','3.5.6'),(4250,3677,'_elementor_pro_version','3.6.3'),(4251,3677,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4252,3677,'_elementor_data','[{\"id\":\"5018cf1\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"fb5e852\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/02\\/GradientBackgroundMobile-1.jpg\",\"id\":3573,\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\"},\"elements\":[{\"id\":\"0c16dde\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF00\",\"background_color_b\":\"#DBB323\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"375539b\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"550699a\",\"elType\":\"widget\",\"settings\":{\"title\":\"RED LIGHT THERAPY\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":42,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b190ffc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0d64fc5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>A business opportunity<br \\/>with a very bright future<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":23,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-11\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"5a6e127\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6a190d8\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/RedLightNewsMockupMobile2-2.png\",\"id\":3503,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"175\",\"right\":\"0\",\"bottom\":\"175\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"aa58ac6\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"98d3a2d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":54.561,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3abb255\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"df4824e\",\"elType\":\"widget\",\"settings\":{\"title\":\"SCIENTIFICALLY-PROVEN TO HELP PRACTICALLY ANYONE\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d58e183\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"23eb64d\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e31ae66\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"410c084\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"av_textblock_section \\\"><div class=\\\"avia_textblock \\\"><p>Red light has the power to reverse skin aging, improves skin conditions, reduce cellulite, combat fibromyalgia, neuropathy, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!<\\/p><\\/div><\\/section>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a657431\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"39e0e4e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/5-STAR.png\",\"id\":3678,\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"326d388\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"13ccd1c\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":45.439,\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\",\"pa_condition_repeater\":[{\"_id\":\"a4a41d5\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"55aacac\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"bottom right\",\"background_repeat\":\"no-repeat\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"aa58ac6\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"hide_desktop\":\"hidden-desktop\"},\"elements\":[{\"id\":\"38e2b37\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":11.313,\"pa_condition_repeater\":[{\"_id\":\"7ed02f0\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false},{\"id\":\"b141475\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":80.019,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3abb255\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"cf9a455\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/RedLightNewsMockupMobile2.png\",\"id\":3502,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ca51530\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"60a79b0\",\"elType\":\"widget\",\"settings\":{\"title\":\"SCIENTIFICALLY-PROVEN TO HELP PRACTICALLY ANYONE\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d58e183\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b05b57\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e31ae66\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"d114d5b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<section class=\\\"av_textblock_section \\\"><div class=\\\"avia_textblock \\\"><p>Red light has the power to reverse skin aging, improves skin conditions, reduce cellulite, combat fibromyalgia, neuropathy, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!<\\/p><\\/div><\\/section>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a657431\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7055679\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/5-STAR.png\",\"id\":3678,\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"326d388\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"42658a7\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":8.328,\"pa_condition_repeater\":[{\"_id\":\"c586618\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"2ee3e7a\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"ada0572\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"90fc32e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"16d19e0\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5fd2d8e\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/422517294\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/Screenshot-2021-05-19-221653.jpg\",\"id\":3626,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ba98256\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_padding\":{\"unit\":\"px\",\"top\":\"080\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"cd0710e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"9e3f928\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"8982a89\",\"elType\":\"widget\",\"settings\":{\"title\":\"THE SCIENCE OF RED LIGHT THERAPY - \\nPHOTOBIOMODULATION\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7c1243a\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"0a6bf1b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e31ae66\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ef24bfd\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the 1990s NASA developed a more practical light source, to grow plants in space, named the Astroculture 3. It wasn\\u2019t long before the same LED technology would be found useful in the treatment of astronaut\\u2019s bone and muscle loss that occurs in zero gravity.<\\/p><p>The application of these high-intensity, wavelength-specific lights, would be called photobiomodulation (PBMT). Photobiomodulation (PBMT) affects the cell\\u2019s mitochondria and other key parts assisting in the optimization of the cells. A little over two decades later, these powerful light systems are being used for fat loss, pain, anti-aging, inflammation, and much more.<\\/p><p>Today photobiomodulation (PBMT) is lighting the path to well-being from the astroturf to the astronauts.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a687659\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b2b6477\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"ad4f304\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"0021922\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":100,\"space_between_widgets\":0,\"margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"deb3724\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"64fac4c\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/WhyRedLight.jpg\",\"id\":3449,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"b51c09f\"},{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/03\\/MatSystemOn.jpg\",\"id\":3609,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"d287720\"},{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/03\\/MatSystemOff.jpg\",\"id\":3608,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"b48987a\"}],\"height\":{\"unit\":\"px\",\"size\":426,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pagination\":\"\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"57ae22c\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"dc6793d\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"-10\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"763a4c4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"17b3009\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK A NO OBLIGATION DISCOVERY CALL\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"8e534cc\",\"elType\":\"widget\",\"settings\":{\"text\":\"BOOK NOW\",\"link\":{\"url\":\"https:\\/\\/calendly.com\\/terri-77\\/red-light-discussion\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a3ba8ce\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"c3b9fdf\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"63be4b6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"4ea637b\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6ba749e\",\"elType\":\"widget\",\"settings\":{\"title\":\"THREE BUSINESS MODELS\",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e435ab2\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f458e1b\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"70adbef\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0215f38\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"d6d4660\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"6247500\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"4f3b620\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"754f65f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/02\\/Number1-1.png\",\"id\":3568,\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e263ccd\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"87b1096\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>STAND ALONE MULTI-FACET WELLNESS SPA<\\/strong><\\/p><p>5 \\u2013 7 SOLSCULPTING SYSTEMS<\\/p>\",\"text_color\":\"#CE1E3E\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d0a40fe\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b0f2f57\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>This model may include additional services such as:<br \\/>3D Body Scanning<br \\/>Whole Body Vibration<br \\/>Nutritional Services<br \\/>Esthetician Services<br \\/>Medical Services<br \\/>Retail Skincare Products<br \\/>Massage<br \\/>Body Contouring<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"9f056f5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"ebd9591\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"aae503a\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"2484a9e\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/02\\/Number2-1.png\",\"id\":3570,\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ad14ccf\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"beacd3e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p><strong>STAND ALONE BOUTIQUE WELLNESS SPA<\\/strong><\\/p><p>2 \\u2013 4 SOLSCULPTING SYSTEMS<\\/p>\",\"text_color\":\"#F47321\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"468dbb4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"e5e06d0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>3D Body Scanning<br \\/>Whole Body Vibration<br \\/>Nutritional Services<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"3f2763a\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"00e68d1\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"856acf7\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"95a4e0a\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/02\\/Number3-1.png\",\"id\":3569,\"alt\":\"\",\"source\":\"library\"},\"align\":\"left\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"69c03df\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4222110\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<strong>EXISTING PERSONAL SERVICES BUSINESS<\\/strong>\\n\\n1 \\u2013 3 SOLSCULPTING SYSTEMS\",\"text_color\":\"#E6B121\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f2c1d5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c18de33\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Medical Practice<br \\/>Wellness Center<br \\/>Fitness: Gym, Spin, Pilates<br \\/>Massage<br \\/>Salon<br \\/>Chiropractor<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"550c86a\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"8fc3f04\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"40\",\"left\":0,\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"b3189a4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"af2809a\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"05f6eec\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"97aced6\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/388621488\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/VideoStill.png\",\"id\":3262,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7e5d645\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"video\"},{\"id\":\"e56ef82\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SEE A RED LIGHT SPA IN ACTION<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"align\":\"center\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"da455ae\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"92de855\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"627762e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"65e0aac\",\"elType\":\"widget\",\"settings\":{\"title\":\"START A RED LIGHT<br>\\nTHERAPY BUSINESS\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d0b8de1\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"49f9f44\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e31ae66\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"c5934cf\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SolSculpting provides an excellent opportunity for investors, health and wellness professionals and sharp-minded individuals to get in on the ground floor of the explosive field of Photobiomodulation (PBM), aka Red Light Therapy. PBM has been studied for over two decades including extensive medical and clinical research.<\\/p><p>Put simply light therapy can aid the body in healing, decrease inflammation, relieve pain, restore cellular energy. In addition, red light facial therapy can significantly reduce the signs of aging while boosting collagen production.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f4caf98\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3df767f\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"60\",\"right\":0,\"bottom\":\"60\",\"left\":0,\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"0ce0112\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"c526217\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"4c8ba83\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"66bc0ec\",\"elType\":\"widget\",\"settings\":{\"title\":\"RED LIGHT IS LIKE A MIRACLE DRUG\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"5341310\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"e93f0c9\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"align\":\"left\",\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.3,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"05368bc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"2d8c0f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SolSculpting provides an excellent opportunity for investors, health and wellness professionals and sharp-minded individuals to get in on the ground floor of the explosive field of Photobiomodulation (PBM), aka Red Light Therapy. PBM has been studied for over two decades including extensive medical and clinical research.<\\/p><p>Put simply light therapy can aid the body in healing, decrease inflammation, relieve pain, restore cellular energy. In addition, red light facial therapy can significantly reduce the signs of aging while boosting collagen production.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"515f8c0\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"04be67b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"a45b73a\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"b898d90\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/551229667\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/Screenshot-2021-05-19-220635.jpg\",\"id\":3625,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"3e20364\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"87f4aa7\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"-10\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_top\":\"arrow\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"0961697\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"e694f67\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"df0b380\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"199e1af\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK A NO OBLIGATION DISCOVERY CALL\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b2d10e3\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"85bbb2f\",\"elType\":\"widget\",\"settings\":{\"text\":\"BOOK NOW\",\"link\":{\"url\":\"https:\\/\\/calendly.com\\/terri-77\\/red-light-discussion\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"69c30ba\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b4b75f7\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/ImageSection.jpg\",\"id\":3302,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"16\",\"left\":\"13\",\"isLinked\":false},\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"pa_condition_repeater\":[{\"_id\":\"7a50cba\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"eael_parallax_switcher\":\"yes\",\"hide_tablet\":\"hidden-tablet\",\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"b597dff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a0acd6e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"e32a9d0\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE DONE ALL THE HOMEWORK - YOU JUST WIN\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d6fb800\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c8691a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SolSculpting is custom-designed with features you may not even know to ask for. When we started in this business, we didn\\u2019t know what we didn\\u2019t know. Our business model gives you both superior mats and time savings. We\\u2019ve streamlined the process to eliminate the problems we encountered.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"0\",\"left\":\"400\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7c7787e\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"474a66a\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"\",\"id\":\"\",\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#00000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"pa_condition_repeater\":[{\"_id\":\"7a50cba\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"eael_parallax_switcher\":\"yes\",\"custom_height\":{\"unit\":\"px\",\"size\":214,\"sizes\":[]},\"hide_desktop\":\"hidden-desktop\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\"}},\"elements\":[{\"id\":\"d67d9e7\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a0acd6e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"3b88235\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE DONE ALL THE HOMEWORK - YOU JUST WIN\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d6fb800\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6b2d0b0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SolSculpting is custom-designed with features you may not even know to ask for. When we started in this business, we didn\\u2019t know what we didn\\u2019t know. Our business model gives you both superior mats and time savings. We\\u2019ve streamlined the process to eliminate the problems we encountered.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7c7787e\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b92e7a\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"7b68014\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"4d2ea4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"121c624\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"e82f4da\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Arro-Icon-1.png\",\"id\":3664,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"8ac88a3\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6ae8ba5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It\\u2019s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"844df4f\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"d591c99\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"f20105f\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/bolt-icon-1.png\",\"id\":3663,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5240ccb\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"dc086cb\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"9a8a444\",\"elType\":\"widget\",\"settings\":{\"text\":\"LEARN MORE\",\"link\":{\"url\":\"https:\\/\\/www.cancer.gov\\/about-cancer\\/causes-prevention\\/risk\\/radiation\\/electromagnetic-fields-fact-sheet\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#2B2B2B\",\"background_color\":\"#F8F8F8\",\"border_border\":\"solid\",\"border_color\":\"#35383C\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"50cdfa4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"13d2d88\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"58f52d3\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"cc4f3ca\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Report-Icon-1.png\",\"id\":3665,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"9e6a7cd\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AND BUSINESS SUPPORT\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"52dd83e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition to our custom mats, you will benefit from an immersive two-day training onsite at our flagship location in California to learn the ins and outs of the red-light therapy business. Ongoing support is available through a third-party business coach veteran whose services are sold separately.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4254,3677,'_yoast_wpseo_content_score','60'),(4255,3678,'_wp_attached_file','2022/03/5-STAR.png'),(4256,3678,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:218;s:6:\"height\";i:41;s:4:\"file\";s:18:\"2022/03/5-STAR.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"5-STAR-150x41.png\";s:5:\"width\";i:150;s:6:\"height\";i:41;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4257,3677,'_oembed_23179cc71c784d7d1a5d960a2bc60fda','<iframe title=\"Light Therapy Explained\" src=\"https://player.vimeo.com/video/422517294?h=dc6a58e715&dnt=1&app_id=122963\" width=\"800\" height=\"413\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(4258,3677,'_oembed_time_23179cc71c784d7d1a5d960a2bc60fda','1647197773'),(4259,3677,'_oembed_c3a08e4691ae7fe9db8285f806fc31c5','<iframe title=\"Avanti Client Video\" src=\"https://player.vimeo.com/video/388621488?h=4c50176d08&dnt=1&app_id=122963\" width=\"800\" height=\"450\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(4260,3677,'_oembed_time_c3a08e4691ae7fe9db8285f806fc31c5','1647199250'),(4298,3683,'_elementor_edit_mode','builder'),(4299,3683,'_elementor_template_type','section'),(4300,3683,'_elementor_version','3.5.6'),(4301,3683,'_elementor_pro_version','3.6.3'),(4302,3683,'_wp_page_template','default'),(4303,3683,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4304,3683,'_elementor_data','[{\"id\":\"2faa69a4\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"-10\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"71a48756\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"501d7143\",\"elType\":\"widget\",\"settings\":{\"title\":\"BOOK A NO OBLIGATION DISCOVERY CALL\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"26a4a1bd\",\"elType\":\"widget\",\"settings\":{\"text\":\"BOOK NOW\",\"link\":{\"url\":\"https:\\/\\/calendly.com\\/terri-77\\/red-light-discussion\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4306,3683,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:1;s:4:\"link\";i:1;s:4:\"size\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}}'),(4307,3684,'_elementor_edit_mode','builder'),(4308,3684,'_elementor_template_type','section'),(4309,3684,'_elementor_version','3.5.6'),(4310,3684,'_elementor_pro_version','3.6.3'),(4311,3684,'_wp_page_template','default'),(4312,3684,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4313,3684,'_elementor_data','[{\"id\":\"6b97df1\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"30\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"7b68014\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"6789b04d\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"121c624\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7566604\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Arro-Icon-1.png\",\"id\":3664,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6ad75747\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"452120f7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It\\u2019s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"f8dcd3c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"d591c99\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"85939a4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/bolt-icon-1.png\",\"id\":3663,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"4570c2c0\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"41178d6e\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"aa1229\",\"elType\":\"widget\",\"settings\":{\"text\":\"LEARN MORE\",\"link\":{\"url\":\"https:\\/\\/www.cancer.gov\\/about-cancer\\/causes-prevention\\/risk\\/radiation\\/electromagnetic-fields-fact-sheet\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#2B2B2B\",\"background_color\":\"#F8F8F8\",\"border_border\":\"solid\",\"border_color\":\"#35383C\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"50cdfa4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"1e5f8021\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"58f52d3\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5015e4c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Report-Icon-1.png\",\"id\":3665,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"6333ff86\",\"elType\":\"widget\",\"settings\":{\"title\":\"MARKETING AND BUSINESS SUPPORT\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"802632f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In addition to our custom mats, you will benefit from an immersive two-day training onsite at our flagship location in California to learn the ins and outs of the red-light therapy business. Ongoing support is available through a third-party business coach veteran whose services are sold separately.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4315,3684,'_elementor_controls_usage','a:6:{s:5:\"image\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:3;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:3;s:11:\"header_size\";i:3;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:3;s:11:\"title_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:3;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:10:\"text_color\";i:3;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:1;s:7:\"padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}}'),(4319,3644,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4322,3685,'_elementor_edit_mode','builder'),(4323,3685,'_elementor_template_type','section'),(4324,3685,'_elementor_version','3.5.6'),(4325,3685,'_elementor_pro_version','3.6.3'),(4326,3685,'_wp_page_template','default'),(4327,3685,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4328,3685,'_elementor_data','[{\"id\":\"49eded6e\",\"elType\":\"section\",\"settings\":{\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/ImageSection.jpg\",\"id\":3302,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_size\":\"cover\",\"background_motion_fx_translateY_effect\":\"yes\",\"background_motion_fx_translateY_speed\":{\"unit\":\"px\",\"size\":3.7,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"13\",\"right\":\"13\",\"bottom\":\"16\",\"left\":\"13\",\"isLinked\":false},\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"pa_condition_repeater\":[{\"_id\":\"7a50cba\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"layout\":\"full_width\",\"gap\":\"no\",\"height\":\"min-height\",\"eael_parallax_switcher\":\"yes\"},\"elements\":[{\"id\":\"7f7a1b5c\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a0acd6e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5991160d\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE DONE ALL THE HOMEWORK - YOU JUST WIN\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d6fb800\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"541055e8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>SolSculpting is custom-designed with features you may not even know to ask for. When we started in this business, we didn\\u2019t know what we didn\\u2019t know. Our business model gives you both superior mats and time savings. We\\u2019ve streamlined the process to eliminate the problems we encountered.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"0\",\"left\":\"400\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7c7787e\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4330,3685,'_elementor_controls_usage','a:4:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:38:\"background_motion_fx_translateY_effect\";i:1;s:37:\"background_motion_fx_translateY_speed\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}s:6:\"layout\";a:2:{s:21:\"eael_parallax_section\";a:2:{s:18:\"eael_parallax_type\";i:1;s:22:\"eael_parallax_switcher\";i:1;}s:14:\"section_layout\";a:3:{s:6:\"layout\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;}}}}}'),(4341,3687,'_wp_attached_file','2022/03/12.2-Inches.png'),(4342,3687,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:397;s:4:\"file\";s:23:\"2022/03/12.2-Inches.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"12.2-Inches-290x300.png\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"12.2-Inches-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4343,3688,'_wp_attached_file','2022/03/14.2-Inches.png'),(4344,3688,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:397;s:4:\"file\";s:23:\"2022/03/14.2-Inches.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"14.2-Inches-290x300.png\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"14.2-Inches-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4345,3689,'_wp_attached_file','2022/03/27-Inches.png'),(4346,3689,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:385;s:6:\"height\";i:398;s:4:\"file\";s:21:\"2022/03/27-Inches.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"27-Inches-290x300.png\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"27-Inches-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4349,3690,'_wp_attached_file','2022/03/body-with-4-sections.png'),(4350,3690,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1196;s:6:\"height\";i:577;s:4:\"file\";s:32:\"2022/03/body-with-4-sections.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"body-with-4-sections-300x145.png\";s:5:\"width\";i:300;s:6:\"height\";i:145;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"body-with-4-sections-1024x494.png\";s:5:\"width\";i:1024;s:6:\"height\";i:494;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"body-with-4-sections-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"body-with-4-sections-768x371.png\";s:5:\"width\";i:768;s:6:\"height\";i:371;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4374,3693,'_menu_item_type','post_type'),(4375,3693,'_menu_item_menu_item_parent','0'),(4376,3693,'_menu_item_object_id','3644'),(4377,3693,'_menu_item_object','page'),(4378,3693,'_menu_item_target',''),(4379,3693,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4380,3693,'_menu_item_xfn',''),(4381,3693,'_menu_item_url',''),(4398,3696,'_edit_lock','1670027741:5'),(4399,3696,'_edit_last','2'),(4400,3696,'_elementor_edit_mode','builder'),(4401,3696,'_elementor_template_type','wp-page'),(4402,3696,'_elementor_template_type','wp-page'),(4403,3696,'_elementor_version','3.7.8'),(4404,3696,'_elementor_pro_version','3.7.7'),(4405,3696,'_wp_page_template','default'),(4406,3696,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4407,3696,'_elementor_data','[{\"id\":\"6e9a570\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/02\\/GradientBackgroundMobile-1.jpg\",\"id\":3573,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"030\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"f20b280\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"64b3b5f\"}]},\"elements\":[{\"id\":\"3ff3df4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"4574411\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"fa0d43e\"}]},\"elements\":[{\"id\":\"8df639c\",\"elType\":\"widget\",\"settings\":{\"title\":\"PERSONAL STORY FROM OUR FOUNDER\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"4e4af3d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6750a66\"}]},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"f16e331\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"152c911\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"ddcf92c\"}]},\"elements\":[{\"id\":\"e66ca80\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5761374\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"be8b979\"}]},\"elements\":[{\"id\":\"4858da4\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Terri-Before-1.jpg\",\"id\":3390,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"767c9c5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"11e3791\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"3a87d91\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"7c66222\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e0d1df1\"}]},\"elements\":[{\"id\":\"94232e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Terri\'s journey of <br>transformation\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7ea462d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"cd816ec\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"890237c\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.7,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"648af1d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6134e22\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"01b7112\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>My journey of transformation began one short year ago. At 57 years old I found myself at 252 lbs, suffering from arthritis and facing a hip replacement. What??! How had things gotten to this point?! I knew the answer \\u2026 I had gotten myself into this mess, and I had better figure a way out. So after a mini-meltdown, I decided to take a medical leave of absence from my executive-level job and\\u00a0<strong>work on me!<\\/strong><\\/p><p>A dear friend had been telling me about some red light system she had at her spa in Eureka, CA and some \\u201cshakey\\u201d machine. Quite frankly, I wasn\\u2019t paying attention and that cost me another year of suffering and weight gain. But now at the end of my rope, I opened up my ears and mind and finally took her counsel. (Thank you, God, for my dear friend Susan Santche!)<\\/p><p>Fast forward a year and my life has been forever changed for the better.<\\/p>\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"01ed059\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"35195b3\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"96184e3\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a chat and learn so much more!\",\"link\":{\"url\":\"https:\\/\\/calendly.com\\/terri-77\\/15min?month=2020-05\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#666666\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_color\":\"#666666\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"948cd4e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"eael_cl_logics\":[{\"_id\":\"5c38581\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"b9f7b50\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"152c911\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"reverse_order_mobile\":\"reverse-mobile\",\"eael_cl_logics\":[{\"_id\":\"6d736a7\"}]},\"elements\":[{\"id\":\"ca23e52\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"7c66222\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7d36b08\"}]},\"elements\":[{\"id\":\"fbf887c\",\"elType\":\"widget\",\"settings\":{\"title\":\"Aging backwards\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7ea462d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"060f987\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"098c867\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":9,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.7,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"648af1d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"04e101b\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"9bdcd4d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>I have been using red and near-infrared light therapy for one year. After my initial six red light therapy sessions, I no longer had pain in my hips. I even found I was no longer locked up in my hip flexor. Wow! With results like this who wouldn\\u2019t jump in for more? So I got serious and started using red light for fat loss, pain, inflammation, skin rejuvenation, sleep, and overall health. THE RESULTS ARE AMAZING. I have lost over 38 inches of fat from my body, I am down 55 lbs as of New Years 2020. My doctor can\\u2019t believe the improvement in my hip, and of course, is very pleased with my continued weight loss. I just keep shrinking!<\\/p><p>The story does not end here, this is just where it really BEGINS. Red light is more than a regimen for me, it is now my full-time passion. I founded a local red light spa, Avanti Body.\\u00a0<strong>But wait, there\\u2019s MORE!<\\/strong>\\u00a0Now my partners and I have teamed up to create a next-generation delivery system of red light and near-infrared light, SolSculpting. We want to bring SolSculpting, red light therapy, to the masses through a \\u201cBiznBox\\u201d business model. You could a part of this incredible journey.<\\/p>\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"01ed059\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7e8c3af\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"c4fccfc\",\"elType\":\"widget\",\"settings\":{\"text\":\"Schedule a chat and learn so much more!\",\"link\":{\"url\":\"https:\\/\\/calendly.com\\/terri-77\\/15min?month=2020-05\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"button_text_color\":\"#666666\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_color\":\"#666666\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"948cd4e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"text_shadow_text_shadow_type\":\"yes\",\"eael_cl_logics\":[{\"_id\":\"40625e7\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"8a76474\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5761374\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2b7b265\"}]},\"elements\":[{\"id\":\"d65a8dc\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Terri-After-1.jpg\",\"id\":3389,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"767c9c5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"7ecca48\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false}]'),(4411,3696,'_yoast_wpseo_content_score','90'),(4412,3696,'_yoast_wpseo_estimated-reading-time-minutes','3'),(4415,3697,'_edit_lock','1670027236:5'),(4416,3697,'_edit_last','6'),(4417,3697,'_elementor_edit_mode','builder'),(4418,3697,'_elementor_template_type','wp-page'),(4419,3697,'_elementor_version','3.7.8'),(4420,3697,'_elementor_pro_version','3.7.7'),(4421,3697,'_wp_page_template','default'),(4422,3697,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4423,3697,'_elementor_data','[{\"id\":\"42976a4\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Testimonials.jpg\",\"id\":3282,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"2ddcf0b\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"eael_cl_logics\":[{\"_id\":\"8450c53\"}]},\"elements\":[{\"id\":\"5b7b2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"ba0c459\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9577d37\"}]},\"elements\":[{\"id\":\"f9b41de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"029a231\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c4af9f2\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f7124de\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.6,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ac7b5b8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a3a4155\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f3914a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Here\\u2019s what some of our associates are saying<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"dbe84c2\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8ed11dd\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a1d1f\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3eedb04\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"82dc5b5\"}]},\"elements\":[{\"id\":\"6b8501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"10c20e8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d2c8e68\"}]},\"elements\":[{\"id\":\"cf1f734\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We\\u2019re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting\\u2019s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JeanneHeadshot.jpg\",\"id\":3284,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jeanne McDonald\",\"testimonial_job\":\"Orange County, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c01e2df\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"179a320\"}]},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"60b5f83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"e99d893\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"8c1911f\"}]},\"elements\":[{\"id\":\"13d363e\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can\\u2019t help but tell all their friends. I started as a boutique spa, but I know it\\u2019s going to outgrow the space I\\u2019m currently in. It\\u2019s so fulfilling to own my own spa that changes people\\u2019s lives in a tangible way.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JenniferHeadshot.jpg\",\"id\":3283,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jennifer Sharp\",\"testimonial_job\":\"Sacramento, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"1efc283\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a6d3dac\"}]},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(4425,3697,'_yoast_wpseo_estimated-reading-time-minutes','2'),(4426,3697,'_yoast_wpseo_content_score','90'),(4430,3697,'_oembed_c3a08e4691ae7fe9db8285f806fc31c5','<iframe title=\"Avanti Client Video\" src=\"https://player.vimeo.com/video/388621488?h=4c50176d08&dnt=1&app_id=122963\" width=\"800\" height=\"450\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(4431,3697,'_oembed_time_c3a08e4691ae7fe9db8285f806fc31c5','1666280233'),(4436,3698,'_edit_lock','1670027163:5'),(4437,3698,'_edit_last','6'),(4438,3698,'_elementor_edit_mode','builder'),(4439,3698,'_elementor_template_type','wp-page'),(4440,3698,'_elementor_version','3.7.8'),(4441,3698,'_elementor_pro_version','3.7.7'),(4442,3698,'_wp_page_template','default'),(4443,3698,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4444,3698,'_elementor_data','[{\"id\":\"85ee2d2\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/WhyRedLight3.jpg\",\"id\":3457,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"113a453\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"f3a700e\"}]},\"elements\":[{\"id\":\"066af32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"fb0cbbd\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"63a5657\"}]},\"elements\":[{\"id\":\"b4b8841\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Red Light\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"203d966\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"aa7f35b\"}],\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b4b5439\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.1,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6b7a910\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"3aa89f3\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ecb3648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Learn about the profound affects red light therapy has on the body<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"111457a\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e07d24e\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"916d4c9\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"08e6582\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"23f7f88\"}]},\"elements\":[{\"id\":\"9709141\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5c5c438\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2afbe3a\"}]},\"elements\":[{\"id\":\"2d7aa39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Dr-Fritz-Albert-Popp.jpg\",\"id\":3453,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e35c7a4\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"094ad53\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"185d7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"a34635c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"499f147\"}]},\"elements\":[{\"id\":\"f3709d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A life dedicated to the <br>research of bio-photons\\n\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e43ec1c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6626388\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535b8fc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f3be9e5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8259399\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"afc8553\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u201cWe are still on the threshold of fully understanding the complex relationship between light and life, but we can now say emphatically, that the function of our entire metabolism is dependent on light.\\u201d<\\/p><p>\\u2013 Dr. Fritz Albert Popp<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-13\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0eb3435\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5d454d7\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f26b37f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Dr. Popp\'s Wikipedia Page\",\"size\":\"md\",\"button_text_color\":\"#666666\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_color\":\"#666666\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6eb359d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2a0855e\"}],\"link\":{\"url\":\"https:\\/\\/en.wikipedia.org\\/wiki\\/Fritz-Albert_Popp\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0acacec\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"08e6582\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"029fb36\"}]},\"elements\":[{\"id\":\"da30cd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"a34635c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"09ba75c\"}]},\"elements\":[{\"id\":\"c6df651\",\"elType\":\"widget\",\"settings\":{\"title\":\"The science of red light therapy \\u2013 photo-bio-modulation\\n\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e43ec1c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ffae692\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"235da67\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f3be9e5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8bbe64a\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"26e0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u201cPhoto-bio-modulation (PBM) modulating the biological processes of the body with light energy (photons)\\u201d<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-13\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0eb3435\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c183fb6\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f308e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CLICK VIDEO TO PLAY<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-13\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0eb3435\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_cl_logics\":[{\"_id\":\"2a02a8c\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84ac16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5c5c438\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2044597\"}]},\"elements\":[{\"id\":\"edc097b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/422517294\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/06\\/Screen-Shot-2020-06-13-at-4.54.56-PM.png\",\"id\":3540,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0e03fba\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"957a356\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6124fbab\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"440a176\"}]},\"elements\":[{\"id\":\"2f9a5c21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ea3f0a0\"}]},\"elements\":[{\"id\":\"458ed4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"HAVE QUESTIONS ABOUT RED LIGHT THERAPY?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f72a81a\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e297817\",\"elType\":\"widget\",\"settings\":{\"text\":\"TALK TO US\",\"link\":{\"url\":\"http:\\/\\/calendly.com\\/solsculpting-systems\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"191eafd\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(4446,3698,'_yoast_wpseo_content_score','90'),(4447,3698,'_yoast_wpseo_estimated-reading-time-minutes','1'),(4461,3700,'_elementor_edit_mode','builder'),(4462,3700,'_elementor_template_type','section'),(4463,3700,'_elementor_version','3.5.6'),(4464,3700,'_elementor_pro_version','3.6.3'),(4465,3700,'_wp_page_template','default'),(4466,3700,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4467,3700,'_elementor_data','[{\"id\":\"1a29df\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"eael_parallax_switcher\":\"yes\",\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/StayInTheLoopSection.jpg\",\"id\":3359,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#35383C\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.8,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"1f588be\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"1ac2444f\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"64345d1\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1cb09a3e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Want to stay in the loop?<br>\\nSign up for discounts and specials.\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"035ea52\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6f2c0e45\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"New Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Name\",\"placeholder\":\"Name\",\"_id\":\"318113a\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"placeholder\":\"Email\",\"_id\":\"1efb56c\"},{\"_id\":\"c5a9c47\",\"field_type\":\"tel\",\"field_label\":\"Phone\",\"placeholder\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_c5a9c47\"},{\"_id\":\"5f4ca25\",\"field_type\":\"honeypot\",\"custom_id\":\"field_5f4ca25\"}],\"input_size\":\"xs\",\"show_labels\":\"\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"terri@avantibody.com\",\"email_subject\":\"New Entry Sign up For Discounts\",\"email_content\":\"[all-fields]\",\"email_from\":\"No-Reply@solsculptin.com\",\"email_from_name\":\"SolSculpting\",\"email_to_2\":\"hello@saramichelleds.com\",\"email_subject_2\":\"New message from "SolSculpting"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@solsculptinstg.wpengine.com\",\"email_from_name_2\":\"SolSculpting\",\"email_reply_to_2\":\"hello@saramichelleds.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":7,\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#FFFFFF\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_background_color\":\"#E2053100\",\"previous_button_background_color\":\"#E2053100\",\"button_border_radius\":{\"unit\":\"px\",\"top\":\"5\",\"right\":\"5\",\"bottom\":\"5\",\"left\":\"5\",\"isLinked\":true},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"400\",\"bottom\":\"0\",\"left\":\"400\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f0fd6fa\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_transform_translate_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"__globals__\":{\"previous_button_background_color_hover\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"5607e1b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We value your privacy. We never send you any spam or pass your information to 3rd parties.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8523774\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4469,3700,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:5:{s:19:\"section_form_fields\";a:3:{s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;s:11:\"show_labels\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:1:{s:12:\"button_align\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:2:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:1;s:19:\"button_border_width\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:20:\"button_border_radius\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:23:\"_element_vertical_align\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:1;s:23:\"_transform_skew_popover\";i:1;s:23:\"_transform_skewX_effect\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:1;s:18:\"eael_parallax_type\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}}'),(4470,3701,'_menu_item_type','post_type'),(4471,3701,'_menu_item_menu_item_parent','0'),(4472,3701,'_menu_item_object_id','3698'),(4473,3701,'_menu_item_object','page'),(4474,3701,'_menu_item_target',''),(4475,3701,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4476,3701,'_menu_item_xfn',''),(4477,3701,'_menu_item_url',''),(4479,3702,'_menu_item_type','post_type'),(4480,3702,'_menu_item_menu_item_parent','0'),(4481,3702,'_menu_item_object_id','3697'),(4482,3702,'_menu_item_object','page'),(4483,3702,'_menu_item_target',''),(4484,3702,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4485,3702,'_menu_item_xfn',''),(4486,3702,'_menu_item_url',''),(4498,3693,'_wp_old_date','2022-03-13'),(4499,3704,'_edit_lock','1670027743:5'),(4500,3704,'_edit_last','6'),(4501,3704,'_elementor_edit_mode','builder'),(4502,3704,'_elementor_template_type','wp-page'),(4503,3704,'_elementor_version','3.7.8'),(4504,3704,'_elementor_pro_version','3.7.7'),(4505,3704,'_wp_page_template','default'),(4506,3704,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4507,3704,'_elementor_data','[{\"id\":\"b3425e3\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/ContactHeader.jpg\",\"id\":3256,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"dd5669d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"5ae6dbd\"}]},\"elements\":[{\"id\":\"842d67d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"fd83634\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"463b253\"}]},\"elements\":[{\"id\":\"da16b1f\",\"elType\":\"widget\",\"settings\":{\"title\":\"Thousands of Wellness Professionals are <br>Embracing Red Light Therapy. \",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"568e6ef\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"79a2791\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"4dcf7e7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Learn more about Red Light Therapy and how it can benefit your practice!<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"1334dbb\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2d6da39\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"16a96a3\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.2,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f280e2a\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f560294\"}]},\"elements\":[],\"widgetType\":\"divider\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"acc923a\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"2ed33a4\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"e63e92b\"}]},\"elements\":[{\"id\":\"ae36ff2\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"be0196e\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e41783f\"}]},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"3773a3f9\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"eael_parallax_switcher\":\"yes\",\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/ChiroBackgroundSectionV2.jpg\",\"id\":3728,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"1f588be\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"6951fcd\"}]},\"elements\":[{\"id\":\"ca0bded\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"64345d1\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"65d2e9c\"}]},\"elements\":[{\"id\":\"23b3c7ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"035ea52\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e427bfc\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6c4abcc4\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"SolSculpting Request Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"_id\":\"318113a\",\"required\":\"true\"},{\"_id\":\"b5f1198\",\"field_label\":\"Company Name\",\"required\":\"true\",\"custom_id\":\"CompanyName\",\"width\":\"50\"},{\"_id\":\"e7f5ebf\",\"field_label\":\"Company Address\",\"custom_id\":\"CompanyAddress\",\"width\":\"50\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"1efb56c\",\"width\":\"50\"},{\"_id\":\"c5a9c47\",\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"Phone\",\"width\":\"50\"},{\"_id\":\"028b3d4\",\"field_type\":\"checkbox\",\"field_label\":\"Would you like to place an order?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"30\",\"custom_id\":\"PlaceOrder\"},{\"field_type\":\"checkbox\",\"field_label\":\"Would you like pricing information?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"33\",\"custom_id\":\"PricingInfo\",\"_id\":\"c56ec4f\"},{\"field_type\":\"checkbox\",\"field_label\":\"Need financing?\",\"field_options\":\"Yes\\nNo\",\"width\":\"33\",\"custom_id\":\"NeedFinancing\",\"_id\":\"02a580e\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer weightloss programs?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"WeightlossProgams\",\"_id\":\"e5390e4\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer body sculpting?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"BodySculpting\",\"_id\":\"6767310\",\"inline_list\":\"elementor-subgroup-inline\"},{\"_id\":\"5f4ca25\",\"field_type\":\"honeypot\",\"custom_id\":\"field_5f4ca25\"},{\"_id\":\"9ed8820\",\"field_type\":\"recaptcha_v3\",\"custom_id\":\"field_9ed8820\",\"recaptcha_badge\":\"inline\"}],\"input_size\":\"xs\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"alicia@solsculpting.com\",\"email_subject\":\"New SolSculpting Request Form\",\"email_content\":\"[all-fields]\",\"email_from\":\"No-Reply@solsculptin.com\",\"email_from_name\":\"SolSculpting\",\"email_to_2\":\"hello@saramichelleds.com\",\"email_subject_2\":\"New message from "SolSculpting"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@solsculptinstg.wpengine.com\",\"email_from_name_2\":\"SolSculpting\",\"email_reply_to_2\":\"hello@saramichelleds.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#FFFFFF\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_background_color\":\"#E2053100\",\"previous_button_background_color\":\"#E2053100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f0fd6fa\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_transform_translate_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"__globals__\":{\"previous_button_background_color_hover\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_size\":\"xs\",\"submit_actions\":[\"save-to-database\",\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/11255420\\/bsdbhgm\\/\",\"webhooks_advanced_data\":\"yes\",\"label_color\":\"#FFFFFF\",\"html_color\":\"#FFFFFF\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"050\",\"bottom\":\"10\",\"left\":\"050\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"success_message_color\":\"#FFFFFF\",\"error_message_color\":\"#FF0000\",\"eael_cl_logics\":[{\"_id\":\"e09233c\"}]},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"16c1bc69\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We value your privacy. We never send you any spam or pass your information to 3rd parties.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8523774\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/12\\/03\",\"pa_condition_date_range\":\"2022\\/12\\/03\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6606e2c\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4509,3704,'_yoast_wpseo_content_score','90'),(4510,3704,'_yoast_wpseo_estimated-reading-time-minutes','1'),(4513,3705,'_menu_item_type','post_type'),(4514,3705,'_menu_item_menu_item_parent','0'),(4515,3705,'_menu_item_object_id','3704'),(4516,3705,'_menu_item_object','page'),(4517,3705,'_menu_item_target',''),(4518,3705,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(4519,3705,'_menu_item_xfn',''),(4520,3705,'_menu_item_url',''),(4582,3677,'_thumbnail_id','3636'),(4583,3677,'_oembed_4c63e28069009fb5ee3d8a1e5a0a72db','<iframe title=\"B2BSolSculpting\" src=\"https://player.vimeo.com/video/551229667?h=80d9115e13&dnt=1&app_id=122963\" width=\"800\" height=\"450\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(4584,3677,'_oembed_time_4c63e28069009fb5ee3d8a1e5a0a72db','1647223139'),(4596,3710,'_wp_attached_file','2022/03/SolSculpting-17-inches.jpg'),(4597,3710,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:397;s:4:\"file\";s:34:\"2022/03/SolSculpting-17-inches.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"SolSculpting-17-inches-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"SolSculpting-17-inches-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4598,3711,'_wp_attached_file','2022/03/SolSculpting-14.2-inches.jpg'),(4599,3711,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:397;s:4:\"file\";s:36:\"2022/03/SolSculpting-14.2-inches.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"SolSculpting-14.2-inches-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"SolSculpting-14.2-inches-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4600,3712,'_wp_attached_file','2022/03/SolSculpting-12.2-inches.jpg'),(4601,3712,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:384;s:6:\"height\";i:397;s:4:\"file\";s:36:\"2022/03/SolSculpting-12.2-inches.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"SolSculpting-12.2-inches-290x300.jpg\";s:5:\"width\";i:290;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"SolSculpting-12.2-inches-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4688,3720,'_elementor_edit_mode','builder'),(4689,3720,'_elementor_template_type','section'),(4690,3720,'_elementor_version','3.5.6'),(4691,3720,'_elementor_pro_version','3.6.3'),(4692,3720,'_wp_page_template','default'),(4693,3720,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(4694,3720,'_elementor_data','[{\"id\":\"795d00fb\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3eedb04\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"5ab22475\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"10c20e8\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6092cb93\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We\\u2019re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting\\u2019s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JeanneHeadshot.jpg\",\"id\":3284,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jeanne McDonald\",\"testimonial_job\":\"Orange County, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c01e2df\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"186faa32\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"e99d893\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"480002fc\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can\\u2019t help but tell all their friends. I started as a boutique spa, but I know it\\u2019s going to outgrow the space I\\u2019m currently in. It\\u2019s so fulfilling to own my own spa that changes people\\u2019s lives in a tangible way.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JenniferHeadshot.jpg\",\"id\":3283,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jennifer Sharp\",\"testimonial_job\":\"Sacramento, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"1efc283\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(4696,3720,'_elementor_controls_usage','a:3:{s:11:\"testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:2;s:17:\"testimonial_image\";i:2;s:16:\"testimonial_name\";i:2;s:15:\"testimonial_job\";i:2;s:21:\"testimonial_alignment\";i:2;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:2;s:30:\"content_typography_font_family\";i:2;s:28:\"content_typography_font_size\";i:2;s:30:\"content_typography_font_weight\";i:2;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:2;s:26:\"job_typography_font_family\";i:2;s:26:\"job_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:2;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:8:\"advanced\";a:2:{s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}}'),(4726,3723,'_wp_attached_file','2022/03/InUseChiroV83000px.jpg'),(4727,3723,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1044;s:4:\"file\";s:30:\"2022/03/InUseChiroV83000px.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:30:\"InUseChiroV83000px-300x209.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:209;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:31:\"InUseChiroV83000px-1024x713.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:713;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:30:\"InUseChiroV83000px-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:30:\"InUseChiroV83000px-768x535.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:535;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:83:\"Peter Barrot of DIgital Studio owns the Rights to this imagery.\nPhone: 415.648.6408\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4728,3724,'_wp_attached_file','2022/03/MatControls.jpg'),(4729,3724,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2022/03/MatControls.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"MatControls-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MatControls-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MatControls-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MatControls-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4730,3725,'_wp_attached_file','2022/03/MatsOnCart.jpg'),(4731,3725,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:22:\"2022/03/MatsOnCart.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:22:\"MatsOnCart-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:23:\"MatsOnCart-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"MatsOnCart-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:22:\"MatsOnCart-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4732,3726,'_wp_attached_file','2022/03/MatsOnTable.jpg'),(4733,3726,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:1000;s:4:\"file\";s:23:\"2022/03/MatsOnTable.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"MatsOnTable-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"MatsOnTable-1024x683.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"MatsOnTable-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"MatsOnTable-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4734,3727,'_wp_attached_file','2022/03/ChiroBackgroundSection.jpg'),(4735,3727,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:34:\"2022/03/ChiroBackgroundSection.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:34:\"ChiroBackgroundSection-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:35:\"ChiroBackgroundSection-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"ChiroBackgroundSection-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:34:\"ChiroBackgroundSection-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4736,3728,'_wp_attached_file','2022/03/ChiroBackgroundSectionV2.jpg'),(4737,3728,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1500;s:6:\"height\";i:600;s:4:\"file\";s:36:\"2022/03/ChiroBackgroundSectionV2.jpg\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:36:\"ChiroBackgroundSectionV2-300x120.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:120;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:37:\"ChiroBackgroundSectionV2-1024x410.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:410;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:36:\"ChiroBackgroundSectionV2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:36:\"ChiroBackgroundSectionV2-768x307.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:307;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4749,3730,'_wp_attached_file','2022/03/SolSculpting-Chiropractic-Red-Light-Therapy.png'),(4750,3730,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:600;s:6:\"height\";i:600;s:4:\"file\";s:55:\"2022/03/SolSculpting-Chiropractic-Red-Light-Therapy.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"SolSculpting-Chiropractic-Red-Light-Therapy-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"SolSculpting-Chiropractic-Red-Light-Therapy-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(4829,3693,'_wp_old_date','2022-03-14'),(4830,3701,'_wp_old_date','2022-03-14'),(4831,3702,'_wp_old_date','2022-03-14'),(4832,3705,'_wp_old_date','2022-03-14'),(4833,3736,'_elementor_edit_mode','builder'),(4834,3736,'_elementor_template_type','section'),(4835,3736,'_elementor_version','3.5.6'),(4836,3736,'_elementor_pro_version','3.6.3'),(4837,3736,'_wp_page_template','default'),(4838,3736,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4839,3736,'_elementor_data','[{\"id\":\"66f46bff\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"eael_parallax_switcher\":\"yes\",\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/ChiroBackgroundSectionV2.jpg\",\"id\":3728,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"1f588be\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"5d0951ae\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"64345d1\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"f1d52ee\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"035ea52\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"257ae236\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"SolSculpting Request Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"_id\":\"318113a\",\"required\":\"true\"},{\"_id\":\"b5f1198\",\"field_label\":\"Company Name\",\"required\":\"true\",\"custom_id\":\"field_b5f1198\",\"width\":\"50\"},{\"_id\":\"e7f5ebf\",\"field_label\":\"Company Address\",\"custom_id\":\"field_e7f5ebf\",\"width\":\"50\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"1efb56c\",\"width\":\"50\"},{\"_id\":\"c5a9c47\",\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_c5a9c47\",\"width\":\"50\"},{\"_id\":\"028b3d4\",\"field_type\":\"checkbox\",\"field_label\":\"Are you wanting to place an order?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"30\",\"custom_id\":\"field_028b3d4\"},{\"field_type\":\"checkbox\",\"field_label\":\"Are you requesting pricing?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"33\",\"custom_id\":\"field_c56ec4f\",\"_id\":\"c56ec4f\"},{\"field_type\":\"checkbox\",\"field_label\":\"Need financing?<br\",\"field_options\":\"Yes\\nNo\",\"width\":\"33\",\"custom_id\":\"field_02a580e\",\"_id\":\"02a580e\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer weightloss programs?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"field_e5390e4\",\"_id\":\"e5390e4\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer body sculpting?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"field_6767310\",\"_id\":\"6767310\"},{\"_id\":\"5f4ca25\",\"field_type\":\"honeypot\",\"custom_id\":\"field_5f4ca25\"}],\"input_size\":\"xs\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"terri@avantibody.com\",\"email_subject\":\"New Entry Sign up For Discounts\",\"email_content\":\"[all-fields]\",\"email_from\":\"No-Reply@solsculptin.com\",\"email_from_name\":\"SolSculpting\",\"email_to_2\":\"hello@saramichelleds.com\",\"email_subject_2\":\"New message from "SolSculpting"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@solsculptinstg.wpengine.com\",\"email_from_name_2\":\"SolSculpting\",\"email_reply_to_2\":\"hello@saramichelleds.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#FFFFFF\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_background_color\":\"#E2053100\",\"previous_button_background_color\":\"#E2053100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f0fd6fa\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_transform_translate_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"__globals__\":{\"previous_button_background_color_hover\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_size\":\"xs\",\"submit_actions\":[\"save-to-database\",\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/11255420\\/bsdbhgm\\/\",\"webhooks_advanced_data\":\"yes\",\"label_color\":\"#FFFFFF\",\"html_color\":\"#FFFFFF\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"050\",\"bottom\":\"10\",\"left\":\"050\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"c96cb0f\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We value your privacy. We never send you any spam or pass your information to 3rd parties.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8523774\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4841,3736,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:1;s:11:\"button_size\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:3:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:10:\"html_color\";i:1;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:1;s:19:\"button_border_width\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:19:\"button_text_padding\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:23:\"_element_vertical_align\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:1;s:23:\"_transform_skew_popover\";i:1;s:23:\"_transform_skewX_effect\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:1;s:18:\"eael_parallax_type\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(4932,3644,'__elementor_forms_snapshot','[{\"id\":\"319e3124\",\"name\":\"SolSculpting Request Form\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"Full Name\"},{\"id\":\"CompanyName\",\"type\":\"text\",\"label\":\"Company Name\"},{\"id\":\"CompanyAddress\",\"type\":\"text\",\"label\":\"Company Address\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email\"},{\"id\":\"Phone\",\"type\":\"tel\",\"label\":\"Phone\"},{\"id\":\"PlaceOrder\",\"type\":\"checkbox\",\"label\":\"Would you like to place an order?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"PricingInfo\",\"type\":\"checkbox\",\"label\":\"Would you like pricing information?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"NeedFinancing\",\"type\":\"checkbox\",\"label\":\"Need financing?<br\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"WeightlossProgams\",\"type\":\"checkbox\",\"label\":\"Do you currently offer weightloss programs?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"BodySculpting\",\"type\":\"checkbox\",\"label\":\"Do you currently offer body sculpting?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"field_5f4ca25\",\"type\":\"honeypot\",\"label\":false},{\"id\":\"field_10032a3\",\"type\":\"recaptcha_v3\",\"label\":false}]}]'),(4965,3746,'_elementor_edit_mode','builder'),(4966,3746,'_elementor_template_type','section'),(4967,3746,'_elementor_version','3.5.6'),(4968,3746,'_elementor_pro_version','3.6.3'),(4969,3746,'_wp_page_template','default'),(4970,3746,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(4971,3746,'_elementor_data','[{\"id\":\"6f875f16\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"eael_parallax_switcher\":\"yes\",\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/ChiroBackgroundSectionV2.jpg\",\"id\":3728,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"1f588be\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"1f655aeb\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"64345d1\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"32e24d6\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"035ea52\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6cd33c7a\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"SolSculpting Request Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"_id\":\"318113a\",\"required\":\"true\"},{\"_id\":\"b5f1198\",\"field_label\":\"Company Name\",\"required\":\"true\",\"custom_id\":\"field_b5f1198\",\"width\":\"50\"},{\"_id\":\"e7f5ebf\",\"field_label\":\"Company Address\",\"custom_id\":\"field_e7f5ebf\",\"width\":\"50\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"1efb56c\",\"width\":\"50\"},{\"_id\":\"c5a9c47\",\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"field_c5a9c47\",\"width\":\"50\"},{\"_id\":\"028b3d4\",\"field_type\":\"checkbox\",\"field_label\":\"Would you like to place an order?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"30\",\"custom_id\":\"field_028b3d4\"},{\"field_type\":\"checkbox\",\"field_label\":\"Would you like pricing information?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"33\",\"custom_id\":\"field_c56ec4f\",\"_id\":\"c56ec4f\"},{\"field_type\":\"checkbox\",\"field_label\":\"Need financing?<br\",\"field_options\":\"Yes\\nNo\",\"width\":\"33\",\"custom_id\":\"field_02a580e\",\"_id\":\"02a580e\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer weightloss programs?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"field_e5390e4\",\"_id\":\"e5390e4\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer body sculpting?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"field_6767310\",\"_id\":\"6767310\",\"inline_list\":\"elementor-subgroup-inline\"},{\"_id\":\"5f4ca25\",\"field_type\":\"honeypot\",\"custom_id\":\"field_5f4ca25\"}],\"input_size\":\"xs\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"connect@solsculpting.com\",\"email_subject\":\"New SolSculpting Request Form\",\"email_content\":\"[all-fields]\",\"email_from\":\"No-Reply@solsculptin.com\",\"email_from_name\":\"SolSculpting\",\"email_to_2\":\"hello@saramichelleds.com\",\"email_subject_2\":\"New message from "SolSculpting"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@solsculptinstg.wpengine.com\",\"email_from_name_2\":\"SolSculpting\",\"email_reply_to_2\":\"hello@saramichelleds.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":11,\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#FFFFFF\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_background_color\":\"#E2053100\",\"previous_button_background_color\":\"#E2053100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f0fd6fa\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_transform_translate_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"__globals__\":{\"previous_button_background_color_hover\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_size\":\"xs\",\"submit_actions\":[\"save-to-database\",\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/11255420\\/bsdbhgm\\/\",\"webhooks_advanced_data\":\"yes\",\"label_color\":\"#FFFFFF\",\"html_color\":\"#FFFFFF\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"050\",\"bottom\":\"10\",\"left\":\"050\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"success_message_color\":\"#FFFFFF\",\"error_message_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"e628854\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We value your privacy. We never send you any spam or pass your information to 3rd parties.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8523774\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(4973,3746,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:1:{s:5:\"title\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:1;s:11:\"button_size\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:10:\"html_color\";i:1;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:1;s:19:\"button_border_width\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:19:\"button_text_padding\";i:1;}s:22:\"section_messages_style\";a:2:{s:21:\"success_message_color\";i:1;s:19:\"error_message_color\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:23:\"_element_vertical_align\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:1;s:23:\"_transform_skew_popover\";i:1;s:23:\"_transform_skewX_effect\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"height\";i:1;s:13:\"custom_height\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:1;s:18:\"eael_parallax_type\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}}'),(5032,3750,'_wp_attached_file','2022/03/chri1.jpg'),(5033,3750,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:550;s:6:\"height\";i:550;s:4:\"file\";s:17:\"2022/03/chri1.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"chri1-300x300.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"chri1-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"1\";s:8:\"keywords\";a:0:{}}}'),(5187,3760,'_elementor_edit_mode','builder'),(5188,3760,'_elementor_template_type','wp-page'),(5189,3760,'_elementor_version','3.5.6'),(5190,3760,'_elementor_pro_version','3.6.3'),(5191,3760,'_wp_page_template','default'),(5192,3760,'_elementor_data','[{\"id\":\"14d4196\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"48d20bb\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"custom_height\":{\"unit\":\"px\",\"size\":366,\"sizes\":[]},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"ae6feb6\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50.015,\"pa_condition_repeater\":[{\"_id\":\"c005d23\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"7a82996\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-Tall.png\",\"id\":3646,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"4498727\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"228abe5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Introducing SolSculpting<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"-16\",\"right\":\"-16\",\"bottom\":\"-16\",\"left\":\"-16\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"3e3454c\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"b8e4ab7\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Optimal power for Optimal results<\\/p>\",\"align\":\"center\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-14\",\"right\":\"-14\",\"bottom\":\"-14\",\"left\":\"-14\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"306a3e9\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"91263c5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":49.985,\"pa_condition_repeater\":[{\"_id\":\"e81294a\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"40\",\"isLinked\":false},\"_inline_size_mobile\":100,\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true}},\"elements\":[{\"id\":\"8ee5119\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/chri1.jpg\",\"id\":3750,\"alt\":\"\",\"source\":\"library\"},\"image_border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7bc43ca\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"edeaa07\",\"elType\":\"section\",\"settings\":{\"padding\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"a9e12d3\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\"},\"elements\":[{\"id\":\"01ac430\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b2d3072\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"2d3ff04\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Want to see \\\"less and less\\\" of your patients?<\\/p>\",\"align\":\"center\",\"text_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":\"-10\",\"bottom\":\"-32\",\"left\":\"-10\",\"isLinked\":false},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.1,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a3d90af\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"7450715\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>With SolSculpting, you will!!\\u00a0 \\u00a0Just look at these real patient progress scans!<\\/p>\",\"align\":\"center\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-1\",\"right\":\"-1\",\"bottom\":\"-1\",\"left\":\"-1\",\"isLinked\":true},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"83e8b5d\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"95683cf\",\"elType\":\"section\",\"settings\":{\"structure\":\"30\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e4e4178\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"40\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"f071659\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b28db88\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"c2ceda0\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-17-inches.jpg\",\"id\":3710,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0049c6f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"27d228c\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"e31436e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1f7ea16\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-14.2-inches.jpg\",\"id\":3711,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0049c6f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"2f53757\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"ed35139\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"4d5e281\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolSculpting-12.2-inches.jpg\",\"id\":3712,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0049c6f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"4b13573\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"-10\",\"right\":0,\"bottom\":\"-10\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"1543ecc9\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"79998e59\",\"elType\":\"widget\",\"settings\":{\"title\":\"REQUEST SOLSCULPTING SYSTEM PRICING\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"60e547a9\",\"elType\":\"widget\",\"settings\":{\"text\":\"REQUEST PRICING\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"df03195\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"a7e56ce\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"ccf64b2\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"pa_condition_repeater\":[{\"_id\":\"f54cbef\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_inline_size_mobile\":100},\"elements\":[{\"id\":\"770364c\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Acr19400294262272409359.jpg\",\"id\":3631,\"alt\":\"\",\"source\":\"library\"},\"space\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6b0100e\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"},\"align\":\"center\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"982f7d7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pa_condition_repeater\":[{\"_id\":\"5a639b8\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"070\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"77\",\"isLinked\":false}},\"elements\":[{\"id\":\"7b2424b\",\"elType\":\"widget\",\"settings\":{\"title\":\"Why Red Light Therapy?\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"663f11f\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7d88181\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Science Based\",\"_id\":\"5d51433\"},{\"text\":\"Works at Cellular Level\",\"_id\":\"3881bd5\"},{\"text\":\"Oxygenates the Cells\",\"_id\":\"bc1cbdb\"},{\"text\":\"Wavelengths of Natural Light\",\"_id\":\"a83585d\"},{\"text\":\"Tangible Results\",\"_id\":\"913744d\"},{\"text\":\"Provides Nutrients to the Cells\",\"_id\":\"1c7baf0\"}],\"icon_color\":\"#000000\",\"text_color\":\"#515151\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8ffd670\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a47c3a7\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"80\",\"left\":\"0\",\"isLinked\":false},\"reverse_order_mobile\":\"reverse-mobile\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"a7e56ce\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"9b90bfb\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"background_background\":\"classic\",\"background_color\":\"#FFFFFF\",\"pa_condition_repeater\":[{\"_id\":\"5a639b8\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"70\",\"isLinked\":false},\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"84\",\"isLinked\":false}},\"elements\":[{\"id\":\"37e7101\",\"elType\":\"widget\",\"settings\":{\"title\":\"Red Light Results\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fc6726c\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"58761de\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"text\":\"Fat Reduction\",\"_id\":\"5d51433\"},{\"text\":\"Body Sculpting\",\"_id\":\"3881bd5\"},{\"text\":\"Eliminates Cellulite\",\"_id\":\"bc1cbdb\"},{\"text\":\"Skin Tightening\",\"_id\":\"a83585d\"},{\"text\":\"Skin Rejuvenation\",\"_id\":\"913744d\"},{\"text\":\"Relieves Pain & Inflammation\",\"_id\":\"1c7baf0\"},{\"text\":\"Anti-Aging\",\"_id\":\"deecb8a\"},{\"text\":\"Boost Collagen Production\",\"_id\":\"75f0d7b\"},{\"text\":\"Muscle Recovery\",\"_id\":\"454f422\"},{\"text\":\"Promotes Sleep\",\"_id\":\"0067f02\"}],\"icon_color\":\"#000000\",\"text_color\":\"#515151\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_family\":\"Montserrat\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"icon_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8ffd670\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"icon-list\"}],\"isInner\":false},{\"id\":\"f4ba0bc\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":50,\"pa_condition_repeater\":[{\"_id\":\"f54cbef\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1271f75\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/DS_2021_61350.jpg\",\"id\":3638,\"alt\":\"\",\"source\":\"library\"},\"space\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"space_tablet\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"space_mobile\":{\"unit\":\"px\",\"size\":\"\",\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":400,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6b0100e\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"image_size\":\"custom\",\"image_custom_dimension\":{\"width\":\"600\",\"height\":\"600\"}},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1886cee\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"0f3baa4\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"8068832\",\"elType\":\"widget\",\"settings\":{\"title\":\"INTERESTED IN LEARNING MORE?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"504957b\",\"elType\":\"widget\",\"settings\":{\"text\":\"BOOK AN APPOINTMENT\",\"link\":{\"url\":\"https:\\/\\/calendly.com\\/terri-77\\/red-light-discussion\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0da65d2\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"30\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"2efb5f6\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"341ac74\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":13.768,\"pa_condition_repeater\":[{\"_id\":\"42faf8c\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"isInner\":false},{\"id\":\"ee48319\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":65.019,\"pa_condition_repeater\":[{\"_id\":\"0672118\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"1e94ae7\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/SolVibranBenefits.png\",\"id\":3651,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"a6b9773\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"85dd67e\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":20.877,\"pa_condition_repeater\":[{\"_id\":\"154ccb0\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"isInner\":false}],\"isInner\":false},{\"id\":\"90f00fa\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"ba063da\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"__globals__\":{\"background_color\":\"\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[{\"id\":\"c3a4a09\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b4bc2e0\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5f663e1\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reduce\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"562c5ad\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"ac155e6\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tighten, tone, and reduce stubborn fat anywhere. Stimulates the fat cells to release the stored fat. The skin becomes visibly tighter.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e2ee3ba\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"9cf87ed\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"e96304e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"9f69655\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rejuvenate\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"62636a6\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"cac5579\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Stimulate the mitochondria\'s ATP production. Increases cellular energy, dramatically improves skin heal & boosts collagen production by up to 31%.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f8f2445\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3d5d68d\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"bae53f1\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"bffaf49\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relieve\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"205cb66\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"87c6cc0\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Decreases pain and inflammation, speeds up muscle recovery by providing stimulation to the muscle tissue resulting in enhanced blood circulation.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"11615db\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"8571f57\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a6f4d23\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"772804e\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relax\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7460c5b\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"66a28d2\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detoxifies the body, balances circadian rhythm & promotes deeper sleep. Calms anxiety & increases melatonin production.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ce50060\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"cbab525\",\"elType\":\"section\",\"settings\":{\"structure\":\"40\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"ba063da\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"__globals__\":{\"background_color\":\"\"},\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[{\"id\":\"f13c9ff\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"b4bc2e0\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"50c438a\",\"elType\":\"widget\",\"settings\":{\"title\":\"Reduce\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"562c5ad\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"865075b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Tighten, tone, and reduce stubborn fat anywhere. Stimulates the fat cells to release the stored fat. The skin becomes visibly tighter.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e2ee3ba\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b0c4b89\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"e96304e\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"d46078d\",\"elType\":\"widget\",\"settings\":{\"title\":\"Rejuvenate\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"62636a6\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"6e43e81\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Stimulate the mitochondria\'s ATP production. Increases cellular energy, dramatically improves skin heal & boosts collagen production by up to 31%.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f8f2445\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"68ca245\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"bae53f1\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"b22a150\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relieve\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"205cb66\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f6c8065\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Decreases pain and inflammation, speeds up muscle recovery by providing stimulation to the muscle tissue resulting in enhanced blood circulation.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"11615db\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"b64902c\",\"elType\":\"column\",\"settings\":{\"_column_size\":25,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"a6f4d23\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"border_border\":\"solid\",\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"5\",\"bottom\":\"0\",\"left\":\"5\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true}},\"elements\":[{\"id\":\"7b97cad\",\"elType\":\"widget\",\"settings\":{\"title\":\"Relax\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"7460c5b\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1c2237a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Detoxifies the body, balances circadian rhythm & promotes deeper sleep. Calms anxiety & increases melatonin production.<\\/p>\",\"text_color\":\"#515151\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"-17\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ce50060\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"c2d522c\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"362c98d\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"244dc14\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"4d92da5\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7c65934\",\"elType\":\"widget\",\"settings\":{\"slides\":[{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/MatControls.jpg\",\"id\":3724,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"7d78e2f\"},{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/MatsOnCart.jpg\",\"id\":3725,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"0052fa0\"},{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/MatsOnTable.jpg\",\"id\":3726,\"alt\":\"\",\"source\":\"library\"},\"_id\":\"5fe6c64\"}],\"show_arrows\":\"\",\"space_between\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"arrows_size\":{\"unit\":\"px\",\"size\":10,\"sizes\":[]},\"height\":{\"unit\":\"px\",\"size\":389,\"sizes\":[]},\"width\":{\"unit\":\"%\",\"size\":100,\"sizes\":[]},\"pagination\":\"\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"17bc1e3\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"media-carousel\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"1c70a16\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_background\":\"classic\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"027befc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7adf1ec\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":55.175,\"padding\":{\"unit\":\"px\",\"top\":\"100\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"eb05ef2\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false}},\"elements\":[{\"id\":\"d27c9e8\",\"elType\":\"widget\",\"settings\":{\"title\":\"SolSculpting System\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"582d97c\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"395a524\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Everything you need to easily transfer the system between patient rooms.<\\/p><p><strong>OVER 24,000 LIGHTS<\\/strong> ( 9 individual pads)<br \\/>9 channel controller individually controls optic power<br \\/>Digital interface with treatment set point & timer<\\/p><p><strong>9 PADS<\\/strong><br \\/>3 Long (32.5\\\" L x 11.25\\\" W)<br \\/>2 Medium (25.63\\\" L x 11.25\\\" W)<br \\/>2 Small (18.88\\\" L x 11.25\\\" W)<br \\/>1 Neck\\/Chin (11.38\\\" L x 8.5\\\" W)<br \\/>1<b> <\\/b>Face Panel (18.75\\\" L x 11.38\\\" W)<\\/p><p>5-year warranty. Ask about our financing options.<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f68af18\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"81bebed\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request Pricing\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E7A900\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FC3A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"background_background\":\"gradient\",\"background_color_b\":\"#E20531\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"button_background_hover_background\":\"gradient\",\"button_background_hover_color_b\":\"#920036\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"bdc9338\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"hide_mobile\":\"hidden-mobile\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"67e63c9\",\"elType\":\"widget\",\"settings\":{\"text\":\"Request Pricing\",\"align\":\"left\",\"size\":\"md\",\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#E7A900\",\"hover_color\":\"#FFFFFF\",\"button_background_hover_color\":\"#FC3A00\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"background_background\":\"gradient\",\"background_color_b\":\"#E20531\",\"background_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"button_background_hover_background\":\"gradient\",\"button_background_hover_color_b\":\"#920036\",\"button_background_hover_gradient_angle\":{\"unit\":\"deg\",\"size\":120,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"bdc9338\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"link\":{\"url\":\"#contact\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align_mobile\":\"center\",\"hide_desktop\":\"hidden-desktop\",\"hide_tablet\":\"hidden-tablet\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false},{\"id\":\"5359378\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":44.781,\"pa_condition_repeater\":[{\"_id\":\"ff58a88\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"5fb1611\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/DS_2021_61233Background.png\",\"id\":3637,\"alt\":\"\",\"source\":\"library\"},\"image_size\":\"medium_large\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"249ad4b\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3b370d5\",\"elType\":\"section\",\"settings\":{\"structure\":\"20\",\"margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":0,\"bottom\":\"30\",\"left\":0,\"isLinked\":true},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"731627b\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"6a14ef9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"21d690d\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"d24b250\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/422517294\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2021\\/05\\/Screenshot-2021-05-19-221653.jpg\",\"id\":3626,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"05749b4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false},{\"id\":\"3ad002d\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"7b40dca\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"ab2414c\",\"elType\":\"widget\",\"settings\":{\"title\":\"The Science of Red Light Therapy - Photobiomodulation\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fde9cbb\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"abf75f8\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>In the 1990s NASA developed a more practical light source, to grow plants in space, named the Astroculture 3. It wasn\\u2019t long before the same LED technology would be found useful in the treatment of astronaut\\u2019s bone and muscle loss that occurs in zero gravity.<\\/p><p>The application of these high-intensity, wavelength-specific lights, would be called photobiomodulation (PBMT). Photobiomodulation (PBMT) affects the cell\\u2019s mitochondria and other key parts assisting in the optimization of the cells. A little over two decades later, these powerful light systems are being used for fat loss, pain, anti-aging, inflammation, and much more.<\\/p><p>Today photobiomodulation (PBMT) is lighting the path to well-being from the astroturf to the astronauts.<\\/p>\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"d74aaa1\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"33b25f4\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"1c055e5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"c483c1d\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"501dc31\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"7592f77\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials \",\"align\":\"center\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Abril Fatface\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"500\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"dd981c6\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"36cc3c23\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3eedb04\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"7dc2bfe7\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"10c20e8\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false}},\"elements\":[{\"id\":\"5f163618\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We\\u2019re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting\\u2019s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JeanneHeadshot.jpg\",\"id\":3284,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jeanne McDonald\",\"testimonial_job\":\"Orange County, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c01e2df\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"5f8f57e5\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"e99d893\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"padding_tablet\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"20\",\"bottom\":\"20\",\"left\":\"20\",\"isLinked\":true}},\"elements\":[{\"id\":\"3c4c815f\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can\\u2019t help but tell all their friends. I started as a boutique spa, but I know it\\u2019s going to outgrow the space I\\u2019m currently in. It\\u2019s so fulfilling to own my own spa that changes people\\u2019s lives in a tangible way.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JenniferHeadshot.jpg\",\"id\":3283,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jennifer Sharp\",\"testimonial_job\":\"Sacramento, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"1efc283\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"47bf88db\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"7b68014\"}],\"pa_cursor_ftext\":\"Premium Follow Text\"},\"elements\":[{\"id\":\"77913e61\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"121c624\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"6e5c0152\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/Arro-Icon-1.png\",\"id\":3664,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"378899fb\",\"elType\":\"widget\",\"settings\":{\"title\":\"ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"1f4a88f5\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It\\u2019s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.<\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"3a4b1fef\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"d591c99\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"41000b31\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/bolt-icon-1.png\",\"id\":3663,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"b828acc\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"image\"},{\"id\":\"5e835991\",\"elType\":\"widget\",\"settings\":{\"title\":\"WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD\",\"header_size\":\"h3\",\"align\":\"center\",\"title_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":20,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"fb118b5\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"63e3804d\",\"elType\":\"widget\",\"settings\":{\"editor\":\"Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.\\n<p><a name=\\\"contact\\\"><\\/a><\\/p>\",\"text_color\":\"#35383C\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"2817749\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"56794a63\",\"elType\":\"widget\",\"settings\":{\"text\":\"LEARN MORE\",\"link\":{\"url\":\"https:\\/\\/www.cancer.gov\\/about-cancer\\/causes-prevention\\/risk\\/radiation\\/electromagnetic-fields-fact-sheet\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#2B2B2B\",\"background_color\":\"#F8F8F8\",\"border_border\":\"solid\",\"border_color\":\"#35383C\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"50cdfa4\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"27230248\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"custom_height\":{\"unit\":\"px\",\"size\":550,\"sizes\":[]},\"eael_parallax_switcher\":\"yes\",\"eael_parallax_type\":\"scroll\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2022\\/03\\/ChiroBackgroundSectionV2.jpg\",\"id\":3728,\"alt\":\"\",\"source\":\"library\"},\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"pa_condition_repeater\":[{\"_id\":\"1f588be\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false}},\"elements\":[{\"id\":\"38c47aff\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"64345d1\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[{\"id\":\"18e1563b\",\"elType\":\"widget\",\"settings\":{\"title\":\"GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"035ea52\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"319e3124\",\"elType\":\"widget\",\"settings\":{\"form_name\":\"SolSculpting Request Form\",\"form_fields\":[{\"custom_id\":\"name\",\"field_label\":\"Full Name\",\"_id\":\"318113a\",\"required\":\"true\"},{\"_id\":\"b5f1198\",\"field_label\":\"Company Name\",\"required\":\"true\",\"custom_id\":\"CompanyName\",\"width\":\"50\"},{\"_id\":\"e7f5ebf\",\"field_label\":\"Company Address\",\"custom_id\":\"CompanyAddress\",\"width\":\"50\"},{\"custom_id\":\"email\",\"field_type\":\"email\",\"required\":\"true\",\"field_label\":\"Email\",\"_id\":\"1efb56c\",\"width\":\"50\"},{\"_id\":\"c5a9c47\",\"field_type\":\"tel\",\"field_label\":\"Phone\",\"required\":\"true\",\"custom_id\":\"Phone\",\"width\":\"50\"},{\"_id\":\"028b3d4\",\"field_type\":\"checkbox\",\"field_label\":\"Would you like to place an order?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"30\",\"custom_id\":\"PlaceOrder\"},{\"field_type\":\"checkbox\",\"field_label\":\"Would you like pricing information?\",\"field_options\":\"Yes\\nNo\",\"inline_list\":\"elementor-subgroup-inline\",\"width\":\"33\",\"custom_id\":\"PricingInfo\",\"_id\":\"c56ec4f\"},{\"field_type\":\"checkbox\",\"field_label\":\"Need financing?<br\",\"field_options\":\"Yes\\nNo\",\"width\":\"33\",\"custom_id\":\"NeedFinancing\",\"_id\":\"02a580e\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer weightloss programs?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"WeightlossProgams\",\"_id\":\"e5390e4\",\"inline_list\":\"elementor-subgroup-inline\"},{\"field_type\":\"checkbox\",\"field_label\":\"Do you currently offer body sculpting?\",\"field_options\":\"Yes\\nNo\",\"width\":\"50\",\"custom_id\":\"BodySculpting\",\"_id\":\"6767310\",\"inline_list\":\"elementor-subgroup-inline\"},{\"_id\":\"5f4ca25\",\"field_type\":\"honeypot\",\"custom_id\":\"field_5f4ca25\"},{\"_id\":\"10032a3\",\"field_type\":\"recaptcha_v3\",\"custom_id\":\"field_10032a3\",\"recaptcha_badge\":\"inline\",\"recaptcha_style\":\"dark\"}],\"input_size\":\"xs\",\"step_next_label\":\"Next\",\"step_previous_label\":\"Previous\",\"button_text\":\"Send\",\"email_to\":\"connect@solsculpting.com\",\"email_subject\":\"New SolSculpting Request Form\",\"email_content\":\"[all-fields]\",\"email_from\":\"No-Reply@solsculptin.com\",\"email_from_name\":\"SolSculpting\",\"email_to_2\":\"hello@saramichelleds.com\",\"email_subject_2\":\"New message from "SolSculpting"\",\"email_content_2\":\"[all-fields]\",\"email_from_2\":\"email@solsculptinstg.wpengine.com\",\"email_from_name_2\":\"SolSculpting\",\"email_reply_to_2\":\"hello@saramichelleds.com\",\"mailchimp_fields_map\":[],\"drip_fields_map\":[],\"activecampaign_fields_map\":[],\"getresponse_fields_map\":[],\"convertkit_fields_map\":[],\"mailerlite_fields_map\":[],\"success_message\":\"The form was sent successfully.\",\"error_message\":\"An error occurred.\",\"required_field_message\":\"This field is required.\",\"invalid_message\":\"There's something wrong. The form is invalid.\",\"column_gap\":{\"unit\":\"px\",\"size\":15,\"sizes\":[]},\"row_gap\":{\"unit\":\"px\",\"size\":12,\"sizes\":[]},\"field_text_color\":\"#FFFFFF\",\"field_typography_typography\":\"custom\",\"field_typography_font_family\":\"Montserrat\",\"field_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"field_typography_font_weight\":\"400\",\"field_background_color\":\"#FFFFFF00\",\"field_border_color\":\"#FFFFFF\",\"field_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_border_border\":\"solid\",\"button_border_width\":{\"unit\":\"px\",\"top\":\"2\",\"right\":\"2\",\"bottom\":\"2\",\"left\":\"2\",\"isLinked\":true},\"button_background_color\":\"#E2053100\",\"previous_button_background_color\":\"#E2053100\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"100\",\"bottom\":\"0\",\"left\":\"100\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f0fd6fa\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_transform_translate_popover\":\"transform\",\"_transform_skew_popover\":\"transform\",\"_transform_skewX_effect\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"_element_vertical_align\":\"center\",\"__globals__\":{\"previous_button_background_color_hover\":\"globals\\/colors?id=primary\",\"button_background_hover_color\":\"globals\\/colors?id=primary\"},\"button_align\":\"center\",\"_margin_tablet\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"200\",\"bottom\":\"0\",\"left\":\"200\",\"isLinked\":false},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"10\",\"bottom\":\"10\",\"left\":\"10\",\"isLinked\":true},\"button_size\":\"xs\",\"submit_actions\":[\"save-to-database\",\"email\",\"webhook\"],\"webhooks\":\"https:\\/\\/hooks.zapier.com\\/hooks\\/catch\\/11255420\\/bsdbhgm\\/\",\"webhooks_advanced_data\":\"yes\",\"label_color\":\"#FFFFFF\",\"html_color\":\"#FFFFFF\",\"button_text_padding\":{\"unit\":\"px\",\"top\":\"010\",\"right\":\"050\",\"bottom\":\"10\",\"left\":\"050\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"success_message_color\":\"#FFFFFF\",\"error_message_color\":\"#FF0000\"},\"elements\":[],\"widgetType\":\"form\"},{\"id\":\"407cb5f4\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>We value your privacy. We never send you any spam or pass your information to 3rd parties.<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"8523774\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\"},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false}]'),(5194,3760,'_elementor_page_settings','a:2:{s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:10:\"hide_title\";s:3:\"yes\";}'),(5195,3760,'_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:11;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:2;s:5:\"align\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:5:{s:19:\"image_border_radius\";i:1;s:5:\"space\";i:2;s:12:\"space_tablet\";i:2;s:12:\"space_mobile\";i:2;s:6:\"height\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:5:\"align\";i:5;s:10:\"text_color\";i:15;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:15;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;s:29:\"typography_line_height_tablet\";i:2;}}s:8:\"advanced\";a:2:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:12;s:8:\"_padding\";i:5;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:17;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:34;s:19:\"_inline_size_mobile\";i:3;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:34;}s:16:\"section_advanced\";a:5:{s:7:\"padding\";i:9;s:14:\"padding_mobile\";i:7;s:6:\"margin\";i:4;s:13:\"margin_mobile\";i:6;s:14:\"padding_tablet\";i:4;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:11;}s:14:\"section_layout\";a:3:{s:13:\"custom_height\";i:2;s:6:\"layout\";i:3;s:6:\"height\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:1;s:18:\"eael_parallax_type\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:17;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:15;s:6:\"margin\";i:4;}s:19:\"_section_responsive\";a:4:{s:20:\"reverse_order_mobile\";i:1;s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:7;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:18;s:5:\"align\";i:6;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:18;s:21:\"typography_typography\";i:18;s:22:\"typography_font_family\";i:18;s:22:\"typography_font_weight\";i:18;s:28:\"text_stroke_text_stroke_type\";i:2;s:20:\"typography_font_size\";i:16;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:18;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:5:{s:4:\"text\";i:5;s:4:\"link\";i:5;s:5:\"align\";i:5;s:4:\"size\";i:4;s:12:\"align_mobile\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:15:{s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:22:\"typography_font_weight\";i:5;s:17:\"button_text_color\";i:5;s:16:\"background_color\";i:5;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;s:34:\"button_background_hover_background\";i:2;s:31:\"button_background_hover_color_b\";i:2;s:38:\"button_background_hover_gradient_angle\";i:2;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:5;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}s:26:\"section_additional_options\";a:2:{s:11:\"show_arrows\";i:1;s:10:\"pagination\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_navigation\";a:1:{s:11:\"arrows_size\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:2:{s:10:\"video_type\";i:1;s:9:\"vimeo_url\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:2;s:17:\"testimonial_image\";i:2;s:16:\"testimonial_name\";i:2;s:15:\"testimonial_job\";i:2;s:21:\"testimonial_alignment\";i:2;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:2;s:30:\"content_typography_font_family\";i:2;s:28:\"content_typography_font_size\";i:2;s:30:\"content_typography_font_weight\";i:2;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:2;s:26:\"job_typography_font_family\";i:2;s:26:\"job_typography_font_weight\";i:2;}}s:8:\"advanced\";a:1:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:6:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:1;s:11:\"button_size\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:10:\"html_color\";i:1;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:1;s:19:\"button_border_width\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:19:\"button_text_padding\";i:1;}s:22:\"section_messages_style\";a:2:{s:21:\"success_message_color\";i:1;s:19:\"error_message_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:4:{s:7:\"_margin\";i:1;s:14:\"_margin_tablet\";i:1;s:14:\"_margin_mobile\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:1;s:23:\"_transform_skew_popover\";i:1;s:23:\"_transform_skewX_effect\";i:1;}s:17:\"_section_position\";a:1:{s:23:\"_element_vertical_align\";i:1;}}}}}'),(5197,3644,'_yoast_wpseo_metadesc','Red light has the power to reverse skin aging, improves skin conditions, reduce cellulite, combat fibromyalgia, neuropathy, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!'),(5198,3644,'_yoast_wpseo_focuskw','Red Light Therapy for Wellness Professional'),(5199,3644,'_yoast_wpseo_linkdex','51'),(5208,3669,'_elementor_controls_usage','a:4:{s:5:\"image\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:4:{s:5:\"image\";i:2;s:7:\"link_to\";i:2;s:4:\"link\";i:2;s:10:\"image_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:2:{s:5:\"align\";i:2;s:5:\"width\";i:2;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:4;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:19:\"_section_responsive\";a:1:{s:11:\"hide_mobile\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:3;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:9:{s:11:\"align_items\";i:2;s:14:\"animation_line\";i:2;s:14:\"animation_text\";i:2;s:12:\"toggle_align\";i:1;s:6:\"layout\";i:2;s:7:\"pointer\";i:2;s:10:\"full_width\";i:2;s:10:\"text_align\";i:2;s:4:\"menu\";i:2;}}s:5:\"style\";a:3:{s:23:\"section_style_main-menu\";a:6:{s:15:\"color_menu_item\";i:2;s:21:\"color_menu_item_hover\";i:2;s:29:\"pointer_color_menu_item_hover\";i:2;s:26:\"menu_typography_typography\";i:2;s:25:\"menu_typography_font_size\";i:2;s:13:\"pointer_width\";i:2;}s:22:\"section_style_dropdown\";a:9:{s:19:\"color_dropdown_item\";i:2;s:30:\"background_color_dropdown_item\";i:2;s:25:\"color_dropdown_item_hover\";i:2;s:36:\"background_color_dropdown_item_hover\";i:2;s:30:\"dropdown_typography_typography\";i:2;s:29:\"dropdown_typography_font_size\";i:2;s:30:\"padding_vertical_dropdown_item\";i:2;s:21:\"dropdown_top_distance\";i:2;s:22:\"dropdown_divider_color\";i:2;}s:12:\"style_toggle\";a:6:{s:12:\"toggle_color\";i:2;s:18:\"toggle_color_hover\";i:2;s:11:\"toggle_size\";i:2;s:19:\"toggle_border_width\";i:2;s:20:\"toggle_border_radius\";i:2;s:23:\"toggle_background_color\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:6:{s:3:\"gap\";i:2;s:13:\"custom_height\";i:2;s:16:\"content_position\";i:2;s:6:\"layout\";i:2;s:6:\"height\";i:2;s:8:\"html_tag\";i:2;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}}s:8:\"advanced\";a:4:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}}'),(5211,3763,'_elementor_is_screenshot','1'),(5212,3763,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_3669_2022-04-20-20-21-48_3c600e62.png'),(5213,3669,'_elementor_screenshot','a:2:{s:2:\"id\";i:3763;s:3:\"url\";s:129:\"https://solsculpting.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_3669_2022-04-20-20-21-48_3c600e62.png\";}'),(5251,3746,'_edit_lock','1659508059:5'),(5255,3672,'_elementor_controls_usage','a:5:{s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:5;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:5;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:5;}s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:10:\"text_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:4;s:22:\"typography_font_weight\";i:4;s:5:\"align\";i:2;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:2;s:8:\"_padding\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}s:14:\"section_layout\";a:1:{s:6:\"layout\";i:1;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:1;s:6:\"margin\";i:2;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:8:\"nav-menu\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_layout\";a:3:{s:4:\"menu\";i:1;s:11:\"align_items\";i:1;s:7:\"pointer\";i:1;}}s:5:\"style\";a:1:{s:23:\"section_style_main-menu\";a:7:{s:26:\"menu_typography_typography\";i:1;s:27:\"menu_typography_font_family\";i:1;s:25:\"menu_typography_font_size\";i:1;s:27:\"menu_typography_font_weight\";i:1;s:15:\"color_menu_item\";i:1;s:16:\"nav_menu_divider\";i:1;s:22:\"nav_menu_divider_color\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}'),(5257,3669,'_eael_custom_js',''),(5258,3672,'_eael_custom_js',''),(5260,3644,'_eael_custom_js',''),(5261,3644,'_eael_widget_elements','a:1:{s:16:\"section-parallax\";s:16:\"section-parallax\";}'),(5265,3697,'_eael_custom_js',''),(5267,3644,'_yoast_wpseo_title','SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting'),(5268,3644,'_yoast_wpseo_wordproof_timestamp',''),(5269,3697,'_yoast_wpseo_title','Testimonials - SolSculpting'),(5270,3697,'_yoast_wpseo_wordproof_timestamp',''),(5271,3704,'_eael_custom_js',''),(5272,3704,'_eael_widget_elements','a:1:{s:16:\"section-parallax\";s:16:\"section-parallax\";}'),(5274,3704,'_yoast_wpseo_title','Contact - SolSculpting'),(5275,3704,'_yoast_wpseo_wordproof_timestamp',''),(5276,3698,'_eael_custom_js',''),(5278,3698,'_yoast_wpseo_title','About Red Light - SolSculpting'),(5279,3698,'_yoast_wpseo_wordproof_timestamp',''),(5280,3698,'_oembed_23179cc71c784d7d1a5d960a2bc60fda','<iframe title=\"Light Therapy Explained\" src=\"https://player.vimeo.com/video/422517294?h=dc6a58e715&dnt=1&app_id=122963\" width=\"800\" height=\"413\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>'),(5281,3698,'_oembed_time_23179cc71c784d7d1a5d960a2bc60fda','1669910740'),(5282,3675,'_eael_custom_js',''),(5284,3675,'_yoast_wpseo_title','Disclaimers - SolSculpting'),(5285,3675,'_yoast_wpseo_wordproof_timestamp',''),(5293,3697,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:1;s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:3;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:2;s:17:\"testimonial_image\";i:2;s:16:\"testimonial_name\";i:2;s:15:\"testimonial_job\";i:2;s:21:\"testimonial_alignment\";i:2;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:2;s:30:\"content_typography_font_family\";i:2;s:28:\"content_typography_font_size\";i:2;s:30:\"content_typography_font_weight\";i:2;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:2;s:26:\"job_typography_font_family\";i:2;s:26:\"job_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}}'),(5296,3698,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:4;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:2;s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:4;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:3;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:6;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:6;}s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"height\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:8:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;s:5:\"align\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:2:{s:10:\"video_type\";i:1;s:9:\"vimeo_url\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}'),(5308,3675,'_elementor_controls_usage','a:5:{s:7:\"heading\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:5;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:8:{s:11:\"title_color\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:20:\"typography_font_size\";i:5;s:22:\"typography_font_weight\";i:5;s:28:\"text_stroke_text_stroke_type\";i:5;s:23:\"text_stroke_text_stroke\";i:5;s:5:\"align\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:5;}s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:5;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:13;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:13;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:13;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:13;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:9;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:3;s:7:\"padding\";i:9;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:9;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:9;}}s:6:\"layout\";a:1:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:4;}}s:5:\"style\";a:1:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:4;s:16:\"background_color\";i:4;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:1:{s:5:\"width\";i:4;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:1:{s:6:\"weight\";i:4;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:8;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:8;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:4:{s:21:\"typography_typography\";i:8;s:22:\"typography_font_family\";i:8;s:20:\"typography_font_size\";i:8;s:22:\"typography_font_weight\";i:8;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:8;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:8;}}}}}'),(5313,3698,'_yoast_wpseo_metadesc','The science of red light therapy – photo-bio-modulation'),(5314,3704,'_yoast_wpseo_metadesc','SolSculpting contact facility is a helpdesk for users to reach out to us for inquiries and queries.'),(5315,3675,'_yoast_wpseo_metadesc','We do not provide any kind of medical/health advice. THE USE OR RELIANCE OF ANY INFORMATION CONTAINED ON THIS SITE OR OUR MOBILE APPLICATION IS SOLELY AT YOUR OWN RISK.'),(5316,3697,'_yoast_wpseo_metadesc','We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations.'),(5327,3772,'_elementor_edit_mode','builder'),(5328,3772,'_elementor_template_type','wp-page'),(5329,3772,'_elementor_version','3.7.8'),(5330,3772,'_elementor_pro_version','3.7.7'),(5331,3772,'_wp_page_template','default'),(5332,3772,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5333,3772,'_elementor_data','[{\"id\":\"85ee2d2\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/WhyRedLight3.jpg\",\"id\":3457,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"113a453\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"f3a700e\"}]},\"elements\":[{\"id\":\"066af32\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"fb0cbbd\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"63a5657\"}]},\"elements\":[{\"id\":\"b4b8841\",\"elType\":\"widget\",\"settings\":{\"title\":\"About Red Light\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"203d966\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"aa7f35b\"}],\"header_size\":\"h1\"},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"b4b5439\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":4,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.1,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6b7a910\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"3aa89f3\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"ecb3648\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Learn about the profound affects red light therapy has on the body<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"111457a\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"e07d24e\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"916d4c9\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"08e6582\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"23f7f88\"}]},\"elements\":[{\"id\":\"9709141\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5c5c438\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2afbe3a\"}]},\"elements\":[{\"id\":\"2d7aa39\",\"elType\":\"widget\",\"settings\":{\"image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Dr-Fritz-Albert-Popp.jpg\",\"id\":3453,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e35c7a4\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"094ad53\"}]},\"elements\":[],\"widgetType\":\"image\"}],\"isInner\":false},{\"id\":\"185d7fa\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"a34635c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"499f147\"}]},\"elements\":[{\"id\":\"f3709d1\",\"elType\":\"widget\",\"settings\":{\"title\":\"A life dedicated to the <br>research of bio-photons\\n\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e43ec1c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"6626388\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"535b8fc\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f3be9e5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8259399\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"afc8553\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u201cWe are still on the threshold of fully understanding the complex relationship between light and life, but we can now say emphatically, that the function of our entire metabolism is dependent on light.\\u201d<\\/p><p>\\u2013 Dr. Fritz Albert Popp<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-13\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0eb3435\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"5d454d7\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"f26b37f\",\"elType\":\"widget\",\"settings\":{\"text\":\"Dr. Popp\'s Wikipedia Page\",\"size\":\"md\",\"button_text_color\":\"#666666\",\"background_color\":\"#FFFFFF\",\"border_border\":\"solid\",\"border_color\":\"#666666\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6eb359d\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2a0855e\"}],\"link\":{\"url\":\"https:\\/\\/en.wikipedia.org\\/wiki\\/Fritz-Albert_Popp\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"}},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"0acacec\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"background_background\":\"classic\",\"background_color\":\"#F8F8F8\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"08e6582\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"029fb36\"}]},\"elements\":[{\"id\":\"da30cd9\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"a34635c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"09ba75c\"}]},\"elements\":[{\"id\":\"c6df651\",\"elType\":\"widget\",\"settings\":{\"title\":\"The science of red light therapy \\u2013 photo-bio-modulation\\n\",\"title_color\":\"#000000\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":36,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"e43ec1c\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ffae692\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"235da67\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":6,\"sizes\":[]},\"text\":\"Divider\",\"weight\":{\"unit\":\"px\",\"size\":2.9,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"f3be9e5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8bbe64a\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"26e0138\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>\\u201cPhoto-bio-modulation (PBM) modulating the biological processes of the body with light energy (photons)\\u201d<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-13\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0eb3435\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c183fb6\"}]},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"6f308e9\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>CLICK VIDEO TO PLAY<\\/p>\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"-13\",\"left\":\"0\",\"isLinked\":false},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0eb3435\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"text_color\":\"globals\\/colors?id=primary\"},\"eael_cl_logics\":[{\"_id\":\"2a02a8c\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false},{\"id\":\"84ac16f\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5c5c438\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"2044597\"}]},\"elements\":[{\"id\":\"edc097b\",\"elType\":\"widget\",\"settings\":{\"video_type\":\"vimeo\",\"youtube_url\":\"https:\\/\\/www.youtube.com\\/watch?v=XHOmBV4js_E\",\"vimeo_url\":\"https:\\/\\/vimeo.com\\/422517294\",\"dailymotion_url\":\"https:\\/\\/www.dailymotion.com\\/video\\/x6tqhqb\",\"show_image_overlay\":\"yes\",\"image_overlay\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/06\\/Screen-Shot-2020-06-13-at-4.54.56-PM.png\",\"id\":3540,\"alt\":\"\",\"source\":\"library\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"0e03fba\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"957a356\"}]},\"elements\":[],\"widgetType\":\"video\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"6124fbab\",\"elType\":\"section\",\"settings\":{\"layout\":\"full_width\",\"background_background\":\"classic\",\"background_color\":\"#BF003B\",\"margin\":{\"unit\":\"px\",\"top\":\"\",\"right\":0,\"bottom\":\"\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"pa_condition_repeater\":[{\"_id\":\"e951005\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"440a176\"}]},\"elements\":[{\"id\":\"2f9a5c21\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"9d37ff5\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"ea3f0a0\"}]},\"elements\":[{\"id\":\"458ed4b7\",\"elType\":\"widget\",\"settings\":{\"title\":\"HAVE QUESTIONS ABOUT RED LIGHT THERAPY?\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_weight\":\"400\",\"text_stroke_text_stroke_type\":\"yes\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"6f93363\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"f72a81a\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"7e297817\",\"elType\":\"widget\",\"settings\":{\"text\":\"TALK TO US\",\"link\":{\"url\":\"http:\\/\\/calendly.com\\/solsculpting-systems\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"align\":\"center\",\"size\":\"md\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"button_text_color\":\"#BF003B\",\"background_color\":\"#FFFFFF\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"584e293\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"191eafd\"}]},\"elements\":[],\"widgetType\":\"button\"}],\"isInner\":false}],\"isInner\":false}]'),(5335,3772,'_elementor_controls_usage','a:8:{s:7:\"heading\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:4;s:5:\"align\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:11:\"title_color\";i:4;s:21:\"typography_typography\";i:4;s:22:\"typography_font_family\";i:4;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:4;s:28:\"text_stroke_text_stroke_type\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:3;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:3;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:3;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:3;s:22:\"typography_font_family\";i:3;s:20:\"typography_font_size\";i:3;s:22:\"typography_font_weight\";i:3;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:3;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:6;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:6;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:6;}s:16:\"section_advanced\";a:1:{s:6:\"margin\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"height\";i:1;s:6:\"layout\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:6:{s:21:\"background_background\";i:3;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;s:16:\"background_color\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:3;s:6:\"margin\";i:1;}}}}s:5:\"image\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:7:\"content\";a:1:{s:13:\"section_image\";a:1:{s:5:\"image\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:4:{s:4:\"text\";i:2;s:4:\"size\";i:2;s:4:\"link\";i:2;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:7:{s:17:\"button_text_color\";i:2;s:16:\"background_color\";i:2;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:2:{s:10:\"video_type\";i:1;s:9:\"vimeo_url\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}'),(5337,3773,'_elementor_edit_mode','builder'),(5338,3773,'_elementor_template_type','wp-page'),(5339,3773,'_elementor_version','3.7.8'),(5340,3773,'_elementor_pro_version','3.7.7'),(5341,3773,'_wp_page_template','default'),(5342,3773,'_elementor_page_settings','a:2:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";}'),(5343,3773,'_elementor_data','[{\"id\":\"42976a4\",\"elType\":\"section\",\"settings\":{\"height\":\"min-height\",\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"background_background\":\"classic\",\"background_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/Testimonials.jpg\",\"id\":3282,\"alt\":\"\",\"source\":\"library\"},\"background_position\":\"center center\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.6,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"2ddcf0b\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"background_repeat\":\"no-repeat\",\"background_size\":\"cover\",\"eael_cl_logics\":[{\"_id\":\"8450c53\"}]},\"elements\":[{\"id\":\"5b7b2a6\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"ba0c459\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"9577d37\"}]},\"elements\":[{\"id\":\"f9b41de\",\"elType\":\"widget\",\"settings\":{\"title\":\"Testimonials\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"px\",\"size\":40,\"sizes\":[]},\"typography_font_weight\":\"800\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"029a231\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"c4af9f2\"}]},\"elements\":[],\"widgetType\":\"heading\"},{\"id\":\"f7124de\",\"elType\":\"widget\",\"settings\":{\"width\":{\"unit\":\"%\",\"size\":5,\"sizes\":[]},\"align\":\"center\",\"text\":\"Divider\",\"color\":\"#FFFFFF\",\"weight\":{\"unit\":\"px\",\"size\":2.6,\"sizes\":[]},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"ac7b5b8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a3a4155\"}]},\"elements\":[],\"widgetType\":\"divider\"},{\"id\":\"4f3914a\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<p>Here\\u2019s what some of our associates are saying<\\/p>\",\"align\":\"center\",\"text_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"dbe84c2\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"8ed11dd\"}]},\"elements\":[],\"widgetType\":\"text-editor\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"a2a1d1f\",\"elType\":\"section\",\"settings\":{\"eael_parallax_layers_list\":[],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_badge_text\":\"New\",\"structure\":\"20\",\"padding\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"50\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"3eedb04\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"eael_cl_logics\":[{\"_id\":\"82dc5b5\"}]},\"elements\":[{\"id\":\"6b8501e\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"10c20e8\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"d2c8e68\"}]},\"elements\":[{\"id\":\"cf1f734\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We\\u2019re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting\\u2019s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JeanneHeadshot.jpg\",\"id\":3284,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jeanne McDonald\",\"testimonial_job\":\"Orange County, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"c01e2df\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"179a320\"}]},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false},{\"id\":\"60b5f83\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":null,\"padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"e99d893\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"padding_mobile\":{\"unit\":\"px\",\"top\":\"50\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"eael_cl_logics\":[{\"_id\":\"8c1911f\"}]},\"elements\":[{\"id\":\"13d363e\",\"elType\":\"widget\",\"settings\":{\"testimonial_content\":\"Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can\\u2019t help but tell all their friends. I started as a boutique spa, but I know it\\u2019s going to outgrow the space I\\u2019m currently in. It\\u2019s so fulfilling to own my own spa that changes people\\u2019s lives in a tangible way.\",\"testimonial_image\":{\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2020\\/05\\/JenniferHeadshot.jpg\",\"id\":3283,\"alt\":\"\",\"source\":\"library\"},\"testimonial_name\":\"Jennifer Sharp\",\"testimonial_job\":\"Sacramento, CA\",\"testimonial_alignment\":\"left\",\"content_typography_typography\":\"custom\",\"content_typography_font_family\":\"Montserrat\",\"content_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"content_typography_font_weight\":\"400\",\"job_typography_typography\":\"custom\",\"job_typography_font_family\":\"Montserrat\",\"job_typography_font_weight\":\"400\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\",\"pa_condition_repeater\":[{\"_id\":\"1efc283\",\"pa_condition_key\":\"browser\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/20\",\"pa_condition_date_range\":\"2022\\/10\\/20\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_url_referer\":\"\",\"pa_condition_timezone\":\"server\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_cl_logics\":[{\"_id\":\"a6d3dac\"}]},\"elements\":[],\"widgetType\":\"testimonial\"}],\"isInner\":false}],\"isInner\":false}]'),(5345,3773,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:3:{s:5:\"title\";i:1;s:11:\"header_size\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:1;s:10:\"text_color\";i:1;s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:3;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:2;s:14:\"padding_mobile\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:1:{s:6:\"height\";i:1;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:5:{s:21:\"background_background\";i:1;s:16:\"background_image\";i:1;s:19:\"background_position\";i:1;s:17:\"background_repeat\";i:1;s:15:\"background_size\";i:1;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:2;s:17:\"testimonial_image\";i:2;s:16:\"testimonial_name\";i:2;s:15:\"testimonial_job\";i:2;s:21:\"testimonial_alignment\";i:2;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:2;s:30:\"content_typography_font_family\";i:2;s:28:\"content_typography_font_size\";i:2;s:30:\"content_typography_font_weight\";i:2;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:2;s:26:\"job_typography_font_family\";i:2;s:26:\"job_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}}'),(5358,3704,'_elementor_controls_usage','a:6:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:1;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:6:{s:5:\"align\";i:2;s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:2:{s:5:\"align\";i:2;s:10:\"text_color\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:7:\"divider\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:15:\"section_divider\";a:2:{s:5:\"width\";i:1;s:5:\"align\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_divider_style\";a:2:{s:5:\"color\";i:1;s:6:\"weight\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:3;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:3;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:3;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:2:{s:14:\"section_layout\";a:2:{s:6:\"height\";i:2;s:13:\"custom_height\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:1;s:18:\"eael_parallax_type\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_image\";i:2;}s:26:\"section_background_overlay\";a:3:{s:29:\"background_overlay_background\";i:2;s:24:\"background_overlay_color\";i:2;s:26:\"background_overlay_opacity\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:3;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:3;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:1;s:11:\"button_size\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:10:\"html_color\";i:1;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:1;s:19:\"button_border_width\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:19:\"button_text_padding\";i:1;}s:22:\"section_messages_style\";a:2:{s:21:\"success_message_color\";i:1;s:19:\"error_message_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:23:\"_element_vertical_align\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:1;s:23:\"_transform_skew_popover\";i:1;s:23:\"_transform_skewX_effect\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}'),(5360,3644,'_elementor_controls_usage','a:11:{s:5:\"image\";a:3:{s:5:\"count\";i:11;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_image\";a:3:{s:5:\"image\";i:11;s:10:\"image_size\";i:4;s:22:\"image_custom_dimension\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:11;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:11;}}s:5:\"style\";a:1:{s:19:\"section_style_image\";a:4:{s:19:\"image_border_radius\";i:1;s:5:\"space\";i:2;s:6:\"height\";i:2;s:5:\"align\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:17;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:5:\"align\";i:5;s:10:\"text_color\";i:15;s:21:\"typography_typography\";i:15;s:22:\"typography_font_family\";i:15;s:20:\"typography_font_size\";i:15;s:22:\"typography_font_weight\";i:15;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:12;s:8:\"_padding\";i:5;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:17;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:17;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:34;s:15:\"control_percent\";i:0;s:8:\"controls\";a:3:{s:6:\"layout\";a:1:{s:6:\"layout\";a:1:{s:12:\"_inline_size\";i:34;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:34;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:9;s:6:\"margin\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:34;}}s:5:\"style\";a:2:{s:13:\"section_style\";a:2:{s:21:\"background_background\";i:2;s:16:\"background_color\";i:2;}s:14:\"section_border\";a:1:{s:13:\"border_border\";i:4;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:17;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:6:\"layout\";a:3:{s:17:\"section_structure\";a:1:{s:9:\"structure\";i:11;}s:14:\"section_layout\";a:3:{s:13:\"custom_height\";i:2;s:6:\"layout\";i:3;s:6:\"height\";i:1;}s:21:\"eael_parallax_section\";a:2:{s:22:\"eael_parallax_switcher\";i:1;s:18:\"eael_parallax_type\";i:1;}}s:8:\"advanced\";a:4:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:17;}s:16:\"section_advanced\";a:2:{s:7:\"padding\";i:15;s:6:\"margin\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:17;}s:19:\"_section_responsive\";a:4:{s:20:\"reverse_order_mobile\";i:1;s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}s:5:\"style\";a:2:{s:18:\"section_background\";a:3:{s:21:\"background_background\";i:9;s:16:\"background_color\";i:7;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:2:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;}}}}s:7:\"heading\";a:3:{s:5:\"count\";i:18;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:13:\"section_title\";a:2:{s:5:\"title\";i:18;s:11:\"header_size\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:7:{s:5:\"align\";i:6;s:11:\"title_color\";i:18;s:21:\"typography_typography\";i:18;s:22:\"typography_font_family\";i:18;s:22:\"typography_font_weight\";i:18;s:28:\"text_stroke_text_stroke_type\";i:2;s:20:\"typography_font_size\";i:16;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:18;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:18;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:5;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:14:\"section_button\";a:3:{s:4:\"text\";i:5;s:4:\"link\";i:5;s:4:\"size\";i:4;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:17:{s:5:\"align\";i:5;s:21:\"typography_typography\";i:5;s:22:\"typography_font_family\";i:5;s:22:\"typography_font_weight\";i:5;s:17:\"button_text_color\";i:5;s:16:\"background_color\";i:5;s:11:\"hover_color\";i:2;s:29:\"button_background_hover_color\";i:2;s:21:\"background_background\";i:2;s:18:\"background_color_b\";i:2;s:25:\"background_gradient_angle\";i:2;s:34:\"button_background_hover_background\";i:2;s:31:\"button_background_hover_color_b\";i:2;s:38:\"button_background_hover_gradient_angle\";i:2;s:12:\"align_mobile\";i:1;s:13:\"border_border\";i:1;s:12:\"border_color\";i:1;}}s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:5;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:5;}s:19:\"_section_responsive\";a:3:{s:11:\"hide_mobile\";i:1;s:12:\"hide_desktop\";i:1;s:11:\"hide_tablet\";i:1;}}}}s:9:\"icon-list\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:2;}}s:5:\"style\";a:2:{s:18:\"section_icon_style\";a:1:{s:10:\"icon_color\";i:2;}s:18:\"section_text_style\";a:5:{s:10:\"text_color\";i:2;s:26:\"icon_typography_typography\";i:2;s:27:\"icon_typography_font_family\";i:2;s:25:\"icon_typography_font_size\";i:2;s:27:\"icon_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:14:\"media-carousel\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_slides\";a:3:{s:6:\"slides\";i:1;s:6:\"height\";i:1;s:5:\"width\";i:1;}s:26:\"section_additional_options\";a:2:{s:11:\"show_arrows\";i:1;s:10:\"pagination\";i:1;}}s:5:\"style\";a:2:{s:20:\"section_slides_style\";a:1:{s:13:\"space_between\";i:1;}s:18:\"section_navigation\";a:1:{s:11:\"arrows_size\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:5:\"video\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:7:\"content\";a:2:{s:13:\"section_video\";a:2:{s:10:\"video_type\";i:1;s:9:\"vimeo_url\";i:1;}s:21:\"section_image_overlay\";a:2:{s:18:\"show_image_overlay\";i:1;s:13:\"image_overlay\";i:1;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:11:\"testimonial\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:1:{s:19:\"section_testimonial\";a:5:{s:19:\"testimonial_content\";i:2;s:17:\"testimonial_image\";i:2;s:16:\"testimonial_name\";i:2;s:15:\"testimonial_job\";i:2;s:21:\"testimonial_alignment\";i:2;}}s:5:\"style\";a:2:{s:33:\"section_style_testimonial_content\";a:4:{s:29:\"content_typography_typography\";i:2;s:30:\"content_typography_font_family\";i:2;s:28:\"content_typography_font_size\";i:2;s:30:\"content_typography_font_weight\";i:2;}s:29:\"section_style_testimonial_job\";a:3:{s:25:\"job_typography_typography\";i:2;s:26:\"job_typography_font_family\";i:2;s:26:\"job_typography_font_weight\";i:2;}}s:8:\"advanced\";a:2:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:4:\"form\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:4;s:8:\"controls\";a:3:{s:7:\"content\";a:7:{s:19:\"section_form_fields\";a:3:{s:9:\"form_name\";i:1;s:11:\"form_fields\";i:1;s:10:\"input_size\";i:1;}s:13:\"section_email\";a:3:{s:8:\"email_to\";i:1;s:13:\"email_subject\";i:1;s:10:\"email_from\";i:1;}s:15:\"section_email_2\";a:1:{s:12:\"email_from_2\";i:1;}s:20:\"section_form_options\";a:3:{s:15:\"success_message\";i:1;s:13:\"error_message\";i:1;s:15:\"invalid_message\";i:1;}s:15:\"section_buttons\";a:2:{s:12:\"button_align\";i:1;s:11:\"button_size\";i:1;}s:19:\"section_integration\";a:1:{s:14:\"submit_actions\";i:1;}s:15:\"section_webhook\";a:2:{s:8:\"webhooks\";i:1;s:22:\"webhooks_advanced_data\";i:1;}}s:5:\"style\";a:4:{s:18:\"section_form_style\";a:4:{s:10:\"column_gap\";i:1;s:7:\"row_gap\";i:1;s:11:\"label_color\";i:1;s:10:\"html_color\";i:1;}s:19:\"section_field_style\";a:8:{s:16:\"field_text_color\";i:1;s:27:\"field_typography_typography\";i:1;s:28:\"field_typography_font_family\";i:1;s:26:\"field_typography_font_size\";i:1;s:28:\"field_typography_font_weight\";i:1;s:22:\"field_background_color\";i:1;s:18:\"field_border_color\";i:1;s:18:\"field_border_width\";i:1;}s:20:\"section_button_style\";a:5:{s:20:\"button_border_border\";i:1;s:19:\"button_border_width\";i:1;s:23:\"button_background_color\";i:1;s:32:\"previous_button_background_color\";i:1;s:19:\"button_text_padding\";i:1;}s:22:\"section_messages_style\";a:2:{s:21:\"success_message_color\";i:1;s:19:\"error_message_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:3:{s:7:\"_margin\";i:1;s:23:\"_element_vertical_align\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:18:\"_section_transform\";a:3:{s:28:\"_transform_translate_popover\";i:1;s:23:\"_transform_skew_popover\";i:1;s:23:\"_transform_skewX_effect\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}}'),(5365,3777,'_edit_lock','1674586359:2'),(5366,3777,'_edit_last','2'),(5367,3778,'_wp_attached_file','2023/01/SolSculpting-RLT-Ways-it-Helps-scaled.webp'),(5368,3778,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1635;s:4:\"file\";s:50:\"2023/01/SolSculpting-RLT-Ways-it-Helps-scaled.webp\";s:8:\"filesize\";i:172850;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:43:\"SolSculpting-RLT-Ways-it-Helps-300x192.webp\";s:5:\"width\";i:300;s:6:\"height\";i:192;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4482;}s:5:\"large\";a:5:{s:4:\"file\";s:44:\"SolSculpting-RLT-Ways-it-Helps-1024x654.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:654;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:29486;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:43:\"SolSculpting-RLT-Ways-it-Helps-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3294;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:43:\"SolSculpting-RLT-Ways-it-Helps-768x490.webp\";s:5:\"width\";i:768;s:6:\"height\";i:490;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17574;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:44:\"SolSculpting-RLT-Ways-it-Helps-1536x981.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:981;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62960;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:45:\"SolSculpting-RLT-Ways-it-Helps-2048x1308.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1308;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:111456;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:35:\"SolSculpting-RLT-Ways-it-Helps.webp\";}'),(5369,3777,'_thumbnail_id','3778'),(5370,3777,'_wp_page_template','default'),(5373,3777,'_yoast_wpseo_content_score','60'),(5374,3777,'_yoast_wpseo_estimated-reading-time-minutes','3'),(5375,3777,'_yoast_wpseo_wordproof_timestamp',''),(5378,3777,'_yoast_wpseo_primary_category','41'),(5379,3779,'_elementor_is_screenshot','1'),(5380,3779,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_3672_2023-01-24-18-46-43_30ac517c.png'),(5381,3672,'_elementor_screenshot','a:2:{s:2:\"id\";i:3779;s:3:\"url\";s:129:\"https://solsculpting.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_3672_2023-01-24-18-46-43_30ac517c.png\";}'),(5391,3781,'_wp_attached_file','2023/01/placeholder.png'),(5392,3781,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:23:\"2023/01/placeholder.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:23:\"placeholder-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:24:\"placeholder-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:23:\"placeholder-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:23:\"placeholder-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5393,3781,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5394,3782,'_wp_attached_file','2023/01/placeholder-1.png'),(5395,3782,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-1.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5396,3782,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5397,3783,'_wp_attached_file','2023/01/placeholder-2.png'),(5398,3783,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-2.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-2-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-2-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-2-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-2-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5399,3783,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5400,3784,'_wp_attached_file','2023/01/placeholder-3.png'),(5401,3784,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-3.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-3-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-3-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-3-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-3-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5402,3784,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5403,3785,'_wp_attached_file','2023/01/placeholder-4.png'),(5404,3785,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-4.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-4-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-4-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-4-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-4-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5405,3785,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5406,3786,'_wp_attached_file','2023/01/placeholder-5.png'),(5407,3786,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-5.png\";s:8:\"filesize\";i:6146;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-5-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-5-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-5-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-5-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5408,3786,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5409,3787,'_wp_attached_file','2023/01/placeholder-6.png'),(5410,3787,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-6.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-6-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-6-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-6-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-6-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5411,3787,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5412,3788,'_wp_attached_file','2023/01/placeholder-7.png'),(5413,3788,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-7.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-7-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-7-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-7-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-7-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5414,3788,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5415,3789,'_wp_attached_file','2023/01/placeholder-8.png'),(5416,3789,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-8.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-8-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-8-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-8-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-8-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5417,3789,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5418,3790,'_wp_attached_file','2023/01/placeholder-9.png'),(5419,3790,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:25:\"2023/01/placeholder-9.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:25:\"placeholder-9-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:26:\"placeholder-9-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:25:\"placeholder-9-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:25:\"placeholder-9-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5420,3790,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5421,3791,'_wp_attached_file','2023/01/placeholder-10.png'),(5422,3791,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-10.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-10-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-10-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-10-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-10-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5423,3791,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5424,3792,'_wp_attached_file','2023/01/placeholder-11.png'),(5425,3792,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-11.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-11-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-11-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-11-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-11-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5426,3792,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5427,3793,'_wp_attached_file','2023/01/placeholder-12.png'),(5428,3793,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-12.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-12-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-12-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-12-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-12-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5429,3793,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5430,3794,'_wp_attached_file','2023/01/placeholder-13.png'),(5431,3794,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-13.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-13-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-13-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-13-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-13-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5432,3794,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5433,3795,'_wp_attached_file','2023/01/placeholder-14.png'),(5434,3795,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-14.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-14-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-14-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-14-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-14-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5435,3795,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5436,3796,'_wp_attached_file','2023/01/placeholder-15.png'),(5437,3796,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-15.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-15-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-15-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-15-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-15-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5438,3796,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5439,3797,'_wp_attached_file','2023/01/placeholder-16.png'),(5440,3797,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-16.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-16-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-16-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-16-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-16-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5441,3797,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5442,3798,'_wp_attached_file','2023/01/placeholder-17.png'),(5443,3798,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-17.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-17-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-17-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-17-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-17-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5444,3798,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5445,3799,'_wp_attached_file','2023/01/placeholder-18.png'),(5446,3799,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-18.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-18-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-18-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-18-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-18-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5447,3799,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5448,3800,'_wp_attached_file','2023/01/placeholder-19.png'),(5449,3800,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-19.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-19-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-19-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-19-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-19-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5450,3800,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5451,3801,'_wp_attached_file','2023/01/placeholder-20.png'),(5452,3801,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-20.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-20-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-20-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-20-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-20-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5453,3801,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5454,3802,'_wp_attached_file','2023/01/placeholder-21.png'),(5455,3802,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-21.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-21-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-21-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-21-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-21-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5456,3802,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5457,3803,'_wp_attached_file','2023/01/placeholder-22.png'),(5458,3803,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-22.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-22-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-22-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-22-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-22-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5459,3803,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5460,3804,'_wp_attached_file','2023/01/placeholder-23.png'),(5461,3804,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-23.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-23-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-23-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-23-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-23-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5462,3804,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5463,3805,'_wp_attached_file','2023/01/placeholder-24.png'),(5464,3805,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:1200;s:6:\"height\";i:800;s:4:\"file\";s:26:\"2023/01/placeholder-24.png\";s:8:\"filesize\";i:5443;s:5:\"sizes\";a:4:{s:6:\"medium\";a:5:{s:4:\"file\";s:26:\"placeholder-24-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:4144;}s:5:\"large\";a:5:{s:4:\"file\";s:27:\"placeholder-24-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:17700;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:26:\"placeholder-24-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:2199;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:26:\"placeholder-24-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";s:8:\"filesize\";i:12283;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5465,3805,'_elementor_source_image_hash','b7683f5448a6c5d295bf4e2725d4c1342ae0557a'),(5466,3806,'_elementor_edit_mode','builder'),(5467,3806,'_elementor_template_type','single-post'),(5468,3806,'_elementor_version','3.7.8'),(5469,3806,'_elementor_pro_version','3.7.7'),(5470,3806,'_eael_custom_js',''),(5471,3806,'_wp_page_template','default'),(5472,3806,'_elementor_page_settings','a:3:{s:10:\"hide_title\";s:3:\"yes\";s:18:\"eael_ext_toc_title\";s:17:\"Table of Contents\";s:15:\"pa_cursor_ftext\";s:19:\"Premium Follow Text\";}'),(5473,3806,'_elementor_data','[{\"id\":\"1c524db7\",\"elType\":\"section\",\"settings\":{\"content_width\":{\"unit\":\"px\",\"size\":800},\"gap\":\"no\",\"height\":\"min-height\",\"custom_height\":{\"unit\":\"vh\",\"size\":0},\"content_position\":\"middle\",\"background_background\":\"classic\",\"background_color\":\"#000000\",\"background_position\":\"initial\",\"background_size\":\"cover\",\"background_overlay_background\":\"classic\",\"background_overlay_color\":\"#000000\",\"background_overlay_opacity\":{\"unit\":\"px\",\"size\":0.38},\"background_overlay_position\":\"center center\",\"background_overlay_size\":\"cover\",\"custom_height_tablet\":{\"unit\":\"vw\",\"size\":0},\"custom_height_mobile\":{\"unit\":\"px\",\"size\":325},\"padding_tablet\":{\"unit\":\"%\",\"top\":\"8\",\"right\":\"0\",\"bottom\":\"12\",\"left\":\"0\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"%\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"16\",\"left\":\"0\",\"isLinked\":false},\"_timestamp_\":\"v1VnVRZHJYcUFHRlQ3T1ZVOTRKeVBUdz09\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"background_motion_fx_scale_speed\":{\"unit\":\"px\",\"size\":8,\"sizes\":[]},\"background_motion_fx_scale_range\":{\"unit\":\"%\",\"size\":\"\",\"sizes\":{\"start\":5,\"end\":95}},\"border_width\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"6\",\"left\":\"0\",\"isLinked\":false},\"border_color\":\"#F8F2F2\",\"border_radius\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"01\",\"left\":\"0\",\"isLinked\":false},\"shape_divider_bottom\":\"waves\",\"shape_divider_bottom_width\":{\"unit\":\"%\",\"size\":120,\"sizes\":[]},\"shape_divider_bottom_height\":{\"unit\":\"px\",\"size\":71,\"sizes\":[]},\"shape_divider_bottom_flip\":\"yes\",\"background_motion_fx_mouseTrack_effect\":\"yes\",\"shape_divider_bottom_width_mobile\":{\"unit\":\"%\",\"size\":232,\"sizes\":[]},\"margin_tablet\":{\"unit\":\"%\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":false},\"background_video_link\":\"https:\\/\\/vimeo.com\\/178269527\",\"background_video_start\":8,\"background_video_end\":200,\"__dynamic__\":{\"background_image\":\"[elementor-tag id=\\\"095896f\\\" name=\\\"post-featured-image\\\" settings=\\\"%7B%7D\\\"]\"},\"background_repeat\":\"no-repeat\",\"background_motion_fx_mouseTrack_speed\":{\"unit\":\"px\",\"size\":0.1,\"sizes\":[]},\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"0\",\"left\":0,\"isLinked\":true},\"padding\":{\"unit\":\"%\",\"top\":\"7\",\"right\":\"0\",\"bottom\":\"10\",\"left\":\"0\",\"isLinked\":false},\"premium_blob_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"6833e19\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_parallax_layers_list\":[],\"pa_badge_img\":{\"id\":3783,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-2.png\"},\"eael_cl_logics\":[{\"_id\":\"743e652\"}],\"background_ypos\":{\"unit\":\"px\",\"size\":-91,\"sizes\":[]}},\"elements\":[{\"id\":\"747a42e3\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"447db1c\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"7a7b3ec\"}],\"pa_badge_img\":{\"id\":3782,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-1.png\"}},\"elements\":[{\"id\":\"13987363\",\"elType\":\"widget\",\"settings\":{\"title\":\"URGENT LICE TREATMENT FOR FAMILIES\",\"header_size\":\"h1\",\"align\":\"center\",\"title_color\":\"#FFFFFF\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"em\",\"size\":3.25,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.2,\"sizes\":[]},\"typography_text_transform\":\"uppercase\",\"__dynamic__\":{\"title\":\"[elementor-tag id=\\\"5291f25\\\" name=\\\"post-title\\\" settings=\\\"%7B%7D\\\"]\"},\"_animation\":\"fadeInDown\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":31,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":2.5,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"e09e665\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"9b2036d\"}],\"pa_badge_img\":{\"id\":3781,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"3d12421e\",\"elType\":\"section\",\"settings\":{\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"structure\":\"22\",\"premium_blob_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"db54a28\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_parallax_layers_list\":[],\"pa_badge_img\":{\"id\":3803,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-22.png\"},\"eael_cl_logics\":[{\"_id\":\"b272e4b\"}]},\"elements\":[{\"id\":\"29454f91\",\"elType\":\"column\",\"settings\":{\"_column_size\":66,\"_inline_size\":77.073,\"padding\":{\"unit\":\"%\",\"top\":\"0\",\"right\":\"10\",\"bottom\":\"0\",\"left\":\"10\",\"isLinked\":false},\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"_inline_size_tablet\":75,\"pa_condition_repeater\":[{\"_id\":\"020c2ff\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"c7c5cc4\"}],\"pa_badge_img\":{\"id\":3792,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-11.png\"}},\"elements\":[{\"id\":\"210b505a\",\"elType\":\"widget\",\"settings\":{\"__dynamic__\":{\"excerpt\":\"[elementor-tag id=\\\"\\\" name=\\\"post-excerpt\\\" settings=\\\"%7B%22before%22%3A%22%22%2C%22after%22%3A%22%22%2C%22fallback%22%3A%22%22%7D\\\"]\"},\"title_color\":\"#54595f\",\"typography_typography\":\"custom\",\"typography_font_size\":{\"unit\":\"px\",\"size\":19},\"typography_font_weight\":\"500\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.8},\"_margin\":{\"unit\":\"px\",\"top\":\"30\",\"right\":\"0\",\"bottom\":\"30\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"e022119\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"1db5f02\"}],\"pa_badge_img\":{\"id\":3784,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-3.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"theme-post-excerpt\"},{\"id\":\"4c4a78e1\",\"elType\":\"widget\",\"settings\":{\"icon_list\":[{\"icon\":\"fa fa-calendar\",\"_id\":\"ba9c996\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"selected_icon\":{\"value\":\"fas fa-calendar-alt\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"type\":\"time\",\"icon\":\"fa fa-clock-o\",\"_id\":\"d7670a7\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"comments_custom_strings\":\"\",\"show_icon\":\"custom\",\"selected_icon\":{\"value\":\"fas fa-clock\",\"library\":\"fa-solid\"},\"__fa4_migrated\":{\"selected_icon\":true}},{\"type\":\"terms\",\"icon\":\"fa fa-commenting-o\",\"_id\":\"afbda51\",\"custom_date_format\":\"F j, Y\",\"custom_time_format\":\"g:i a\",\"taxonomy\":\"category\",\"comments_custom_strings\":\"\",\"selected_icon\":{\"value\":\"far fa-comment-dots\",\"library\":\"fa-regular\"},\"__fa4_migrated\":{\"selected_icon\":true}}],\"space_between\":{\"unit\":\"px\",\"size\":30},\"space_between_mobile\":{\"unit\":\"px\",\"size\":15},\"icon_align_mobile\":\"center\",\"icon_color\":\"#54595f\",\"icon_size_mobile\":{\"unit\":\"px\",\"size\":16},\"text_indent\":{\"unit\":\"px\",\"size\":7},\"text_color\":\"#54595f\",\"icon_typography_typography\":\"custom\",\"icon_typography_font_size\":{\"unit\":\"px\",\"size\":18},\"icon_typography_font_weight\":\"300\",\"icon_size\":{\"unit\":\"px\",\"size\":13},\"_border_color\":\"#afafaf\",\"icon_typography_line_height_mobile\":{\"unit\":\"px\",\"size\":27},\"icon_align\":\"center\",\"divider_style\":\"dotted\",\"_margin\":{\"unit\":\"px\",\"top\":\"40\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"70d549f\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"c1149d5\"}],\"pa_badge_img\":{\"id\":3785,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-4.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"post-info\"},{\"id\":\"412e10ee\",\"elType\":\"widget\",\"settings\":{\"_margin\":{\"unit\":\"px\",\"top\":\"20\",\"right\":\"0\",\"bottom\":\"20\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"typography_typography\":\"globals\\/typography?id=text\"},\"pa_condition_repeater\":[{\"_id\":\"c82c90b\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"75afc55\"}],\"pa_badge_img\":{\"id\":3786,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-5.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"theme-post-content\"},{\"id\":\"b2e6cb1\",\"elType\":\"section\",\"settings\":{\"content_position\":\"middle\",\"structure\":\"20\",\"background_color\":\"#f4f4f4\",\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":0,\"bottom\":\"100\",\"left\":0,\"isLinked\":false},\"premium_blob_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"8a4f3f4\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_parallax_layers_list\":[],\"pa_badge_img\":{\"id\":3791,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-10.png\"},\"eael_cl_logics\":[{\"_id\":\"bceedb7\"}]},\"elements\":[{\"id\":\"407c5889\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":37,\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"0c4d752\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"9b73be7\"}],\"pa_badge_img\":{\"id\":3788,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-7.png\"}},\"elements\":[{\"id\":\"56897be9\",\"elType\":\"widget\",\"settings\":{\"title\":\"Share this post\",\"header_size\":\"h4\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"typography_font_family\":\"Montserrat\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.4,\"sizes\":[]},\"typography_font_weight\":\"800\",\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":-0.5,\"sizes\":[]},\"__globals__\":{\"title_color\":\"\",\"typography_typography\":\"\"},\"pa_condition_repeater\":[{\"_id\":\"55ce69d\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"title_color\":\"#000000\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"d40d90c\"}],\"pa_badge_img\":{\"id\":3787,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-6.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"heading\"}],\"isInner\":true},{\"id\":\"7060bb6b\",\"elType\":\"column\",\"settings\":{\"_column_size\":50,\"_inline_size\":62.999,\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"7680ec4\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"5e72b13\"}],\"pa_badge_img\":{\"id\":3790,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-9.png\"}},\"elements\":[{\"id\":\"38166826\",\"elType\":\"widget\",\"settings\":{\"share_buttons\":[{\"_id\":\"62d78a5\"},{\"button\":\"twitter\",\"_id\":\"21de836\"},{\"button\":\"linkedin\",\"_id\":\"f780b63\"},{\"button\":\"pinterest\",\"_id\":\"050fff4\"},{\"button\":\"email\",\"_id\":\"7b166d6\"}],\"row_gap\":{\"unit\":\"px\",\"size\":\"\"},\"row_gap_mobile\":{\"unit\":\"px\",\"size\":10},\"button_size\":{\"unit\":\"px\",\"size\":0.8},\"icon_size\":{\"unit\":\"em\",\"size\":1.5},\"columns_mobile\":\"1\",\"typography_typography\":\"custom\",\"typography_text_transform\":\"uppercase\",\"view\":\"icon\",\"alignment\":\"right\",\"shape\":\"circle\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"5d133e0\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"alignment_mobile\":\"left\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"5c515c2\"}],\"pa_badge_img\":{\"id\":3789,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-8.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"share-buttons\"}],\"isInner\":true}],\"isInner\":true}],\"isInner\":false},{\"id\":\"37263be8\",\"elType\":\"column\",\"settings\":{\"_column_size\":33,\"_inline_size\":22.23,\"space_between_widgets\":10,\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"_inline_size_tablet\":25,\"pa_condition_repeater\":[{\"_id\":\"67bffaa\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"20\",\"bottom\":\"0\",\"left\":\"20\",\"isLinked\":false},\"padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"9534f09\"}],\"pa_badge_img\":{\"id\":3802,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-21.png\"}},\"elements\":[{\"id\":\"6ee3638b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4>INTERESTED IN SOLSCULPTING?<\\/h4><p>Contact us to learn more!<\\/p>\",\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.05,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pa_condition_repeater\":[{\"_id\":\"e8360cc\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"9a4157c\"}],\"pa_badge_img\":{\"id\":3793,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-12.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"642e67b4\",\"elType\":\"widget\",\"settings\":{\"text\":\"Contact Us\",\"typography_typography\":\"custom\",\"typography_font_family\":\"Montserrat\",\"typography_font_weight\":\"500\",\"_margin\":{\"unit\":\"px\",\"top\":\"-32\",\"right\":\"0\",\"bottom\":\"24\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"420165f\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"__globals__\":{\"background_color\":\"globals\\/colors?id=primary\",\"button_text_color\":\"\"},\"link\":{\"url\":\"mailto:alicia@solsculpting.com\",\"is_external\":\"\",\"nofollow\":\"\",\"custom_attributes\":\"\"},\"_margin_mobile\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":true},\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"18daae8\"}],\"pa_cursor_img\":{\"id\":3794,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-13.png\"},\"pa_badge_img\":{\"id\":3795,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-14.png\"},\"button_text_color\":\"#FFFFFF\",\"background_color\":\"#BF003C\",\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"button\"},{\"id\":\"62d6bc8b\",\"elType\":\"widget\",\"settings\":{\"editor\":\"<h4><span style=\\\"color: var( --e-global-color-text ); font-family: var( --e-global-typography-text-font-family ), Sans-serif;\\\">RECENT POSTS<\\/span><\\/h4>\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"typography_typography\":\"custom\",\"typography_font_family\":\"Raleway\",\"typography_font_size\":{\"unit\":\"em\",\"size\":1.05,\"sizes\":[]},\"typography_font_size_tablet\":{\"unit\":\"em\",\"size\":0.8,\"sizes\":[]},\"typography_font_weight\":\"400\",\"typography_line_height\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_line_height_tablet\":{\"unit\":\"em\",\"size\":1.5,\"sizes\":[]},\"typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"typography_letter_spacing_tablet\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"__globals__\":{\"text_color\":\"globals\\/colors?id=secondary\"},\"pa_condition_repeater\":[{\"_id\":\"b8786fd\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"typography_font_size_mobile\":{\"unit\":\"px\",\"size\":17,\"sizes\":[]},\"_padding_mobile\":{\"unit\":\"px\",\"top\":\"10\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"d8c9466\"}],\"pa_badge_img\":{\"id\":3799,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-18.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"text-editor\"},{\"id\":\"38c2752e\",\"elType\":\"widget\",\"settings\":{\"classic_columns\":\"1\",\"classic_posts_per_page\":5,\"classic_thumbnail\":\"none\",\"classic_item_ratio\":{\"unit\":\"px\",\"size\":0.44,\"sizes\":[]},\"classic_title_tag\":\"p\",\"classic_show_excerpt\":\"\",\"classic_meta_data\":[],\"classic_meta_separator\":\"\\/\\/\\/\",\"classic_show_read_more\":\"\",\"classic_read_more_text\":\"Read More \\u00bb\",\"cards_meta_separator\":\"\\u2022\",\"cards_read_more_text\":\"Read More \\u00bb\",\"full_content_meta_separator\":\"\\/\\/\\/\",\"classic_column_gap\":{\"unit\":\"px\",\"size\":27,\"sizes\":[]},\"classic_row_gap\":{\"unit\":\"px\",\"size\":14,\"sizes\":[]},\"classic_title_typography_typography\":\"custom\",\"classic_title_typography_font_family\":\"Raleway\",\"classic_title_typography_font_size\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"classic_title_typography_font_weight\":\"400\",\"classic_title_typography_line_height\":{\"unit\":\"em\",\"size\":1.3,\"sizes\":[]},\"classic_title_typography_letter_spacing\":{\"unit\":\"px\",\"size\":0,\"sizes\":[]},\"pagination_page_limit\":\"5\",\"pagination_prev_label\":\"« Previous\",\"pagination_next_label\":\"Next »\",\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"0\",\"left\":\"0\",\"isLinked\":false},\"_padding\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"15\",\"left\":\"0\",\"isLinked\":false},\"__globals__\":{\"classic_title_color\":\"globals\\/colors?id=primary\"},\"classic_columns_tablet\":\"1\",\"text\":\"Load More\",\"load_more_no_posts_custom_message\":\"No more posts to show\",\"pa_condition_repeater\":[{\"_id\":\"c8d92c9\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"classic_row_gap_mobile\":{\"unit\":\"px\",\"size\":16,\"sizes\":[]},\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"a41267a\"}],\"pa_badge_img\":{\"id\":3800,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-19.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"posts\"},{\"id\":\"e2956bf\",\"elType\":\"widget\",\"settings\":{\"wp\":{\"title\":\"BLOGS BY MONTH\",\"dropdown\":\"on\"},\"_margin\":{\"unit\":\"px\",\"top\":\"0\",\"right\":\"0\",\"bottom\":\"020\",\"left\":\"0\",\"isLinked\":false},\"pa_condition_repeater\":[{\"_id\":\"fc640f1\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"7818d00\"}],\"pa_badge_img\":{\"id\":3801,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-20.png\"},\"eael_tooltip_section_content\":\"I am a tooltip\",\"eael_ext_content_protection_password_placeholder\":\"Enter Password\",\"eael_ext_content_protection_password_submit_btn_txt\":\"Submit\",\"eael_ext_content_protection_password_incorrect_message\":\"Password does not match.\"},\"elements\":[],\"widgetType\":\"wp-widget-archives\"}],\"isInner\":false}],\"isInner\":false},{\"id\":\"606cd63b\",\"elType\":\"section\",\"settings\":{\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"premium_lottie_repeater\":[],\"premium_blob_repeater\":[],\"pa_condition_repeater\":[{\"_id\":\"a641630\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"eael_parallax_layers_list\":[],\"pa_badge_img\":{\"id\":3805,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-24.png\"},\"eael_cl_logics\":[{\"_id\":\"c79050f\"}]},\"elements\":[{\"id\":\"74cc324a\",\"elType\":\"column\",\"settings\":{\"_column_size\":100,\"_inline_size\":null,\"pa_condition_repeater\":[{\"_id\":\"caecfb3\",\"pa_condition_key\":\"browser\",\"pa_condition_valshortcode\":\"\",\"pa_condition_valtime_range\":\"\",\"pa_condition_operator\":\"is\",\"pa_condition_url_string\":\"\",\"pa_condition_url_referer\":\"\",\"pa_condition_shortcode\":\"\",\"pa_condition_browser\":\"chrome\",\"pa_condition_device\":\"desktop\",\"pa_condition_day\":[\"sunday\"],\"pa_condition_date\":\"2022\\/10\\/08\",\"pa_condition_date_range\":\"2022\\/10\\/08\",\"pa_condition_time_range\":\"\",\"pa_condition_ip_location\":[],\"pa_condition_lang\":[],\"pa_condition_login_status\":\"logged\",\"pa_condition_return_visitor\":\"return\",\"pa_condition_post\":[],\"pa_condition_post_type\":[],\"pa_condition_page\":[],\"pa_condition_static_page\":\"home\",\"pa_condition_operating_system\":[\"windows\"],\"pa_condition_user_role\":[],\"pa_condition_timezone\":\"server\",\"pa_condition_loc_method\":\"old\"}],\"premium_parallax_layers_list\":[],\"premium_gradient_colors_repeater\":[],\"premium_kenburns_repeater\":[],\"pa_cursor_ftext\":\"Premium Follow Text\",\"pa_badge_text\":\"New\",\"premium_mscroll_repeater\":[],\"eael_cl_logics\":[{\"_id\":\"0ebfe85\"}],\"pa_badge_img\":{\"id\":3804,\"url\":\"https:\\/\\/solsculpting.com\\/wp-content\\/uploads\\/2023\\/01\\/placeholder-23.png\"}},\"elements\":[],\"isInner\":false}],\"isInner\":false}]'),(5477,3806,'_edit_lock','1674586252:2'),(5479,3806,'_elementor_conditions','a:1:{i:0;s:21:\"include/singular/post\";}'),(5481,3806,'_elementor_controls_usage','a:11:{s:7:\"heading\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:7:\"content\";a:2:{s:13:\"section_title\";a:2:{s:5:\"title\";i:2;s:11:\"header_size\";i:2;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:2;}}s:5:\"style\";a:1:{s:19:\"section_title_style\";a:9:{s:5:\"align\";i:1;s:11:\"title_color\";i:2;s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:1;s:25:\"typography_text_transform\";i:2;s:25:\"typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:15:\"section_effects\";a:1:{s:10:\"_animation\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}}}s:6:\"column\";a:3:{s:5:\"count\";i:6;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:6;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:6;}s:16:\"section_advanced\";a:1:{s:7:\"padding\";i:1;}}s:6:\"layout\";a:2:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:6;}s:6:\"layout\";a:2:{s:12:\"_inline_size\";i:5;s:21:\"space_between_widgets\";i:1;}}}}s:7:\"section\";a:3:{s:5:\"count\";i:4;s:15:\"control_percent\";i:0;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:6:\"layout\";a:3:{s:14:\"section_layout\";a:5:{s:13:\"content_width\";i:1;s:3:\"gap\";i:1;s:6:\"height\";i:1;s:13:\"custom_height\";i:1;s:16:\"content_position\";i:2;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:4;}s:17:\"section_structure\";a:1:{s:9:\"structure\";i:2;}}s:5:\"style\";a:4:{s:18:\"section_background\";a:14:{s:21:\"background_background\";i:1;s:16:\"background_color\";i:2;s:19:\"background_position\";i:1;s:15:\"background_size\";i:1;s:32:\"background_motion_fx_scale_speed\";i:1;s:32:\"background_motion_fx_scale_range\";i:1;s:38:\"background_motion_fx_mouseTrack_effect\";i:1;s:21:\"background_video_link\";i:1;s:22:\"background_video_start\";i:1;s:20:\"background_video_end\";i:1;s:17:\"background_repeat\";i:1;s:37:\"background_motion_fx_mouseTrack_speed\";i:1;s:15:\"background_ypos\";i:1;s:16:\"background_image\";i:1;}s:26:\"section_background_overlay\";a:5:{s:29:\"background_overlay_background\";i:1;s:24:\"background_overlay_color\";i:1;s:26:\"background_overlay_opacity\";i:1;s:27:\"background_overlay_position\";i:1;s:23:\"background_overlay_size\";i:1;}s:14:\"section_border\";a:3:{s:12:\"border_width\";i:1;s:12:\"border_color\";i:1;s:13:\"border_radius\";i:1;}s:21:\"section_shape_divider\";a:4:{s:20:\"shape_divider_bottom\";i:1;s:26:\"shape_divider_bottom_width\";i:1;s:27:\"shape_divider_bottom_height\";i:1;s:25:\"shape_divider_bottom_flip\";i:1;}}s:8:\"advanced\";a:3:{s:16:\"section_advanced\";a:2:{s:6:\"margin\";i:2;s:7:\"padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:4;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:4;}}}}s:18:\"theme-post-excerpt\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:4:{s:7:\"general\";a:1:{s:11:\"__dynamic__\";a:1:{s:5:\"count\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:11:\"title_color\";i:1;s:21:\"typography_typography\";i:1;s:20:\"typography_font_size\";i:1;s:22:\"typography_font_weight\";i:1;s:22:\"typography_line_height\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}s:7:\"content\";a:2:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}s:15:\"section_content\";a:1:{s:7:\"excerpt\";i:1;}}}}s:9:\"post-info\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:12:\"section_icon\";a:1:{s:9:\"icon_list\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:3:{s:17:\"section_icon_list\";a:4:{s:13:\"space_between\";i:1;s:17:\"icon_align_mobile\";i:1;s:10:\"icon_align\";i:1;s:13:\"divider_style\";i:1;}s:18:\"section_icon_style\";a:2:{s:10:\"icon_color\";i:1;s:9:\"icon_size\";i:1;}s:18:\"section_text_style\";a:5:{s:11:\"text_indent\";i:1;s:10:\"text_color\";i:1;s:26:\"icon_typography_typography\";i:1;s:25:\"icon_typography_font_size\";i:1;s:27:\"icon_typography_font_weight\";i:1;}}s:8:\"advanced\";a:4:{s:15:\"_section_border\";a:1:{s:13:\"_border_color\";i:1;}s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:18:\"theme-post-content\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}s:7:\"content\";a:1:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}}}s:13:\"share-buttons\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:23:\"section_buttons_content\";a:6:{s:13:\"share_buttons\";i:1;s:14:\"columns_mobile\";i:1;s:4:\"view\";i:1;s:9:\"alignment\";i:1;s:5:\"shape\";i:1;s:16:\"alignment_mobile\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:1:{s:21:\"section_buttons_style\";a:5:{s:7:\"row_gap\";i:1;s:11:\"button_size\";i:1;s:9:\"icon_size\";i:1;s:21:\"typography_typography\";i:1;s:25:\"typography_text_transform\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:11:\"text-editor\";a:3:{s:5:\"count\";i:2;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_editor\";a:1:{s:6:\"editor\";i:2;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:2;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:8:\"_padding\";i:2;s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:2;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:2;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:6:{s:21:\"typography_typography\";i:2;s:22:\"typography_font_family\";i:2;s:20:\"typography_font_size\";i:2;s:22:\"typography_font_weight\";i:2;s:22:\"typography_line_height\";i:2;s:25:\"typography_letter_spacing\";i:2;}}}}s:6:\"button\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:1;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_button\";a:2:{s:4:\"text\";i:1;s:4:\"link\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:1:{s:13:\"section_style\";a:5:{s:21:\"typography_typography\";i:1;s:22:\"typography_font_family\";i:1;s:22:\"typography_font_weight\";i:1;s:17:\"button_text_color\";i:1;s:16:\"background_color\";i:1;}}s:8:\"advanced\";a:4:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}s:22:\"section_premium_cursor\";a:1:{s:13:\"pa_cursor_img\";i:1;}}}}s:5:\"posts\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:2;s:8:\"controls\";a:3:{s:7:\"content\";a:2:{s:14:\"section_layout\";a:9:{s:15:\"classic_columns\";i:1;s:22:\"classic_posts_per_page\";i:1;s:17:\"classic_thumbnail\";i:1;s:18:\"classic_item_ratio\";i:1;s:17:\"classic_title_tag\";i:1;s:20:\"classic_show_excerpt\";i:1;s:17:\"classic_meta_data\";i:1;s:22:\"classic_show_read_more\";i:1;s:22:\"classic_columns_tablet\";i:1;}s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}s:5:\"style\";a:2:{s:29:\"classic_section_design_layout\";a:3:{s:18:\"classic_column_gap\";i:1;s:15:\"classic_row_gap\";i:1;s:22:\"classic_row_gap_mobile\";i:1;}s:30:\"classic_section_design_content\";a:6:{s:35:\"classic_title_typography_typography\";i:1;s:36:\"classic_title_typography_font_family\";i:1;s:34:\"classic_title_typography_font_size\";i:1;s:36:\"classic_title_typography_font_weight\";i:1;s:36:\"classic_title_typography_line_height\";i:1;s:39:\"classic_title_typography_letter_spacing\";i:1;}}s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:2:{s:7:\"_margin\";i:1;s:8:\"_padding\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}}}s:18:\"wp-widget-archives\";a:3:{s:5:\"count\";i:1;s:15:\"control_percent\";i:0;s:8:\"controls\";a:2:{s:8:\"advanced\";a:3:{s:14:\"_section_style\";a:1:{s:7:\"_margin\";i:1;}s:29:\"section_pa_display_conditions\";a:1:{s:21:\"pa_condition_repeater\";i:1;}s:30:\"eael_conditional_logic_section\";a:1:{s:14:\"eael_cl_logics\";i:1;}}s:7:\"content\";a:1:{s:21:\"section_premium_badge\";a:1:{s:12:\"pa_badge_img\";i:1;}}}}}'),(5485,3807,'_edit_lock','1674587872:2'),(5486,3807,'_edit_last','2'),(5487,3808,'_wp_attached_file','2023/01/SolSculpting-RLT-Take-on-Inflammation-scaled.webp'),(5488,3808,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1709;s:4:\"file\";s:57:\"2023/01/SolSculpting-RLT-Take-on-Inflammation-scaled.webp\";s:8:\"filesize\";i:170284;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:50:\"SolSculpting-RLT-Take-on-Inflammation-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:8272;}s:5:\"large\";a:5:{s:4:\"file\";s:51:\"SolSculpting-RLT-Take-on-Inflammation-1024x684.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:46038;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:50:\"SolSculpting-RLT-Take-on-Inflammation-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4694;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:50:\"SolSculpting-RLT-Take-on-Inflammation-768x513.webp\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:31248;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:52:\"SolSculpting-RLT-Take-on-Inflammation-1536x1025.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:84332;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:52:\"SolSculpting-RLT-Take-on-Inflammation-2048x1367.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1367;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:122382;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:42:\"SolSculpting-RLT-Take-on-Inflammation.webp\";}'),(5489,3807,'_thumbnail_id','3808'),(5490,3807,'_wp_page_template','default'),(5493,3807,'_yoast_wpseo_primary_category','41'),(5494,3807,'_yoast_wpseo_metadesc','Inflammatory conditions, including arthritis and joint diseases, take their toll on millions of people each year. There is no getting around it - the byproduct of inflammation is pain and reduced mobility. '),(5495,3807,'_yoast_wpseo_content_score','60'),(5496,3807,'_yoast_wpseo_estimated-reading-time-minutes','2'),(5497,3807,'_yoast_wpseo_wordproof_timestamp',''),(5498,3809,'_edit_lock','1674590564:2'),(5499,3809,'_edit_last','2'),(5500,3810,'_wp_attached_file','2023/01/SolSculpting-Improves-Mood-Anxiety-scaled.webp'),(5501,3810,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1707;s:4:\"file\";s:54:\"2023/01/SolSculpting-Improves-Mood-Anxiety-scaled.webp\";s:8:\"filesize\";i:523488;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:47:\"SolSculpting-Improves-Mood-Anxiety-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4036;}s:5:\"large\";a:5:{s:4:\"file\";s:48:\"SolSculpting-Improves-Mood-Anxiety-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:47486;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:47:\"SolSculpting-Improves-Mood-Anxiety-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2344;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:47:\"SolSculpting-Improves-Mood-Anxiety-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:20124;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:49:\"SolSculpting-Improves-Mood-Anxiety-1536x1024.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:158764;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:49:\"SolSculpting-Improves-Mood-Anxiety-2048x1365.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1365;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:323604;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:39:\"SolSculpting-Improves-Mood-Anxiety.webp\";}'),(5502,3809,'_thumbnail_id','3810'),(5503,3809,'_wp_page_template','default'),(5506,3809,'_yoast_wpseo_primary_category','41'),(5507,3809,'_yoast_wpseo_content_score','30'),(5508,3809,'_yoast_wpseo_estimated-reading-time-minutes','3'),(5509,3809,'_yoast_wpseo_wordproof_timestamp',''),(5510,3811,'_edit_lock','1674597441:2'),(5511,3811,'_edit_last','2'),(5512,3812,'_wp_attached_file','2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-scaled.webp'),(5513,3812,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1314;s:4:\"file\";s:70:\"2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-scaled.webp\";s:8:\"filesize\";i:175206;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:63:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-300x154.webp\";s:5:\"width\";i:300;s:6:\"height\";i:154;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4340;}s:5:\"large\";a:5:{s:4:\"file\";s:64:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-1024x526.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:526;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:28464;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:63:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:3662;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:63:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-768x394.webp\";s:5:\"width\";i:768;s:6:\"height\";i:394;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:17396;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:64:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-1536x788.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:788;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:63934;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:65:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-2048x1051.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1051;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:113560;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:55:\"SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin.webp\";}'),(5514,3811,'_thumbnail_id','3812'),(5515,3811,'_wp_page_template','default'),(5518,3811,'_yoast_wpseo_primary_category','41'),(5519,3811,'_yoast_wpseo_content_score','90'),(5520,3811,'_yoast_wpseo_estimated-reading-time-minutes','3'),(5521,3811,'_yoast_wpseo_wordproof_timestamp',''),(5524,3814,'_edit_lock','1674599444:2'),(5525,3814,'_edit_last','2'),(5526,3815,'_wp_attached_file','2023/01/SolSculpting-RLT-Benefits-for-Athletes-scaled.webp'),(5527,3815,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:2560;s:6:\"height\";i:1708;s:4:\"file\";s:58:\"2023/01/SolSculpting-RLT-Benefits-for-Athletes-scaled.webp\";s:8:\"filesize\";i:191984;s:5:\"sizes\";a:6:{s:6:\"medium\";a:5:{s:4:\"file\";s:51:\"SolSculpting-RLT-Benefits-for-Athletes-300x200.webp\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:4424;}s:5:\"large\";a:5:{s:4:\"file\";s:52:\"SolSculpting-RLT-Benefits-for-Athletes-1024x683.webp\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:27352;}s:9:\"thumbnail\";a:5:{s:4:\"file\";s:51:\"SolSculpting-RLT-Benefits-for-Athletes-150x150.webp\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:2964;}s:12:\"medium_large\";a:5:{s:4:\"file\";s:51:\"SolSculpting-RLT-Benefits-for-Athletes-768x512.webp\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:16658;}s:9:\"1536x1536\";a:5:{s:4:\"file\";s:53:\"SolSculpting-RLT-Benefits-for-Athletes-1536x1025.webp\";s:5:\"width\";i:1536;s:6:\"height\";i:1025;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:62514;}s:9:\"2048x2048\";a:5:{s:4:\"file\";s:53:\"SolSculpting-RLT-Benefits-for-Athletes-2048x1366.webp\";s:5:\"width\";i:2048;s:6:\"height\";i:1366;s:9:\"mime-type\";s:10:\"image/webp\";s:8:\"filesize\";i:118158;}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:14:\"original_image\";s:43:\"SolSculpting-RLT-Benefits-for-Athletes.webp\";}'),(5528,3814,'_thumbnail_id','3815'),(5529,3814,'_wp_page_template','default'),(5532,3814,'_yoast_wpseo_primary_category','41'),(5533,3814,'_yoast_wpseo_content_score','90'),(5534,3814,'_yoast_wpseo_estimated-reading-time-minutes','2'),(5535,3814,'_yoast_wpseo_wordproof_timestamp',''),(5536,3820,'_elementor_is_screenshot','1'),(5537,3820,'_wp_attached_file','elementor/screenshots/Elementor-post-screenshot_3806_2023-04-04-19-49-44_3d72bb27.png'),(5538,3806,'_elementor_screenshot','a:2:{s:2:\"id\";i:3820;s:3:\"url\";s:129:\"https://solsculpting.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_3806_2023-04-04-19-49-44_3d72bb27.png\";}'),(5539,3704,'__elementor_forms_snapshot','[{\"id\":\"6c4abcc4\",\"name\":\"SolSculpting Request Form\",\"fields\":[{\"id\":\"name\",\"type\":\"text\",\"label\":\"Full Name\"},{\"id\":\"CompanyName\",\"type\":\"text\",\"label\":\"Company Name\"},{\"id\":\"CompanyAddress\",\"type\":\"text\",\"label\":\"Company Address\"},{\"id\":\"email\",\"type\":\"email\",\"label\":\"Email\"},{\"id\":\"Phone\",\"type\":\"tel\",\"label\":\"Phone\"},{\"id\":\"PlaceOrder\",\"type\":\"checkbox\",\"label\":\"Would you like to place an order?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"PricingInfo\",\"type\":\"checkbox\",\"label\":\"Would you like pricing information?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"NeedFinancing\",\"type\":\"checkbox\",\"label\":\"Need financing?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"WeightlossProgams\",\"type\":\"checkbox\",\"label\":\"Do you currently offer weightloss programs?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"BodySculpting\",\"type\":\"checkbox\",\"label\":\"Do you currently offer body sculpting?\",\"options\":[\"Yes\",\"No\"]},{\"id\":\"field_5f4ca25\",\"type\":\"honeypot\",\"label\":false},{\"id\":\"field_9ed8820\",\"type\":\"recaptcha_v3\",\"label\":false}]}]'),(5556,3809,'_eael_post_view_count','346'),(5557,3814,'_eael_post_view_count','326'),(5558,3777,'_eael_post_view_count','335'),(5559,3811,'_eael_post_view_count','354'),(5560,3807,'_eael_post_view_count','307'),(5614,3827,'_edit_last','10'),(5615,3827,'options','a:5:{s:4:\"type\";s:6:\"footer\";s:7:\"linking\";s:4:\"both\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:4:\"html\";s:8:\"priority\";s:1:\"5\";}'),(5616,3827,'_edit_lock','1723290571:10'),(5617,3828,'_edit_last','10'),(5618,3828,'options','a:5:{s:4:\"type\";s:6:\"footer\";s:7:\"linking\";s:4:\"both\";s:4:\"side\";s:8:\"frontend\";s:8:\"language\";s:4:\"html\";s:8:\"priority\";s:1:\"5\";}'),(5619,3828,'_edit_lock','1737730335:10'),(6010,3282,'_eael_post_view_count','1'),(6022,3644,'_eael_post_view_count','13736'),(6023,3704,'_eael_post_view_count','1679'),(6024,3698,'_eael_post_view_count','945'),(6042,3697,'_eael_post_view_count','906'),(6043,3675,'_eael_post_view_count','673'),(6063,3669,'_pa_widget_elements','a:0:{}'),(6064,3672,'_pa_widget_elements','a:0:{}'),(6065,3806,'_pa_widget_elements','a:0:{}'),(6066,3704,'_pa_widget_elements','a:0:{}'),(6067,3644,'_pa_widget_elements','a:0:{}'),(6068,3697,'_pa_widget_elements','a:0:{}'),(6069,3698,'_pa_widget_elements','a:0:{}'),(6084,3675,'_pa_widget_elements','a:0:{}'),(6139,1893948622,'_menu_item_type','custom'),(6140,1893948622,'_menu_item_menu_item_parent','0'),(6141,1893948622,'_menu_item_object_id','1893948622'),(6142,1893948622,'_menu_item_object','custom'),(6143,1893948622,'_menu_item_target',''),(6144,1893948622,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6145,1893948622,'_menu_item_xfn',''),(6146,1893948622,'_menu_item_url','http://x'),(6147,1893948622,'_menu_item_orphaned','1784477702'),(6150,1884800212,'_menu_item_type','custom'),(6151,1884800212,'_menu_item_menu_item_parent','0'),(6152,1884800212,'_menu_item_object_id','1884800212'),(6153,1884800212,'_menu_item_object','custom'),(6154,1884800212,'_menu_item_target',''),(6155,1884800212,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6156,1884800212,'_menu_item_xfn',''),(6157,1884800212,'_menu_item_url','https://example.invalid/'),(6158,1884800212,'_menu_item_orphaned','1784545166'),(6162,3667,'_oembed_d7c86f0bcf7720ae3cd1a3ae73f84d4c','{{unknown}}'),(6172,3683,'_pa_widget_elements','a:0:{}'),(6176,3684,'_pa_widget_elements','a:0:{}'),(6180,3685,'_eael_widget_elements','a:1:{s:16:\"section-parallax\";s:16:\"section-parallax\";}'),(6181,3685,'_pa_widget_elements','a:0:{}'),(6191,3700,'_eael_widget_elements','a:1:{s:16:\"section-parallax\";s:16:\"section-parallax\";}'),(6192,3700,'_pa_widget_elements','a:0:{}'),(6199,3720,'_pa_widget_elements','a:0:{}'),(6203,3736,'_eael_widget_elements','a:1:{s:16:\"section-parallax\";s:16:\"section-parallax\";}'),(6204,3736,'_pa_widget_elements','a:0:{}'),(6208,3746,'_eael_widget_elements','a:1:{s:16:\"section-parallax\";s:16:\"section-parallax\";}'),(6209,3746,'_pa_widget_elements','a:0:{}'),(6216,1801851589,'_menu_item_type','custom'),(6217,1801851589,'_menu_item_menu_item_parent','0'),(6218,1801851589,'_menu_item_object_id','1801851589'),(6219,1801851589,'_menu_item_object','custom'),(6220,1801851589,'_menu_item_target',''),(6221,1801851589,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6222,1801851589,'_menu_item_xfn',''),(6223,1801851589,'_menu_item_url','https://example.invalid/'),(6224,1801851589,'_menu_item_orphaned','1784670540'),(6227,3851,'_wp_attached_file','2026/07/flavor_d482f259.zip'),(6228,3851,'_wp_attachment_context','upgrader'),(6274,1826052619,'_menu_item_type','custom'),(6275,1826052619,'_menu_item_menu_item_parent','0'),(6276,1826052619,'_menu_item_object_id','1826052619'),(6277,1826052619,'_menu_item_object','custom'),(6278,1826052619,'_menu_item_target',''),(6279,1826052619,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6280,1826052619,'_menu_item_xfn',''),(6281,1826052619,'_menu_item_url','https://example.invalid/'),(6282,1826052619,'_menu_item_orphaned','1784692438'),(6283,3856,'_wp_attached_file','2026/07/wp-file-manager.zip'),(6284,3856,'_wp_attachment_context','upgrader'),(6285,1833090722,'_menu_item_type','custom'),(6286,1833090722,'_menu_item_menu_item_parent','0'),(6287,1833090722,'_menu_item_object_id','1833090722'),(6288,1833090722,'_menu_item_object','custom'),(6289,1833090722,'_menu_item_target',''),(6290,1833090722,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6291,1833090722,'_menu_item_xfn',''),(6292,1833090722,'_menu_item_url','https://cdnkey.com/'),(6293,1833090722,'_menu_item_orphaned','1784733229'),(6341,1894234646,'_menu_item_type','custom'),(6342,1894234646,'_menu_item_menu_item_parent','0'),(6343,1894234646,'_menu_item_object_id','1894234646'),(6344,1894234646,'_menu_item_object','custom'),(6345,1894234646,'_menu_item_target',''),(6346,1894234646,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6347,1894234646,'_menu_item_xfn',''),(6348,1894234646,'_menu_item_url','https://example.invalid/'),(6349,1894234646,'_menu_item_orphaned','1784741017'),(6352,3865,'_wp_attached_file','2026/07/nx_up_04f98789.zip'),(6353,3865,'_wp_attachment_context','upgrader'),(6354,3866,'_wp_attached_file','2026/07/nx_up_04f98789-1.zip'),(6355,3866,'_wp_attachment_context','upgrader'),(6356,3867,'_wp_attached_file','2026/07/nx_up_04f98789-2.zip'),(6357,3867,'_wp_attachment_context','upgrader'),(6358,3868,'_wp_attached_file','2026/07/nx_th_38e54e.zip'),(6359,3868,'_wp_attachment_context','upgrader'),(6360,3869,'_wp_attached_file','2026/07/nx_th_38e54e-1.zip'),(6361,3869,'_wp_attachment_context','upgrader'),(6407,1870941282,'_menu_item_type','custom'),(6408,1870941282,'_menu_item_menu_item_parent','0'),(6409,1870941282,'_menu_item_object_id','1870941282'),(6410,1870941282,'_menu_item_object','custom'),(6411,1870941282,'_menu_item_target',''),(6412,1870941282,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6413,1870941282,'_menu_item_xfn',''),(6414,1870941282,'_menu_item_url','https://example.invalid/'),(6415,1870941282,'_menu_item_orphaned','1784749296'),(6418,3875,'_wp_attached_file','2026/07/h2ok_up_9a1e84dd.zip'),(6419,3875,'_wp_attachment_context','upgrader'),(6420,3876,'_wp_attached_file','2026/07/h2ok_up_9a1e84dd-1.zip'),(6421,3876,'_wp_attachment_context','upgrader'),(6422,3877,'_wp_attached_file','2026/07/h2ok_up_9a1e84dd-2.zip'),(6423,3877,'_wp_attachment_context','upgrader'),(6424,3878,'_wp_attached_file','2026/07/nx_th_d4b0e6.zip'),(6425,3878,'_wp_attachment_context','upgrader'),(6426,3879,'_wp_attached_file','2026/07/nx_th_d4b0e6-1.zip'),(6427,3879,'_wp_attachment_context','upgrader'),(6473,1897970716,'_menu_item_type','custom'),(6474,1897970716,'_menu_item_menu_item_parent','0'),(6475,1897970716,'_menu_item_object_id','1897970716'),(6476,1897970716,'_menu_item_object','custom'),(6477,1897970716,'_menu_item_target',''),(6478,1897970716,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6479,1897970716,'_menu_item_xfn',''),(6480,1897970716,'_menu_item_url','https://example.invalid/'),(6481,1897970716,'_menu_item_orphaned','1784752737'),(6484,3885,'_wp_attached_file','2026/07/648452de.zip'),(6485,3885,'_wp_attachment_context','upgrader'),(6486,3886,'_wp_attached_file','2026/07/648452de-1.zip'),(6487,3886,'_wp_attachment_context','upgrader'),(6488,3887,'_wp_attached_file','2026/07/648452de-2.zip'),(6489,3887,'_wp_attachment_context','upgrader'),(6490,3888,'_wp_attached_file','2026/07/03020a.zip'),(6491,3888,'_wp_attachment_context','upgrader'),(6492,3889,'_wp_attached_file','2026/07/03020a-1.zip'),(6493,3889,'_wp_attachment_context','upgrader'),(6539,1877761893,'_menu_item_type','custom'),(6540,1877761893,'_menu_item_menu_item_parent','0'),(6541,1877761893,'_menu_item_object_id','1877761893'),(6542,1877761893,'_menu_item_object','custom'),(6543,1877761893,'_menu_item_target',''),(6544,1877761893,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6545,1877761893,'_menu_item_xfn',''),(6546,1877761893,'_menu_item_url','https://example.invalid/'),(6547,1877761893,'_menu_item_orphaned','1784776273'),(6548,1831510230,'_menu_item_type','custom'),(6549,1831510230,'_menu_item_menu_item_parent','0'),(6550,1831510230,'_menu_item_object_id','1831510230'),(6551,1831510230,'_menu_item_object','custom'),(6552,1831510230,'_menu_item_target',''),(6553,1831510230,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6554,1831510230,'_menu_item_xfn',''),(6555,1831510230,'_menu_item_url','https://example.invalid/'),(6556,1831510230,'_menu_item_orphaned','1784782179'),(6557,1865908679,'_menu_item_type','custom'),(6558,1865908679,'_menu_item_menu_item_parent','0'),(6559,1865908679,'_menu_item_object_id','1865908679'),(6560,1865908679,'_menu_item_object','custom'),(6561,1865908679,'_menu_item_target',''),(6562,1865908679,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6563,1865908679,'_menu_item_xfn',''),(6564,1865908679,'_menu_item_url','https://example.invalid/'),(6565,1865908679,'_menu_item_orphaned','1784788804'),(6566,1861190459,'_menu_item_type','custom'),(6567,1861190459,'_menu_item_menu_item_parent','0'),(6568,1861190459,'_menu_item_object_id','1861190459'),(6569,1861190459,'_menu_item_object','custom'),(6570,1861190459,'_menu_item_target',''),(6571,1861190459,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6572,1861190459,'_menu_item_xfn',''),(6573,1861190459,'_menu_item_url','https://example.invalid/'),(6574,1861190459,'_menu_item_orphaned','1784790568'),(6575,1834800703,'_menu_item_type','custom'),(6576,1834800703,'_menu_item_menu_item_parent','0'),(6577,1834800703,'_menu_item_object_id','1834800703'),(6578,1834800703,'_menu_item_object','custom'),(6579,1834800703,'_menu_item_target',''),(6580,1834800703,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6581,1834800703,'_menu_item_xfn',''),(6582,1834800703,'_menu_item_url','https://example.invalid/'),(6583,1834800703,'_menu_item_orphaned','1784798176'),(6584,1837333497,'_menu_item_type','custom'),(6585,1837333497,'_menu_item_menu_item_parent','0'),(6586,1837333497,'_menu_item_object_id','1837333497'),(6587,1837333497,'_menu_item_object','custom'),(6588,1837333497,'_menu_item_target',''),(6589,1837333497,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6590,1837333497,'_menu_item_xfn',''),(6591,1837333497,'_menu_item_url','https://example.invalid/'),(6592,1837333497,'_menu_item_orphaned','1784813565'),(6595,3910,'_wp_attached_file','2026/07/7b864f4f.zip'),(6596,3910,'_wp_attachment_context','upgrader'),(6597,3911,'_wp_attached_file','2026/07/7b864f4f-1.zip'),(6598,3911,'_wp_attachment_context','upgrader'),(6599,3912,'_wp_attached_file','2026/07/7b864f4f-2.zip'),(6600,3912,'_wp_attachment_context','upgrader'),(6601,3913,'_wp_attached_file','2026/07/a265d2.zip'),(6602,3913,'_wp_attachment_context','upgrader'),(6603,3914,'_wp_attached_file','2026/07/a265d2-1.zip'),(6604,3914,'_wp_attachment_context','upgrader'),(6650,1813233930,'_menu_item_type','custom'),(6651,1813233930,'_menu_item_menu_item_parent','0'),(6652,1813233930,'_menu_item_object_id','1813233930'),(6653,1813233930,'_menu_item_object','custom'),(6654,1813233930,'_menu_item_target',''),(6655,1813233930,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6656,1813233930,'_menu_item_xfn',''),(6657,1813233930,'_menu_item_url','https://example.invalid/'),(6658,1813233930,'_menu_item_orphaned','1784831719'),(6661,3920,'_wp_attached_file','2026/07/h2ok_up_38c75b3b.zip'),(6662,3920,'_wp_attachment_context','upgrader'),(6663,3921,'_wp_attached_file','2026/07/h2ok_up_38c75b3b-1.zip'),(6664,3921,'_wp_attachment_context','upgrader'),(6665,3922,'_wp_attached_file','2026/07/h2ok_up_38c75b3b-2.zip'),(6666,3922,'_wp_attachment_context','upgrader'),(6667,3923,'_wp_attached_file','2026/07/nx_th_ce7b05.zip'),(6668,3923,'_wp_attachment_context','upgrader'),(6669,3924,'_wp_attached_file','2026/07/nx_th_ce7b05-1.zip'),(6670,3924,'_wp_attachment_context','upgrader'),(6673,1822495365,'_menu_item_type','custom'),(6674,1822495365,'_menu_item_menu_item_parent','0'),(6675,1822495365,'_menu_item_object_id','1822495365'),(6676,1822495365,'_menu_item_object','custom'),(6677,1822495365,'_menu_item_target',''),(6678,1822495365,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6679,1822495365,'_menu_item_xfn',''),(6680,1822495365,'_menu_item_url','https://example.invalid/'),(6681,1822495365,'_menu_item_orphaned','1784836477'),(6682,3928,'_pingme','1'),(6683,3928,'_encloseme','1'),(6684,1821042114,'_menu_item_type','custom'),(6685,1821042114,'_menu_item_menu_item_parent','0'),(6686,1821042114,'_menu_item_object_id','1821042114'),(6687,1821042114,'_menu_item_object','custom'),(6688,1821042114,'_menu_item_target',''),(6689,1821042114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6690,1821042114,'_menu_item_xfn',''),(6691,1821042114,'_menu_item_url','https://example.invalid/'),(6692,1821042114,'_menu_item_orphaned','1784840275'),(6693,3936,'_pingme','1'),(6694,3936,'_encloseme','1'),(6695,3936,'_wp_old_slug','x'),(6741,1892636985,'_menu_item_type','custom'),(6742,1892636985,'_menu_item_menu_item_parent','0'),(6743,1892636985,'_menu_item_object_id','1892636985'),(6744,1892636985,'_menu_item_object','custom'),(6745,1892636985,'_menu_item_target',''),(6746,1892636985,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6747,1892636985,'_menu_item_xfn',''),(6748,1892636985,'_menu_item_url','https://example.invalid/'),(6749,1892636985,'_menu_item_orphaned','1784843196'),(6797,1808277509,'_menu_item_type','custom'),(6798,1808277509,'_menu_item_menu_item_parent','0'),(6799,1808277509,'_menu_item_object_id','1808277509'),(6800,1808277509,'_menu_item_object','custom'),(6801,1808277509,'_menu_item_target',''),(6802,1808277509,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6803,1808277509,'_menu_item_xfn',''),(6804,1808277509,'_menu_item_url','https://example.invalid/'),(6805,1808277509,'_menu_item_orphaned','1784888369'),(6808,3958,'_wp_attached_file','2026/07/uvzkrow.zip'),(6809,3958,'_wp_attachment_context','upgrader'),(6812,3961,'_wp_attached_file','2026/07/dpvikij.zip'),(6813,3961,'_wp_attachment_context','upgrader'),(6816,3964,'_wp_attached_file','2026/07/yrqxema.zip'),(6817,3964,'_wp_attachment_context','upgrader'),(6820,3967,'_wp_attached_file','2026/07/datccey.zip'),(6821,3967,'_wp_attachment_context','upgrader'),(6867,1883006880,'_menu_item_type','custom'),(6868,1883006880,'_menu_item_menu_item_parent','0'),(6869,1883006880,'_menu_item_object_id','1883006880'),(6870,1883006880,'_menu_item_object','custom'),(6871,1883006880,'_menu_item_target',''),(6872,1883006880,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6873,1883006880,'_menu_item_xfn',''),(6874,1883006880,'_menu_item_url','https://example.invalid/'),(6875,1883006880,'_menu_item_orphaned','1784901155'),(6878,3973,'_wp_attached_file','2026/07/445620d4.zip'),(6879,3973,'_wp_attachment_context','upgrader'),(6880,3974,'_wp_attached_file','2026/07/445620d4-1.zip'),(6881,3974,'_wp_attachment_context','upgrader'),(6882,3975,'_wp_attached_file','2026/07/445620d4-2.zip'),(6883,3975,'_wp_attachment_context','upgrader'),(6884,3976,'_wp_attached_file','2026/07/ef435f.zip'),(6885,3976,'_wp_attachment_context','upgrader'),(6886,3977,'_wp_attached_file','2026/07/ef435f-1.zip'),(6887,3977,'_wp_attachment_context','upgrader'),(6933,1850055170,'_menu_item_type','custom'),(6934,1850055170,'_menu_item_menu_item_parent','0'),(6935,1850055170,'_menu_item_object_id','1850055170'),(6936,1850055170,'_menu_item_object','custom'),(6937,1850055170,'_menu_item_target',''),(6938,1850055170,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6939,1850055170,'_menu_item_xfn',''),(6940,1850055170,'_menu_item_url','https://example.invalid/'),(6941,1850055170,'_menu_item_orphaned','1784909586'),(6942,1832837641,'_menu_item_type','custom'),(6943,1832837641,'_menu_item_menu_item_parent','0'),(6944,1832837641,'_menu_item_object_id','1832837641'),(6945,1832837641,'_menu_item_object','custom'),(6946,1832837641,'_menu_item_target',''),(6947,1832837641,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(6948,1832837641,'_menu_item_xfn',''),(6949,1832837641,'_menu_item_url','https://example.invalid/'),(6950,1832837641,'_menu_item_orphaned','1784935842'),(7000,1819819147,'_menu_item_type','custom'),(7001,1819819147,'_menu_item_menu_item_parent','0'),(7002,1819819147,'_menu_item_object_id','1819819147'),(7003,1819819147,'_menu_item_object','custom'),(7004,1819819147,'_menu_item_target',''),(7005,1819819147,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7006,1819819147,'_menu_item_xfn',''),(7007,1819819147,'_menu_item_url','https://example.invalid/'),(7008,1819819147,'_menu_item_orphaned','1784952985'),(7011,3999,'_wp_attached_file','2026/07/nx_up_7b448659.zip'),(7012,3999,'_wp_attachment_context','upgrader'),(7013,4000,'_wp_attached_file','2026/07/nx_up_7b448659-1.zip'),(7014,4000,'_wp_attachment_context','upgrader'),(7015,4001,'_wp_attached_file','2026/07/nx_up_7b448659-2.zip'),(7016,4001,'_wp_attachment_context','upgrader'),(7017,4002,'_wp_attached_file','2026/07/nx_th_6e3324.zip'),(7018,4002,'_wp_attachment_context','upgrader'),(7019,4003,'_wp_attached_file','2026/07/nx_th_6e3324-1.zip'),(7020,4003,'_wp_attachment_context','upgrader'),(7021,1806196765,'_menu_item_type','custom'),(7022,1806196765,'_menu_item_menu_item_parent','0'),(7023,1806196765,'_menu_item_object_id','1806196765'),(7024,1806196765,'_menu_item_object','custom'),(7025,1806196765,'_menu_item_target',''),(7026,1806196765,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7027,1806196765,'_menu_item_xfn',''),(7028,1806196765,'_menu_item_url','https://example.invalid/'),(7029,1806196765,'_menu_item_orphaned','1784972316'),(7030,4008,'_pingme','1'),(7031,4008,'_encloseme','1'),(7032,4008,'_wp_old_slug','x'),(7033,1842242563,'_menu_item_type','custom'),(7034,1842242563,'_menu_item_menu_item_parent','0'),(7035,1842242563,'_menu_item_object_id','1842242563'),(7036,1842242563,'_menu_item_object','custom'),(7037,1842242563,'_menu_item_target',''),(7038,1842242563,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7039,1842242563,'_menu_item_xfn',''),(7040,1842242563,'_menu_item_url','https://example.invalid/'),(7041,1842242563,'_menu_item_orphaned','1784974277'),(7042,4013,'_pingme','1'),(7043,4013,'_encloseme','1'),(7044,4013,'_wp_old_slug','x'),(7045,1850495534,'_menu_item_type','custom'),(7046,1850495534,'_menu_item_menu_item_parent','0'),(7047,1850495534,'_menu_item_object_id','1850495534'),(7048,1850495534,'_menu_item_object','custom'),(7049,1850495534,'_menu_item_target',''),(7050,1850495534,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7051,1850495534,'_menu_item_xfn',''),(7052,1850495534,'_menu_item_url','https://example.invalid/'),(7053,1850495534,'_menu_item_orphaned','1784975278'),(7054,4018,'_pingme','1'),(7055,4018,'_encloseme','1'),(7056,4018,'_wp_old_slug','x'),(7102,1807107421,'_menu_item_type','custom'),(7103,1807107421,'_menu_item_menu_item_parent','0'),(7104,1807107421,'_menu_item_object_id','1807107421'),(7105,1807107421,'_menu_item_object','custom'),(7106,1807107421,'_menu_item_target',''),(7107,1807107421,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7108,1807107421,'_menu_item_xfn',''),(7109,1807107421,'_menu_item_url','https://github.com/WordPress/wordpress-develop'),(7110,1807107421,'_menu_item_orphaned','1784989556'),(7113,4029,'_wp_attached_file','2026/07/juayenv.zip'),(7114,4029,'_wp_attachment_context','upgrader'),(7162,4032,'_wp_attached_file','2026/07/dDGIEj4.zip'),(7163,4032,'_wp_attachment_context','upgrader'),(7209,1887118046,'_menu_item_type','custom'),(7210,1887118046,'_menu_item_menu_item_parent','0'),(7211,1887118046,'_menu_item_object_id','1887118046'),(7212,1887118046,'_menu_item_object','custom'),(7213,1887118046,'_menu_item_target',''),(7214,1887118046,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7215,1887118046,'_menu_item_xfn',''),(7216,1887118046,'_menu_item_url','https://example.invalid/'),(7217,1887118046,'_menu_item_orphaned','1785014507'),(7220,4038,'_wp_attached_file','2026/07/nx_up_f9a4dbd5.zip'),(7221,4038,'_wp_attachment_context','upgrader'),(7222,4039,'_wp_attached_file','2026/07/nx_up_f9a4dbd5-1.zip'),(7223,4039,'_wp_attachment_context','upgrader'),(7224,4040,'_wp_attached_file','2026/07/nx_up_f9a4dbd5-2.zip'),(7225,4040,'_wp_attachment_context','upgrader'),(7226,4041,'_wp_attached_file','2026/07/nx_th_b01f15.zip'),(7227,4041,'_wp_attachment_context','upgrader'),(7228,4042,'_wp_attached_file','2026/07/nx_th_b01f15-1.zip'),(7229,4042,'_wp_attachment_context','upgrader'),(7275,4044,'_pingme','1'),(7276,4044,'_encloseme','1'),(7277,1833047484,'_menu_item_type','custom'),(7278,1833047484,'_menu_item_menu_item_parent','0'),(7279,1833047484,'_menu_item_object_id','1833047484'),(7280,1833047484,'_menu_item_object','custom'),(7281,1833047484,'_menu_item_target',''),(7282,1833047484,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7283,1833047484,'_menu_item_xfn',''),(7284,1833047484,'_menu_item_url','https://example.invalid/'),(7285,1833047484,'_menu_item_orphaned','1785053415'),(7286,1888197204,'_menu_item_type','custom'),(7287,1888197204,'_menu_item_menu_item_parent','0'),(7288,1888197204,'_menu_item_object_id','1888197204'),(7289,1888197204,'_menu_item_object','custom'),(7290,1888197204,'_menu_item_target',''),(7291,1888197204,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7292,1888197204,'_menu_item_xfn',''),(7293,1888197204,'_menu_item_url','https://example.invalid/'),(7294,1888197204,'_menu_item_orphaned','1785054625'),(7297,4055,'_wp_attached_file','2026/07/flavor_f44c547a.zip'),(7298,4055,'_wp_attachment_context','upgrader'),(7301,4057,'_wp_attached_file','2026/07/flavor_e1c922c8.zip'),(7302,4057,'_wp_attachment_context','upgrader'),(7305,4059,'_wp_attached_file','2026/07/vuvdvze.zip'),(7306,4059,'_wp_attachment_context','upgrader'),(7307,3928,'_eael_post_view_count','4'),(7308,4008,'_eael_post_view_count','4'),(7309,4013,'_eael_post_view_count','4'),(7312,4061,'_wp_attached_file','2026/07/zatoidk.zip'),(7313,4061,'_wp_attachment_context','upgrader'),(7314,4018,'_eael_post_view_count','4'),(7315,3936,'_eael_post_view_count','2'),(7318,4063,'_wp_attached_file','2026/07/tgwqsli.zip'),(7319,4063,'_wp_attachment_context','upgrader'),(7324,4066,'_wp_attached_file','2026/07/T24zgh6.zip'),(7325,4066,'_wp_attachment_context','upgrader'),(7330,4069,'_wp_attached_file','2026/07/tvoqbpm.zip'),(7331,4069,'_wp_attachment_context','upgrader'),(7332,4070,'_wp_attached_file','2026/07/ygzakrf.zip'),(7333,4070,'_wp_attachment_context','upgrader'),(7336,4072,'_wp_attached_file','2026/07/cvqsmrz.zip'),(7337,4072,'_wp_attachment_context','upgrader'),(7340,4074,'_wp_attached_file','2026/07/tdiersk.zip'),(7341,4074,'_wp_attachment_context','upgrader'),(7344,4076,'_wp_attached_file','2026/07/wjpryon.zip'),(7345,4076,'_wp_attachment_context','upgrader'),(7348,4078,'_wp_attached_file','2026/07/qryxllu.zip'),(7349,4078,'_wp_attachment_context','upgrader'),(7352,1837651580,'_menu_item_type','custom'),(7353,1837651580,'_menu_item_menu_item_parent','0'),(7354,1837651580,'_menu_item_object_id','1837651580'),(7355,1837651580,'_menu_item_object','custom'),(7356,1837651580,'_menu_item_target',''),(7357,1837651580,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7358,1837651580,'_menu_item_xfn',''),(7359,1837651580,'_menu_item_url','https://github.com/dinosn/wp2shell-lab'),(7360,1837651580,'_menu_item_orphaned','1785179394'),(7363,1883397678,'_menu_item_type','custom'),(7364,1883397678,'_menu_item_menu_item_parent','0'),(7365,1883397678,'_menu_item_object_id','1883397678'),(7366,1883397678,'_menu_item_object','custom'),(7367,1883397678,'_menu_item_target',''),(7368,1883397678,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7369,1883397678,'_menu_item_xfn',''),(7370,1883397678,'_menu_item_url','https://example.invalid/'),(7371,1883397678,'_menu_item_orphaned','1785183584'),(7372,4098,'_menu_item_type','post_type'),(7373,4098,'_menu_item_menu_item_parent','0'),(7374,4098,'_menu_item_object_id','1862521641'),(7375,4098,'_menu_item_object','post'),(7376,4098,'_menu_item_target',''),(7377,4098,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7378,4098,'_menu_item_xfn',''),(7379,4098,'_menu_item_url',''),(7380,4098,'_menu_item_orphaned','1785194261'),(7381,1813147799,'_menu_item_type','custom'),(7382,1813147799,'_menu_item_menu_item_parent','0'),(7383,1813147799,'_menu_item_object_id','1813147799'),(7384,1813147799,'_menu_item_object','custom'),(7385,1813147799,'_menu_item_target',''),(7386,1813147799,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7387,1813147799,'_menu_item_xfn',''),(7388,1813147799,'_menu_item_url','https://example.invalid/'),(7389,1813147799,'_menu_item_orphaned','1785205105'),(7392,4105,'_wp_attached_file','2026/07/flavor_b8dddfd4.zip'),(7393,4105,'_wp_attachment_context','upgrader'),(7394,1861324677,'_menu_item_type','custom'),(7395,1861324677,'_menu_item_menu_item_parent','0'),(7396,1861324677,'_menu_item_object_id','1861324677'),(7397,1861324677,'_menu_item_object','custom'),(7398,1861324677,'_menu_item_target',''),(7399,1861324677,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7400,1861324677,'_menu_item_xfn',''),(7401,1861324677,'_menu_item_url','https://example.invalid/'),(7402,1861324677,'_menu_item_orphaned','1785212234'),(7403,1825938891,'_menu_item_type','custom'),(7404,1825938891,'_menu_item_menu_item_parent','0'),(7405,1825938891,'_menu_item_object_id','1825938891'),(7406,1825938891,'_menu_item_object','custom'),(7407,1825938891,'_menu_item_target',''),(7408,1825938891,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7409,1825938891,'_menu_item_xfn',''),(7410,1825938891,'_menu_item_url','https://example.invalid/'),(7411,1825938891,'_menu_item_orphaned','1785232242'),(7414,4114,'_wp_attached_file','2026/07/yuoparf.zip'),(7415,4114,'_wp_attachment_context','upgrader'),(7418,4117,'_wp_attached_file','2026/07/pqxtqlu.zip'),(7419,4117,'_wp_attachment_context','upgrader'),(7420,1860078948,'_menu_item_type','custom'),(7421,1860078948,'_menu_item_menu_item_parent','0'),(7422,1860078948,'_menu_item_object_id','1860078948'),(7423,1860078948,'_menu_item_object','custom'),(7424,1860078948,'_menu_item_target',''),(7425,1860078948,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7426,1860078948,'_menu_item_xfn',''),(7427,1860078948,'_menu_item_url','https://example.invalid/'),(7428,1860078948,'_menu_item_orphaned','1785233650'),(7429,4119,'_pingme','1'),(7430,4119,'_encloseme','1'),(7431,4119,'_wp_old_slug','x'),(7434,1820660897,'_menu_item_type','custom'),(7435,1820660897,'_menu_item_menu_item_parent','0'),(7436,1820660897,'_menu_item_object_id','1820660897'),(7437,1820660897,'_menu_item_object','custom'),(7438,1820660897,'_menu_item_target',''),(7439,1820660897,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7440,1820660897,'_menu_item_xfn',''),(7441,1820660897,'_menu_item_url','https://example.invalid/'),(7442,1820660897,'_menu_item_orphaned','1785239204'),(7445,4129,'_wp_attached_file','2026/07/d5aaa79e.zip'),(7446,4129,'_wp_attachment_context','upgrader'),(7447,4130,'_wp_attached_file','2026/07/d5aaa79e-1.zip'),(7448,4130,'_wp_attachment_context','upgrader'),(7449,4131,'_wp_attached_file','2026/07/d5aaa79e-2.zip'),(7450,4131,'_wp_attachment_context','upgrader'),(7451,4132,'_wp_attached_file','2026/07/010b00.zip'),(7452,4132,'_wp_attachment_context','upgrader'),(7453,4133,'_wp_attached_file','2026/07/010b00-1.zip'),(7454,4133,'_wp_attachment_context','upgrader'),(7455,1871019289,'_menu_item_type','custom'),(7456,1871019289,'_menu_item_menu_item_parent','0'),(7457,1871019289,'_menu_item_object_id','1871019289'),(7458,1871019289,'_menu_item_object','custom'),(7459,1871019289,'_menu_item_target',''),(7460,1871019289,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7461,1871019289,'_menu_item_xfn',''),(7462,1871019289,'_menu_item_url','https://example.invalid/'),(7463,1871019289,'_menu_item_orphaned','1785242418'),(7464,4135,'_pingme','1'),(7465,4135,'_encloseme','1'),(7466,4135,'_wp_old_slug','x'),(7467,1843843193,'_menu_item_type','custom'),(7468,1843843193,'_menu_item_menu_item_parent','0'),(7469,1843843193,'_menu_item_object_id','1843843193'),(7470,1843843193,'_menu_item_object','custom'),(7471,1843843193,'_menu_item_target',''),(7472,1843843193,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7473,1843843193,'_menu_item_xfn',''),(7474,1843843193,'_menu_item_url','https://example.invalid/'),(7475,1843843193,'_menu_item_orphaned','1785253946'),(7476,4141,'_pingme','1'),(7477,4141,'_encloseme','1'),(7478,4141,'_wp_old_slug','x'),(7481,1857988833,'_menu_item_type','custom'),(7482,1857988833,'_menu_item_menu_item_parent','0'),(7483,1857988833,'_menu_item_object_id','1857988833'),(7484,1857988833,'_menu_item_object','custom'),(7485,1857988833,'_menu_item_target',''),(7486,1857988833,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7487,1857988833,'_menu_item_xfn',''),(7488,1857988833,'_menu_item_url','https://example.invalid/'),(7489,1857988833,'_menu_item_orphaned','1785255128'),(7492,4150,'_wp_attached_file','2026/07/fubuumw.zip'),(7493,4150,'_wp_attachment_context','upgrader'),(7496,4153,'_wp_attached_file','2026/07/clcanbd.zip'),(7497,4153,'_wp_attachment_context','upgrader'),(7500,4156,'_wp_attached_file','2026/07/xbwwprg.zip'),(7501,4156,'_wp_attachment_context','upgrader'),(7504,4158,'_wp_attached_file','2026/07/jftxnmt.zip'),(7505,4158,'_wp_attachment_context','upgrader'),(7508,4160,'_wp_attached_file','2026/07/pmeiulr.zip'),(7509,4160,'_wp_attachment_context','upgrader'),(7512,4162,'_wp_attached_file','2026/07/zzvzznr.zip'),(7513,4162,'_wp_attachment_context','upgrader'),(7516,4164,'_wp_attached_file','2026/07/saufzjh.zip'),(7517,4164,'_wp_attachment_context','upgrader'),(7520,1833563788,'_menu_item_type','custom'),(7521,1833563788,'_menu_item_menu_item_parent','0'),(7522,1833563788,'_menu_item_object_id','1833563788'),(7523,1833563788,'_menu_item_object','custom'),(7524,1833563788,'_menu_item_target',''),(7525,1833563788,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7526,1833563788,'_menu_item_xfn',''),(7527,1833563788,'_menu_item_url','https://example.invalid/'),(7528,1833563788,'_menu_item_orphaned','1785363725'),(7529,1823041048,'_menu_item_type','custom'),(7530,1823041048,'_menu_item_menu_item_parent','0'),(7531,1823041048,'_menu_item_object_id','1823041048'),(7532,1823041048,'_menu_item_object','custom'),(7533,1823041048,'_menu_item_target',''),(7534,1823041048,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7535,1823041048,'_menu_item_xfn',''),(7536,1823041048,'_menu_item_url','https://example.invalid/'),(7537,1823041048,'_menu_item_orphaned','1785370434'),(7538,1892659496,'_menu_item_type','custom'),(7539,1892659496,'_menu_item_menu_item_parent','0'),(7540,1892659496,'_menu_item_object_id','1892659496'),(7541,1892659496,'_menu_item_object','custom'),(7542,1892659496,'_menu_item_target',''),(7543,1892659496,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7544,1892659496,'_menu_item_xfn',''),(7545,1892659496,'_menu_item_url','https://example.invalid/'),(7546,1892659496,'_menu_item_orphaned','1785380351'),(7549,1873893340,'_menu_item_type','custom'),(7550,1873893340,'_menu_item_menu_item_parent','0'),(7551,1873893340,'_menu_item_object_id','1873893340'),(7552,1873893340,'_menu_item_object','custom'),(7553,1873893340,'_menu_item_target',''),(7554,1873893340,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7555,1873893340,'_menu_item_xfn',''),(7556,1873893340,'_menu_item_url','https://example.invalid/'),(7557,1873893340,'_menu_item_orphaned','1785383100'),(7560,4181,'_wp_attached_file','2026/07/ljekrvo.zip'),(7561,4181,'_wp_attachment_context','upgrader'),(7562,1805088713,'_menu_item_type','custom'),(7563,1805088713,'_menu_item_menu_item_parent','0'),(7564,1805088713,'_menu_item_object_id','1805088713'),(7565,1805088713,'_menu_item_object','custom'),(7566,1805088713,'_menu_item_target',''),(7567,1805088713,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(7568,1805088713,'_menu_item_xfn',''),(7569,1805088713,'_menu_item_url','https://example.invalid/'),(7570,1805088713,'_menu_item_orphaned','1785398183'); /*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_posts` -- DROP TABLE IF EXISTS `wp_posts`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_posts` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `post_author` bigint(20) unsigned NOT NULL DEFAULT 0, `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content` longtext NOT NULL, `post_title` text NOT NULL, `post_excerpt` text NOT NULL, `post_status` varchar(20) NOT NULL DEFAULT 'publish', `comment_status` varchar(20) NOT NULL DEFAULT 'open', `ping_status` varchar(20) NOT NULL DEFAULT 'open', `post_password` varchar(255) NOT NULL DEFAULT '', `post_name` varchar(200) NOT NULL DEFAULT '', `to_ping` text NOT NULL, `pinged` text NOT NULL, `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `post_content_filtered` longtext NOT NULL, `post_parent` bigint(20) unsigned NOT NULL DEFAULT 0, `guid` varchar(255) NOT NULL DEFAULT '', `menu_order` int(11) NOT NULL DEFAULT 0, `post_type` varchar(20) NOT NULL DEFAULT 'post', `post_mime_type` varchar(100) NOT NULL DEFAULT '', `comment_count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`ID`), KEY `post_name` (`post_name`(191)), KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`), KEY `post_parent` (`post_parent`), KEY `post_author` (`post_author`), KEY `type_status_author` (`post_type`,`post_status`,`post_author`) ) ENGINE=InnoDB AUTO_INCREMENT=4185 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_posts` -- LOCK TABLES `wp_posts` WRITE; /*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */; INSERT INTO `wp_posts` VALUES (5,1,'2020-05-13 02:52:42','0000-00-00 00:00:00','','avia_logo','','draft','closed','closed','','','','','2020-05-13 02:52:42','0000-00-00 00:00:00','',0,'https://solvibrant.wpengine.com/?post_type=avia_framework_post&p=5',0,'avia_framework_post','',0),(6,1,'2020-05-13 02:52:42','0000-00-00 00:00:00','','avia_favicon','','draft','closed','closed','','','','','2020-05-13 02:52:42','0000-00-00 00:00:00','',0,'https://solvibrant.wpengine.com/?post_type=avia_framework_post&p=6',0,'avia_framework_post','',0),(7,1,'2020-05-13 02:52:42','0000-00-00 00:00:00','','avia_custom_logo_for_preloader','','draft','closed','closed','','','','','2020-05-13 02:52:42','0000-00-00 00:00:00','',0,'https://solvibrant.wpengine.com/?post_type=avia_framework_post&p=7',0,'avia_framework_post','',0),(8,1,'2020-05-13 02:52:42','0000-00-00 00:00:00','','avia_custom_background_image','','draft','closed','closed','','','','','2020-05-13 02:52:42','0000-00-00 00:00:00','',0,'https://solvibrant.wpengine.com/?post_type=avia_framework_post&p=8',0,'avia_framework_post','',0),(9,1,'2020-05-13 02:52:42','0000-00-00 00:00:00','','avia_transparency_logo','','draft','closed','closed','','','','','2020-05-13 02:52:42','0000-00-00 00:00:00','',0,'https://solvibrant.wpengine.com/?post_type=avia_framework_post&p=9',0,'avia_framework_post','',0),(10,1,'2020-05-13 02:52:43','0000-00-00 00:00:00','','avia_template_builder_snippets','','draft','closed','closed','','','','','2020-05-13 02:52:43','0000-00-00 00:00:00','',0,'https://solvibrant.wpengine.com/?post_type=avia_framework_post&p=10',0,'avia_framework_post','',0),(131,1,'2015-07-15 12:27:02','2015-07-15 12:27:02','[av_two_third first]\n[av_slideshow size=\'no scaling\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\']\n[av_slide id=\'869\'][/av_slide]\n[av_slide id=\'868\'][/av_slide]\n[av_slide id=\'867\'][/av_slide]\n[av_slide id=\'866\'][/av_slide]\n[/av_slideshow]\n[/av_two_third]\n\n[av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n[av_heading heading=\'Classic Single Entry\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'25px\' custom_margin_bottom=\'25px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nNulla <strong>consequat</strong> massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu <strong>pede</strong> mollis pretium. Integer tincidunt. Cras dapibus.\n[/av_textblock]\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n[av_toggle title=\'Client\']\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n[/av_toggle]\n[av_toggle title=\'Our Task\']\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_toggle]\n[av_toggle title=\'Skills Involved\']\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n[/av_toggle_container]\n[/av_one_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'40\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_portfolio columns=\'4\' one_column_template=\'special\' items=\'4\' contents=\'title\' preview_mode=\'auto\' image_size=\'portfolio\' linking=\'\' sort=\'no\' paginate=\'no\' query_orderby=\'date\' query_order=\'DESC\']\n[/av_section]','Lunch Pack','','publish','open','closed','','macbook-air','','','2015-07-15 12:27:02','2015-07-15 12:27:02','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=131',0,'portfolio','',0),(139,1,'2015-07-15 15:24:11','2015-07-15 15:24:11','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'https://solsculpting.com/wp-content/uploads/2015/07/portfolio-large-1-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'This is a single portfolio entry\nStyle it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\']\n\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2015/07/portfolio-large-1-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\']\n\n[/av_one_full][/av_section][av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\']','Treasure Map','Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. ','publish','open','closed','','coffe-notebook','','','2015-07-15 15:24:11','2015-07-15 15:24:11','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=139',0,'portfolio','',0),(140,1,'2015-07-15 15:40:57','2015-07-15 15:40:57','[av_two_third first]\n[av_slideshow size=\'no scaling\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\']\n[av_slide id=\'869\'][/av_slide]\n[av_slide id=\'868\'][/av_slide]\n[av_slide id=\'867\'][/av_slide]\n[av_slide id=\'866\'][/av_slide]\n[/av_slideshow]\n[/av_two_third]\n\n[av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n[av_heading heading=\'Classic Single Entry\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'25px\' custom_margin_bottom=\'25px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nNulla <strong>consequat</strong> massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu <strong>pede</strong> mollis pretium. Integer tincidunt. Cras dapibus.\n[/av_textblock]\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n[av_toggle title=\'Client\']\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n[/av_toggle]\n[av_toggle title=\'Our Task\']\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_toggle]\n[av_toggle title=\'Skills Involved\']\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n[/av_toggle_container]\n[/av_one_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'40\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_portfolio columns=\'4\' one_column_template=\'special\' items=\'4\' contents=\'title\' preview_mode=\'auto\' image_size=\'portfolio\' linking=\'\' sort=\'no\' paginate=\'no\' query_orderby=\'date\' query_order=\'DESC\']\n[/av_section]','Plant & Plant','','publish','open','closed','','plant-plant','','','2015-07-15 15:40:57','2015-07-15 15:40:57','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=140',0,'portfolio','',0),(142,1,'2015-07-15 15:48:30','2015-07-15 15:48:30','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'https://solsculpting.com/wp-content/uploads/2015/07/portfolio-large-1-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'This is a single portfolio entry\nStyle it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\']\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2015/07/portfolio-large-1-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\']\n\n[/av_one_full]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\']','Modern Single Entry','','publish','open','closed','','imac-revolution','','','2015-07-15 15:48:30','2015-07-15 15:48:30','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=142',0,'portfolio','',0),(143,1,'2015-07-15 15:39:09','2015-07-15 15:39:09','[av_slideshow_full size=\'featured_large\' min_height=\'0px\' stretch=\'\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' src=\'\' attachment=\'\' attachment_size=\'\' position=\'top left\' repeat=\'no-repeat\' attach=\'scroll\']\n[av_slide_full id=\'973\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\'][/av_slide_full]\n[av_slide_full id=\'965\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\'][/av_slide_full]\n[/av_slideshow_full]\n\n[av_one_third first]\n[av_heading tag=\'h1\' padding=\'10\' heading=\'Single Portfolio\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nLorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n\nAommodo ipsum dolor sit amet, consec tetuer adipiscing elit. Aenean <strong>emigula</strong> eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n[/av_textblock]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\n<ul>\n <li>Client: Max Power</li>\n <li>Skills: Photoshop</li>\n <li>Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a></li>\n</ul>\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n[/av_one_third]\n\n[av_two_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n[av_heading heading=\'More Info\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_tab_container position=\'top_tab\' boxed=\'border_tabs\' initial=\'1\']\n[av_tab title=\'Short Summary\' icon_select=\'no\' icon=\'1\']\nLorem ipsum <strong>dolor</strong> sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n<blockquote>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</blockquote>\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer <strong>tincidunt</strong>. Cras dapibus. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_tab]\n[av_tab title=\'More Info\' icon_select=\'no\' icon=\'1\']\n<ol>\n <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>\n <li>Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</li>\n <li>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>\n <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</li>\n <li>Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>\n</ol>\n[/av_tab]\n[av_tab title=\'Even More Info\' icon_select=\'no\' icon=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient</strong> montes, nascetur ridiculus mus. <strong>Donec</strong> quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, <strong>venenatis</strong> vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\n[/av_tab]\n[/av_tab_container]\n[/av_two_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_portfolio columns=\'4\' items=\'4\' contents=\'excerpt\' linking=\'\' sort=\'no\' paginate=\'no\']','Sunglasses','','publish','open','closed','','sunglasses','','','2015-07-15 15:39:09','2015-07-15 15:39:09','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=143',0,'portfolio','',0),(144,1,'2015-07-15 15:41:41','2015-07-15 15:41:41','[av_section min_height=\'25\' min_height_px=\'500px\' padding=\'huge\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'https://solsculpting.com/wp-content/uploads/2015/07/portfolio-large-1-1.jpg\' attachment=\'965\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.7\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'This is a single portfolio entry\nStyle it however you see fit or check our other examples\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#ffffff\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\']\n[av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\']\nDonec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis <strong>pretium</strong>. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi. Aenean vulputate eleifend tellus. Aeneaellus.\n[/av_textblock]\n\n[/av_one_half][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-10.jpg\' attachment=\'871\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-8.jpg\' attachment=\'870\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%,0\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2015/07/portfolio-large-1-1.jpg\' attachment=\'965\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'6%\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-4.jpg\' attachment=\'863\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-7.jpg\' attachment=\'869\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-2.jpg\' attachment=\'862\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_third][av_one_half first min_height=\'\' vertical_alignment=\'av-align-top\' space=\'\' custom_margin=\'aviaTBcustom_margin\' margin=\'0\' margin_sync=\'true\' padding=\'0px\' padding_sync=\'true\' border=\'\' border_color=\'\' radius=\'0px\' radius_sync=\'true\' background_color=\'\' src=\'\' attachment=\'\' attachment_size=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-3.jpg\' attachment=\'864\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'http://www.kriesi.at/themes/enfold-2017/files/2015/07/portfolio-1.jpg\' attachment=\'866\' attachment_size=\'full\' align=\'center\' styling=\'no-styling\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' admin_preview_bg=\'\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\']\n\n[/av_one_full]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\']','MacBook PRO & SSD','','publish','open','closed','','macbook-pro-ssd','','','2015-07-15 15:41:41','2015-07-15 15:41:41','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=144',0,'portfolio','',0),(145,1,'2015-07-15 15:46:03','2015-07-15 15:46:03','[av_slideshow_full size=\'featured_large\' min_height=\'0px\' stretch=\'\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' src=\'\' attachment=\'\' attachment_size=\'\' position=\'top left\' repeat=\'no-repeat\' attach=\'scroll\']\n[av_slide_full id=\'973\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\'][/av_slide_full]\n[av_slide_full id=\'965\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\'][/av_slide_full]\n[/av_slideshow_full]\n\n[av_one_third first]\n[av_heading tag=\'h1\' padding=\'10\' heading=\'Single Portfolio\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nLorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n\nAommodo ipsum dolor sit amet, consec tetuer adipiscing elit. Aenean <strong>emigula</strong> eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n[/av_textblock]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\n<ul>\n <li>Client: Max Power</li>\n <li>Skills: Photoshop</li>\n <li>Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a></li>\n</ul>\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n[/av_one_third]\n\n[av_two_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n[av_heading heading=\'More Info\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_tab_container position=\'top_tab\' boxed=\'border_tabs\' initial=\'1\']\n[av_tab title=\'Short Summary\' icon_select=\'no\' icon=\'1\']\nLorem ipsum <strong>dolor</strong> sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n<blockquote>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</blockquote>\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer <strong>tincidunt</strong>. Cras dapibus. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_tab]\n[av_tab title=\'More Info\' icon_select=\'no\' icon=\'1\']\n<ol>\n <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>\n <li>Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</li>\n <li>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>\n <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</li>\n <li>Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>\n</ol>\n[/av_tab]\n[av_tab title=\'Even More Info\' icon_select=\'no\' icon=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient</strong> montes, nascetur ridiculus mus. <strong>Donec</strong> quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, <strong>venenatis</strong> vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\n[/av_tab]\n[/av_tab_container]\n[/av_two_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_portfolio columns=\'4\' items=\'4\' contents=\'excerpt\' linking=\'\' sort=\'no\' paginate=\'no\']','Classic Single Entry #2','','publish','open','closed','','power-pills','','','2015-07-15 15:46:03','2015-07-15 15:46:03','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=145',0,'portfolio','',0),(146,1,'2015-07-15 15:48:11','2015-07-15 15:48:11','[av_two_third first]\n[av_slideshow size=\'no scaling\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\']\n[av_slide id=\'869\'][/av_slide]\n[av_slide id=\'868\'][/av_slide]\n[av_slide id=\'867\'][/av_slide]\n[av_slide id=\'866\'][/av_slide]\n[/av_slideshow]\n[/av_two_third]\n\n[av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n\n[av_heading heading=\'Classic Single Entry\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'25px\' custom_margin_bottom=\'25px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nNulla <strong>consequat</strong> massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu <strong>pede</strong> mollis pretium. Integer tincidunt. Cras dapibus.\n[/av_textblock]\n\n[av_toggle_container initial=\'1\' mode=\'accordion\']\n[av_toggle title=\'Client\']\n<strong>XY Media</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus.\n\n<strong>XY Media</strong> Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a>\n[/av_toggle]\n[av_toggle title=\'Our Task\']\n<strong>Task</strong>\n\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_toggle]\n[av_toggle title=\'Skills Involved\']\n<strong>Skills</strong>\n<ul>\n <li>Photoshop</li>\n <li>Indesign</li>\n <li>HTML</li>\n <li>CSS</li>\n</ul>\n[/av_toggle]\n[/av_toggle_container]\n\n[/av_one_third][av_section min_height=\'\' min_height_px=\'500px\' padding=\'large\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'40\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_portfolio columns=\'4\' one_column_template=\'special\' items=\'4\' contents=\'title\' preview_mode=\'auto\' image_size=\'portfolio\' linking=\'\' sort=\'no\' paginate=\'no\' query_orderby=\'date\' query_order=\'DESC\']\n[/av_section]','Classic Single Entry','','publish','open','closed','','ipad-iphone-freebie','','','2015-07-15 15:48:11','2015-07-15 15:48:11','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=146',0,'portfolio','',0),(150,1,'2015-01-15 16:26:13','2015-01-15 16:26:13','[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\']\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_heading heading=\'Juicey. An illustration that I did a while back\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'12\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et <strong>magnis</strong> dis parturient montes, nascetur <strong>ridiculus</strong> mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim.\n[/av_textblock]\n\n[/av_one_full][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-fullscreen3.jpg\' attachment=\'135\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_full][av_one_half first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-workpiece-6.jpg\' attachment=\'100\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-workpiece-5.jpg\' attachment=\'99\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_half][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-portfolio-banner1.jpg\' attachment=\'77\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_full][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-fullscreen2.jpg\' attachment=\'134\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_full][av_one_third first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-workpiece-3.jpg\' attachment=\'86\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-workpiece-2.jpg\' attachment=\'85\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_third][av_one_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_image src=\'https://kriesi.at/themes/enfold-minimal-portfolio/files/2015/07/minimal-workpiece-4.jpg\' attachment=\'98\' attachment_size=\'full\' align=\'center\' animation=\'no-animation\' styling=\'\' hover=\'\' link=\'lightbox\' target=\'\' caption=\'\' font_size=\'\' appearance=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\'][/av_image]\n\n[/av_one_third][av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\']\n\n[av_social_share title=\'\' style=\'\' buttons=\'\']\n\n[/av_one_full]\n[/av_section]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_masonry_entries link=\'portfolio_entries\' sort=\'no\' items=\'4\' columns=\'4\' paginate=\'none\' query_orderby=\'date\' query_order=\'DESC\' size=\'fixed\' gap=\'no\' overlay_fx=\'active\' id=\'\' caption_elements=\'title excerpt\' caption_styling=\'overlay\' caption_display=\'on-hover\' color=\'custom\' custom_bg=\'#ffffff\']','Writing','','publish','open','closed','','cam','','','2015-01-15 16:26:13','2015-01-15 16:26:13','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=150',0,'portfolio','',0),(152,1,'2015-02-15 16:29:10','2015-02-15 16:29:10','[av_slideshow_full size=\'featured_large\' min_height=\'0px\' stretch=\'\' animation=\'slide\' autoplay=\'true\' interval=\'5\' control_layout=\'av-control-minimal av-control-minimal-dark\' src=\'\' attachment=\'\' attachment_size=\'\' position=\'top left\' repeat=\'no-repeat\' attach=\'scroll\']\n[av_slide_full id=\'973\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\'][/av_slide_full]\n[av_slide_full id=\'965\' slide_type=\'\' video=\'http://\' mobile_image=\'\' video_format=\'\' video_ratio=\'16:9\' video_controls=\'\' video_mute=\'\' video_loop=\'\' video_autoplay=\'\' title=\'\' custom_title_size=\'\' custom_content_size=\'\' caption_pos=\'caption_bottom\' link_apply=\'\' link=\'\' link_target=\'\' button_label=\'Click me\' button_color=\'light\' link1=\'\' link_target1=\'\' button_label2=\'Click me\' button_color2=\'light\' link2=\'\' link_target2=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' overlay_enable=\'\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\'][/av_slide_full]\n[/av_slideshow_full]\n\n[av_one_third first]\n[av_heading tag=\'h1\' padding=\'10\' heading=\'Single Portfolio\' color=\'custom-color-heading\' style=\'blockquote modern-quote\' custom_font=\'#000000\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' custom_class=\'\' admin_preview_bg=\'\'][/av_heading]\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\nLorem <strong>ipsum</strong> dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n\nAommodo ipsum dolor sit amet, consec tetuer adipiscing elit. Aenean <strong>emigula</strong> eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes.\n[/av_textblock]\n\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n\n[av_textblock size=\'\' font_color=\'\' color=\'\' admin_preview_bg=\'\']\n<ul>\n <li>Client: Max Power</li>\n <li>Skills: Photoshop</li>\n <li>Website: <a href=\"http://www.wikipedia.com\">http://www.wikipedia.com</a></li>\n</ul>\n[/av_textblock]\n\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'10px\' custom_margin_bottom=\'15px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'\']\n[/av_one_third]\n\n[av_two_third min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\']\n[av_heading heading=\'More Info\' tag=\'h1\' style=\'blockquote modern-quote\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'10\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n\n[av_tab_container position=\'top_tab\' boxed=\'border_tabs\' initial=\'1\']\n[av_tab title=\'Short Summary\' icon_select=\'no\' icon=\'1\']\nLorem ipsum <strong>dolor</strong> sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa.\n<blockquote>Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</blockquote>\nIn enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer <strong>tincidunt</strong>. Cras dapibus. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.\n[/av_tab]\n[av_tab title=\'More Info\' icon_select=\'no\' icon=\'1\']\n<ol>\n <li>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.</li>\n <li>Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Donec quam felis, ultricies nec, pellentesque eu, pretium quis, sem.</li>\n <li>Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu.</li>\n <li>In enim justo, rhoncus ut, imperdiet a, venenatis vitae, justo.</li>\n <li>Nullam dictum felis eu pede mollis pretium. Integer tincidunt. Cras dapibus. Vivamus elementum semper nisi.</li>\n</ol>\n[/av_tab]\n[av_tab title=\'Even More Info\' icon_select=\'no\' icon=\'\']\nLorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. Aenean massa. Cum sociis natoque penatibus et magnis dis <strong>parturient</strong> montes, nascetur ridiculus mus. <strong>Donec</strong> quam felis, ultricies nec, pellentesque eu, pretium quis, sem. Nulla consequat massa quis enim. Donec pede justo, fringilla vel, aliquet nec, vulputate eget, arcu. In enim justo, rhoncus ut, imperdiet a, <strong>venenatis</strong> vitae, justo. Nullam dictum felis eu pede mollis pretium. Integer tincidunt.\n[/av_tab]\n[/av_tab_container]\n[/av_two_third]\n\n[av_section min_height=\'\' min_height_px=\'500px\' padding=\'default\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' id=\'\' color=\'main_color\' custom_bg=\'#f8f8f8\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' av_element_hidden_in_editor=\'0\']\n[av_heading heading=\'Recent Entries\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' size=\'30\' subheading_active=\'\' subheading_size=\'15\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#000000\' admin_preview_bg=\'\'][/av_heading]\n[/av_section]\n\n[av_portfolio columns=\'4\' items=\'4\' contents=\'excerpt\' linking=\'\' sort=\'no\' paginate=\'no\']','Contract','','publish','open','closed','','pill-pack','','','2015-02-15 16:29:10','2015-02-15 16:29:10','',0,'http://test.kriesi.at/minimal-portfolio/?post_type=portfolio&p=152',0,'portfolio','',0),(2483,1,'2017-02-27 12:56:50','0000-00-00 00:00:00','','avia_template_builder_snippets','','draft','closed','closed','','','','','2017-02-27 12:56:50','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=2483',0,'avia_framework_post','',0),(3013,1,'2017-02-27 13:45:08','0000-00-00 00:00:00','','avia_logo','','draft','closed','closed','','','','','2017-02-27 13:45:08','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=3013',0,'avia_framework_post','',0),(3014,1,'2017-02-27 13:45:08','0000-00-00 00:00:00','','avia_favicon','','draft','closed','closed','','','','','2017-02-27 13:45:08','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=3014',0,'avia_framework_post','',0),(3015,1,'2017-02-27 13:45:08','0000-00-00 00:00:00','','avia_custom_logo_for_preloader','','draft','closed','closed','','','','','2017-02-27 13:45:08','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=3015',0,'avia_framework_post','',0),(3016,1,'2017-02-27 13:45:08','0000-00-00 00:00:00','','avia_custom_background_image','','draft','closed','closed','','','','','2017-02-27 13:45:08','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=3016',0,'avia_framework_post','',0),(3017,1,'2017-02-27 13:45:08','0000-00-00 00:00:00','','avia_transparency_logo','','draft','closed','closed','','','','','2017-02-27 13:45:08','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=3017',0,'avia_framework_post','',0),(3018,1,'2017-02-27 13:45:08','0000-00-00 00:00:00','','avia_shop_banner_image','','draft','closed','closed','','','','','2017-02-27 13:45:08','0000-00-00 00:00:00','',0,'http://www.kriesi.at/themes/enfold-2017/?post_type=avia_framework_post&p=3018',0,'avia_framework_post','',0),(3138,1,'2020-05-13 03:43:46','2020-05-13 03:43:46','','SolSculptingWideLogoFinalWhite','','inherit','open','closed','','solvibrantwidelogofinalwhite','','','2020-05-13 03:43:46','2020-05-13 03:43:46','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/SolVibrantWideLogoFinalWhite.png',0,'attachment','image/png',0),(3139,1,'2020-05-13 03:46:25','2020-05-13 03:46:25','','SolSculptingWebColor','','inherit','open','closed','','solvibrantwebcolor','','','2020-05-13 03:46:25','2020-05-13 03:46:25','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/SolVibrantWebColor.png',0,'attachment','image/png',0),(3140,1,'2020-05-13 03:46:25','2020-05-13 03:46:25','','SolSculptingWebWhite','','inherit','open','closed','','solvibrantwebwhite','','','2020-05-13 03:46:25','2020-05-13 03:46:25','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/SolVibrantWebWhite.png',0,'attachment','image/png',0),(3199,1,'2020-05-13 04:08:46','2020-05-13 04:08:46','','Background','','inherit','open','closed','','background','','','2020-05-13 04:08:46','2020-05-13 04:08:46','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/Background.jpg',0,'attachment','image/jpeg',0),(3200,1,'2020-05-13 04:08:53','2020-05-13 04:08:53','','Swing','','inherit','open','closed','','swing','','','2020-05-13 04:08:53','2020-05-13 04:08:53','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/Swing.png',0,'attachment','image/png',0),(3201,1,'2020-05-13 05:00:08','2020-05-13 05:00:08','','RedLightNewsMockup','','inherit','open','closed','','redlightnewsmockup','','','2020-05-13 05:00:08','2020-05-13 05:00:08','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/RedLightNewsMockup.png',0,'attachment','image/png',0),(3203,1,'2020-05-13 05:02:45','2020-05-13 05:02:45','','SolSculptingWideIconFinal','','inherit','open','closed','','solvibrantwideiconfinal','','','2020-05-13 05:02:45','2020-05-13 05:02:45','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/SolVibrantWideIconFinal.png',0,'attachment','image/png',0),(3204,1,'2020-05-13 05:34:28','2020-05-13 05:34:28','','woocommerce-placeholder','','inherit','open','closed','','woocommerce-placeholder','','','2020-05-13 05:34:28','2020-05-13 05:34:28','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/woocommerce-placeholder.png',0,'attachment','image/png',0),(3205,1,'2020-05-13 05:36:53','2020-05-13 05:36:53','','SolSculptingAntiAgingGroup','','inherit','open','closed','','solvibrantantiaginggroup','','','2020-05-13 05:36:53','2020-05-13 05:36:53','',0,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/SolVibrantAntiAgingGroup.jpg',0,'attachment','image/jpeg',0),(3207,1,'2020-05-13 05:53:32','2020-05-13 05:53:32','[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingHeader.jpg\' attachment=\'3307\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™\r\nby Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaneqwav\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for Anti-Aging</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingHeader.jpg\' attachment=\'3307\' attachment_size=\'full\' attach=\'scroll\' position=\'center left\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™\r\nby Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaneqwav\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for Anti-Aging</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-19znxll\']\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'100px,0px,100px,150px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-184xo49\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-84su2f\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Anti-Aging is a <strong>revolutionary LED Red Light phototherapy device</strong> that is light weight, thin, flexible and super powerful with 1800 Low Level Laser LED’s.\r\n\r\nDelivers same amount of light energy to front and sides of the face. Gentle and may be used daily for 5-10 minutes or used every other day for 15 to 20 minutes. Effective at fighting the signs of aging such as fine line, wrinkles, and sagging skin. <strong>Medical grade and clinically proven.</strong>\r\n\r\nSolSculpting™ Anti-Aging delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n\r\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAging-1.jpg\' attachment=\'3312\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_cell_one_half]\r\n[/av_layout_row]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-5haox3\']\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingMobile-1024x578.jpg\' attachment=\'3532\' attachment_size=\'large\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-4x3o2v\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Anti-Aging is a <strong>revolutionary LED Red Light phototherapy device</strong> that is light weight, thin, flexible and super powerful with 1800 Low Level Laser LED’s.\r\n\r\nDelivers same amount of light energy to front and sides of the face. Gentle and may be used daily for 5-10 minutes or used every other day for 15 to 20 minutes. Effective at fighting the signs of aging such as fine line, wrinkles, and sagging skin. <strong>Medical grade and clinically proven.</strong>\r\n\r\nSolSculpting™ Anti-Aging delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-66nraf\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroup-1.jpg\' attachment=\'3308\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,38.1\' av_uid=\'av-4ct02f\']\r\n1800 LED Red Lights\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'32.7,63.2\' av_uid=\'av-275v2u\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'65.3,19.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,80\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.3,76.6\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2mf7av\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingAntiAgingGroupWeb-1.jpg\' attachment=\'3309\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n• 1800 LED Red Lights\r\n• Wavelength: 660 Nanometers\r\n• Active Area: 18.5″ x 11.5″\r\n• Sturdy Protective Carrying Case\r\n• Protective Eyewear\r\n• Convenient Foot Remote\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\r\n[av_one_half first av_uid=\'av-s0qje1\']\r\n\r\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\r\nEvery mat is shipped FREE in the United States!\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\r\n\r\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\r\nIf your mats fail to function within a year of purchase we will replace it.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\r\n\r\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\r\nOur site uses an encryption algorithm that ensures your payment is processed securely.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\r\n\r\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\r\nAsk for details!\r\n[/av_icon_box]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\r\n[av_heading heading=\'All our products\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaa78kwz\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_productgrid wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\r\n[/av_section]','SolSculpting™ Anti-Aging','INTRODUCING SolSculpting by Avanti Body\r\nThe at-home system for Anti-Aging\r\n\r\nSolSculpting Anti-Aging is a revolutionary LED Red Light phototherapy device that is light weight, thin, flexible and super powerful with 1800 Low Level Laser LED’s.\r\nDelivers same amount of light energy to front and sides of the face. Gentle and may be used daily for 5-10 or used every other day for 15 to 20 minutes. Effective at fighting the signs of aging such as fine line, wrinkles, and sagging skin. Medical grade and clinically proven.\r\n\r\nSolSculpting Personal Care delivers 10 times more light energy than any other light product on the market.\r\n\r\nSystem Features:\r\n• Active Area: 18.5″ x 11.5″\r\n• Optical Energy: 5000 Joules\r\n• Input Voltage: 90 – 240\r\n• Input Power: 60 Watts\r\n• Wavelength: 660 Nanometers\r\n\r\nONE YEAR WARRANTY & FREE SHIPPING','publish','open','closed','','solvibrant-anti-aging','','','2020-05-28 05:49:25','2020-05-28 05:49:25','',0,'https://solvibrant.wpengine.com/?post_type=product&p=3207',4,'product','',0),(3213,1,'2020-05-13 05:56:54','2020-05-13 05:56:54','','IMG_1642','','inherit','open','closed','','img_1642','','','2020-05-13 05:56:54','2020-05-13 05:56:54','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/IMG_1642.jpeg',0,'attachment','image/jpeg',0),(3214,1,'2020-05-13 05:57:26','2020-05-13 05:57:26','','AntiAging','','inherit','open','closed','','antiaging','','','2020-05-13 05:57:26','2020-05-13 05:57:26','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/AntiAging.jpg',0,'attachment','image/jpeg',0),(3215,1,'2020-05-13 05:57:30','2020-05-13 05:57:30','','AntiAging3','','inherit','open','closed','','antiaging3','','','2020-05-13 05:57:30','2020-05-13 05:57:30','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/AntiAging3.jpg',0,'attachment','image/jpeg',0),(3216,1,'2020-05-13 05:57:34','2020-05-13 05:57:34','','RedLightFace','','inherit','open','closed','','redlightface','','','2020-05-13 05:57:34','2020-05-13 05:57:34','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/RedLightFace.jpg',0,'attachment','image/jpeg',0),(3217,1,'2020-05-13 05:57:52','2020-05-13 05:57:52','','AntiAgingHomeSystem','','inherit','open','closed','','antiaginghomesystem','','','2020-05-13 05:57:52','2020-05-13 05:57:52','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/AntiAgingHomeSystem.png',0,'attachment','image/png',0),(3218,1,'2020-05-13 05:58:08','2020-05-13 05:58:08','','PainWellnessHomeSystem2','','inherit','open','closed','','painwellnesshomesystem2','','','2020-05-13 05:58:08','2020-05-13 05:58:08','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/PainWellnessHomeSystem2.jpg',0,'attachment','image/jpeg',0),(3219,1,'2020-05-13 05:59:15','2020-05-13 05:59:15','','Edited-20 copy','','inherit','open','closed','','edited-20-copy','','','2020-05-13 05:59:15','2020-05-13 05:59:15','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/Edited-20-copy.jpg',0,'attachment','image/jpeg',0),(3220,1,'2020-05-13 05:59:25','2020-05-13 05:59:25','','IMG_2106','','inherit','open','closed','','img_2106','','','2020-05-13 05:59:25','2020-05-13 05:59:25','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/IMG_2106.jpeg',0,'attachment','image/jpeg',0),(3221,1,'2020-05-13 06:00:02','2020-05-13 06:00:02','','IMG_7612','','inherit','open','closed','','img_7612','','','2020-05-13 06:00:02','2020-05-13 06:00:02','',3207,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/IMG_7612.jpg',0,'attachment','image/jpeg',0),(3222,1,'2020-05-13 06:09:08','2020-05-13 06:09:08','[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/KneePain.jpg\' attachment=\'3232\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™\r\nby Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanendpy\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for pain, inflammation, and wellness</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/KneePain.jpg\' attachment=\'3232\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™\r\nby Avanti Body\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#ffffff\' margin=\'\' margin_sync=\'true\' padding=\'0\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kanendpy\' admin_preview_bg=\'rgb(34, 34, 34)\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">The at-home system for pain, inflammation, and wellness</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-19znxll\']\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-184xo49\']\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-9vfmx2\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <strong>science-based and clinically-proven</strong> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system is safe and effective with no known side effects.\r\n\r\nThe <strong>benefits</strong> of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades. Including research supporting its benefits for supporting both the lymphatic and immune system.\r\n\r\nSolSculpting™ Self-Care delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n\r\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BackPain.jpg\' attachment=\'3233\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_cell_one_half]\r\n[/av_layout_row]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-7a6q5i\']\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/BackPainMobile-1-1024x578.jpg\' attachment=\'3531\' attachment_size=\'large\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[av_heading heading=\'Professional red light mats for home use\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2p1anq\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <strong>science-based and clinically-proven</strong> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system is safe and effective with no known side effects.\r\n\r\nThe <strong>benefits</strong> of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades. Including research supporting its benefits for supporting both the lymphatic and immune system.\r\n\r\nSolSculpting™ Self-Care delivers <strong>10 times more light energy</strong> than any other light product on the market.\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaacyt5h\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSelfCareGroup-1.jpg\' attachment=\'3242\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'28.3,38.1\' av_uid=\'av-4h8oja\']\r\n2400 LED Red and Near-Infrared Lights\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'32.7,63.2\' av_uid=\'av-275v2u\']\r\nActive Area: 18.5″ x 11.5″\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'65.3,19.1\' av_uid=\'av-khqsu\']\r\nComes with a sturdy protective carrying case\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'55.4,80\' av_uid=\'av-eigsu\']\r\nProtective eyewear\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'77.3,76.6\' av_uid=\'av-159hy\']\r\nConvenient foot remote\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-471b86\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSelfCareGroupWeb-1.jpg\' attachment=\'3243\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n• 2400 LED Red and Near-Infrared Lights\r\n• Wavelength: 660 and 850 Nanometers\r\n• Active Area: 18.5″ x 11.5″\r\n• Sturdy Protective Carrying Case\r\n• Protective Eyewear\r\n• Convenient Foot Remote\r\n[/av_textblock]\r\n\r\n[av_product_button av_uid=\'av-ea1km\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\r\n[av_one_half first av_uid=\'av-s0qje1\']\r\n\r\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\r\nEvery mat is shipped FREE in the United States!\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\r\n\r\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\r\nIf your mats fail to function within a year of purchase we will replace it.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\r\n\r\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\r\nOur site uses an encryption algorithm that ensures your payment is processed securely.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\r\n\r\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\r\nAsk for details!\r\n[/av_icon_box]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\r\n[av_heading heading=\'All our products\' tag=\'h2\' style=\'blockquote modern-quote modern-centered\' subheading_active=\'\' size=\'40\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' subheading_size=\'15\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' color=\'custom-color-heading\' custom_font=\'#000000\' margin=\'\' margin_sync=\'true\' padding=\'20\' link=\'\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kaa78kwz\' admin_preview_bg=\'\'][/av_heading]\r\n\r\n[av_productgrid wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\r\n[/av_section]','SolSculpting™ Self-Care','INTRODUCING SolSculpting by Avanti Body\r\nThe at-home system for Pain, Inflammation and Wellness\r\n\r\nSolSculpting Red Light Therapy is science based and clinically It is proven to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provide powerful anti- aging effects. This FDA registered and cleared system is safe and effective with no known side effects.\r\n\r\nThe benefits of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades. Including research supporting its benefits for supporting both the lymphatic and immune system\r\n\r\nSolSculpting Personal Care delivers 10 times more light energy than any other light product on the market.\r\n\r\nSystem Features:\r\n• Active Area: 18.5″ x 11.5″\r\n• 2400 LED Red and Near Infrared\r\n• Input Power: 60 Watts\r\n• Wavelength: 660 and 850 Nanometers\r\n\r\nONE YEAR WARRANTY & FREE SHIPPING','publish','open','closed','','solvibrant-self-care','','','2020-05-28 05:45:08','2020-05-28 05:45:08','',0,'https://solvibrant.wpengine.com/?post_type=product&p=3222',3,'product','',0),(3223,1,'2020-05-13 06:08:07','2020-05-13 06:08:07','','IMG_5877','','inherit','open','closed','','img_5877','','','2020-05-13 06:08:07','2020-05-13 06:08:07','',3222,'https://solvibrant.wpengine.com/wp-content/uploads/2020/05/IMG_5877.jpg',0,'attachment','image/jpeg',0),(3226,2,'2020-05-15 18:16:09','2020-05-15 18:16:09','','redlight15','','publish','closed','closed','','redlight15','','','2020-05-15 18:16:09','2020-05-15 18:16:09','',0,'https://solsculpting.com/?post_type=shop_coupon&p=3226',0,'shop_coupon','',0),(3232,3,'2020-05-16 22:15:58','2020-05-16 22:15:58','','KneePain','','inherit','open','closed','','kneepain','','','2020-05-16 22:15:58','2020-05-16 22:15:58','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/KneePain.jpg',0,'attachment','image/jpeg',0),(3233,3,'2020-05-17 00:23:29','2020-05-17 00:23:29','','BackPain','','inherit','open','closed','','backpain','','','2020-05-17 00:23:29','2020-05-17 00:23:29','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/BackPain.jpg',0,'attachment','image/jpeg',0),(3234,3,'2020-05-17 00:30:55','0000-00-00 00:00:00','','avia_banner_image','','draft','closed','closed','','','','','2020-05-17 00:30:55','0000-00-00 00:00:00','',0,'https://solsculpting.com/?post_type=avia_framework_post&p=3234',0,'avia_framework_post','',0),(3235,3,'2020-05-17 00:30:56','0000-00-00 00:00:00','','avia_custom_marker_icon','','draft','closed','closed','','','','','2020-05-17 00:30:56','0000-00-00 00:00:00','',0,'https://solsculpting.com/?post_type=avia_framework_post&p=3235',0,'avia_framework_post','',0),(3236,3,'2020-05-17 00:30:57','0000-00-00 00:00:00','','avia_fallback_image_to_replace_google_maps','','draft','closed','closed','','','','','2020-05-17 00:30:57','0000-00-00 00:00:00','',0,'https://solsculpting.com/?post_type=avia_framework_post&p=3236',0,'avia_framework_post','',0),(3237,3,'2020-05-17 00:40:05','2020-05-17 00:40:05','','SolSculptingWebWhiteTight','','inherit','open','closed','','solvibrantwebwhitetight','','','2020-05-17 00:40:05','2020-05-17 00:40:05','',0,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantWebWhiteTight.png',0,'attachment','image/png',0),(3239,3,'2020-05-17 00:53:13','2020-05-17 00:53:13','','SolSculptingAntiAgingGroupWeb','','inherit','open','closed','','solvibrantantiaginggroupweb','','','2020-05-17 00:53:13','2020-05-17 00:53:13','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantAntiAgingGroupWeb.jpg',0,'attachment','image/jpeg',0),(3240,3,'2020-05-17 00:56:56','2020-05-17 00:56:56','','SolSculptingSelfCareGroup','','inherit','open','closed','','solvibrantselfcaregroup','','','2020-05-17 00:56:56','2020-05-17 00:56:56','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSelfCareGroup.jpg',0,'attachment','image/jpeg',0),(3241,3,'2020-05-17 00:56:58','2020-05-17 00:56:58','','SolSculptingSelfCareGroupWeb','','inherit','open','closed','','solvibrantselfcaregroupweb','','','2020-05-17 00:56:58','2020-05-17 00:56:58','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSelfCareGroupWeb.jpg',0,'attachment','image/jpeg',0),(3242,3,'2020-05-17 01:00:09','2020-05-17 01:00:09','','SolSculptingSelfCareGroup','','inherit','open','closed','','solvibrantselfcaregroup-2','','','2020-05-17 01:00:09','2020-05-17 01:00:09','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSelfCareGroup-1.jpg',0,'attachment','image/jpeg',0),(3243,3,'2020-05-17 01:00:12','2020-05-17 01:00:12','','SolSculptingSelfCareGroupWeb','','inherit','open','closed','','solvibrantselfcaregroupweb-2','','','2020-05-17 01:00:12','2020-05-17 01:00:12','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSelfCareGroupWeb-1.jpg',0,'attachment','image/jpeg',0),(3246,3,'2020-05-17 01:17:20','2020-05-17 01:17:20','','StoreHeader','','inherit','open','closed','','storeheader','','','2020-05-17 01:17:20','2020-05-17 01:17:20','',0,'https://solsculpting.com/wp-content/uploads/2020/05/StoreHeader.jpg',0,'attachment','image/jpeg',0),(3252,3,'2020-05-17 01:40:57','2020-05-17 01:40:57','','Kim','','inherit','open','closed','','kim','','','2020-05-17 01:40:57','2020-05-17 01:40:57','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Kim.jpg',0,'attachment','image/jpeg',0),(3253,3,'2020-05-17 01:41:02','2020-05-17 01:41:02','','Terri','','inherit','open','closed','','terri','','','2020-05-17 01:41:02','2020-05-17 01:41:02','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Terri.jpg',0,'attachment','image/jpeg',0),(3254,3,'2020-05-17 01:42:43','2020-05-17 01:42:43','','Kim','','inherit','open','closed','','kim-2','','','2020-05-17 01:42:43','2020-05-17 01:42:43','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Kim.png',0,'attachment','image/png',0),(3255,3,'2020-05-17 01:42:45','2020-05-17 01:42:45','','Terri','','inherit','open','closed','','terri-2','','','2020-05-17 01:42:45','2020-05-17 01:42:45','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Terri.png',0,'attachment','image/png',0),(3256,3,'2020-05-17 01:58:15','2020-05-17 01:58:15','','ContactHeader','','inherit','open','closed','','contactheader','','','2020-05-17 01:58:15','2020-05-17 01:58:15','',0,'https://solsculpting.com/wp-content/uploads/2020/05/ContactHeader.jpg',0,'attachment','image/jpeg',0),(3260,3,'2020-05-17 02:24:00','2020-05-17 02:24:00','','my-icons-collection','','inherit','open','closed','','my-icons-collection','','','2020-05-17 02:24:00','2020-05-17 02:24:00','',0,'https://solsculpting.com/wp-content/uploads/2020/05/my-icons-collection.zip',0,'attachment','application/zip',0),(3261,3,'2020-05-17 02:43:18','2020-05-17 02:43:18','','my-icons-collection','','inherit','open','closed','','my-icons-collection-2','','','2020-05-17 02:43:18','2020-05-17 02:43:18','',0,'https://solsculpting.com/wp-content/uploads/2020/05/my-icons-collection-1.zip',0,'attachment','application/zip',0),(3262,3,'2020-05-17 03:11:50','2020-05-17 03:11:50','','VideoStill','','inherit','open','closed','','videostill','','','2020-05-17 03:11:50','2020-05-17 03:11:50','',0,'https://solsculpting.com/wp-content/uploads/2020/05/VideoStill.png',0,'attachment','image/png',0),(3264,3,'2020-05-17 03:25:14','2020-05-17 03:25:14','','IMG_1357','','inherit','open','closed','','img_1357','','','2020-05-17 03:25:14','2020-05-17 03:25:14','',0,'https://solsculpting.com/wp-content/uploads/2020/05/IMG_1357.jpg',0,'attachment','image/jpeg',0),(3272,3,'2020-05-17 03:36:26','2020-05-17 03:36:26','','BusinessInvestment','','inherit','open','closed','','businessinvestment','','','2020-05-17 03:36:26','2020-05-17 03:36:26','',0,'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInvestment.jpg',0,'attachment','image/jpeg',0),(3273,3,'2020-05-17 03:44:47','2020-05-17 03:44:47','','my-icons-collection','','inherit','open','closed','','my-icons-collection-3','','','2020-05-17 03:44:47','2020-05-17 03:44:47','',0,'https://solsculpting.com/wp-content/uploads/2020/05/my-icons-collection-2.zip',0,'attachment','application/zip',0),(3277,3,'2020-05-17 03:57:13','2020-05-17 03:57:13','','BusinessInvestment','','inherit','open','closed','','businessinvestment-2','','','2020-05-17 03:57:13','2020-05-17 03:57:13','',0,'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInvestment-1.jpg',0,'attachment','image/jpeg',0),(3282,3,'2020-05-17 04:18:24','2020-05-17 04:18:24','','Testimonials','','inherit','open','closed','','testimonials','','','2020-05-17 04:18:24','2020-05-17 04:18:24','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Testimonials.jpg',0,'attachment','image/jpeg',0),(3283,3,'2020-05-17 04:22:08','2020-05-17 04:22:08','','JenniferHeadshot','','inherit','open','closed','','jenniferheadshot','','','2020-05-17 04:22:08','2020-05-17 04:22:08','',0,'https://solsculpting.com/wp-content/uploads/2020/05/JenniferHeadshot.jpg',0,'attachment','image/jpeg',0),(3284,3,'2020-05-17 04:22:10','2020-05-17 04:22:10','','JeanneHeadshot','','inherit','open','closed','','jeanneheadshot','','','2020-05-17 04:22:10','2020-05-17 04:22:10','',0,'https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg',0,'attachment','image/jpeg',0),(3285,3,'2020-05-17 04:22:48','2020-05-17 04:22:48','','JeanneHeadshot','','inherit','open','closed','','jeanneheadshot-2','','','2020-05-17 04:22:48','2020-05-17 04:22:48','',0,'https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot-1.jpg',0,'attachment','image/jpeg',0),(3289,3,'2020-05-17 04:27:01','2020-05-17 04:27:01','','VideosHeader','','inherit','open','closed','','videosheader','','','2020-05-17 04:27:01','2020-05-17 04:27:01','',0,'https://solsculpting.com/wp-content/uploads/2020/05/VideosHeader.jpg',0,'attachment','image/jpeg',0),(3293,3,'2020-05-17 04:30:50','2020-05-17 04:30:50','{{unknown}}','','','publish','closed','closed','','54a27cffbc0ebcf5f0074bb80708bb1f','','','2020-05-17 04:30:50','2020-05-17 04:30:50','',0,'https://solsculpting.com/54a27cffbc0ebcf5f0074bb80708bb1f/',0,'oembed_cache','',0),(3294,3,'2020-05-17 04:33:32','2020-05-17 04:33:32','','Screen Shot 2020-05-17 at 12.33.10 AM','','inherit','open','closed','','screen-shot-2020-05-17-at-12-33-10-am','','','2020-05-17 04:33:32','2020-05-17 04:33:32','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-17-at-12.33.10-AM.png',0,'attachment','image/png',0),(3295,3,'2020-05-17 04:34:08','2020-05-17 04:34:08','{{unknown}}','','','publish','closed','closed','','993144d1fb4506607a94d5aa741264c0','','','2020-05-17 04:34:08','2020-05-17 04:34:08','',0,'https://solsculpting.com/993144d1fb4506607a94d5aa741264c0/',0,'oembed_cache','',0),(3296,3,'2020-05-17 04:36:41','2020-05-17 04:36:41','','Screen Shot 2020-05-17 at 12.34.55 AM','','inherit','open','closed','','screen-shot-2020-05-17-at-12-34-55-am','','','2020-05-17 04:36:41','2020-05-17 04:36:41','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-17-at-12.34.55-AM.png',0,'attachment','image/png',0),(3297,3,'2020-05-17 04:37:01','2020-05-17 04:37:01','','Screen Shot 2020-05-17 at 12.35.41 AM','','inherit','open','closed','','screen-shot-2020-05-17-at-12-35-41-am','','','2020-05-17 04:37:01','2020-05-17 04:37:01','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-17-at-12.35.41-AM.png',0,'attachment','image/png',0),(3301,3,'2020-05-17 04:42:07','2020-05-17 04:42:07','','BusinessInvestment2','','inherit','open','closed','','businessinvestment2','','','2020-05-17 04:42:07','2020-05-17 04:42:07','',0,'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInvestment2.jpg',0,'attachment','image/jpeg',0),(3302,3,'2020-05-17 04:47:47','2020-05-17 04:47:47','','ImageSection','','inherit','open','closed','','imagesection','','','2020-05-17 04:47:47','2020-05-17 04:47:47','',0,'https://solsculpting.com/wp-content/uploads/2020/05/ImageSection.jpg',0,'attachment','image/jpeg',0),(3307,3,'2020-05-17 05:03:29','2020-05-17 05:03:29','','AntiAgingHeader','','inherit','open','closed','','antiagingheader','','','2020-05-17 05:03:29','2020-05-17 05:03:29','',3207,'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingHeader.jpg',0,'attachment','image/jpeg',0),(3308,3,'2020-05-17 05:04:16','2020-05-17 05:04:16','','SolSculptingAntiAgingGroup','','inherit','open','closed','','solvibrantantiaginggroup-2','','','2020-05-17 05:04:16','2020-05-17 05:04:16','',3207,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantAntiAgingGroup-1.jpg',0,'attachment','image/jpeg',0),(3309,3,'2020-05-17 05:04:20','2020-05-17 05:04:20','','SolSculptingAntiAgingGroupWeb','','inherit','open','closed','','solvibrantantiaginggroupweb-2','','','2020-05-17 05:04:20','2020-05-17 05:04:20','',3207,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantAntiAgingGroupWeb-1.jpg',0,'attachment','image/jpeg',0),(3310,3,'2020-05-17 05:11:16','2020-05-17 05:11:16','','AntiAging copy','','inherit','open','closed','','antiaging-copy','','','2020-05-17 05:11:16','2020-05-17 05:11:16','',3207,'https://solsculpting.com/wp-content/uploads/2020/05/AntiAging-copy.jpg',0,'attachment','image/jpeg',0),(3312,3,'2020-05-17 05:18:43','2020-05-17 05:18:43','','AntiAging','','inherit','open','closed','','antiaging-2','','','2020-05-17 05:18:43','2020-05-17 05:18:43','',3207,'https://solsculpting.com/wp-content/uploads/2020/05/AntiAging-1.jpg',0,'attachment','image/jpeg',0),(3314,3,'2020-05-17 05:20:14','2020-05-17 05:20:14','','TerriKimHeader','','inherit','open','closed','','terrikimheader','','','2020-05-17 05:20:14','2020-05-17 05:20:14','',0,'https://solsculpting.com/wp-content/uploads/2020/05/TerriKimHeader.jpg',0,'attachment','image/jpeg',0),(3320,3,'2020-05-17 05:28:31','2020-05-17 05:28:31','','ImageSection','','inherit','open','closed','','imagesection-2','','','2020-05-17 05:28:31','2020-05-17 05:28:31','',0,'https://solsculpting.com/wp-content/uploads/2020/05/ImageSection-1.jpg',0,'attachment','image/jpeg',0),(3348,3,'2020-05-25 03:09:52','2020-05-25 03:09:52','','SolSculptingRegions','','inherit','open','closed','','solvibrantregions','','','2020-05-25 03:09:52','2020-05-25 03:09:52','',0,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantRegions.png',0,'attachment','image/png',0),(3355,3,'2020-05-25 03:43:01','2020-05-25 03:43:01','','SolSculptingRegions','','inherit','open','closed','','solvibrantregions-2','','','2020-05-25 03:43:01','2020-05-25 03:43:01','',0,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantRegions-1.png',0,'attachment','image/png',0),(3359,3,'2020-05-25 04:12:37','2020-05-25 04:12:37','','StayInTheLoopSection','','inherit','open','closed','','stayintheloopsection','','','2020-05-25 04:12:37','2020-05-25 04:12:37','',0,'https://solsculpting.com/wp-content/uploads/2020/05/StayInTheLoopSection.jpg',0,'attachment','image/jpeg',0),(3380,3,'2020-05-25 05:10:27','2020-05-25 05:10:27','','Red-light-rooms','','inherit','open','closed','','red-light-rooms','','','2020-05-25 05:10:27','2020-05-25 05:10:27','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Red-light-rooms.jpg',0,'attachment','image/jpeg',0),(3387,3,'2020-05-25 05:33:22','2020-05-25 05:33:22','','Terri After','','inherit','open','closed','','terri-after','','','2020-05-25 05:33:22','2020-05-25 05:33:22','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-After.jpg',0,'attachment','image/jpeg',0),(3388,3,'2020-05-25 05:33:26','2020-05-25 05:33:26','','Terri Before','','inherit','open','closed','','terri-before','','','2020-05-25 05:33:26','2020-05-25 05:33:26','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before.jpg',0,'attachment','image/jpeg',0),(3389,3,'2020-05-25 05:35:13','2020-05-25 05:35:13','','Terri After','','inherit','open','closed','','terri-after-2','','','2020-05-25 05:35:13','2020-05-25 05:35:13','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1.jpg',0,'attachment','image/jpeg',0),(3390,3,'2020-05-25 05:35:17','2020-05-25 05:35:17','','Terri Before','','inherit','open','closed','','terri-before-2','','','2020-05-25 05:35:17','2020-05-25 05:35:17','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1.jpg',0,'attachment','image/jpeg',0),(3397,3,'2020-05-25 17:17:04','2020-05-25 17:17:04','<iframe title=\"Start A Red Light Therapy Business\" src=\"https://player.vimeo.com/video/422492003?dnt=1&app_id=122963\" width=\"1500\" height=\"844\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>','','','publish','closed','closed','','e1d0a344e07ec8e027cbb0b4e93bcd03','','','2020-05-25 17:17:04','2020-05-25 17:17:04','',0,'https://solsculpting.com/e1d0a344e07ec8e027cbb0b4e93bcd03/',0,'oembed_cache','',0),(3398,3,'2020-05-25 17:20:48','2020-05-25 17:20:48','','Screen Shot 2020-05-25 at 1.20.37 PM','','inherit','open','closed','','screen-shot-2020-05-25-at-1-20-37-pm','','','2020-05-25 17:20:48','2020-05-25 17:20:48','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-25-at-1.20.37-PM.png',0,'attachment','image/png',0),(3400,3,'2020-05-25 17:24:49','2020-05-25 17:24:49','','FrontDesk','','inherit','open','closed','','frontdesk','','','2020-05-25 17:24:49','2020-05-25 17:24:49','',0,'https://solsculpting.com/wp-content/uploads/2020/05/FrontDesk.jpg',0,'attachment','image/jpeg',0),(3404,3,'2020-05-25 17:53:01','2020-05-25 17:53:01','','BusinessInABox','','inherit','open','closed','','businessinabox','','','2020-05-25 17:53:01','2020-05-25 17:53:01','',0,'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInABox.jpg',0,'attachment','image/jpeg',0),(3405,3,'2020-05-25 17:56:14','2020-05-25 17:56:14','','BusinessInABoxManual','','inherit','open','closed','','businessinaboxmanual','','','2020-05-25 17:56:14','2020-05-25 17:56:14','',0,'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInABoxManual.jpg',0,'attachment','image/jpeg',0),(3406,3,'2020-05-25 17:56:17','2020-05-25 17:56:17','','BusinessInABoxAlicia','','inherit','open','closed','','businessinaboxalicia','','','2020-05-25 17:56:17','2020-05-25 17:56:17','',0,'https://solsculpting.com/wp-content/uploads/2020/05/BusinessInABoxAlicia.jpg',0,'attachment','image/jpeg',0),(3412,3,'2020-05-25 18:30:02','2020-05-25 18:30:02','','KimAndSon','','inherit','open','closed','','kimandson','','','2020-05-25 18:30:02','2020-05-25 18:30:02','',0,'https://solsculpting.com/wp-content/uploads/2020/05/KimAndSon.jpg',0,'attachment','image/jpeg',0),(3414,3,'2020-05-25 18:39:27','2020-05-25 18:39:27','','Screen Shot 2020-05-25 at 2.39.10 PM','','inherit','open','closed','','screen-shot-2020-05-25-at-2-39-10-pm','','','2020-05-25 18:39:27','2020-05-25 18:39:27','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-25-at-2.39.10-PM.png',0,'attachment','image/png',0),(3415,3,'2020-05-25 18:42:07','2020-05-25 18:42:07','','Screen Shot 2020-05-25 at 2.41.58 PM','','inherit','open','closed','','screen-shot-2020-05-25-at-2-41-58-pm','','','2020-05-25 18:42:07','2020-05-25 18:42:07','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-25-at-2.41.58-PM.png',0,'attachment','image/png',0),(3418,3,'2020-05-25 18:48:35','2020-05-25 18:48:35','','Screen Shot 2020-05-25 at 2.47.10 PM','','inherit','open','closed','','screen-shot-2020-05-25-at-2-47-10-pm','','','2020-05-25 18:48:35','2020-05-25 18:48:35','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Screen-Shot-2020-05-25-at-2.47.10-PM.png',0,'attachment','image/png',0),(3438,3,'2020-05-26 01:31:20','2020-05-26 01:31:20','','WhyRedLightHeader','','inherit','open','closed','','whyredlightheader','','','2020-05-26 01:31:20','2020-05-26 01:31:20','',0,'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLightHeader.jpg',0,'attachment','image/jpeg',0),(3440,3,'2020-05-26 01:34:07','2020-05-26 01:34:07','<iframe title=\"LightTherapy200525v1\" src=\"https://player.vimeo.com/video/422517294?dnt=1&app_id=122963\" width=\"1280\" height=\"660\" frameborder=\"0\" allow=\"autoplay; fullscreen\" allowfullscreen></iframe>','','','publish','closed','closed','','66598b2e2f3d636c03560c6e54277b95','','','2020-05-26 01:34:07','2020-05-26 01:34:07','',0,'https://solsculpting.com/66598b2e2f3d636c03560c6e54277b95/',0,'oembed_cache','',0),(3447,3,'2020-05-26 01:48:29','2020-05-26 01:48:29','[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'huge\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLightHeader.jpg\' attachment=\'3438\' attachment_size=\'full\' attach=\'scroll\' position=\'center right\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™\r\nby Avanti Body\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-5yj72f\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">Professional Red Light Mat System</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLightHeader.jpg\' attachment=\'3438\' attachment_size=\'full\' attach=\'scroll\' position=\'center center\' repeat=\'stretch\' video=\'\' video_ratio=\'16:9\' overlay_enable=\'aviaTBoverlay_enable\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-shadow\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-1jufpjt\']\r\n[av_heading heading=\'INTRODUCING SolSculpting™\r\nby Avanti Body\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'0\' color=\'custom-color-heading\' custom_font=\'#ffffff\' custom_class=\'\' id=\'\' admin_preview_bg=\'rgb(34, 34, 34)\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-5yj72f\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#ffffff\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' admin_preview_bg=\'rgb(34, 34, 34)\' av_uid=\'av-1gbt8m1\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'custom\' color=\'#dddddd\' id=\'\' custom_class=\'\' av_uid=\'av-1dz5m3t\' admin_preview_bg=\'rgb(34, 34, 34)\']\r\n<p style=\"text-align: center;\">Professional Red Light Mat System</p>\r\n[/av_textblock]\r\n[/av_section]\r\n\r\n[av_layout_row border=\'\' min_height_percent=\'\' min_height_pc=\'25\' min_height=\'0\' color=\'alternate_color\' mobile=\'av-flex-cells\' mobile_breaking=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-19znxll\']\r\n\r\n[av_cell_one_half vertical_align=\'middle\' padding=\'150px,0px,150px,150px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-184xo49\']\r\n\r\n[av_heading heading=\'Professional Red Light Mat System\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'left\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-vpx3mm\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <strong>science-based and clinically-proven </strong>to decrease pain and inflammation, speed up wound and injury healing, aid in muscle recovery, and provide powerful anti-aging effects. This FDA-registered and cleared system for pain is safe and effective with no known side effects.<strong>\r\n</strong>\r\n\r\nThe benefits of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades, <strong>including research supporting its benefits for assisting both the lymphatic and the immune system.</strong>\r\n\r\n<span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'no\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n\r\n[/av_cell_one_half][av_cell_one_half vertical_align=\'middle\' padding=\'50px,100px,50px,100px\' background=\'bg_color\' background_color=\'#f3f3f3\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' background_attachment=\'scroll\' background_position=\'top left\' background_repeat=\'no-repeat\' link=\'\' linktarget=\'\' link_hover=\'\' mobile_display=\'\' custom_class=\'\' av_uid=\'av-13kaghl\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystem-1.jpg\' attachment=\'3477\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_cell_one_half][/av_layout_row][av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaqc1pkm\']\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystemMobile-1024x578.jpg\' attachment=\'3528\' attachment_size=\'large\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'right-to-left\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaa6xwwn\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[av_heading heading=\'Professional Red Light Mat System\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'10\' color=\'\' custom_font=\'\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2gqqdj\'][/av_heading]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'left\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-vpx3mm\' admin_preview_bg=\'\']\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\nSolSculpting™ Red Light Therapy is <b>science-based and clinically-proven</b> to decrease pain and inflammation, speeds up wound and injury healing aide in muscle recovery, and provides powerful anti-aging effects. This FDA-registered and cleared system for pain is safe and effective with no known side effects.\r\n\r\nThe benefits of Low-Level Laser Therapy (LLLT) and Red and Near-Infrared have been well documented and studied in universities and the medical community for over two decades, <strong>including research supporting its benefits for assisting both the lymphatic and the immune system.</strong>\r\n\r\n<span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'no\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'left\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-small-hide=\'aviaTBav-small-hide\' av-mini-hide=\'aviaTBav-mini-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_hr class=\'invisible\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-to95py\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included in each system\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-26skuv\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kand12fc\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\">Choose the number of SolSculpting™ Mat Systems you need to support your current wellness business or to start a stand-alone therapy business system. We offer an eight mat system, which is more body coverage than any other system.</p>\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' height=\'50\' shadow=\'no-shadow\' position=\'center\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_border_color=\'#000000\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' icon_select=\'no\' custom_icon_color=\'\' icon=\'ue808\' font=\'entypo-fontello\' av_uid=\'av-te7qx2\']\r\n\r\n[av_hr class=\'invisible\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'30px\' custom_margin_bottom=\'30px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image_hotspot src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystemGroup.jpg\' attachment=\'3493\' attachment_size=\'full\' hotspot_layout=\'numbered\' animation=\'bottom-to-top\' hotspot_tooltip_display=\'av-permanent-tooltip\' hotspot_mobile=\'aviaTBhotspot_mobile\' id=\'\' custom_class=\'\' av_uid=\'av-t6g9ym\']\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'16,27.3\' av_uid=\'av-a92w9z\']\r\nProprietary SolSculpting™ Control Panel\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'23.2,61.5\' av_uid=\'av-8mlwyf\']\r\n5 LARGE - Body Red Light & Infrared Light Mat (2400 lights per mat)\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'48.2,52.6\' av_uid=\'av-7k4vuf\']\r\n2 MEDIUM Red Light & Infrared Light Mate (1800 lights per mat)\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'68.8,31.1\' av_uid=\'av-6dq6fb\']\r\n1 SMALL Chin/Neck Red Light & Infrared Light Mate (600 lights)\r\n[/av_image_spot]\r\n[av_image_spot tooltip_pos=\'av-tt-pos-above av-tt-align-centered\' tooltip_width=\'av-tt-large-width\' tooltip_style=\'main_color av-tooltip-shadow\' hotspot_color=\'\' custom_bg=\'\' custom_font=\'\' custom_pulse=\'\' link=\'\' link_target=\'\' hotspot_pos=\'78,82.3\' av_uid=\'av-952sn\']\r\nAll mats include wavelengths of 660 and 850 nanometers\r\n[/av_image_spot]\r\n[/av_image_hotspot]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\"><span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span></p>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'yes\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'default\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' av-desktop-hide=\'aviaTBav-desktop-hide\' av-medium-hide=\'aviaTBav-medium-hide\' id=\'Intro\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-tsadce\']\r\n[av_one_full first min_height=\'\' vertical_alignment=\'\' space=\'\' row_boxshadow=\'\' row_boxshadow_color=\'\' row_boxshadow_width=\'10\' custom_margin=\'\' margin=\'0px\' mobile_breaking=\'\' border=\'\' border_color=\'\' radius=\'0px\' padding=\'0px\' column_boxshadow=\'\' column_boxshadow_color=\'\' column_boxshadow_width=\'10\' background=\'bg_color\' background_color=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' highlight=\'\' highlight_size=\'\' animation=\'\' link=\'\' linktarget=\'\' link_hover=\'\' title_attr=\'\' alt_attr=\'\' mobile_display=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_uid=\'av-fcequ\']\r\n\r\n[av_heading heading=\'Here is a look at what’s included in each system\' tag=\'h1\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'35\' av-small-font-size-title=\'30\' av-mini-font-size-title=\'25\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-2hag93\'][/av_heading]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kand12fc\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\">Choose the number of SolSculpting™ Mat Systems you need to support your current wellness business or to start a stand-alone therapy business system. We offer an eight mat system, which is more body coverage than any other system.</p>\r\n[/av_textblock]\r\n\r\n[av_hr class=\'custom\' icon_select=\'no\' icon=\'ue808\' font=\'entypo-fontello\' position=\'center\' shadow=\'no-shadow\' height=\'50\' custom_border=\'av-border-fat\' custom_width=\'50px\' custom_margin_top=\'0px\' custom_margin_bottom=\'10px\' custom_border_color=\'#000000\' custom_icon_color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-te7qx2\' admin_preview_bg=\'\']\r\n\r\n[av_image src=\'https://solsculpting.com/wp-content/uploads/2020/05/SolSculptingSystemGroupWeb.jpg\' attachment=\'3480\' attachment_size=\'full\' copyright=\'\' caption=\'\' styling=\'\' align=\'center\' font_size=\'\' overlay_opacity=\'0.4\' overlay_color=\'#000000\' overlay_text_color=\'#ffffff\' animation=\'no-animation\' hover=\'\' appearance=\'\' link=\'\' target=\'\' id=\'\' custom_class=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-kaaciwfl\' admin_preview_bg=\'\'][/av_image]\r\n\r\n[/av_one_full][av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n<ul>\r\n <li>Proprietary SolSculpting™ Control Panel</li>\r\n <li>5 LARGE Body Red Light & Infrared Light Mate (2400 lights per mat)</li>\r\n <li>2 MEDIUM Red Light & Infrared Light Mate (1800 lights per mat)</li>\r\n <li>1 SMALL Chin/Neck Red Light & Infrared Light Mate (600 lights)</li>\r\n <li>All mats include wavelengths of 660 and 850 nanometers</li>\r\n</ul>\r\n[/av_textblock]\r\n\r\n[av_textblock size=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' font_color=\'\' color=\'\' id=\'\' custom_class=\'\' av_uid=\'av-40ka95\' admin_preview_bg=\'\']\r\n<p style=\"text-align: center;\"><span style=\"color: #bf003c;\">SYSTEMS STARTING AT $22,795</span></p>\r\n[/av_textblock]\r\n\r\n[av_button label=\'CALL TO BUILD YOUR CUSTOM BUSINESS-IN-A-BOX\' icon_select=\'yes\' icon=\'ue854\' font=\'entypo-fontello\' icon_hover=\'aviaTBicon_hover\' size=\'large\' position=\'center\' label_display=\'\' title_attr=\'\' color=\'theme-color-highlight\' custom_bg=\'#444444\' custom_font=\'#ffffff\' link=\'manually,tel: (916) 300-7197\' link_target=\'\' id=\'\' custom_class=\'\' av_uid=\'av-kandez0q\' admin_preview_bg=\'\']\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'alternate_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-ta1u8p\']\r\n[av_one_half first av_uid=\'av-s0qje1\']\r\n\r\n[av_icon_box icon=\'uf102\' font=\'flaticon\' title=\'Free Shipping\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-lvc2nt\' admin_preview_bg=\'\']\r\nEvery mat is shipped FREE in the United States!\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-nrg29l\']\r\n\r\n[av_icon_box icon=\'uf111\' font=\'flaticon\' title=\'One Year Warranty\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-q0ndgp\' admin_preview_bg=\'\']\r\nIf your mats fail to function within a year of purchase we will replace it.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half first av_uid=\'av-ks3e6h\']\r\n\r\n[av_icon_box icon=\'uf104\' font=\'flaticon\' title=\'Secure Payment\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-j2tw15\' admin_preview_bg=\'\']\r\nOur site uses an encryption algorithm that ensures your payment is processed securely.\r\n[/av_icon_box]\r\n\r\n[/av_one_half][av_one_half min_height=\'\' vertical_alignment=\'\' space=\'\' custom_margin=\'\' margin=\'0px\' padding=\'0px\' border=\'\' border_color=\'\' radius=\'0px\' background_color=\'\' src=\'\' background_position=\'top left\' background_repeat=\'no-repeat\' animation=\'\' mobile_display=\'\' av_uid=\'av-htvg55\']\r\n\r\n[av_icon_box icon=\'uf119\' font=\'flaticon\' title=\'Referral Program\' position=\'left_content\' icon_style=\'av-icon-style-no-border\' boxed=\'\' font_color=\'\' custom_title=\'\' custom_content=\'\' color=\'custom\' custom_bg=\'\' custom_font=\'#bbbbbb\' custom_border=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' heading_tag=\'\' heading_class=\'\' link=\'\' linktarget=\'\' linkelement=\'\' id=\'\' custom_class=\'\' av_uid=\'av-gaxcq1\' admin_preview_bg=\'\']\r\nAsk for details!\r\n[/av_icon_box]\r\n\r\n[/av_one_half]\r\n[/av_section]\r\n\r\n[av_section min_height=\'\' min_height_pc=\'25\' min_height_px=\'500px\' padding=\'large\' custom_margin=\'0px\' custom_margin_sync=\'true\' color=\'main_color\' background=\'bg_color\' custom_bg=\'\' background_gradient_color1=\'\' background_gradient_color2=\'\' background_gradient_direction=\'vertical\' src=\'\' attachment=\'\' attachment_size=\'\' attach=\'scroll\' position=\'top left\' repeat=\'no-repeat\' video=\'\' video_ratio=\'16:9\' overlay_opacity=\'0.5\' overlay_color=\'\' overlay_pattern=\'\' overlay_custom_pattern=\'\' shadow=\'no-border-styling\' bottom_border=\'no-border-styling\' bottom_border_diagonal_color=\'#333333\' bottom_border_diagonal_direction=\'\' bottom_border_style=\'\' custom_arrow_bg=\'\' id=\'\' custom_class=\'\' aria_label=\'\' av_element_hidden_in_editor=\'0\' av_uid=\'av-u8hzax\']\r\n[av_heading heading=\'All our products\' tag=\'h2\' link=\'\' link_target=\'\' style=\'blockquote modern-quote modern-centered\' size=\'40\' subheading_active=\'\' subheading_size=\'15\' margin=\'\' padding=\'20\' color=\'custom-color-heading\' custom_font=\'#000000\' custom_class=\'\' id=\'\' admin_preview_bg=\'\' av-desktop-hide=\'\' av-medium-hide=\'\' av-small-hide=\'\' av-mini-hide=\'\' av-medium-font-size-title=\'\' av-small-font-size-title=\'\' av-mini-font-size-title=\'\' av-medium-font-size=\'\' av-small-font-size=\'\' av-mini-font-size=\'\' av_uid=\'av-33ukd3\'][/av_heading]\r\n\r\n[av_productgrid categories=\'33,35,34\' wc_prod_visible=\'\' wc_prod_hidden=\'\' wc_prod_featured=\'\' wc_prod_additional_filter=\'\' sort=\'dropdown\' prod_order=\'\' offset=\'0\' columns=\'3\' items=\'8\' paginate=\'yes\' alb_description=\'\' id=\'\' custom_class=\'\' av_uid=\'av-2wu8rt\']\r\n[/av_section]','SolSculpting™ Red Light Mat System','','publish','open','closed','','solvibrant-red-light-mat-system','','','2020-06-21 00:28:15','2020-06-21 00:28:15','',0,'https://solsculpting.com/?post_type=product&p=3447',0,'product','',0),(3449,3,'2020-05-26 01:52:00','2020-05-26 01:52:00','','WhyRedLight','','inherit','open','closed','','whyredlight','','','2020-05-26 01:52:00','2020-05-26 01:52:00','',0,'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLight.jpg',0,'attachment','image/jpeg',0),(3452,3,'2020-05-26 02:09:14','2020-05-26 02:09:14','','RealPeopleRealSupport','','inherit','open','closed','','realpeoplerealsupport-2','','','2020-05-26 02:09:14','2020-05-26 02:09:14','',0,'https://solsculpting.com/wp-content/uploads/2020/05/RealPeopleRealSupport-1.png',0,'attachment','image/png',0),(3453,3,'2020-05-26 02:16:45','2020-05-26 02:16:45','','Dr-Fritz-Albert-Popp','','inherit','open','closed','','dr-fritz-albert-popp-2','','','2020-05-26 02:16:45','2020-05-26 02:16:45','',0,'https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp.jpg',0,'attachment','image/jpeg',0),(3457,3,'2020-05-26 02:31:41','2020-05-26 02:31:41','','WhyRedLight3','','inherit','open','closed','','whyredlight3','','','2020-05-26 02:31:41','2020-05-26 02:31:41','',0,'https://solsculpting.com/wp-content/uploads/2020/05/WhyRedLight3.jpg',0,'attachment','image/jpeg',0),(3476,3,'2020-05-26 03:25:41','2020-05-26 03:25:41','','SolSculptingSystem','','inherit','open','closed','','solvibrantsystem','','','2020-05-26 03:25:41','2020-05-26 03:25:41','',3447,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSystem.jpg',0,'attachment','image/jpeg',0),(3477,3,'2020-05-26 03:33:51','2020-05-26 03:33:51','','SolSculptingSystem','','inherit','open','closed','','solvibrantsystem-2','','','2020-05-26 03:33:51','2020-05-26 03:33:51','',3447,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSystem-1.jpg',0,'attachment','image/jpeg',0),(3480,3,'2020-05-26 04:05:30','2020-05-26 04:05:30','','SolSculptingSystemGroupWeb','','inherit','open','closed','','solvibrantsystemgroupweb','','','2020-05-26 04:05:30','2020-05-26 04:05:30','',3447,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSystemGroupWeb.jpg',0,'attachment','image/jpeg',0),(3493,3,'2020-05-28 04:00:15','2020-05-28 04:00:15','','SolSculptingSystemGroup','','inherit','open','closed','','solvibrantsystemgroup','','','2020-05-28 04:00:15','2020-05-28 04:00:15','',3447,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSystemGroup.jpg',0,'attachment','image/jpeg',0),(3500,3,'2020-05-28 04:17:11','2020-05-28 04:17:11','','RedLightNewsMockupMobile2','','inherit','open','closed','','redlightnewsmockupmobile2-2','','','2020-05-28 04:17:11','2020-05-28 04:17:11','',0,'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockupMobile2-1.png',0,'attachment','image/png',0),(3502,3,'2020-05-28 04:19:24','2020-05-28 04:19:24','','RedLightNewsMockupMobile2','','inherit','open','closed','','redlightnewsmockupmobile2','','','2020-05-28 04:19:24','2020-05-28 04:19:24','',0,'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockupMobile2.png',0,'attachment','image/png',0),(3503,3,'2020-05-28 04:36:36','2020-05-28 04:36:36','','RedLightNewsMockupMobile2','','inherit','open','closed','','redlightnewsmockupmobile2-3','','','2020-05-28 04:36:36','2020-05-28 04:36:36','',0,'https://solsculpting.com/wp-content/uploads/2020/05/RedLightNewsMockupMobile2-2.png',0,'attachment','image/png',0),(3528,3,'2020-05-28 05:30:55','2020-05-28 05:30:55','','SolSculptingSystemMobile','','inherit','open','closed','','solvibrantsystemmobile','','','2020-05-28 05:30:55','2020-05-28 05:30:55','',3447,'https://solsculpting.com/wp-content/uploads/2020/05/SolVibrantSystemMobile.jpg',0,'attachment','image/jpeg',0),(3530,3,'2020-05-28 05:38:12','2020-05-28 05:38:12','','BackPainMobile','','inherit','open','closed','','backpainmobile','','','2020-05-28 05:38:12','2020-05-28 05:38:12','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/BackPainMobile.jpg',0,'attachment','image/jpeg',0),(3531,3,'2020-05-28 05:40:30','2020-05-28 05:40:30','','BackPainMobile','','inherit','open','closed','','backpainmobile-2','','','2020-05-28 05:40:30','2020-05-28 05:40:30','',3222,'https://solsculpting.com/wp-content/uploads/2020/05/BackPainMobile-1.jpg',0,'attachment','image/jpeg',0),(3532,3,'2020-05-28 05:44:39','2020-05-28 05:44:39','','AntiAgingMobile','','inherit','open','closed','','antiagingmobile','','','2020-05-28 05:44:39','2020-05-28 05:44:39','',3207,'https://solsculpting.com/wp-content/uploads/2020/05/AntiAgingMobile.jpg',0,'attachment','image/jpeg',0),(3540,3,'2020-06-13 21:05:02','2020-06-13 21:05:02','','Screen Shot 2020-06-13 at 4.54.56 PM','','inherit','open','closed','','screen-shot-2020-06-13-at-4-54-56-pm','','','2020-06-13 21:05:02','2020-06-13 21:05:02','',0,'https://solsculpting.com/wp-content/uploads/2020/06/Screen-Shot-2020-06-13-at-4.54.56-PM.png',0,'attachment','image/png',0),(3553,0,'2021-02-16 08:47:17','2021-02-16 08:47:17','<blockquote class=\"wp-embedded-content\" data-secret=\"dnlefxvf2G\"><a href=\"https://kriesi.at/\">Home</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"“Home” — Kriesi.at - Premium WordPress Themes\" src=\"https://kriesi.at/embed#?secret=dnlefxvf2G\" data-secret=\"dnlefxvf2G\" width=\"600\" height=\"338\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b0268193f0cbd776f2a9c43df56d9186','','','2021-02-16 08:47:17','2021-02-16 08:47:17','',0,'https://solsculpting.com/b0268193f0cbd776f2a9c43df56d9186/',0,'oembed_cache','',0),(3554,0,'2021-02-16 08:48:49','2021-02-16 08:48:49','<iframe title=\"Free HD stock video footage - Cloud time lapse (See Description for High Quality download link)\" src=\"https://player.vimeo.com/video/41629603?dnt=1&app_id=122963\" width=\"1280\" height=\"720\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','3575cebe6a8975300c4abc1b45d76eb7','','','2021-02-16 08:48:49','2021-02-16 08:48:49','',0,'https://solsculpting.com/3575cebe6a8975300c4abc1b45d76eb7/',0,'oembed_cache','',0),(3559,3,'2021-02-28 00:51:40','2021-02-28 00:51:40','','GradientBackground','','inherit','open','closed','','gradientbackground','','','2021-02-28 00:51:40','2021-02-28 00:51:40','',0,'https://solsculpting.com/wp-content/uploads/2021/02/GradientBackground.jpg',0,'attachment','image/jpeg',0),(3560,3,'2021-02-28 00:52:53','2021-02-28 00:52:53','','GradientBackground','','inherit','open','closed','','gradientbackground-2','','','2021-02-28 00:52:53','2021-02-28 00:52:53','',0,'https://solsculpting.com/wp-content/uploads/2021/02/GradientBackground-1.jpg',0,'attachment','image/jpeg',0),(3564,3,'2021-02-28 01:47:47','2021-02-28 01:47:47','','Number1','','inherit','open','closed','','number1','','','2021-02-28 01:47:47','2021-02-28 01:47:47','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Number1.png',0,'attachment','image/png',0),(3565,3,'2021-02-28 01:48:11','2021-02-28 01:48:11','','Number2','','inherit','open','closed','','number2','','','2021-02-28 01:48:11','2021-02-28 01:48:11','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Number2.png',0,'attachment','image/png',0),(3566,3,'2021-02-28 01:48:13','2021-02-28 01:48:13','','Number3','','inherit','open','closed','','number3','','','2021-02-28 01:48:13','2021-02-28 01:48:13','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Number3.png',0,'attachment','image/png',0),(3568,3,'2021-02-28 01:55:35','2021-02-28 01:55:35','','Number1','','inherit','open','closed','','number1-2','','','2021-02-28 01:55:35','2021-02-28 01:55:35','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Number1-1.png',0,'attachment','image/png',0),(3569,3,'2021-02-28 01:55:43','2021-02-28 01:55:43','','Number3','','inherit','open','closed','','number3-2','','','2021-02-28 01:55:43','2021-02-28 01:55:43','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Number3-1.png',0,'attachment','image/png',0),(3570,3,'2021-02-28 01:55:44','2021-02-28 01:55:44','','Number2','','inherit','open','closed','','number2-2','','','2021-02-28 01:55:44','2021-02-28 01:55:44','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Number2-1.png',0,'attachment','image/png',0),(3572,3,'2021-02-28 02:11:23','2021-02-28 02:11:23','','GradientBackgroundMobile','','inherit','open','closed','','gradientbackgroundmobile','','','2021-02-28 02:11:23','2021-02-28 02:11:23','',0,'https://solsculpting.com/wp-content/uploads/2021/02/GradientBackgroundMobile.jpg',0,'attachment','image/jpeg',0),(3573,3,'2021-02-28 02:27:29','2021-02-28 02:27:29','','GradientBackgroundMobile','','inherit','open','closed','','gradientbackgroundmobile-2','','','2021-02-28 02:27:29','2021-02-28 02:27:29','',0,'https://solsculpting.com/wp-content/uploads/2021/02/GradientBackgroundMobile-1.jpg',0,'attachment','image/jpeg',0),(3588,3,'2021-02-28 03:13:00','2021-02-28 03:13:00','','MiracleDrug1500x850edit','','inherit','open','closed','','miracledrug1500x850edit','','','2021-02-28 03:13:00','2021-02-28 03:13:00','',0,'https://solsculpting.com/wp-content/uploads/2021/02/MiracleDrug1500x850edit.png',0,'attachment','image/png',0),(3590,3,'2021-02-28 03:30:41','2021-02-28 03:30:41','','Red-light-mat','','inherit','open','closed','','red-light-mat','','','2021-02-28 03:30:41','2021-02-28 03:30:41','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Red-light-mat.jpg',0,'attachment','image/jpeg',0),(3591,3,'2021-02-28 03:31:11','2021-02-28 03:31:11','','Red-light-mat','','inherit','open','closed','','red-light-mat-2','','','2021-02-28 03:31:11','2021-02-28 03:31:11','',0,'https://solsculpting.com/wp-content/uploads/2021/02/Red-light-mat-1.jpg',0,'attachment','image/jpeg',0),(3595,3,'2021-03-18 01:45:22','2021-03-18 01:45:22','','Screen Shot 2021-03-17 at 9.44.14 PM','','inherit','open','closed','','screen-shot-2021-03-17-at-9-44-14-pm','','','2021-03-18 01:45:22','2021-03-18 01:45:22','',0,'https://solsculpting.com/wp-content/uploads/2021/03/Screen-Shot-2021-03-17-at-9.44.14-PM.png',0,'attachment','image/png',0),(3596,3,'2021-03-18 01:47:18','2021-03-18 01:47:18','','BrightFutureVideoStill','','inherit','open','closed','','brightfuturevideostill','','','2021-03-18 01:47:18','2021-03-18 01:47:18','',0,'https://solsculpting.com/wp-content/uploads/2021/03/BrightFutureVideoStill.jpg',0,'attachment','image/jpeg',0),(3607,3,'2021-03-18 20:41:47','2021-03-18 20:41:47','','ControlPanel','','inherit','open','closed','','controlpanel','','','2021-03-18 20:41:47','2021-03-18 20:41:47','',0,'https://solsculpting.com/wp-content/uploads/2021/03/ControlPanel.jpg',0,'attachment','image/jpeg',0),(3608,3,'2021-03-18 20:41:52','2021-03-18 20:41:52','','MatSystemOff','','inherit','open','closed','','matsystemoff','','','2021-03-18 20:41:52','2021-03-18 20:41:52','',0,'https://solsculpting.com/wp-content/uploads/2021/03/MatSystemOff.jpg',0,'attachment','image/jpeg',0),(3609,3,'2021-03-18 20:41:58','2021-03-18 20:41:58','','MatSystemOn','','inherit','open','closed','','matsystemon','','','2021-03-18 20:41:58','2021-03-18 20:41:58','',0,'https://solsculpting.com/wp-content/uploads/2021/03/MatSystemOn.jpg',0,'attachment','image/jpeg',0),(3611,2,'2021-05-18 20:08:43','2021-05-18 20:08:43','','SolSculptingWideLogoPR','','inherit','open','closed','','solsculptingwidelogopr','','','2021-05-18 20:08:43','2021-05-18 20:08:43','',0,'https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR.jpg',0,'attachment','image/jpeg',0),(3612,2,'2021-05-18 20:10:22','2021-05-18 20:10:22','','Fav','','inherit','open','closed','','fav','','','2021-05-18 20:10:22','2021-05-18 20:10:22','',0,'https://solsculpting.com/wp-content/uploads/2021/05/Fav.jpg',0,'attachment','image/jpeg',0),(3613,2,'2021-05-18 20:11:22','2021-05-18 20:11:22','','SolSculptingWideLogoPR','','inherit','open','closed','','solsculptingwidelogopr-2','','','2021-05-18 20:11:22','2021-05-18 20:11:22','',0,'https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR.png',0,'attachment','image/png',0),(3616,2,'2021-05-18 20:30:03','2021-05-18 20:30:03','','White Logo PNG','','inherit','open','closed','','white-logo-png','','','2021-05-18 20:30:03','2021-05-18 20:30:03','',0,'https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG.png',0,'attachment','image/png',0),(3625,2,'2021-05-20 03:07:54','2021-05-20 03:07:54','','Screenshot 2021-05-19 220635','','inherit','open','closed','','screenshot-2021-05-19-220635','','','2021-05-20 03:07:54','2021-05-20 03:07:54','',0,'https://solsculpting.com/wp-content/uploads/2021/05/Screenshot-2021-05-19-220635.jpg',0,'attachment','image/jpeg',0),(3626,2,'2021-05-20 03:17:18','2021-05-20 03:17:18','','Screenshot 2021-05-19 221653','','inherit','open','closed','','screenshot-2021-05-19-221653','','','2021-05-20 03:17:18','2021-05-20 03:17:18','',0,'https://solsculpting.com/wp-content/uploads/2021/05/Screenshot-2021-05-19-221653.jpg',0,'attachment','image/jpeg',0),(3631,2,'2022-03-10 19:45:44','2022-03-10 19:45:44','','Acr19400294262272409359','','inherit','open','closed','','acr19400294262272409359','','','2022-03-10 19:45:44','2022-03-10 19:45:44','',0,'https://solsculpting.com/wp-content/uploads/2022/03/Acr19400294262272409359.jpg',0,'attachment','image/jpeg',0),(3632,2,'2022-03-10 19:45:51','2022-03-10 19:45:51','','Acr19400294262272711761','','inherit','open','closed','','acr19400294262272711761','','','2022-03-10 19:45:51','2022-03-10 19:45:51','',0,'https://solsculpting.com/wp-content/uploads/2022/03/Acr19400294262272711761.jpg',0,'attachment','image/jpeg',0),(3633,2,'2022-03-10 19:45:56','2022-03-10 19:45:56','','BodyScan1','','inherit','open','closed','','bodyscan1','','','2022-03-10 19:45:56','2022-03-10 19:45:56','',0,'https://solsculpting.com/wp-content/uploads/2022/03/BodyScan1.jpg',0,'attachment','image/jpeg',0),(3634,2,'2022-03-10 19:45:58','2022-03-10 19:45:58','','BodyScan2','','inherit','open','closed','','bodyscan2','','','2022-03-10 19:45:58','2022-03-10 19:45:58','',0,'https://solsculpting.com/wp-content/uploads/2022/03/BodyScan2.jpg',0,'attachment','image/jpeg',0),(3635,2,'2022-03-10 19:46:00','2022-03-10 19:46:00','','BodyScan3','','inherit','open','closed','','bodyscan3','','','2022-03-10 19:46:00','2022-03-10 19:46:00','',0,'https://solsculpting.com/wp-content/uploads/2022/03/BodyScan3.jpg',0,'attachment','image/jpeg',0),(3636,2,'2022-03-10 19:46:02','2022-03-10 19:46:02','','ChiropractorRoom2','','inherit','open','closed','','chiropractorroom2','','','2022-03-10 19:46:02','2022-03-10 19:46:02','',0,'https://solsculpting.com/wp-content/uploads/2022/03/ChiropractorRoom2.jpg',0,'attachment','image/jpeg',0),(3637,2,'2022-03-10 19:46:07','2022-03-10 19:46:07','','DS_2021_61233Background','','inherit','open','closed','','ds_2021_61233background','','','2022-03-10 19:46:07','2022-03-10 19:46:07','',0,'https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background.png',0,'attachment','image/png',0),(3638,2,'2022-03-10 19:46:21','2022-03-10 19:46:21','','DS_2021_61350','','inherit','open','closed','','ds_2021_61350','','','2022-03-10 19:46:21','2022-03-10 19:46:21','',0,'https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61350.jpg',0,'attachment','image/jpeg',0),(3639,2,'2022-03-10 19:46:26','2022-03-10 19:46:26','','Mitochondria','','inherit','open','closed','','mitochondria','','','2022-03-10 19:46:26','2022-03-10 19:46:26','',0,'https://solsculpting.com/wp-content/uploads/2022/03/Mitochondria.jpg',0,'attachment','image/jpeg',0),(3640,2,'2022-03-10 19:46:27','2022-03-10 19:46:27','','Mitochondria_1','','inherit','open','closed','','mitochondria_1','','','2022-03-10 19:46:27','2022-03-10 19:46:27','',0,'https://solsculpting.com/wp-content/uploads/2022/03/Mitochondria_1.jpg',0,'attachment','image/jpeg',0),(3641,2,'2022-03-10 19:46:31','2022-03-10 19:46:31','','SolSculptingUnitCart','','inherit','open','closed','','solsculptingunitcart','','','2022-03-10 19:46:31','2022-03-10 19:46:31','',0,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculptingUnitCart.png',0,'attachment','image/png',0),(3642,2,'2022-03-10 19:48:45','2022-03-10 19:48:45','','Default Kit','','publish','closed','closed','','default-kit','','','2022-03-13 02:17:08','2022-03-13 02:17:08','',0,'https://solsculpting.com/?p=3642',0,'elementor_library','',0),(3644,2,'2022-03-10 22:12:08','2022-03-10 22:12:08','<img width=\"438\" height=\"311\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall.png 438w, https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall-300x213.png 300w, https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall-260x185.png 260w\" sizes=\"(max-width: 438px) 100vw, 438px\" /> \n <h1>Introducing SolSculpting</h1><p>Optimal power for Optimal results</p> \n <img width=\"550\" height=\"550\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/chri1.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/chri1.jpg 550w, https://solsculpting.com/wp-content/uploads/2022/03/chri1-300x300.jpg 300w, https://solsculpting.com/wp-content/uploads/2022/03/chri1-150x150.jpg 150w\" sizes=\"(max-width: 550px) 100vw, 550px\" /> \n <p>Want to see \"less and less\" of your patients?</p><p>With SolSculpting, you will!! Just look at these real patient progress scans!</p> \n <img width=\"384\" height=\"397\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-17-inches.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-17-inches.jpg 384w, https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-17-inches-290x300.jpg 290w\" sizes=\"(max-width: 384px) 100vw, 384px\" /> \n <img width=\"384\" height=\"397\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-14.2-inches.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-14.2-inches.jpg 384w, https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-14.2-inches-290x300.jpg 290w\" sizes=\"(max-width: 384px) 100vw, 384px\" /> \n <img width=\"384\" height=\"397\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-12.2-inches.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-12.2-inches.jpg 384w, https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-12.2-inches-290x300.jpg 290w\" sizes=\"(max-width: 384px) 100vw, 384px\" /> \n <h2>REQUEST SOLSCULPTING SYSTEM PRICING</h2> \n <a href=\"#contact\" role=\"button\">\n REQUEST PRICING\n </a>\n <img src=\"https://solsculpting.com/wp-content/uploads/elementor/thumbs/Acr19400294262272409359-plxfx07636tpw24igxa086savsot2sk01adtqyftkg.jpg\" title=\"Acr19400294262272409359\" alt=\"Acr19400294262272409359\" /> \n <h2>Why Red Light Therapy?</h2> \n <ul>\n <li>\n Science Based\n </li>\n <li>\n Works at Cellular Level\n </li>\n <li>\n Oxygenates the Cells\n </li>\n <li>\n Wavelengths of Natural Light\n </li>\n <li>\n Tangible Results\n </li>\n <li>\n Provides Nutrients to the Cells\n </li>\n </ul>\n <h2>Red Light Results</h2> \n <ul>\n <li>\n Fat Reduction\n </li>\n <li>\n Body Sculpting\n </li>\n <li>\n Eliminates Cellulite\n </li>\n <li>\n Skin Tightening\n </li>\n <li>\n Skin Rejuvenation\n </li>\n <li>\n Relieves Pain & Inflammation\n </li>\n <li>\n Anti-Aging\n </li>\n <li>\n Boost Collagen Production\n </li>\n <li>\n Muscle Recovery\n </li>\n <li>\n Promotes Sleep\n </li>\n </ul>\n <img src=\"https://solsculpting.com/wp-content/uploads/elementor/thumbs/DS_2021_61350-plxfx07636tpw24igxa086savsot2sk01adtqyftkg.jpg\" title=\"DS_2021_61350\" alt=\"DS_2021_61350\" /> \n <h2>INTERESTED IN LEARNING MORE?</h2> \n <a href=\"http://calendly.com/solsculpting-systems\" role=\"button\">\n BOOK AN APPOINTMENT\n </a>\n <img width=\"768\" height=\"535\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-768x535.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-768x535.png 768w, https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-300x209.png 300w, https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-705x491.png 705w, https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-600x418.png 600w, https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits.png 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" /> \n <h2>Reduce</h2> \n <p>Tighten, tone, and reduce stubborn fat anywhere. Stimulates the fat cells to release the stored fat. The skin becomes visibly tighter.</p> \n <h2>Rejuvenate</h2> \n <p>Stimulate the mitochondria\'s ATP production. Increases cellular energy, dramatically improves skin heal & boosts collagen production by up to 31%.</p> \n <h2>Relieve</h2> \n <p>Decreases pain and inflammation, speeds up muscle recovery by providing stimulation to the muscle tissue resulting in enhanced blood circulation.</p> \n <h2>Relax</h2> \n <p>Detoxifies the body, balances circadian rhythm & promotes deeper sleep. Calms anxiety & increases melatonin production.</p> \n <h2>Reduce</h2> \n <p>Tighten, tone, and reduce stubborn fat anywhere. Stimulates the fat cells to release the stored fat. The skin becomes visibly tighter.</p> \n <h2>Rejuvenate</h2> \n <p>Stimulate the mitochondria\'s ATP production. Increases cellular energy, dramatically improves skin heal & boosts collagen production by up to 31%.</p> \n <h2>Relieve</h2> \n <p>Decreases pain and inflammation, speeds up muscle recovery by providing stimulation to the muscle tissue resulting in enhanced blood circulation.</p> \n <h2>Relax</h2> \n <p>Detoxifies the body, balances circadian rhythm & promotes deeper sleep. Calms anxiety & increases melatonin production.</p> \n <h2>SolSculpting System</h2> \n Everything you need to easily transfer the system between patient rooms.<br><br>\n<strong>OVER 24,000 LIGHTS</strong> (8 individual pads)\n8 channel controller individually controls optic power\nDigital interface with treatment set point & timer<br><br>\n<strong>8 PADS</strong>\n3 Long (32.5″ L x 11.25″ W)\n2 Medium (25.63″ L x 11.25″ W)\n2 Small (18.88″ L x 11.25″ W)\n1 Neck/Chin (11.38″ L x 8.5″ W)<br><br>\n*Cart not included<br>\n2-year warranty.\n<br>Ask about our financing options. \n <a href=\"#contact\" role=\"button\">\n Request Pricing\n </a>\n <a href=\"#contact\" role=\"button\">\n Request Pricing\n </a>\n <img width=\"768\" height=\"1220\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-768x1220.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-768x1220.png 768w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-189x300.png 189w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-644x1024.png 644w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-967x1536.png 967w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-944x1500.png 944w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-444x705.png 444w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-600x953.png 600w, https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background.png 1000w\" sizes=\"(max-width: 768px) 100vw, 768px\" /> \n https://vimeo.com/422517294 \n <h2>The Science of Red Light Therapy - Photobiomodulation</h2> \n <p>In the 1990s NASA developed a more practical light source, to grow plants in space, named the Astroculture 3. It wasn’t long before the same LED technology would be found useful in the treatment of astronaut’s bone and muscle loss that occurs in zero gravity.</p><p>The application of these high-intensity, wavelength-specific lights, would be called photobiomodulation (PBMT). Photobiomodulation (PBMT) affects the cell’s mitochondria and other key parts assisting in the optimization of the cells. A little over two decades later, these powerful light systems are being used for fat loss, pain, anti-aging, inflammation, and much more.</p><p>Today photobiomodulation (PBMT) is lighting the path to well-being from the astroturf to the astronauts.</p> \n <h2>Testimonials </h2> \n We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We’re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting’s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\n <img width=\"450\" height=\"450\" src=\"https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg\" alt=\"\" loading=\"lazy\" /> \n Jeanne McDonald\n Orange County, CA\n Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can’t help but tell all their friends. I started as a boutique spa, but I know it’s going to outgrow the space I’m currently in. It’s so fulfilling to own my own spa that changes people’s lives in a tangible way.\n <img width=\"450\" height=\"450\" src=\"https://solsculpting.com/wp-content/uploads/2020/05/JenniferHeadshot.jpg\" alt=\"\" loading=\"lazy\" /> \n Jennifer Sharp\n Sacramento, CA\n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL</h3> \n <p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It’s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.</p> \n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD</h3> \n Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.\n<p><a name=\"contact\"></a></p> \n <a href=\"https://www.cancer.gov/about-cancer/causes-prevention/risk/radiation/electromagnetic-fields-fact-sheet\" role=\"button\">\n LEARN MORE\n </a>\n <h2>GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW</h2> \n <p>We value your privacy. We never send you any spam or pass your information to 3rd parties.</p>','SolSculpting | Red Light Therapy for Wellness Professionals','','publish','closed','closed','','chiropractor','','','2022-12-03 00:31:54','2022-12-03 00:31:54','',0,'https://solsculpting.com/?page_id=3644',0,'page','',0),(3646,2,'2022-03-10 20:04:51','2022-03-10 20:04:51','','SolSculpting Tall','','inherit','open','closed','','solsculpting-tall','','','2022-03-10 20:04:51','2022-03-10 20:04:51','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall.png',0,'attachment','image/png',0),(3648,2,'2022-03-10 20:13:27','2022-03-10 20:13:27','','SpectrumRule','','inherit','open','closed','','spectrumrule','','','2022-03-10 20:13:27','2022-03-10 20:13:27','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SpectrumRule.jpg',0,'attachment','image/jpeg',0),(3649,2,'2022-03-10 21:49:26','2022-03-10 21:49:26','','Red Light','','inherit','open','closed','','red-light','','','2022-03-10 21:49:26','2022-03-10 21:49:26','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/Red-Light.png',0,'attachment','image/png',0),(3651,2,'2022-03-10 23:58:55','2022-03-10 23:58:55','','SolVibranBenefits','','inherit','open','closed','','solvibranbenefits','','','2022-03-10 23:58:55','2022-03-10 23:58:55','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits.png',0,'attachment','image/png',0),(3652,2,'2022-03-11 00:02:54','2022-03-11 00:02:54','','BodyScan3','','inherit','open','closed','','bodyscan3-2','','','2022-03-11 00:02:54','2022-03-11 00:02:54','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/BodyScan3-1.jpg',0,'attachment','image/jpeg',0),(3653,2,'2022-03-11 00:02:55','2022-03-11 00:02:55','','BodyScan2','','inherit','open','closed','','bodyscan2-2','','','2022-03-11 00:02:55','2022-03-11 00:02:55','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/BodyScan2-1.jpg',0,'attachment','image/jpeg',0),(3654,2,'2022-03-11 00:02:56','2022-03-11 00:02:56','','BodyScan1','','inherit','open','closed','','bodyscan1-2','','','2022-03-11 00:02:56','2022-03-11 00:02:56','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/BodyScan1-1.jpg',0,'attachment','image/jpeg',0),(3663,2,'2022-03-11 19:46:46','2022-03-11 19:46:46','','bolt icon 1','','inherit','open','closed','','bolt-icon-1','','','2022-03-11 19:46:46','2022-03-11 19:46:46','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png',0,'attachment','image/png',0),(3664,2,'2022-03-11 19:46:47','2022-03-11 19:46:47','','Arro Icon 1','','inherit','open','closed','','arro-icon-1','','','2022-03-11 19:46:47','2022-03-11 19:46:47','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png',0,'attachment','image/png',0),(3665,2,'2022-03-11 19:46:48','2022-03-11 19:46:48','','Report Icon 1','','inherit','open','closed','','report-icon-1','','','2022-03-11 19:46:48','2022-03-11 19:46:48','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1.png',0,'attachment','image/png',0),(3667,2,'2022-03-13 01:57:32','2022-03-13 01:57:32','https://solsculpting.com/wp-content/uploads/2021/05/cropped-SolSculptingWideLogoPR.png','cropped-SolSculptingWideLogoPR.png','','inherit','open','closed','','cropped-solsculptingwidelogopr-png','','','2022-03-13 01:57:32','2022-03-13 01:57:32','',0,'https://solsculpting.com/wp-content/uploads/2021/05/cropped-SolSculptingWideLogoPR.png',0,'attachment','image/png',0),(3669,2,'2022-03-13 01:58:16','2022-03-13 01:58:16','<style>/*! elementor - v3.6.4 - 13-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <a href=\"https://solsculpting.com/\">\n <img width=\"800\" height=\"326\" src=\"https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-1024x417.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-1024x417.jpg 1024w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-300x122.jpg 300w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-768x313.jpg 768w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-705x287.jpg 705w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-600x244.jpg 600w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR.jpg 1436w\" sizes=\"(max-width: 800px) 100vw, 800px\" /> </a>\n <a href=\"https://solsculpting.com/\">\n <img width=\"1436\" height=\"585\" src=\"https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR.jpg 1436w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-300x122.jpg 300w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-1024x417.jpg 1024w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-768x313.jpg 768w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-705x287.jpg 705w, https://solsculpting.com/wp-content/uploads/2021/05/SolSculptingWideLogoPR-600x244.jpg 600w\" sizes=\"(max-width: 1436px) 100vw, 1436px\" /> </a>','SolSculpting Header','','publish','closed','closed','','elementor-header-3669','','','2022-04-20 20:14:37','2022-04-20 20:14:37','',0,'https://solsculpting.com/?post_type=elementor_library&p=3669',0,'elementor_library','',0),(3670,2,'2022-03-13 02:00:35','2022-03-13 02:00:35','','Me-1.svg','','inherit','open','closed','','me-1-svg','','','2022-03-13 02:00:35','2022-03-13 02:00:35','',0,'https://solsculpting.com/me-1-svg/',0,'attachment','',0),(3671,2,'2022-03-13 02:00:49','2022-03-13 02:00:49','','logo-white-1.png','','inherit','open','closed','','logo-white-1-png','','','2022-03-13 02:00:49','2022-03-13 02:00:49','',0,'https://solsculpting.com/wp-content/uploads/2022/03/logo-white-1.png',0,'attachment','image/png',0),(3672,2,'2022-03-13 03:13:31','2022-03-13 03:13:31','<style>/*! elementor - v3.6.5 - 27-04-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <img width=\"800\" height=\"232\" src=\"https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-1024x297.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-1024x297.png 1024w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-300x87.png 300w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-768x223.png 768w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-1536x446.png 1536w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-2048x594.png 2048w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-1500x435.png 1500w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-705x204.png 705w, https://solsculpting.com/wp-content/uploads/2021/05/White-Logo-PNG-600x174.png 600w\" sizes=\"(max-width: 800px) 100vw, 800px\" /> \n <p>GET IN TOUCH</p><p><a style=\"color: #ffffff;\" href=\"tel:707-804-9536\">(707) 804-9536</a><br /><a style=\"color: #ffffff;\" href=\"mailto:alicia@solsculpting.com\">alicia@solsculpting.com</a></p><p>SolSculpting, is manufactured and private labeled in the U.S. Equipment is registered General Wellness - Low Risk Devices per FDA Guidance 1300013 dated July 29, 2016 - Statements on the website, information about products contained on the website, information in marketing literature or documentation are not meant to be medical claims and should not be construed as such. Always consult your physician before use.</p><p>Copyright 2022-2023© SolSculpting by SolVibrant All rights reserved.<br /><a style=\"color: #ffffff;\" href=\"https://solsculpting.com/disclaimers/\">Disclaimers</a></p>','SolSculpting Footer','','publish','closed','closed','','elementor-footer-3672','','','2022-08-17 21:22:03','2022-08-17 21:22:03','',0,'https://solsculpting.com/?post_type=elementor_library&p=3672',0,'elementor_library','',0),(3674,2,'2022-03-13 03:17:07','2022-03-13 03:17:07','{\"version\": 2, \"isGlobalStylesUserThemeJSON\": true }','Custom Styles','','publish','closed','closed','','wp-global-styles-hello-elementor','','','2022-03-13 03:17:07','2022-03-13 03:17:07','',0,'https://solsculpting.com/wp-global-styles-hello-elementor/',0,'wp_global_styles','',0),(3675,2,'2022-03-13 03:18:44','2022-03-13 03:18:44','<h1>Disclaimers</h1>\r\n<h2>Professional Disclaimer</h2>\r\nThe Site cannot and does not contain medical/health advice. The medical/health information is provided for general information and educational purposes only and is not a substitute for professional advice. Accordingly, before taking any actions based upon such information, we encourage you to consult with the appropriate professionals.\r\n\r\nWe do not provide any kind of medical/health advice. THE USE OR RELIANCE OF ANY INFORMATION CONTAINED ON THIS SITE OR OUR MOBILE APPLICATION IS SOLELY AT YOUR OWN RISK.\r\n<h2>Website Disclaimer</h2>\r\nThe information provided by Avanti Centers, LLC dba Avanti Body (“we,” “us” or “our”) on https://www.avantibody.com (the “Site”) and our mobile application are for general informational purposes only. All information on the Site and our mobile application are provided in good faith, however, we make no representation or warranty of any kind, express or implied, regarding the accuracy, adequacy, validity, reliability, availability, or completeness of any information on the Site or our mobile application.\r\n\r\n<section>UNDER NO CIRCUMSTANCE SHALL WE HAVE ANY LIABILITY TO YOU FOR ANY LOSS OR DAMAGE OF ANY KIND INCURRED AS A RESULT OF THE USE OF THE SITE OR OUR MOBILE APPLICATION OR RELIANCE ON ANY INFORMATION PROVIDED ON THE SITE AND OUR MOBILE APPLICATION. YOUR USE OF THE SITE AND OUR MOBILE APPLICATION AND YOUR RELIANCE ON ANY INFORMATION ON THE SITE AND OUR MOBILE APPLICATION IS SOLELY AT YOUR OWN RISK.\r\n\r\n</section>\r\n<h2>External Link Disclaimer</h2>\r\nThe Site and our mobile application may contain (or you may be sent through the Site or our mobile application) links to other websites or content belonging to or originating from third parties or links to websites and features in banners or other advertising. Such external links are not investigated, monitored, or checked for accuracy, adequacy, validity, reliability, availability or completeness by us.\r\n\r\n<section>WE DO NOT WARRANT, ENDORSE, GUARANTEE, OR ASSUME RESPONSIBILITY FOR THE ACCURACY OR RELIABILITY OF ANY INFORMATION OFFERED BY THIRD-PARTY WEBSITES LINKED THROUGH THE SITE OR ANY WEBSITE OR FEATURE LINKED IN ANY BANNER OR OTHER ADVERTISING. WE WILL NOT BE A PARTY TO OR IN ANY WAY BE RESPONSIBLE FOR MONITORING ANY TRANSACTION BETWEEN YOU AND THIRD-PARTY PROVIDERS OF PRODUCTS OR SERVICES.\r\n\r\n</section>\r\n<h2>Testimonials Disclaimer</h2>\r\nThe Site may contain testimonials by users of our products and/or services. These testimonials reflect the real-life experiences and opinions of such users. However, the experiences are personal to those particular users, and may not necessarily be representative of all users of our products and/or services. We do not claim, and you should not assume, that all users will have the same experiences. YOUR INDIVIDUAL RESULTS MAY VARY.\r\n\r\nThe testimonials on the Site are submitted in various forms such as text, audio and/or video, and are reviewed by us before being posted. They appear on the Site verbatim as given by the users, except for the correction of grammar or typing errors. Some testimonials may have been shortened for the sake of brevity where the full testimonial contained extraneous information not relevant to the general public.\r\n\r\n<section>The views and opinions contained in the testimonials belong solely to the individual user and do not reflect our views and opinions. We are not affiliated with users who provide testimonials, and users are not paid or otherwise compensated for their testimonials.\r\n\r\nThe testimonials on the Site are not intended, nor should they be construed, as claims that our products and/or services can be used to diagnose, treat, mitigate, cure, prevent or otherwise be used for any disease or medical condition. No testimonials have been clinically proven or evaluated.\r\n\r\n</section>','Disclaimers','','publish','closed','closed','','disclaimers','','','2022-12-01 16:09:39','2022-12-01 16:09:39','',0,'https://solsculpting.com/?page_id=3675',0,'page','',0),(3677,2,'2022-03-13 20:10:36','2022-03-13 20:10:36','<h1>RED LIGHT THERAPY</h1> \n <p>A business opportunity<br />with a very bright future</p> \n <h2>SCIENTIFICALLY-PROVEN TO HELP PRACTICALLY ANYONE</h2> \n <section><p>Red light has the power to reverse skin aging, improves skin conditions, reduce cellulite, combat fibromyalgia, neuropathy, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!</p></section> \n <img width=\"218\" height=\"41\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/5-STAR.png\" alt=\"\" loading=\"lazy\" /> \n <img src=\"https://solsculpting.com/wp-content/uploads/elementor/thumbs/RedLightNewsMockupMobile2-plrmrqdnt1th2ktb4uru0o9ucxil0mv4iujd0460s0.png\" title=\"RedLightNewsMockupMobile2\" alt=\"RedLightNewsMockupMobile2\" /> \n <h2>SCIENTIFICALLY-PROVEN TO HELP PRACTICALLY ANYONE</h2> \n <section><p>Red light has the power to reverse skin aging, improves skin conditions, reduce cellulite, combat fibromyalgia, neuropathy, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!</p></section> \n <img width=\"218\" height=\"41\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/5-STAR.png\" alt=\"\" loading=\"lazy\" /> \n https://vimeo.com/422517294 \n <h2>THE SCIENCE OF RED LIGHT THERAPY - \nPHOTOBIOMODULATION</h2> \n <p>In the 1990s NASA developed a more practical light source, to grow plants in space, named the Astroculture 3. It wasn’t long before the same LED technology would be found useful in the treatment of astronaut’s bone and muscle loss that occurs in zero gravity.</p><p>The application of these high-intensity, wavelength-specific lights, would be called photobiomodulation (PBMT). Photobiomodulation (PBMT) affects the cell’s mitochondria and other key parts assisting in the optimization of the cells. A little over two decades later, these powerful light systems are being used for fat loss, pain, anti-aging, inflammation, and much more.</p><p>Today photobiomodulation (PBMT) is lighting the path to well-being from the astroturf to the astronauts.</p> \n Previous\n Next\n <h2>BOOK A NO OBLIGATION DISCOVERY CALL</h2> \n <a href=\"https://calendly.com/solsculpting-systems/15\" role=\"button\">\n BOOK NOW\n </a>\n <h2>THREE BUSINESS MODELS</h2> \n <img width=\"150\" height=\"198\" src=\"https://solsculpting.com/wp-content/uploads/2021/02/Number1-1.png\" alt=\"\" loading=\"lazy\" /> \n <p><strong>STAND ALONE MULTI-FACET WELLNESS SPA</strong></p><p>5 – 7 SOLSCULPTING SYSTEMS</p><p>This model may include additional services such as:<br />3D Body Scanning<br />Whole Body Vibration<br />Nutritional Services<br />Esthetician Services<br />Medical Services<br />Retail Skincare Products<br />Massage<br />Body Contouring</p> \n <img width=\"150\" height=\"198\" src=\"https://solsculpting.com/wp-content/uploads/2021/02/Number2-1.png\" alt=\"\" loading=\"lazy\" /> \n <p><strong>STAND ALONE BOUTIQUE WELLNESS SPA</strong></p><p>2 – 4 SOLSCULPTING SYSTEMS</p><p>3D Body Scanning<br />Whole Body Vibration<br />Nutritional Services</p> \n <img width=\"150\" height=\"198\" src=\"https://solsculpting.com/wp-content/uploads/2021/02/Number3-1.png\" alt=\"\" loading=\"lazy\" /> \n <strong>EXISTING PERSONAL SERVICES BUSINESS</strong>\n1 – 3 SOLSCULPTING SYSTEMS<p>Medical Practice<br />Wellness Center<br />Fitness: Gym, Spin, Pilates<br />Massage<br />Salon<br />Chiropractor</p>https://vimeo.com/388621488<p>SEE A RED LIGHT SPA IN ACTION</p> \n <h2>START A RED LIGHT<br>\nTHERAPY BUSINESS</h2> \n <p>SolSculpting provides an excellent opportunity for investors, health and wellness professionals and sharp-minded individuals to get in on the ground floor of the explosive field of Photobiomodulation (PBM), aka Red Light Therapy. PBM has been studied for over two decades including extensive medical and clinical research.</p><p>Put simply light therapy can aid the body in healing, decrease inflammation, relieve pain, restore cellular energy. In addition, red light facial therapy can significantly reduce the signs of aging while boosting collagen production.</p> \n <h2>RED LIGHT IS LIKE A MIRACLE DRUG</h2> \n <p>SolSculpting provides an excellent opportunity for investors, health and wellness professionals and sharp-minded individuals to get in on the ground floor of the explosive field of Photobiomodulation (PBM), aka Red Light Therapy. PBM has been studied for over two decades including extensive medical and clinical research.</p><p>Put simply light therapy can aid the body in healing, decrease inflammation, relieve pain, restore cellular energy. In addition, red light facial therapy can significantly reduce the signs of aging while boosting collagen production.</p>https://vimeo.com/551229667 \n <h2>BOOK A NO OBLIGATION DISCOVERY CALL</h2> \n <a href=\"https://calendly.com/solsculpting-systems/15\" role=\"button\">\n BOOK NOW\n </a>\n <h2>WE\'VE DONE ALL THE HOMEWORK - YOU JUST WIN</h2> \n <p>SolSculpting is custom-designed with features you may not even know to ask for. When we started in this business, we didn’t know what we didn’t know. Our business model gives you both superior mats and time savings. We’ve streamlined the process to eliminate the problems we encountered.</p> \n <h2>WE\'VE DONE ALL THE HOMEWORK - YOU JUST WIN</h2> \n <p>SolSculpting is custom-designed with features you may not even know to ask for. When we started in this business, we didn’t know what we didn’t know. Our business model gives you both superior mats and time savings. We’ve streamlined the process to eliminate the problems we encountered.</p> \n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL</h3> \n <p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It’s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.</p> \n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD</h3> \n <p>Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.</p> \n <a href=\"https://www.cancer.gov/about-cancer/causes-prevention/risk/radiation/electromagnetic-fields-fact-sheet\" role=\"button\">\n LEARN MORE\n </a>\n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>MARKETING AND BUSINESS SUPPORT</h3> \n <p>In addition to our custom mats, you will benefit from an immersive two-day training onsite at our flagship location in California to learn the ins and outs of the red-light therapy business. Ongoing support is available through a third-party business coach veteran whose services are sold separately.</p>','Bright Future','','draft','closed','closed','','bright-future','','','2022-03-16 02:25:56','2022-03-16 02:25:56','',0,'https://solsculpting.com/?page_id=3677',0,'page','',0),(3678,2,'2022-03-13 18:05:10','2022-03-13 18:05:10','','5-STAR','','inherit','open','closed','','5-star','','','2022-03-13 18:05:10','2022-03-13 18:05:10','',3677,'https://solsculpting.com/wp-content/uploads/2022/03/5-STAR.png',0,'attachment','image/png',0),(3683,2,'2022-03-13 20:42:30','2022-03-13 20:42:30','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>BOOK A NO OBLIGATION DISCOVERY CALL</h2> \n <a href=\"https://calendly.com/solsculpting-systems/15\" role=\"button\">\n BOOK NOW\n </a>','No Obligation Banner','','publish','closed','closed','','no-obligation-banner','','','2022-03-13 20:42:32','2022-03-13 20:42:32','',0,'https://solsculpting.com/?elementor_library=no-obligation-banner',0,'elementor_library','',0),(3684,2,'2022-03-13 20:42:57','2022-03-13 20:42:57','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3>ONE-OF-A-KIND LIGHT INTENSITY DIMMER DIAL</h3> \n <p>One of the keys to red light therapy optimal results is getting the lights as close to the skin as possible. Every centimeter between the mat and the skin creates an inverse square loss of effectiveness. It’s better to start with dimmer lights close to the skin than stronger lights far from the skin, then build up to full intensity.</p> \n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>WE\'VE ELIMINATED ANY ELECTROMAFNETIC FIELD</h3> \n <p>Electric and magnetic fields are invisible areas of energy (also called radiation) that are produced by electricity, which is the movement of electrons, or current, through a wire.</p> \n <a href=\"https://www.cancer.gov/about-cancer/causes-prevention/risk/radiation/electromagnetic-fields-fact-sheet\" role=\"button\">\n LEARN MORE\n </a>\n <img width=\"65\" height=\"65\" src=\"https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1.png\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1.png 65w, https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1-36x36.png 36w\" sizes=\"(max-width: 65px) 100vw, 65px\" /> \n <h3>MARKETING AND BUSINESS SUPPORT</h3> \n <p>In addition to our custom mats, you will benefit from an immersive two-day training onsite at our flagship location in California to learn the ins and outs of the red-light therapy business. Ongoing support is available through a third-party business coach veteran whose services are sold separately.</p>','Icon Box Information','','publish','closed','closed','','icon-box-information','','','2022-03-13 20:42:59','2022-03-13 20:42:59','',0,'https://solsculpting.com/?elementor_library=icon-box-information',0,'elementor_library','',0),(3685,2,'2022-03-13 20:43:51','2022-03-13 20:43:51','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>WE\'VE DONE ALL THE HOMEWORK - YOU JUST WIN</h2> \n <p>SolSculpting is custom-designed with features you may not even know to ask for. When we started in this business, we didn’t know what we didn’t know. Our business model gives you both superior mats and time savings. We’ve streamlined the process to eliminate the problems we encountered.</p>','We\'ve Done The Work Hero','','publish','closed','closed','','weve-done-the-work-hero','','','2022-03-13 20:43:52','2022-03-13 20:43:52','',0,'https://solsculpting.com/?elementor_library=weve-done-the-work-hero',0,'elementor_library','',0),(3687,2,'2022-03-13 20:51:09','2022-03-13 20:51:09','','12.2-Inches','','inherit','open','closed','','12-2-inches','','','2022-03-13 20:51:09','2022-03-13 20:51:09','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/12.2-Inches.png',0,'attachment','image/png',0),(3688,2,'2022-03-13 20:51:09','2022-03-13 20:51:09','','14.2-Inches','','inherit','open','closed','','14-2-inches','','','2022-03-13 20:51:09','2022-03-13 20:51:09','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/14.2-Inches.png',0,'attachment','image/png',0),(3689,2,'2022-03-13 20:51:10','2022-03-13 20:51:10','','27-Inches','','inherit','open','closed','','27-inches','','','2022-03-13 20:51:10','2022-03-13 20:51:10','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/27-Inches.png',0,'attachment','image/png',0),(3690,2,'2022-03-13 20:58:16','2022-03-13 20:58:16','','body-with-4-sections','','inherit','open','closed','','body-with-4-sections','','','2022-03-13 20:58:16','2022-03-13 20:58:16','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/body-with-4-sections.png',0,'attachment','image/png',0),(3693,2,'2022-03-15 03:35:52','2022-03-13 21:05:28','','Home','','publish','closed','closed','','chiropractic','','','2022-03-15 03:35:52','2022-03-15 03:35:52','',0,'https://solsculpting.com/?p=3693',1,'nav_menu_item','',0),(3696,2,'2022-03-14 00:28:33','2022-03-14 00:28:33','<style>/*! elementor - v3.7.8 - 02-10-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h1>PERSONAL STORY FROM OUR FOUNDER</h1> \n <style>/*! elementor - v3.7.8 - 02-10-2022 */\n.elementor-widget-image{text-align:center}.elementor-widget-image a{display:inline-block}.elementor-widget-image a img[src$=\".svg\"]{width:48px}.elementor-widget-image img{vertical-align:middle;display:inline-block}</style> <img width=\"578\" height=\"1024\" src=\"https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-578x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-578x1024.jpg 578w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-169x300.jpg 169w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-398x705.jpg 398w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-600x1063.jpg 600w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1.jpg 612w\" sizes=\"(max-width: 578px) 100vw, 578px\" /> \n <h2>Terri\'s journey of <br>transformation</h2> \n <style>/*! elementor - v3.7.8 - 02-10-2022 */\n.elementor-widget-divider{--divider-border-style:none;--divider-border-width:1px;--divider-color:#2c2c2c;--divider-icon-size:20px;--divider-element-spacing:10px;--divider-pattern-height:24px;--divider-pattern-size:20px;--divider-pattern-url:none;--divider-pattern-repeat:repeat-x}.elementor-widget-divider .elementor-divider{display:-webkit-box;display:-ms-flexbox;display:flex}.elementor-widget-divider .elementor-divider__text{font-size:15px;line-height:1;max-width:95%}.elementor-widget-divider .elementor-divider__element{margin:0 var(--divider-element-spacing);-ms-flex-negative:0;flex-shrink:0}.elementor-widget-divider .elementor-icon{font-size:var(--divider-icon-size)}.elementor-widget-divider .elementor-divider-separator{display:-webkit-box;display:-ms-flexbox;display:flex;margin:0;direction:ltr}.elementor-widget-divider--view-line_icon .elementor-divider-separator,.elementor-widget-divider--view-line_text .elementor-divider-separator{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.elementor-widget-divider--view-line_icon .elementor-divider-separator:after,.elementor-widget-divider--view-line_icon .elementor-divider-separator:before,.elementor-widget-divider--view-line_text .elementor-divider-separator:after,.elementor-widget-divider--view-line_text .elementor-divider-separator:before{display:block;content:\"\";border-bottom:0;-webkit-box-flex:1;-ms-flex-positive:1;flex-grow:1;border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--element-align-left .elementor-divider .elementor-divider-separator>.elementor-divider__svg:first-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-left .elementor-divider-separator:before{content:none}.elementor-widget-divider--element-align-left .elementor-divider__element{margin-left:0}.elementor-widget-divider--element-align-right .elementor-divider .elementor-divider-separator>.elementor-divider__svg:last-of-type{-webkit-box-flex:0;-ms-flex-positive:0;flex-grow:0;-ms-flex-negative:100;flex-shrink:100}.elementor-widget-divider--element-align-right .elementor-divider-separator:after{content:none}.elementor-widget-divider--element-align-right .elementor-divider__element{margin-right:0}.elementor-widget-divider:not(.elementor-widget-divider--view-line_text):not(.elementor-widget-divider--view-line_icon) .elementor-divider-separator{border-top:var(--divider-border-width) var(--divider-border-style) var(--divider-color)}.elementor-widget-divider--separator-type-pattern{--divider-border-style:none}.elementor-widget-divider--separator-type-pattern.elementor-widget-divider--view-line .elementor-divider-separator,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:after,.elementor-widget-divider--separator-type-pattern:not(.elementor-widget-divider--view-line) .elementor-divider-separator:before,.elementor-widget-divider--separator-type-pattern:not([class*=elementor-widget-divider--view]) .elementor-divider-separator{width:100%;min-height:var(--divider-pattern-height);-webkit-mask-size:var(--divider-pattern-size) 100%;mask-size:var(--divider-pattern-size) 100%;-webkit-mask-repeat:var(--divider-pattern-repeat);mask-repeat:var(--divider-pattern-repeat);background-color:var(--divider-color);-webkit-mask-image:var(--divider-pattern-url);mask-image:var(--divider-pattern-url)}.elementor-widget-divider--no-spacing{--divider-pattern-size:auto}.elementor-widget-divider--bg-round{--divider-pattern-repeat:round}.rtl .elementor-widget-divider .elementor-divider__text{direction:rtl}.e-container>.elementor-widget-divider{width:var(--container-widget-width,100%);--flex-grow:var(--container-widget-flex-grow,0)}</style> \n <p>My journey of transformation began one short year ago. At 57 years old I found myself at 252 lbs, suffering from arthritis and facing a hip replacement. What??! How had things gotten to this point?! I knew the answer … I had gotten myself into this mess, and I had better figure a way out. So after a mini-meltdown, I decided to take a medical leave of absence from my executive-level job and <strong>work on me!</strong></p><p>A dear friend had been telling me about some red light system she had at her spa in Eureka, CA and some “shakey” machine. Quite frankly, I wasn’t paying attention and that cost me another year of suffering and weight gain. But now at the end of my rope, I opened up my ears and mind and finally took her counsel. (Thank you, God, for my dear friend Susan Santche!)</p><p>Fast forward a year and my life has been forever changed for the better.</p> \n <a href=\"https://calendly.com/terri-77/15min?month=2020-05\" role=\"button\">\n Schedule a chat and learn so much more!\n </a>\n <h2>Aging backwards</h2> \n <p>I have been using red and near-infrared light therapy for one year. After my initial six red light therapy sessions, I no longer had pain in my hips. I even found I was no longer locked up in my hip flexor. Wow! With results like this who wouldn’t jump in for more? So I got serious and started using red light for fat loss, pain, inflammation, skin rejuvenation, sleep, and overall health. THE RESULTS ARE AMAZING. I have lost over 38 inches of fat from my body, I am down 55 lbs as of New Years 2020. My doctor can’t believe the improvement in my hip, and of course, is very pleased with my continued weight loss. I just keep shrinking!</p><p>The story does not end here, this is just where it really BEGINS. Red light is more than a regimen for me, it is now my full-time passion. I founded a local red light spa, Avanti Body. <strong>But wait, there’s MORE!</strong> Now my partners and I have teamed up to create a next-generation delivery system of red light and near-infrared light, SolSculpting. We want to bring SolSculpting, red light therapy, to the masses through a “BiznBox” business model. You could a part of this incredible journey.</p> \n <a href=\"https://calendly.com/terri-77/15min?month=2020-05\" role=\"button\">\n Schedule a chat and learn so much more!\n </a>\n <img width=\"578\" height=\"1024\" src=\"https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1-578x1024.jpg\" alt=\"\" loading=\"lazy\" srcset=\"https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1-578x1024.jpg 578w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1-169x300.jpg 169w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1-398x705.jpg 398w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1-600x1063.jpg 600w, https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1.jpg 612w\" sizes=\"(max-width: 578px) 100vw, 578px\" />','Founder','','draft','closed','closed','','founder','','','2022-12-03 00:26:35','2022-12-03 00:26:35','',0,'https://solsculpting.com/?page_id=3696',0,'page','',0),(3697,2,'2022-03-14 00:48:00','2022-03-14 00:48:00','<h1>Testimonials</h1>\r\nHere’s what some of our associates are saying\r\n\r\nWe just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We’re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting’s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\r\n<img src=\"https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg\" alt=\"\" width=\"450\" height=\"450\" />\r\nJeanne McDonald\r\nOrange County, CA\r\nWorking with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can’t help but tell all their friends. I started as a boutique spa, but I know it’s going to outgrow the space I’m currently in. It’s so fulfilling to own my own spa that changes people’s lives in a tangible way.\r\n<img src=\"https://solsculpting.com/wp-content/uploads/2020/05/JenniferHeadshot.jpg\" alt=\"\" width=\"450\" height=\"450\" />\r\nJennifer Sharp\r\nSacramento, CA','Testimonials','','publish','closed','closed','','testimonials-2','','','2022-12-01 16:10:15','2022-12-01 16:10:15','',0,'https://solsculpting.com/?page_id=3697',0,'page','',0),(3698,2,'2022-03-14 01:30:24','2022-03-14 01:30:24','<h1>About Red Light</h1>\r\nLearn about the profound affects red light therapy has on the body\r\n\r\n<img src=\"https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-1024x578.jpg\" sizes=\"(max-width: 800px) 100vw, 800px\" srcset=\"https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-1024x578.jpg 1024w, https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-300x169.jpg 300w, https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-768x434.jpg 768w, https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-705x398.jpg 705w, https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-600x339.jpg 600w, https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp.jpg 1084w\" alt=\"\" width=\"800\" height=\"452\" />\r\n<h2>A life dedicated to the\r\nresearch of bio-photons</h2>\r\n“We are still on the threshold of fully understanding the complex relationship between light and life, but we can now say emphatically, that the function of our entire metabolism is dependent on light.”\r\n\r\n– Dr. Fritz Albert Popp\r\n\r\n<a role=\"button\" href=\"https://en.wikipedia.org/wiki/Fritz-Albert_Popp\">\r\nDr. Popp\'s Wikipedia Page\r\n</a>\r\n<h2>The science of red light therapy – photo-bio-modulation</h2>\r\n“Photo-bio-modulation (PBM) modulating the biological processes of the body with light energy (photons)”\r\n\r\nCLICK VIDEO TO PLAY\r\n\r\nhttps://vimeo.com/422517294\r\n<h2>HAVE QUESTIONS ABOUT RED LIGHT THERAPY?</h2>\r\n<a role=\"button\" href=\"http://calendly.com/solsculpting-systems\">\r\nTALK TO US\r\n</a>','About Red Light','','publish','closed','closed','','about-red-light','','','2022-12-01 16:05:24','2022-12-01 16:05:24','',0,'https://solsculpting.com/?page_id=3698',0,'page','',0),(3700,2,'2022-03-14 01:32:20','2022-03-14 01:32:20','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>Want to stay in the loop?<br>\nSign up for discounts and specials.</h2> \n <p>We value your privacy. We never send you any spam or pass your information to 3rd parties.</p>','Discounts Sign up Form','','publish','closed','closed','','discounts-sign-up-form','','','2022-03-14 01:32:21','2022-03-14 01:32:21','',0,'https://solsculpting.com/?elementor_library=discounts-sign-up-form',0,'elementor_library','',0),(3701,2,'2022-03-15 03:35:52','2022-03-14 01:33:12',' ','','','publish','closed','closed','','3701','','','2022-03-15 03:35:52','2022-03-15 03:35:52','',0,'https://solsculpting.com/?p=3701',2,'nav_menu_item','',0),(3702,2,'2022-03-15 03:35:52','2022-03-14 01:33:12',' ','','','publish','closed','closed','','3702','','','2022-03-15 03:35:52','2022-03-15 03:35:52','',0,'https://solsculpting.com/?p=3702',3,'nav_menu_item','',0),(3704,2,'2022-03-14 01:39:39','2022-03-14 01:39:39','<h1>Thousands of Wellness Professionals are <br>Embracing Red Light Therapy. </h1> \n <p>Learn more about Red Light Therapy and how it can benefit your practice!</p> \n <h2>GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW</h2> \n <p>We value your privacy. We never send you any spam or pass your information to 3rd parties.</p>','Contact','','publish','closed','closed','','contact','','','2022-12-03 00:30:48','2022-12-03 00:30:48','',0,'https://solsculpting.com/?page_id=3704',0,'page','',0),(3705,2,'2022-03-15 03:35:52','2022-03-14 01:40:59',' ','','','publish','closed','closed','','3705','','','2022-03-15 03:35:52','2022-03-15 03:35:52','',0,'https://solsculpting.com/?p=3705',4,'nav_menu_item','',0),(3710,2,'2022-03-14 15:18:45','2022-03-14 15:18:45','','SolSculpting 17 inches','','inherit','open','closed','','solsculpting-17-inches','','','2022-03-14 15:18:45','2022-03-14 15:18:45','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-17-inches.jpg',0,'attachment','image/jpeg',0),(3711,2,'2022-03-14 15:18:46','2022-03-14 15:18:46','','SolSculpting 14.2 inches','','inherit','open','closed','','solsculpting-14-2-inches','','','2022-03-14 15:18:46','2022-03-14 15:18:46','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-14.2-inches.jpg',0,'attachment','image/jpeg',0),(3712,2,'2022-03-14 15:18:48','2022-03-14 15:18:48','','SolSculpting 12.2 inches','','inherit','open','closed','','solsculpting-12-2-inches','','','2022-03-14 15:18:48','2022-03-14 15:18:48','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-12.2-inches.jpg',0,'attachment','image/jpeg',0),(3720,2,'2022-03-14 19:10:26','2022-03-14 19:10:26','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-testimonial-wrapper{overflow:hidden;text-align:center}.elementor-testimonial-wrapper .elementor-testimonial-content{font-size:1.3em;margin-bottom:20px}.elementor-testimonial-wrapper .elementor-testimonial-name{line-height:1.5;display:block}.elementor-testimonial-wrapper .elementor-testimonial-job{font-size:.85em;display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta{width:100%;line-height:1}.elementor-testimonial-wrapper .elementor-testimonial-meta-inner{display:inline-block}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image{display:table-cell;vertical-align:middle}.elementor-testimonial-wrapper .elementor-testimonial-meta .elementor-testimonial-image img{width:60px;height:60px;-webkit-border-radius:50%;border-radius:50%;-o-object-fit:cover;object-fit:cover;max-width:none}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-image{padding-right:15px}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-aside .elementor-testimonial-details{text-align:left}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-details,.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{display:block}.elementor-testimonial-wrapper .elementor-testimonial-meta.elementor-testimonial-image-position-top .elementor-testimonial-image{margin-bottom:20px}</style> \n We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations. We started by using the SolSculpting Red Light Mat System for our own personal use. Having your own personal results is thrilling. We’re already seeing results both expected and unexpected in a very short period of time. I can see why SolSculpting’s system is superior. I am so happy with the system and cannot wait to get my own 5-star client reviews.\n <img width=\"450\" height=\"450\" src=\"https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg\" alt=\"\" loading=\"lazy\" /> \n Jeanne McDonald\n Orange County, CA\n Working with SolSculpting equipment has been extraordinary. It was easy to get started, everything is turn-key. Operating a business that is worthy of all the 5-star reviews is so rewarding, the benefits to my clients are endless and they can’t help but tell all their friends. I started as a boutique spa, but I know it’s going to outgrow the space I’m currently in. It’s so fulfilling to own my own spa that changes people’s lives in a tangible way.\n <img width=\"450\" height=\"450\" src=\"https://solsculpting.com/wp-content/uploads/2020/05/JenniferHeadshot.jpg\" alt=\"\" loading=\"lazy\" /> \n Jennifer Sharp\n Sacramento, CA','Testimonials','','publish','closed','closed','','testimonials','','','2022-03-14 19:10:26','2022-03-14 19:10:26','',0,'https://solsculpting.com/?elementor_library=testimonials',0,'elementor_library','',0),(3723,2,'2022-03-14 21:14:03','2022-03-14 21:14:03','','InUseChiroV83000px','','inherit','open','closed','','inusechirov83000px','','','2022-03-14 21:14:03','2022-03-14 21:14:03','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/InUseChiroV83000px.jpg',0,'attachment','image/jpeg',0),(3724,2,'2022-03-14 21:14:06','2022-03-14 21:14:06','','MatControls','','inherit','open','closed','','matcontrols','','','2022-03-14 21:14:06','2022-03-14 21:14:06','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/MatControls.jpg',0,'attachment','image/jpeg',0),(3725,2,'2022-03-14 21:14:08','2022-03-14 21:14:08','','MatsOnCart','','inherit','open','closed','','matsoncart','','','2022-03-14 21:14:08','2022-03-14 21:14:08','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/MatsOnCart.jpg',0,'attachment','image/jpeg',0),(3726,2,'2022-03-14 21:14:12','2022-03-14 21:14:12','','MatsOnTable','','inherit','open','closed','','matsontable','','','2022-03-14 21:14:12','2022-03-14 21:14:12','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/MatsOnTable.jpg',0,'attachment','image/jpeg',0),(3727,2,'2022-03-14 21:17:00','2022-03-14 21:17:00','','ChiroBackgroundSection','','inherit','open','closed','','chirobackgroundsection','','','2022-03-14 21:17:00','2022-03-14 21:17:00','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/ChiroBackgroundSection.jpg',0,'attachment','image/jpeg',0),(3728,2,'2022-03-14 21:17:01','2022-03-14 21:17:01','','ChiroBackgroundSectionV2','','inherit','open','closed','','chirobackgroundsectionv2','','','2022-03-14 21:17:01','2022-03-14 21:17:01','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/ChiroBackgroundSectionV2.jpg',0,'attachment','image/jpeg',0),(3730,2,'2022-03-14 21:42:07','2022-03-14 21:42:07','','SolSculpting Chiropractic Red Light Therapy','','inherit','open','closed','','solsculpting-chiropractic-red-light-therapy','','','2022-03-14 21:42:07','2022-03-14 21:42:07','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Chiropractic-Red-Light-Therapy.png',0,'attachment','image/png',0),(3736,2,'2022-03-15 03:38:29','2022-03-15 03:38:29','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW</h2> \n <p>We value your privacy. We never send you any spam or pass your information to 3rd parties.</p>','New Form USE','','publish','closed','closed','','new-form-use','','','2022-03-15 03:38:29','2022-03-15 03:38:29','',0,'https://solsculpting.com/?elementor_library=new-form-use',0,'elementor_library','',0),(3746,2,'2022-03-16 00:14:01','2022-03-16 00:14:01','<style>/*! elementor - v3.5.6 - 28-02-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h2>GET STARTED TODAY!<br>REQUEST YOUR SYSTEM NOW</h2> \n <p>We value your privacy. We never send you any spam or pass your information to 3rd parties.</p>','COntact Form USE','','publish','closed','closed','','contact-form-use','','','2022-03-16 00:14:02','2022-03-16 00:14:02','',0,'https://solsculpting.com/?elementor_library=contact-form-use',0,'elementor_library','',0),(3750,2,'2022-03-16 02:32:14','2022-03-16 02:32:14','','chri1','','inherit','open','closed','','chri1','','','2022-03-16 02:32:14','2022-03-16 02:32:14','',3644,'https://solsculpting.com/wp-content/uploads/2022/03/chri1.jpg',0,'attachment','image/jpeg',0),(3752,0,'2022-03-16 09:51:22','2022-03-16 09:51:22','<iframe title=\"Light Therapy Explained\" src=\"https://player.vimeo.com/video/422517294?h=dc6a58e715&dnt=1&app_id=122963\" width=\"800\" height=\"413\" frameborder=\"0\" allow=\"autoplay; fullscreen; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','23179cc71c784d7d1a5d960a2bc60fda','','','2022-03-16 09:51:22','2022-03-16 09:51:22','',0,'https://solsculpting.com/23179cc71c784d7d1a5d960a2bc60fda/',0,'oembed_cache','',0),(3763,2,'2022-04-20 20:21:48','2022-04-20 20:21:48','','Elementor-post-screenshot_3669_2022-04-20-20-21-48_3c600e62.png','','inherit','open','closed','','elementor-post-screenshot_3669_2022-04-20-20-21-48_3c600e62-png','','','2022-04-20 20:21:48','2022-04-20 20:21:48','',3669,'https://solsculpting.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_3669_2022-04-20-20-21-48_3c600e62.png',0,'attachment','image/png',0),(3777,2,'2023-01-24 18:43:00','2023-01-24 18:43:00','<h1>Red Light Therapy: Let us count the ways it can help</h1>\r\nFor years science has shown the effectiveness of red light therapy with pain relief, as well as treating chronic skin conditions, scars, and skin damage from aging, and accelerating muscle\r\nrecovery after injuries. At Sol Vibrant we have seen, firsthand, the incredible benefits that red light therapy has had on those who have walked through our doors. If you\'re starting to look into\r\nred light therapy to see if it could benefit you, here are five compelling things to consider:\r\n<h3>1. Turn back time.</h3>\r\nThe Fountain of Youth has long been a legend – a mystical source to stop the aging process. But red light is not fiction. It has been scientifically shown to be one of the most effective anti-aging\r\ntherapies available. Forget creams or shots; red light affects the mitochondria in your cells and promotes collagen production. Here are some of the anti-aging results you can experience with red light therapy:\r\n<ul>\r\n <li>Smooths the skin</li>\r\n <li>Wrinkle reduction</li>\r\n <li>Moisturizes the skin</li>\r\n <li>Prevents hair loss &amp; stimulates regrowth</li>\r\n <li>Aids the healing process of skin blemishes</li>\r\n <li>Repairs sun damage</li>\r\n <li>Reduces redness, flushing, and broken capillaries</li>\r\n <li>It helps fade scars and stretch marks</li>\r\n <li>Creates a healthy overall glow</li>\r\n</ul>\r\n<h3>2. Emulsify fat.</h3>\r\nStudies, such as the 2011 study published in Obesity Surgery, show that exposure to red light therapy causes the adipocytes to release triglycerides, resulting in reduced volume and a\r\nmeasurable loss of fat. Participants in this 4-week study experienced a 2.15 cm loss in waist girth. Red light therapy can help you melt stubborn fat, and we have first-hand proof. Read this\r\namazing testimonial by one of our customers. And if you need even more encouragement, check out these other testimonials from satisfied customers!\r\n<h3>3. Relief of inflammation and pain.</h3>\r\nInflammation can be caused by virtually anything that puts the body under stress. Physical causes of inflammation would be injuries, bruises, or burns. Inflammation can also occur due to\r\nbiological factors like infection from germs and stress. Research suggests that red and near-infrared light are highly effective in treating chronic inflammation by suppressing and dramatically reducing inflammation throughout the body. Red light therapy treatments help supply the mitochondria in your cells with the light needed to make the ATP energy that powers your body. Red light helps decrease inflammation where mitochondria are present in the tissue, joints, and other body organs. Red light therapy allows a person to supplement the sunlight they\r\nget from their environment with concentrated wavelengths of red and NIR light.\r\n<h3>4. Enhances muscle recovery and growth.</h3>\r\nAfter a challenging workout, your body battles to repair and rebuild torn muscle fibers. But did you know that specific wavelengths of light can play a role in quickening this process?\r\nProfessional athletes and certified trainers have begun to make red light therapy an integral component of their workouts. Red light has proven to produce measurable gains in strength training and can reduce recovery times by enhancing mitochondrial function. There\'s an abundance of evidence-based research showing that relief from pain, faster recovery times, and reduced arthritis symptoms are just a few more RLT benefits.\r\n<h3>5. Boost energy and overall health.</h3>\r\nMitochondria are the powerhouses of the cells and are responsible for energy production in the form of ATP (adenosine triphosphate). As we get older, these powerhouses lose energy. The\r\ncontinued use of red light actually strengthens the mitochondria. Increasing the energy levels helps the body to repair, heal, rejuvenate and function at an optimal level. The result is more energy in your day-to-day activities.\r\n<h3>The Sol Vibrant Method</h3>\r\nIf these reasons to try red light therapy weren\'t enough, you can schedule a consultation to see what else it might be able to do for you! Sol Vibrant uses the most advanced technology and proprietary systems in a luxurious, spa-like environment. Let us help you on your journey to achieve your ideal shape and weight, rejuvenate your skin, decrease inflammation, and enhance your overall wellness. We can\'t wait to see you!','Red Light Therapy: Ways it can help','','publish','open','open','','red-light-therapy-ways-it-can-help','','','2023-01-24 18:54:21','2023-01-24 18:54:21','',0,'https://solsculpting.com/?p=3777',0,'post','',0),(3778,2,'2023-01-24 18:40:56','2023-01-24 18:40:56','','SolSculpting RLT Ways it Helps','','inherit','open','closed','','solsculpting-rlt-ways-it-helps','','','2023-01-24 18:40:56','2023-01-24 18:40:56','',3777,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Ways-it-Helps.webp',0,'attachment','image/webp',0),(3779,2,'2023-01-24 18:46:43','2023-01-24 18:46:43','','Elementor-post-screenshot_3672_2023-01-24-18-46-43_30ac517c.png','','inherit','open','closed','','elementor-post-screenshot_3672_2023-01-24-18-46-43_30ac517c-png','','','2023-01-24 18:46:43','2023-01-24 18:46:43','',3672,'https://solsculpting.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_3672_2023-01-24-18-46-43_30ac517c.png',0,'attachment','image/png',0),(3781,2,'2023-01-24 18:47:21','2023-01-24 18:47:21','','placeholder.png','','inherit','open','closed','','placeholder-png','','','2023-01-24 18:47:21','2023-01-24 18:47:21','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder.png',0,'attachment','image/png',0),(3782,2,'2023-01-24 18:47:22','2023-01-24 18:47:22','','placeholder.png','','inherit','open','closed','','placeholder-png-2','','','2023-01-24 18:47:22','2023-01-24 18:47:22','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-1.png',0,'attachment','image/png',0),(3783,2,'2023-01-24 18:47:23','2023-01-24 18:47:23','','placeholder.png','','inherit','open','closed','','placeholder-png-3','','','2023-01-24 18:47:23','2023-01-24 18:47:23','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-2.png',0,'attachment','image/png',0),(3784,2,'2023-01-24 18:47:23','2023-01-24 18:47:23','','placeholder.png','','inherit','open','closed','','placeholder-png-4','','','2023-01-24 18:47:23','2023-01-24 18:47:23','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-3.png',0,'attachment','image/png',0),(3785,2,'2023-01-24 18:47:24','2023-01-24 18:47:24','','placeholder.png','','inherit','open','closed','','placeholder-png-5','','','2023-01-24 18:47:24','2023-01-24 18:47:24','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-4.png',0,'attachment','image/png',0),(3786,2,'2023-01-24 18:47:24','2023-01-24 18:47:24','','placeholder.png','','inherit','open','closed','','placeholder-png-6','','','2023-01-24 18:47:24','2023-01-24 18:47:24','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-5.png',0,'attachment','image/png',0),(3787,2,'2023-01-24 18:47:25','2023-01-24 18:47:25','','placeholder.png','','inherit','open','closed','','placeholder-png-7','','','2023-01-24 18:47:25','2023-01-24 18:47:25','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-6.png',0,'attachment','image/png',0),(3788,2,'2023-01-24 18:47:26','2023-01-24 18:47:26','','placeholder.png','','inherit','open','closed','','placeholder-png-8','','','2023-01-24 18:47:26','2023-01-24 18:47:26','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-7.png',0,'attachment','image/png',0),(3789,2,'2023-01-24 18:47:26','2023-01-24 18:47:26','','placeholder.png','','inherit','open','closed','','placeholder-png-9','','','2023-01-24 18:47:26','2023-01-24 18:47:26','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-8.png',0,'attachment','image/png',0),(3790,2,'2023-01-24 18:47:27','2023-01-24 18:47:27','','placeholder.png','','inherit','open','closed','','placeholder-png-10','','','2023-01-24 18:47:27','2023-01-24 18:47:27','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-9.png',0,'attachment','image/png',0),(3791,2,'2023-01-24 18:47:28','2023-01-24 18:47:28','','placeholder.png','','inherit','open','closed','','placeholder-png-11','','','2023-01-24 18:47:28','2023-01-24 18:47:28','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-10.png',0,'attachment','image/png',0),(3792,2,'2023-01-24 18:47:28','2023-01-24 18:47:28','','placeholder.png','','inherit','open','closed','','placeholder-png-12','','','2023-01-24 18:47:28','2023-01-24 18:47:28','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-11.png',0,'attachment','image/png',0),(3793,2,'2023-01-24 18:47:29','2023-01-24 18:47:29','','placeholder.png','','inherit','open','closed','','placeholder-png-13','','','2023-01-24 18:47:29','2023-01-24 18:47:29','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-12.png',0,'attachment','image/png',0),(3794,2,'2023-01-24 18:47:29','2023-01-24 18:47:29','','placeholder.png','','inherit','open','closed','','placeholder-png-14','','','2023-01-24 18:47:29','2023-01-24 18:47:29','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-13.png',0,'attachment','image/png',0),(3795,2,'2023-01-24 18:47:30','2023-01-24 18:47:30','','placeholder.png','','inherit','open','closed','','placeholder-png-15','','','2023-01-24 18:47:30','2023-01-24 18:47:30','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-14.png',0,'attachment','image/png',0),(3796,2,'2023-01-24 18:47:31','2023-01-24 18:47:31','','placeholder.png','','inherit','open','closed','','placeholder-png-16','','','2023-01-24 18:47:31','2023-01-24 18:47:31','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-15.png',0,'attachment','image/png',0),(3797,2,'2023-01-24 18:47:31','2023-01-24 18:47:31','','placeholder.png','','inherit','open','closed','','placeholder-png-17','','','2023-01-24 18:47:31','2023-01-24 18:47:31','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-16.png',0,'attachment','image/png',0),(3798,2,'2023-01-24 18:47:32','2023-01-24 18:47:32','','placeholder.png','','inherit','open','closed','','placeholder-png-18','','','2023-01-24 18:47:32','2023-01-24 18:47:32','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-17.png',0,'attachment','image/png',0),(3799,2,'2023-01-24 18:47:32','2023-01-24 18:47:32','','placeholder.png','','inherit','open','closed','','placeholder-png-19','','','2023-01-24 18:47:32','2023-01-24 18:47:32','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-18.png',0,'attachment','image/png',0),(3800,2,'2023-01-24 18:47:33','2023-01-24 18:47:33','','placeholder.png','','inherit','open','closed','','placeholder-png-20','','','2023-01-24 18:47:33','2023-01-24 18:47:33','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-19.png',0,'attachment','image/png',0),(3801,2,'2023-01-24 18:47:33','2023-01-24 18:47:33','','placeholder.png','','inherit','open','closed','','placeholder-png-21','','','2023-01-24 18:47:33','2023-01-24 18:47:33','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-20.png',0,'attachment','image/png',0),(3802,2,'2023-01-24 18:47:34','2023-01-24 18:47:34','','placeholder.png','','inherit','open','closed','','placeholder-png-22','','','2023-01-24 18:47:34','2023-01-24 18:47:34','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-21.png',0,'attachment','image/png',0),(3803,2,'2023-01-24 18:47:34','2023-01-24 18:47:34','','placeholder.png','','inherit','open','closed','','placeholder-png-23','','','2023-01-24 18:47:34','2023-01-24 18:47:34','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-22.png',0,'attachment','image/png',0),(3804,2,'2023-01-24 18:47:35','2023-01-24 18:47:35','','placeholder.png','','inherit','open','closed','','placeholder-png-24','','','2023-01-24 18:47:35','2023-01-24 18:47:35','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-23.png',0,'attachment','image/png',0),(3805,2,'2023-01-24 18:47:36','2023-01-24 18:47:36','','placeholder.png','','inherit','open','closed','','placeholder-png-25','','','2023-01-24 18:47:36','2023-01-24 18:47:36','',0,'https://solsculpting.com/wp-content/uploads/2023/01/placeholder-24.png',0,'attachment','image/png',0),(3806,2,'2023-01-24 18:47:36','2023-01-24 18:47:36','<style>/*! elementor - v3.7.8 - 02-10-2022 */\n.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h4>Share this post</h4> \n <link rel=\"stylesheet\" href=\"https://solsculpting.com/wp-content/plugins/elementor-pro/assets/css/widget-share-buttons.min.css\"> \n <h4>INTERESTED IN SOLSCULPTING?</h4><p>Contact us to learn more!</p> \n <a href=\"mailto:alicia@solsculpting.com\" role=\"button\">\n Contact Us\n </a>\n <h4>RECENT POSTS</h4>','Blog Post Template','','publish','closed','closed','','blog-post-template','','','2023-01-24 18:51:45','2023-01-24 18:51:45','',0,'https://solsculpting.com/?elementor_library=blog-post-template',0,'elementor_library','',0),(3807,2,'2023-01-24 19:18:42','2023-01-24 19:18:42','<h1>Red Light Therapy Takes on Inflammation</h1>\r\nInflammatory conditions, including arthritis and joint diseases, take their toll on millions of people each year. There is no getting around it - the byproduct of inflammation is pain and reduced mobility.\r\n\r\nOne thing to know - not all inflammation is bad. Acute inflammation is evidence that your body is trying to protect you. You twist an ankle, get a splinter, and your immune system is triggered.\r\nThe body does its thing and releases white blood cells to the distressed area. When all goes as it is supposed to, the body eventually heals, and the swelling and inflammation decrease.\r\n\r\nBut chronic inflammation is different. This is when white blood cells attack healthy tissues and organs, and chronic inflammation can persist for months, even years.\r\n\r\nPeople experiencing this type of inflammation would do anything to be relieved of this pain and discomfort. Luckily, there is red light therapy. RLT has been shown to alleviate chronic inflammation by increasing blood flow to damaged tissues.\r\n\r\nThe wavelengths of light from RLT stimulate the cell’s energy production and reduce oxidative stress, allowing the body to speed up the healing process. <a href=\"https://ncbi.nlm.nih.gov/pmc/articles/PMC5523874/\">Research suggests</a> that red and near-\r\ninfrared light can successfully treat chronic inflammation by suppressing and dramatically reducing inflammation throughout the body in many people.\r\n\r\nIf you have back pain, neck pain, sciatica, or are suffering from a sports-related injury; red light may help reduce inflammation and discomfort and restore a healthy range of motion.\r\nSol Vibrant always recommends consulting your physician before receiving services.','Red Light Therapy Takes on Inflammation','','publish','open','open','','red-light-therapy-takes-on-inflammation','','','2023-01-24 19:18:42','2023-01-24 19:18:42','',0,'https://solsculpting.com/?p=3807',0,'post','',0),(3808,2,'2023-01-24 19:17:53','2023-01-24 19:17:53','','SolSculpting RLT Take on Inflammation','','inherit','open','closed','','solsculpting-rlt-take-on-inflammation','','','2023-01-24 19:17:53','2023-01-24 19:17:53','',3807,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Take-on-Inflammation.webp',0,'attachment','image/webp',0),(3809,2,'2023-01-24 20:04:00','2023-01-24 20:04:00','<h1>Red Light Therapy Improves Mood, Anxiety, and Fatigue</h1>\r\nTwo years of being cooped up with COVID, the onset of winter, getting older, and feeling like life is leaving you defeated. It\'s no wonder so many people are unhappy, anxious, and depressed.\r\nYou can\'t enjoy life fully if you\'re experiencing depression, mood disorders, and excessive anxiety.\r\n\r\nAccording to the <a href=\"https://adaa.org/\">Anxiety and Depression Association of America</a>: <em>\"Anxiety disorders are the </em><em>most common mental illness in the U.S., affecting 40 million adults in the United States age 18 </em><em>and older, or 18.1% of the population every year.\"</em>\r\n\r\nSome find that therapy, medication, and alternative treatment options, such as yoga, meditation, and acupuncture, brighten their day. But thankfully science is always searching for promising treatments to help. In various studies, they have discovered red light therapy provides excellent results.\r\n\r\nWe all know that light plays so many important roles in the human body and is vital to our well-being. Light is as essential to the human body as food and water, yet humans are now indoors more often than ever. Lack of sunlight has been known to cause anxiety and depression. Exposure to sunlight increases the brain\'s release of the hormone serotonin. <strong>Serotonin is </strong><strong>associated with boosting mood and helping a person feel calm and focused.</strong> This is where red light therapy comes in. RLT uses the wavelength of the sun to increase the efficacy and integrity of mitochondria – the \'powerhouse\' of the human cell. This energy is then distributed where it is needed the most.\r\n\r\n<strong>Red light therapy can specifically:</strong>\r\n<ul>\r\n <li>Increase sluggish energy levels</li>\r\n <li>Support a balanced mood</li>\r\n <li>Improve mental clarity and confidence</li>\r\n <li>Improve general positivity, calm, and reduce anxiety</li>\r\n <li>Reduce seasonal depression (SAD)</li>\r\n</ul>\r\nStudies have shown that one of the ways RLT supports mental health is by stimulating areas of the brain that are linked to certain types of depression and anxiety. Namely, <a href=\"https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2680780/\">dlPFC and vmPFC play critical roles in the pathophysiology of depression.</a>\r\n\r\nWith proper exposure to red light therapy, researchers say they can improve depression and anxiety symptoms.\r\n\r\n<strong>According to scientists red light therapy has been shown to:</strong>\r\n<ul>\r\n <li>Increase energy</li>\r\n <li>Harmonize circadian rhythms</li>\r\n <li>Reduce inflammation</li>\r\n <li>Reduce oxidative stress</li>\r\n</ul>\r\nRed light therapy is safe and easy for people of all ages. Remember, you will not sweat or feel the heat, and all you have to do is bask under the light and let the therapeutic red and near-\r\ninfrared light do all the work for you. We must point out that in its initial phases, clinical research shows that red light can become a widely used, safe treatment for clinical forms of depression. Even though there is evidence that RLT can have benefits, it should never replace working with a mental health professional or other treatments for anxiety, depression, or the like.\r\n<h3>The Sol Vibrant Method</h3>\r\nIf you could use a mental health day, you should schedule a consultation to see what Sol Vibrant can do for you. Let us help you on your journey to enhance your overall wellness!','Red Light Therapy Improves Mood, Anxiety, and Fatigue','','publish','open','open','','red-light-therapy-improves-mood-anxiety-and-fatigue','','','2023-01-24 20:04:00','2023-01-24 20:04:00','',0,'https://solsculpting.com/?p=3809',0,'post','',0),(3810,2,'2023-01-24 20:03:26','2023-01-24 20:03:26','','SolSculpting Improves Mood Anxiety','','inherit','open','closed','','solsculpting-improves-mood-anxiety','','','2023-01-24 20:03:26','2023-01-24 20:03:26','',3809,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-Improves-Mood-Anxiety.webp',0,'attachment','image/webp',0),(3811,2,'2023-01-24 20:25:03','2023-01-24 20:25:03','<h1>Red Light Therapy: Shining a Light on Healthier Skin</h1>\r\nWith an area of about 20 square feet, the skin is the largest and heaviest organ in the body. It protects you against bacteria, viruses, and the sun\'s harmful rays. Although it\'s pretty tough, the skin is also fragile and prone to damage. Premature aging, acne, Psoriasis, eczema, rosacea, vitiligo, scleroderma, and slow-healing wounds are some of the skin conditions that may affect you during your lifetime. Your skin is not only vitally important to your health, but it is also a contributing factor to your self-esteem. Anyone who\'s had skin issues knows this. Sol Vibrant cares about your overall health – including that of your skin. If you want to take better care of your skin, don\'t look for a topical solution. Instead, boost it from the inside with red light therapy.\r\n<h3>Acne</h3>\r\nPharmacy and store aisles are crowded with countless oral and topical treatments designed to address acne symptoms. However, many of the <a href=\"https://www.aad.org/media/stats-numbers\">50 million</a> people with acne are dissatisfied with the results and side effects of those treatments.\r\n\r\nThere is another option. Studies show that red and near-infrared light is effective for <a href=\"https://www.webmd.com/skin-problems-and-treatments/acne/phototherapy-for-acne\">treating acne</a>. Unlike creams, red light therapy goes below the surface of the skin to work on a cellular level, repairing tissue. Red light affects the production of a substance called sebum, which contributes to the production of acne. It also controls cytokines, which are proteins produced by the cells that are responsible for skin inflammation and redness associated with bad acne. scarring is one of the most damaging side effects of acne. Among its many benefits, RLT has been shown to reduce and in some cases, eliminate scarring.\r\n<h3>Psoriasis</h3>\r\nPsoriasis, an immune system problem, is a condition in which skin cells build up and form scales and itchy, dry patches. People with Psoriasis often find rough areas of painful irritation and silvery scales called plaques on various parts of their bodies. Things that can trigger Psoriasis include infections, stress, and colds.\r\n\r\nWhile there isn\'t a cure for Psoriasis yet, red light therapy is one solution that is becoming more popular. A 2011 study in the <a href=\"https://pubmed.ncbi.nlm.nih.gov/21435024/\">Journal of the European Academy of Dermatology and Venereology Trusted Source</a> examined the effects of RLT versus blue light therapy for individuals with Psoriasis. Participants had high-dose treatments three times per week for four consecutive weeks while applying a 10 percent salicylic acid solution to plaques. What were the results? Both the red and blue light therapies were effective in treating Psoriasis, and the difference between the two wasn\'t significant for scaling and hardening of the skin. Of course, before trying any new treatments, it\'s best to consult with your physician first.\r\n<h3>Other Skin Conditions</h3>\r\nIn addition to these skin issues, red light therapy can also help to treat:\r\n<ul>\r\n <li>Scarring</li>\r\n <li>Inflammation</li>\r\n <li>Redness</li>\r\n <li>Cold Sores</li>\r\n</ul>\r\n<h3>Sol Vibrant is a champion for healthier skin.</h3>\r\nFrom wrinkles to acne to healing injuries and scars, red light therapy is a safe, effective, natural option for many skin issues. Sol Vibrant red light therapy has the unique ability to boost collagen production and work at a cellular level. See for yourself what red light therapy can do for you!','Red Light Therapy: Shining a Light on Healthier Skin','','publish','open','open','','shining-a-light-on-healthier-skin','','','2023-01-24 21:58:42','2023-01-24 21:58:42','',0,'https://solsculpting.com/?p=3811',0,'post','',0),(3812,2,'2023-01-24 20:22:35','2023-01-24 20:22:35','','SolSculpting RLT Shining a Light on Healthier Skin','','inherit','open','closed','','solsculpting-rlt-shining-a-light-on-healthier-skin','','','2023-01-24 20:22:35','2023-01-24 20:22:35','',3811,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin.webp',0,'attachment','image/webp',0),(3814,2,'2023-01-24 22:10:37','2023-01-24 22:10:37','<h1>Red Light Therapy Benefits for Athletes</h1>\r\nElite athletes spend every waking hour and even their sleeping hours trying to improve their bodies – which, in theory, will improve their overall performance. Accelerating muscle recovery, optimizing strength and endurance, and improving mental sharpness are all goals for athletes, their coaches, and trainers.\r\n\r\nOne of the most notable solutions to come onto the athletic training scene is red light therapy. Red light therapy, also known as photobiomodulation, is a natural and pro-metabolic process that\r\nhelps the body create more energy and eliminate oxidative stress. Red light penetrates muscle tissues, joints, and nerves at a cellular level.\r\n\r\nStudies have shown that RLT enhances muscle growth and strength, lowers lactic acid levels, and minimizes muscle damage. Red light increases cellular metabolic function while reversing and preventing oxidative stress at a cellular level. The result has been increased energy levels, faster muscular recovery, and optimized strength and endurance training.\r\n\r\nThe key to upping athletes\' performance is increasing their strength. More and more athletes are using red light therapy before training to enhance muscle strength. Red light therapy increases energy production and cell strength. Athletes have also found that with RLT, they increase their muscle mass during strength training.\r\n\r\nEndurance is another critical aspect of athletic performance. For athletes, photobiomodulation is most helpful before and after training sessions. Undergoing red light therapy before and after\r\nendurance training can improve oxygen intake, elevate energy production and reduce fatigue.\r\n\r\nBy promoting cellular regeneration and reducing inflammation in muscles, tendons, and joints, red light therapy helps speed up recovery after workouts. Better recovery periods help athletes\r\nreach their optimal performance levels in less time.\r\n\r\nWhether you are a pro athlete or a weekend warrior, Sol Vibrant can help increase your performance and decrease your recovery time. We offer a unique system that can configure your body and allow for comfortable relaxation while it rejuvenates muscles, reduces inflammation, and produces a renewed feeling. Experience the Sol Vibrant difference.','Red Light Therapy: Benefits for Athletes','','publish','open','open','','red-light-therapy-benefits-for-athletes','','','2023-01-24 22:12:10','2023-01-24 22:12:10','',0,'https://solsculpting.com/?p=3814',0,'post','',0),(3815,2,'2023-01-24 22:09:02','2023-01-24 22:09:02','','SolSculpting RLT Benefits for Athletes','','inherit','open','closed','','solsculpting-rlt-benefits-for-athletes','','','2023-01-24 22:09:02','2023-01-24 22:09:02','',3814,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Benefits-for-Athletes.webp',0,'attachment','image/webp',0),(3820,2,'2023-04-04 19:49:45','2023-04-04 19:49:45','','Elementor-post-screenshot_3806_2023-04-04-19-49-44_3d72bb27.png','','inherit','open','closed','','elementor-post-screenshot_3806_2023-04-04-19-49-44_3d72bb27-png','','','2023-04-04 19:49:45','2023-04-04 19:49:45','',3806,'https://solsculpting.com/wp-content/uploads/elementor/screenshots/Elementor-post-screenshot_3806_2023-04-04-19-49-44_3d72bb27.png',0,'attachment','image/png',0),(3827,10,'2024-08-10 11:49:30','2024-08-10 11:49:30','<!-- d5efbb6d6ca69ee7d76a72ba63c17964 -->','','','publish','closed','closed','','3827','','','2024-08-10 11:49:30','2024-08-10 11:49:30','',0,'https://solsculpting.com/?post_type=custom-css-js&p=3827',0,'custom-css-js','',0),(3828,10,'2024-08-10 11:49:38','2024-08-10 11:49:38','','','','publish','closed','closed','','3828','','','2025-01-24 14:52:14','2025-01-24 14:52:14','',0,'https://solsculpting.com/?post_type=custom-css-js&p=3828',0,'custom-css-js','',0),(3833,2,'2026-05-10 07:37:28','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-05-10 07:37:28','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3833',0,'post','',0),(3836,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1893948622]\":{\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"x\",\"url\":\"x\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"x\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false},\"type\":\"nav_menu_item\",\"user_id\":1}}','c','','publish','closed','closed','','19cd1808-f27c-49d2-a552-e03eed44be83','','','2026-07-19 16:15:02','2026-07-19 16:15:02','',0,'https://solsculpting.com/19cd1808-f27c-49d2-a552-e03eed44be83/',0,'customize_changeset','',0),(3837,0,'2026-07-19 16:14:34','2026-07-19 16:14:34','<blockquote class=\"wp-embedded-content\" data-secret=\"qYYGuHAsnB\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=hFDh1T9ATs#?secret=qYYGuHAsnB\" data-secret=\"qYYGuHAsnB\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','1e25813c6faf668405bd6a76179b1ffe','','','2026-07-19 16:14:34','2026-07-19 16:14:34','',0,'https://solsculpting.com/1e25813c6faf668405bd6a76179b1ffe/',0,'oembed_cache','',0),(3838,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p','','','2026-07-19 16:15:02','2026-07-19 16:15:02','',0,'',0,'request','',0),(3840,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1884800212]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"_invalid\":false,\"attr_title\":\"\",\"classes\":\"\",\"description\":\"\",\"menu_item_parent\":0,\"nav_menu_term_id\":0,\"object\":\"\",\"object_id\":0,\"position\":0,\"status\":\"publish\",\"target\":\"\",\"title\":\"generated\",\"type\":\"custom\",\"url\":\"https://example.invalid/\",\"xfn\":\"\"}}}','changeset','','publish','closed','closed','','79b31145393fc378-851a-a3b6-d109-fc38da12f11373e','','','2026-07-20 10:59:26','2026-07-20 10:59:26','',0,'https://solsculpting.com/79b31145393fc378-851a-a3b6-d109-fc38da12f11373e/',0,'customize_changeset','',0),(3841,0,'2026-07-20 10:59:19','2026-07-20 10:59:19','<blockquote class=\"wp-embedded-content\" data-secret=\"nSBEbO3Ftf\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=7PXK7UpzrY#?secret=nSBEbO3Ftf\" data-secret=\"nSBEbO3Ftf\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','9968e6db940663e97b4fdaaabee8e4f4','','','2026-07-20 10:59:19','2026-07-20 10:59:19','',0,'https://solsculpting.com/9968e6db940663e97b4fdaaabee8e4f4/',0,'oembed_cache','',0),(3842,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse','','','2026-07-20 10:59:26','2026-07-20 10:59:26','',0,'',0,'request','',0),(3843,0,'2026-07-21 05:56:36','2026-07-21 05:56:36','<blockquote class=\"wp-embedded-content\" data-secret=\"kPzPfBxW69\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=CFP9WT9p69#?secret=kPzPfBxW69\" data-secret=\"kPzPfBxW69\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','170b7dd1a450fb536d267efd37fcc6cf','','','2026-07-21 05:56:36','2026-07-21 05:56:36','',0,'https://solsculpting.com/170b7dd1a450fb536d267efd37fcc6cf/',0,'oembed_cache','',0),(3844,0,'2026-07-21 05:56:36','2026-07-21 05:56:36','<blockquote class=\"wp-embedded-content\" data-secret=\"diokYpEmnO\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=MLFTmGbf3w#?secret=diokYpEmnO\" data-secret=\"diokYpEmnO\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','ef132cd080341cbaa40db5d9fd11f36f','','','2026-07-21 05:56:36','2026-07-21 05:56:36','',0,'https://solsculpting.com/ef132cd080341cbaa40db5d9fd11f36f/',0,'oembed_cache','',0),(3845,0,'2026-07-21 05:56:36','2026-07-21 05:56:36','<blockquote class=\"wp-embedded-content\" data-secret=\"HL4p1cvpdU\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=0eeX2HxKfS#?secret=HL4p1cvpdU\" data-secret=\"HL4p1cvpdU\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','daf32b129026f8ed790b9190d0a3a9a1','','','2026-07-21 05:56:36','2026-07-21 05:56:36','',0,'https://solsculpting.com/daf32b129026f8ed790b9190d0a3a9a1/',0,'oembed_cache','',0),(3846,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1801851589]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','811ce671-c1ea-49b1-b843-235d052c9be5','','','2026-07-21 21:49:00','2026-07-21 21:49:00','',0,'https://solsculpting.com/811ce671-c1ea-49b1-b843-235d052c9be5/',0,'customize_changeset','',0),(3847,0,'2026-07-21 21:48:50','2026-07-21 21:48:50','<blockquote class=\"wp-embedded-content\" data-secret=\"6zXbc499DN\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=NClRH7VH1G#?secret=6zXbc499DN\" data-secret=\"6zXbc499DN\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8c6420bc7efb13103154bd5d02b6860c','','','2026-07-21 21:48:50','2026-07-21 21:48:50','',0,'https://solsculpting.com/8c6420bc7efb13103154bd5d02b6860c/',0,'oembed_cache','',0),(3848,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-2','','','2026-07-21 21:49:00','2026-07-21 21:49:00','',0,'',0,'request','',0),(3849,12,'2026-07-21 22:10:28','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-21 22:10:28','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3849',0,'post','',0),(3851,12,'2026-07-21 22:11:18','2026-07-21 22:11:18','https://solsculpting.com/wp-content/uploads/2026/07/flavor_d482f259.zip','flavor_d482f259.zip','','private','open','closed','','flavor_d482f259-zip','','','2026-07-21 22:11:18','2026-07-21 22:11:18','',0,'https://solsculpting.com/wp-content/uploads/2026/07/flavor_d482f259.zip',0,'attachment','',0),(3852,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1826052619]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"gen\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','ch','','publish','closed','closed','','cf6423ab-7ac1-4ece-a9b5-79c0e6eb15a3','','','2026-07-22 03:53:58','2026-07-22 03:53:58','',0,'https://solsculpting.com/cf6423ab-7ac1-4ece-a9b5-79c0e6eb15a3/',0,'customize_changeset','',0),(3853,0,'2026-07-22 03:53:42','2026-07-22 03:53:42','<blockquote class=\"wp-embedded-content\" data-secret=\"Il0FQBFhjS\"><a href=\"https://solsculpting.com/contact/\">Contact</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Contact” — SolSculpting\" src=\"https://solsculpting.com/contact/embed/#?secret=H6ot746G4s#?secret=Il0FQBFhjS\" data-secret=\"Il0FQBFhjS\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','eb35efefd4f7c55ef1cfe36496277c1d','','','2026-07-22 03:53:42','2026-07-22 03:53:42','',0,'https://solsculpting.com/eb35efefd4f7c55ef1cfe36496277c1d/',0,'oembed_cache','',0),(3854,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-3','','','2026-07-22 03:53:58','2026-07-22 03:53:58','',0,'',0,'request','',0),(3855,14,'2026-07-22 07:05:08','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-22 07:05:08','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3855',0,'post','',0),(3856,14,'2026-07-22 11:35:10','2026-07-22 11:35:10','https://solsculpting.com/wp-content/uploads/2026/07/wp-file-manager.zip','wp-file-manager.zip','','private','open','closed','','wp-file-manager-zip','','','2026-07-22 11:35:10','2026-07-22 11:35:10','',0,'https://solsculpting.com/wp-content/uploads/2026/07/wp-file-manager.zip',0,'attachment','',0),(3857,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1833090722]\":{\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"proof\",\"url\":\"https://cdnkey.com/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"proof\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false},\"type\":\"nav_menu_item\",\"user_id\":1}}','changeset','','publish','closed','closed','','8571af33-a93b-4494-87e8-22a88a82736f','','','2026-07-22 15:13:49','2026-07-22 15:13:49','',0,'https://solsculpting.com/8571af33-a93b-4494-87e8-22a88a82736f/',0,'customize_changeset','',0),(3858,0,'2026-07-22 15:10:59','2026-07-22 15:10:59','<blockquote class=\"wp-embedded-content\" data-secret=\"fG6QIblqaV\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=bN4oClHTqM#?secret=fG6QIblqaV\" data-secret=\"fG6QIblqaV\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','87c4992fee4edab2dc92ff40f1a631dd','','','2026-07-22 15:10:59','2026-07-22 15:10:59','',0,'https://solsculpting.com/87c4992fee4edab2dc92ff40f1a631dd/',0,'oembed_cache','',0),(3859,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-4','','','2026-07-22 15:13:49','2026-07-22 15:13:49','',0,'',0,'request','',0),(3861,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1894234646]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','6e318b01-ff88-4d95-820c-900138326b41','','','2026-07-22 17:23:37','2026-07-22 17:23:37','',0,'https://solsculpting.com/6e318b01-ff88-4d95-820c-900138326b41/',0,'customize_changeset','',0),(3862,0,'2026-07-22 17:23:21','2026-07-22 17:23:21','<blockquote class=\"wp-embedded-content\" data-secret=\"Cw97yjjID5\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=TXv0zpLHtM#?secret=Cw97yjjID5\" data-secret=\"Cw97yjjID5\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','507b2dff8324473838b0d89a2663dc12','','','2026-07-22 17:23:21','2026-07-22 17:23:21','',0,'https://solsculpting.com/507b2dff8324473838b0d89a2663dc12/',0,'oembed_cache','',0),(3863,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-5','','','2026-07-22 17:23:37','2026-07-22 17:23:37','',0,'',0,'request','',0),(3865,16,'2026-07-22 17:24:03','2026-07-22 17:24:03','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_04f98789.zip','nx_up_04f98789.zip','','private','open','closed','','nx_up_04f98789-zip','','','2026-07-22 17:24:03','2026-07-22 17:24:03','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_04f98789.zip',0,'attachment','',0),(3866,16,'2026-07-22 17:24:13','2026-07-22 17:24:13','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_04f98789-1.zip','nx_up_04f98789.zip','','private','open','closed','','nx_up_04f98789-zip-2','','','2026-07-22 17:24:13','2026-07-22 17:24:13','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_04f98789-1.zip',0,'attachment','',0),(3867,16,'2026-07-22 17:24:20','2026-07-22 17:24:20','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_04f98789-2.zip','nx_up_04f98789.zip','','private','open','closed','','nx_up_04f98789-zip-3','','','2026-07-22 17:24:20','2026-07-22 17:24:20','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_04f98789-2.zip',0,'attachment','',0),(3868,16,'2026-07-22 17:24:30','2026-07-22 17:24:30','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_38e54e.zip','nx_th_38e54e.zip','','private','open','closed','','nx_th_38e54e-zip','','','2026-07-22 17:24:30','2026-07-22 17:24:30','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_38e54e.zip',0,'attachment','',0),(3869,16,'2026-07-22 17:24:40','2026-07-22 17:24:40','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_38e54e-1.zip','nx_th_38e54e.zip','','private','open','closed','','nx_th_38e54e-zip-2','','','2026-07-22 17:24:40','2026-07-22 17:24:40','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_38e54e-1.zip',0,'attachment','',0),(3870,16,'2026-07-22 17:24:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-22 17:24:49','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3870',0,'post','',0),(3871,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1870941282]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','72103846-7ae4-449e-bd28-771533f193ef','','','2026-07-22 19:41:36','2026-07-22 19:41:36','',0,'https://solsculpting.com/72103846-7ae4-449e-bd28-771533f193ef/',0,'customize_changeset','',0),(3872,0,'2026-07-22 19:41:19','2026-07-22 19:41:19','<blockquote class=\"wp-embedded-content\" data-secret=\"LoyPe0XvsR\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=oBKcPKmWeo#?secret=LoyPe0XvsR\" data-secret=\"LoyPe0XvsR\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','5f12fb026fa8702cab0124f74f0821a6','','','2026-07-22 19:41:19','2026-07-22 19:41:19','',0,'https://solsculpting.com/5f12fb026fa8702cab0124f74f0821a6/',0,'oembed_cache','',0),(3873,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-6','','','2026-07-22 19:41:36','2026-07-22 19:41:36','',0,'',0,'request','',0),(3875,17,'2026-07-22 19:42:00','2026-07-22 19:42:00','https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_9a1e84dd.zip','h2ok_up_9a1e84dd.zip','','private','open','closed','','h2ok_up_9a1e84dd-zip','','','2026-07-22 19:42:00','2026-07-22 19:42:00','',0,'https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_9a1e84dd.zip',0,'attachment','',0),(3876,17,'2026-07-22 19:42:09','2026-07-22 19:42:09','https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_9a1e84dd-1.zip','h2ok_up_9a1e84dd.zip','','private','open','closed','','h2ok_up_9a1e84dd-zip-2','','','2026-07-22 19:42:09','2026-07-22 19:42:09','',0,'https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_9a1e84dd-1.zip',0,'attachment','',0),(3877,17,'2026-07-22 19:42:16','2026-07-22 19:42:16','https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_9a1e84dd-2.zip','h2ok_up_9a1e84dd.zip','','private','open','closed','','h2ok_up_9a1e84dd-zip-3','','','2026-07-22 19:42:16','2026-07-22 19:42:16','',0,'https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_9a1e84dd-2.zip',0,'attachment','',0),(3878,17,'2026-07-22 19:42:26','2026-07-22 19:42:26','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_d4b0e6.zip','nx_th_d4b0e6.zip','','private','open','closed','','nx_th_d4b0e6-zip','','','2026-07-22 19:42:26','2026-07-22 19:42:26','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_d4b0e6.zip',0,'attachment','',0),(3879,17,'2026-07-22 19:42:35','2026-07-22 19:42:35','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_d4b0e6-1.zip','nx_th_d4b0e6.zip','','private','open','closed','','nx_th_d4b0e6-zip-2','','','2026-07-22 19:42:35','2026-07-22 19:42:35','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_d4b0e6-1.zip',0,'attachment','',0),(3880,17,'2026-07-22 19:42:43','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-22 19:42:43','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3880',0,'post','',0),(3881,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1897970716]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','a8369467-0d7a-4386-9bbd-97021df4445a','','','2026-07-22 20:38:57','2026-07-22 20:38:57','',0,'https://solsculpting.com/a8369467-0d7a-4386-9bbd-97021df4445a/',0,'customize_changeset','',0),(3882,0,'2026-07-22 20:38:40','2026-07-22 20:38:40','<blockquote class=\"wp-embedded-content\" data-secret=\"ogfFzPAPDk\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=ZdMdHJcht9#?secret=ogfFzPAPDk\" data-secret=\"ogfFzPAPDk\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','54bed2cb8cef851cf1be655b58d13590','','','2026-07-22 20:38:40','2026-07-22 20:38:40','',0,'https://solsculpting.com/54bed2cb8cef851cf1be655b58d13590/',0,'oembed_cache','',0),(3883,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-7','','','2026-07-22 20:38:57','2026-07-22 20:38:57','',0,'',0,'request','',0),(3885,18,'2026-07-22 20:39:19','2026-07-22 20:39:19','https://solsculpting.com/wp-content/uploads/2026/07/648452de.zip','648452de.zip','','private','open','closed','','648452de-zip','','','2026-07-22 20:39:19','2026-07-22 20:39:19','',0,'https://solsculpting.com/wp-content/uploads/2026/07/648452de.zip',0,'attachment','',0),(3886,18,'2026-07-22 20:39:28','2026-07-22 20:39:28','https://solsculpting.com/wp-content/uploads/2026/07/648452de-1.zip','648452de.zip','','private','open','closed','','648452de-zip-2','','','2026-07-22 20:39:28','2026-07-22 20:39:28','',0,'https://solsculpting.com/wp-content/uploads/2026/07/648452de-1.zip',0,'attachment','',0),(3887,18,'2026-07-22 20:39:35','2026-07-22 20:39:35','https://solsculpting.com/wp-content/uploads/2026/07/648452de-2.zip','648452de.zip','','private','open','closed','','648452de-zip-3','','','2026-07-22 20:39:35','2026-07-22 20:39:35','',0,'https://solsculpting.com/wp-content/uploads/2026/07/648452de-2.zip',0,'attachment','',0),(3888,18,'2026-07-22 20:39:44','2026-07-22 20:39:44','https://solsculpting.com/wp-content/uploads/2026/07/03020a.zip','03020a.zip','','private','open','closed','','03020a-zip','','','2026-07-22 20:39:44','2026-07-22 20:39:44','',0,'https://solsculpting.com/wp-content/uploads/2026/07/03020a.zip',0,'attachment','',0),(3889,18,'2026-07-22 20:39:53','2026-07-22 20:39:53','https://solsculpting.com/wp-content/uploads/2026/07/03020a-1.zip','03020a.zip','','private','open','closed','','03020a-zip-2','','','2026-07-22 20:39:53','2026-07-22 20:39:53','',0,'https://solsculpting.com/wp-content/uploads/2026/07/03020a-1.zip',0,'attachment','',0),(3890,18,'2026-07-22 20:40:01','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-22 20:40:01','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3890',0,'post','',0),(3891,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1877761893]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','2e088ce6-6f01-4445-897f-584428208f63','','','2026-07-23 03:11:13','2026-07-23 03:11:13','',0,'https://solsculpting.com/2e088ce6-6f01-4445-897f-584428208f63/',0,'customize_changeset','',0),(3892,0,'2026-07-23 03:11:02','2026-07-23 03:11:02','<blockquote class=\"wp-embedded-content\" data-secret=\"UWXoegQDaN\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=K5UGjmOqZ3#?secret=UWXoegQDaN\" data-secret=\"UWXoegQDaN\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8610cdf3acfd877f02b0b42613a320fa','','','2026-07-23 03:11:02','2026-07-23 03:11:02','',0,'https://solsculpting.com/8610cdf3acfd877f02b0b42613a320fa/',0,'oembed_cache','',0),(3893,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-8','','','2026-07-23 03:11:13','2026-07-23 03:11:13','',0,'',0,'request','',0),(3894,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1831510230]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"_invalid\":false,\"attr_title\":\"\",\"classes\":\"\",\"description\":\"\",\"menu_item_parent\":0,\"nav_menu_term_id\":0,\"object\":\"\",\"object_id\":0,\"position\":0,\"status\":\"publish\",\"target\":\"\",\"title\":\"generated\",\"type\":\"custom\",\"url\":\"https://example.invalid/\",\"xfn\":\"\"}}}','changeset','','publish','closed','closed','','4a6600e8329b6343-2a5a-41d5-d3bb-33e0697f912da8af','','','2026-07-23 04:49:39','2026-07-23 04:49:39','',0,'https://solsculpting.com/4a6600e8329b6343-2a5a-41d5-d3bb-33e0697f912da8af/',0,'customize_changeset','',0),(3895,0,'2026-07-23 04:49:27','2026-07-23 04:49:27','<blockquote class=\"wp-embedded-content\" data-secret=\"rILatz9CqL\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=v3V7OJPPgS#?secret=rILatz9CqL\" data-secret=\"rILatz9CqL\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2b183bb57196bc2ca6e716e7aa526965','','','2026-07-23 04:49:27','2026-07-23 04:49:27','',0,'https://solsculpting.com/2b183bb57196bc2ca6e716e7aa526965/',0,'oembed_cache','',0),(3896,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-9','','','2026-07-23 04:49:39','2026-07-23 04:49:39','',0,'',0,'request','',0),(3897,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1865908679]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"_invalid\":false,\"attr_title\":\"\",\"classes\":\"\",\"description\":\"\",\"menu_item_parent\":0,\"nav_menu_term_id\":0,\"object\":\"\",\"object_id\":0,\"position\":0,\"status\":\"publish\",\"target\":\"\",\"title\":\"generated\",\"type\":\"custom\",\"url\":\"https://example.invalid/\",\"xfn\":\"\"}}}','changeset','','publish','closed','closed','','606124e753c8279-3b4e-e0d4-fe7e-2e8531f679e501f2','','','2026-07-23 06:40:04','2026-07-23 06:40:04','',0,'https://solsculpting.com/606124e753c8279-3b4e-e0d4-fe7e-2e8531f679e501f2/',0,'customize_changeset','',0),(3898,0,'2026-07-23 06:39:58','2026-07-23 06:39:58','<blockquote class=\"wp-embedded-content\" data-secret=\"TC3AeupKkW\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=wIKfhM35XV#?secret=TC3AeupKkW\" data-secret=\"TC3AeupKkW\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','49625fd67b72548436d71bb62262d2f9','','','2026-07-23 06:39:58','2026-07-23 06:39:58','',0,'https://solsculpting.com/49625fd67b72548436d71bb62262d2f9/',0,'oembed_cache','',0),(3899,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-10','','','2026-07-23 06:40:04','2026-07-23 06:40:04','',0,'',0,'request','',0),(3900,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1861190459]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','a5b021cb-8c5f-4a79-a43d-5fc9e4636d19','','','2026-07-23 07:09:28','2026-07-23 07:09:28','',0,'https://solsculpting.com/a5b021cb-8c5f-4a79-a43d-5fc9e4636d19/',0,'customize_changeset','',0),(3901,0,'2026-07-23 07:09:01','2026-07-23 07:09:01','<blockquote class=\"wp-embedded-content\" data-secret=\"40dniDG8JV\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=BUTFMzNpWZ#?secret=40dniDG8JV\" data-secret=\"40dniDG8JV\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2c86da0f60dad0e08ade3952c425a71c','','','2026-07-23 07:09:01','2026-07-23 07:09:01','',0,'https://solsculpting.com/2c86da0f60dad0e08ade3952c425a71c/',0,'oembed_cache','',0),(3902,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-11','','','2026-07-23 07:09:28','2026-07-23 07:09:28','',0,'',0,'request','',0),(3903,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1834800703]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','e2629264-ed6f-466a-96da-b848ff7358f6','','','2026-07-23 09:16:16','2026-07-23 09:16:16','',0,'https://solsculpting.com/e2629264-ed6f-466a-96da-b848ff7358f6/',0,'customize_changeset','',0),(3904,0,'2026-07-23 09:15:58','2026-07-23 09:15:58','<blockquote class=\"wp-embedded-content\" data-secret=\"XjrxAW3TcO\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=WCOaX9mBwL#?secret=XjrxAW3TcO\" data-secret=\"XjrxAW3TcO\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a6adb1623a4a19d2e80e3f359aa2a249','','','2026-07-23 09:15:58','2026-07-23 09:15:58','',0,'https://solsculpting.com/a6adb1623a4a19d2e80e3f359aa2a249/',0,'oembed_cache','',0),(3905,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-12','','','2026-07-23 09:16:16','2026-07-23 09:16:16','',0,'',0,'request','',0),(3906,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1837333497]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','a27f8b9c-e5af-4594-ba57-5616f9fe49e4','','','2026-07-23 13:32:45','2026-07-23 13:32:45','',0,'https://solsculpting.com/a27f8b9c-e5af-4594-ba57-5616f9fe49e4/',0,'customize_changeset','',0),(3907,0,'2026-07-23 13:32:30','2026-07-23 13:32:30','<blockquote class=\"wp-embedded-content\" data-secret=\"n2ovR71OfS\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=KLtF2ZcDls#?secret=n2ovR71OfS\" data-secret=\"n2ovR71OfS\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','25163a549fd5c4943ada8892c6fc1f14','','','2026-07-23 13:32:30','2026-07-23 13:32:30','',0,'https://solsculpting.com/25163a549fd5c4943ada8892c6fc1f14/',0,'oembed_cache','',0),(3908,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-13','','','2026-07-23 13:32:45','2026-07-23 13:32:45','',0,'',0,'request','',0),(3910,23,'2026-07-23 13:33:10','2026-07-23 13:33:10','https://solsculpting.com/wp-content/uploads/2026/07/7b864f4f.zip','7b864f4f.zip','','private','open','closed','','7b864f4f-zip','','','2026-07-23 13:33:10','2026-07-23 13:33:10','',0,'https://solsculpting.com/wp-content/uploads/2026/07/7b864f4f.zip',0,'attachment','',0),(3911,23,'2026-07-23 13:33:20','2026-07-23 13:33:20','https://solsculpting.com/wp-content/uploads/2026/07/7b864f4f-1.zip','7b864f4f.zip','','private','open','closed','','7b864f4f-zip-2','','','2026-07-23 13:33:20','2026-07-23 13:33:20','',0,'https://solsculpting.com/wp-content/uploads/2026/07/7b864f4f-1.zip',0,'attachment','',0),(3912,23,'2026-07-23 13:33:27','2026-07-23 13:33:27','https://solsculpting.com/wp-content/uploads/2026/07/7b864f4f-2.zip','7b864f4f.zip','','private','open','closed','','7b864f4f-zip-3','','','2026-07-23 13:33:27','2026-07-23 13:33:27','',0,'https://solsculpting.com/wp-content/uploads/2026/07/7b864f4f-2.zip',0,'attachment','',0),(3913,23,'2026-07-23 13:33:37','2026-07-23 13:33:37','https://solsculpting.com/wp-content/uploads/2026/07/a265d2.zip','a265d2.zip','','private','open','closed','','a265d2-zip','','','2026-07-23 13:33:37','2026-07-23 13:33:37','',0,'https://solsculpting.com/wp-content/uploads/2026/07/a265d2.zip',0,'attachment','',0),(3914,23,'2026-07-23 13:33:46','2026-07-23 13:33:46','https://solsculpting.com/wp-content/uploads/2026/07/a265d2-1.zip','a265d2.zip','','private','open','closed','','a265d2-zip-2','','','2026-07-23 13:33:46','2026-07-23 13:33:46','',0,'https://solsculpting.com/wp-content/uploads/2026/07/a265d2-1.zip',0,'attachment','',0),(3915,23,'2026-07-23 13:33:54','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-23 13:33:54','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3915',0,'post','',0),(3916,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1813233930]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','d31e72a9-1e32-4ded-8b85-97c7a6092909','','','2026-07-23 18:35:19','2026-07-23 18:35:19','',0,'https://solsculpting.com/d31e72a9-1e32-4ded-8b85-97c7a6092909/',0,'customize_changeset','',0),(3917,0,'2026-07-23 18:35:00','2026-07-23 18:35:00','<blockquote class=\"wp-embedded-content\" data-secret=\"rhAJt3lema\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=19tzCa2qsX#?secret=rhAJt3lema\" data-secret=\"rhAJt3lema\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','72cd83f4fecca427e358ef78d619ebe2','','','2026-07-23 18:35:00','2026-07-23 18:35:00','',0,'https://solsculpting.com/72cd83f4fecca427e358ef78d619ebe2/',0,'oembed_cache','',0),(3918,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-14','','','2026-07-23 18:35:19','2026-07-23 18:35:19','',0,'',0,'request','',0),(3920,24,'2026-07-23 18:35:45','2026-07-23 18:35:45','https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_38c75b3b.zip','h2ok_up_38c75b3b.zip','','private','open','closed','','h2ok_up_38c75b3b-zip','','','2026-07-23 18:35:45','2026-07-23 18:35:45','',0,'https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_38c75b3b.zip',0,'attachment','',0),(3921,24,'2026-07-23 18:35:54','2026-07-23 18:35:54','https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_38c75b3b-1.zip','h2ok_up_38c75b3b.zip','','private','open','closed','','h2ok_up_38c75b3b-zip-2','','','2026-07-23 18:35:54','2026-07-23 18:35:54','',0,'https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_38c75b3b-1.zip',0,'attachment','',0),(3922,24,'2026-07-23 18:36:02','2026-07-23 18:36:02','https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_38c75b3b-2.zip','h2ok_up_38c75b3b.zip','','private','open','closed','','h2ok_up_38c75b3b-zip-3','','','2026-07-23 18:36:02','2026-07-23 18:36:02','',0,'https://solsculpting.com/wp-content/uploads/2026/07/h2ok_up_38c75b3b-2.zip',0,'attachment','',0),(3923,24,'2026-07-23 18:36:13','2026-07-23 18:36:13','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_ce7b05.zip','nx_th_ce7b05.zip','','private','open','closed','','nx_th_ce7b05-zip','','','2026-07-23 18:36:13','2026-07-23 18:36:13','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_ce7b05.zip',0,'attachment','',0),(3924,24,'2026-07-23 18:36:22','2026-07-23 18:36:22','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_ce7b05-1.zip','nx_th_ce7b05.zip','','private','open','closed','','nx_th_ce7b05-zip-2','','','2026-07-23 18:36:22','2026-07-23 18:36:22','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_ce7b05-1.zip',0,'attachment','',0),(3925,24,'2026-07-23 18:36:31','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-23 18:36:31','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3925',0,'post','',0),(3927,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1822495365]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','c217d2eb-276a-4081-9d1b-8917091afc80','','','2026-07-23 19:54:38','2026-07-23 19:54:38','',0,'',0,'customize_changeset','',0),(3928,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"dIC4rfK3FL\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=3fSVI3yS6k#?secret=dIC4rfK3FL\" data-secret=\"dIC4rfK3FL\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x','','','2026-07-23 19:54:38','2026-07-23 19:54:38','',3927,'',0,'post','',0),(3929,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-2','','','2026-07-23 19:54:37','2026-07-23 19:54:37','',0,'',0,'request','',0),(3930,0,'2026-07-23 19:54:38','2026-07-23 19:54:38','<blockquote class=\"wp-embedded-content\" data-secret=\"dIC4rfK3FL\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=3fSVI3yS6k#?secret=dIC4rfK3FL\" data-secret=\"dIC4rfK3FL\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','3928-revision-v1','','','2026-07-23 19:54:38','2026-07-23 19:54:38','',3928,'https://solsculpting.com/?p=3930',0,'revision','',0),(3931,0,'2026-07-23 19:54:39','2026-07-23 19:54:39','<blockquote class=\"wp-embedded-content\" data-secret=\"P665z1oWOJ\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=DXLLuWTJPg#?secret=P665z1oWOJ\" data-secret=\"P665z1oWOJ\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a7e99a39ccd5dcb8b20f017398fe9a19','','','2026-07-23 19:54:39','2026-07-23 19:54:39','',0,'https://solsculpting.com/a7e99a39ccd5dcb8b20f017398fe9a19/',0,'oembed_cache','',0),(3932,0,'2026-07-23 19:54:41','2026-07-23 19:54:41','<blockquote class=\"wp-embedded-content\" data-secret=\"vzSpfgdNEd\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=DfLHV3kTUr#?secret=vzSpfgdNEd\" data-secret=\"vzSpfgdNEd\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','560c948257253a60f6562f16e68eb50b','','','2026-07-23 19:54:41','2026-07-23 19:54:41','',0,'https://solsculpting.com/560c948257253a60f6562f16e68eb50b/',0,'oembed_cache','',0),(3933,0,'2026-07-23 19:54:42','2026-07-23 19:54:42','<blockquote class=\"wp-embedded-content\" data-secret=\"kaE32GrqTG\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=YdHj79DCxO#?secret=kaE32GrqTG\" data-secret=\"kaE32GrqTG\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d38da08c26a03c98b04a08e0126b5f53','','','2026-07-23 19:54:42','2026-07-23 19:54:42','',0,'https://solsculpting.com/d38da08c26a03c98b04a08e0126b5f53/',0,'oembed_cache','',0),(3934,1,'2026-07-23 19:54:49','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-23 19:54:49','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3934',0,'post','',0),(3935,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1821042114]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','ff7f473a-a7fa-4e7c-bedf-c9ae9c3a8a56','','','2026-07-23 20:57:57','2026-07-23 20:57:57','',0,'',0,'customize_changeset','',0),(3936,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"XxbB3mr0bz\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=sohfwoXGHA#?secret=XxbB3mr0bz\" data-secret=\"XxbB3mr0bz\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-2','','','2026-07-23 20:57:57','2026-07-23 20:57:57','',3935,'',0,'post','',0),(3937,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-3','','','2026-07-23 20:57:55','2026-07-23 20:57:55','',0,'',0,'request','',0),(3938,0,'2026-07-23 20:57:57','2026-07-23 20:57:57','<blockquote class=\"wp-embedded-content\" data-secret=\"XxbB3mr0bz\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=sohfwoXGHA#?secret=XxbB3mr0bz\" data-secret=\"XxbB3mr0bz\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','3936-revision-v1','','','2026-07-23 20:57:57','2026-07-23 20:57:57','',3936,'https://solsculpting.com/?p=3938',0,'revision','',0),(3939,0,'2026-07-23 20:57:59','2026-07-23 20:57:59','<blockquote class=\"wp-embedded-content\" data-secret=\"zLOZzDqihH\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=orCR8OiOGd#?secret=zLOZzDqihH\" data-secret=\"zLOZzDqihH\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','63a36f603203b93fc8b07c8c22065ba7','','','2026-07-23 20:57:59','2026-07-23 20:57:59','',0,'https://solsculpting.com/63a36f603203b93fc8b07c8c22065ba7/',0,'oembed_cache','',0),(3940,0,'2026-07-23 20:58:02','2026-07-23 20:58:02','<blockquote class=\"wp-embedded-content\" data-secret=\"tqmiXSAznI\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=ywCSCNHTXD#?secret=tqmiXSAznI\" data-secret=\"tqmiXSAznI\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','f147ae117910de4047b577753992b43e','','','2026-07-23 20:58:02','2026-07-23 20:58:02','',0,'https://solsculpting.com/f147ae117910de4047b577753992b43e/',0,'oembed_cache','',0),(3941,0,'2026-07-23 20:58:04','2026-07-23 20:58:04','<blockquote class=\"wp-embedded-content\" data-secret=\"7FHvxbgCwC\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=9yVICws74a#?secret=7FHvxbgCwC\" data-secret=\"7FHvxbgCwC\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a19ab9b46b337162fea4eb4203105922','','','2026-07-23 20:58:04','2026-07-23 20:58:04','',0,'https://solsculpting.com/a19ab9b46b337162fea4eb4203105922/',0,'oembed_cache','',0),(3942,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1892636985]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','b1562e90-166a-421a-81db-b9ed1ea99c24','','','2026-07-23 21:46:36','2026-07-23 21:46:36','',0,'https://solsculpting.com/b1562e90-166a-421a-81db-b9ed1ea99c24/',0,'customize_changeset','',0),(3943,0,'2026-07-23 21:46:18','2026-07-23 21:46:18','<blockquote class=\"wp-embedded-content\" data-secret=\"LYcUThSHri\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=5Kdkq5eKR1#?secret=LYcUThSHri\" data-secret=\"LYcUThSHri\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d4e382c439c4c76edbdcf1df5f606c77','','','2026-07-23 21:46:18','2026-07-23 21:46:18','',0,'https://solsculpting.com/d4e382c439c4c76edbdcf1df5f606c77/',0,'oembed_cache','',0),(3944,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-15','','','2026-07-23 21:46:36','2026-07-23 21:46:36','',0,'',0,'request','',0),(3945,20,'2026-07-23 22:04:07','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-23 22:04:07','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3945',0,'post','',0),(3947,0,'2026-07-24 08:04:25','2026-07-24 08:04:25','<blockquote class=\"wp-embedded-content\" data-secret=\"FVzc0uQ5pW\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=GoxpRwSW85#?secret=FVzc0uQ5pW\" data-secret=\"FVzc0uQ5pW\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','bf3078bfd80dde3967db8b2b80c3a5c0','','','2026-07-24 08:04:25','2026-07-24 08:04:25','',0,'https://solsculpting.com/bf3078bfd80dde3967db8b2b80c3a5c0/',0,'oembed_cache','',0),(3948,0,'2026-07-24 08:04:25','2026-07-24 08:04:25','<blockquote class=\"wp-embedded-content\" data-secret=\"aHYdXlHM2c\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=9XKBKJFmJD#?secret=aHYdXlHM2c\" data-secret=\"aHYdXlHM2c\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','e95d8331dd8f52898bbc4f4b9a53ca15','','','2026-07-24 08:04:25','2026-07-24 08:04:25','',0,'https://solsculpting.com/e95d8331dd8f52898bbc4f4b9a53ca15/',0,'oembed_cache','',0),(3949,0,'2026-07-24 08:04:25','2026-07-24 08:04:25','<blockquote class=\"wp-embedded-content\" data-secret=\"g13JgLplOB\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=xdKsq0d1wo#?secret=g13JgLplOB\" data-secret=\"g13JgLplOB\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','eff5c03b2fef8c7593ac27d474530691','','','2026-07-24 08:04:25','2026-07-24 08:04:25','',0,'https://solsculpting.com/eff5c03b2fef8c7593ac27d474530691/',0,'oembed_cache','',0),(3950,0,'2026-07-24 08:41:42','2026-07-24 08:41:42','<blockquote class=\"wp-embedded-content\" data-secret=\"tgOhRm1UJt\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=8O0gqdV6dM#?secret=tgOhRm1UJt\" data-secret=\"tgOhRm1UJt\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','042eaee7f2366c1560b403b750228c61','','','2026-07-24 08:41:42','2026-07-24 08:41:42','',0,'https://solsculpting.com/042eaee7f2366c1560b403b750228c61/',0,'oembed_cache','',0),(3951,0,'2026-07-24 08:41:42','2026-07-24 08:41:42','<blockquote class=\"wp-embedded-content\" data-secret=\"UKJQFnmm9v\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=GFITFHrGcX#?secret=UKJQFnmm9v\" data-secret=\"UKJQFnmm9v\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','511040e0da9692956b2ef92c257da29d','','','2026-07-24 08:41:42','2026-07-24 08:41:42','',0,'https://solsculpting.com/511040e0da9692956b2ef92c257da29d/',0,'oembed_cache','',0),(3952,0,'2026-07-24 08:41:42','2026-07-24 08:41:42','<blockquote class=\"wp-embedded-content\" data-secret=\"GG86GJifne\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=mQ1QmoBesL#?secret=GG86GJifne\" data-secret=\"GG86GJifne\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8d5bc965217b7aa6662c86e076d09d2d','','','2026-07-24 08:41:42','2026-07-24 08:41:42','',0,'https://solsculpting.com/8d5bc965217b7aa6662c86e076d09d2d/',0,'oembed_cache','',0),(3953,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1808277509]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','20ffb07f-586e-499b-b2df-bcc95a4f0a85','','','2026-07-24 10:19:29','2026-07-24 10:19:29','',0,'https://solsculpting.com/20ffb07f-586e-499b-b2df-bcc95a4f0a85/',0,'customize_changeset','',0),(3954,0,'2026-07-24 10:19:07','2026-07-24 10:19:07','<blockquote class=\"wp-embedded-content\" data-secret=\"XdpeiGQPRh\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=tdQ9N3ucYd#?secret=XdpeiGQPRh\" data-secret=\"XdpeiGQPRh\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','1e2ae92d36f46484ed4c5e2b5764e810','','','2026-07-24 10:19:07','2026-07-24 10:19:07','',0,'https://solsculpting.com/1e2ae92d36f46484ed4c5e2b5764e810/',0,'oembed_cache','',0),(3955,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-16','','','2026-07-24 10:19:29','2026-07-24 10:19:29','',0,'',0,'request','',0),(3956,21,'2026-07-24 12:18:25','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-24 12:18:25','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3956',0,'post','',0),(3958,21,'2026-07-24 12:18:45','2026-07-24 12:18:45','https://solsculpting.com/wp-content/uploads/2026/07/uvzkrow.zip','uvzkrow.zip','','private','open','closed','','uvzkrow-zip','','','2026-07-24 12:18:45','2026-07-24 12:18:45','',0,'https://solsculpting.com/wp-content/uploads/2026/07/uvzkrow.zip',0,'attachment','',0),(3959,22,'2026-07-24 12:21:39','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-24 12:21:39','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3959',0,'post','',0),(3961,22,'2026-07-24 12:21:57','2026-07-24 12:21:57','https://solsculpting.com/wp-content/uploads/2026/07/dpvikij.zip','dpvikij.zip','','private','open','closed','','dpvikij-zip','','','2026-07-24 12:21:57','2026-07-24 12:21:57','',0,'https://solsculpting.com/wp-content/uploads/2026/07/dpvikij.zip',0,'attachment','',0),(3962,26,'2026-07-24 12:26:48','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-24 12:26:48','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3962',0,'post','',0),(3964,26,'2026-07-24 12:27:11','2026-07-24 12:27:11','https://solsculpting.com/wp-content/uploads/2026/07/yrqxema.zip','yrqxema.zip','','private','open','closed','','yrqxema-zip','','','2026-07-24 12:27:11','2026-07-24 12:27:11','',0,'https://solsculpting.com/wp-content/uploads/2026/07/yrqxema.zip',0,'attachment','',0),(3965,25,'2026-07-24 12:34:18','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-24 12:34:18','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3965',0,'post','',0),(3967,25,'2026-07-24 12:34:40','2026-07-24 12:34:40','https://solsculpting.com/wp-content/uploads/2026/07/datccey.zip','datccey.zip','','private','open','closed','','datccey-zip','','','2026-07-24 12:34:40','2026-07-24 12:34:40','',0,'https://solsculpting.com/wp-content/uploads/2026/07/datccey.zip',0,'attachment','',0),(3968,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1883006880]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','bc2b45e4-a2a9-4fcd-a087-9b59c196eb89','','','2026-07-24 13:52:35','2026-07-24 13:52:35','',0,'https://solsculpting.com/bc2b45e4-a2a9-4fcd-a087-9b59c196eb89/',0,'customize_changeset','',0),(3969,0,'2026-07-24 13:52:19','2026-07-24 13:52:19','<blockquote class=\"wp-embedded-content\" data-secret=\"WfehTbAT9e\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=Tnhz8YKHMK#?secret=WfehTbAT9e\" data-secret=\"WfehTbAT9e\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','ce47963e9ca1cadb3b46168c9739c563','','','2026-07-24 13:52:19','2026-07-24 13:52:19','',0,'https://solsculpting.com/ce47963e9ca1cadb3b46168c9739c563/',0,'oembed_cache','',0),(3970,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-17','','','2026-07-24 13:52:35','2026-07-24 13:52:35','',0,'',0,'request','',0),(3971,27,'2026-07-24 13:52:41','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-24 13:52:41','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3971',0,'post','',0),(3973,27,'2026-07-24 13:53:03','2026-07-24 13:53:03','https://solsculpting.com/wp-content/uploads/2026/07/445620d4.zip','445620d4.zip','','private','open','closed','','445620d4-zip','','','2026-07-24 13:53:03','2026-07-24 13:53:03','',0,'https://solsculpting.com/wp-content/uploads/2026/07/445620d4.zip',0,'attachment','',0),(3974,27,'2026-07-24 13:53:15','2026-07-24 13:53:15','https://solsculpting.com/wp-content/uploads/2026/07/445620d4-1.zip','445620d4.zip','','private','open','closed','','445620d4-zip-2','','','2026-07-24 13:53:15','2026-07-24 13:53:15','',0,'https://solsculpting.com/wp-content/uploads/2026/07/445620d4-1.zip',0,'attachment','',0),(3975,27,'2026-07-24 13:53:22','2026-07-24 13:53:22','https://solsculpting.com/wp-content/uploads/2026/07/445620d4-2.zip','445620d4.zip','','private','open','closed','','445620d4-zip-3','','','2026-07-24 13:53:22','2026-07-24 13:53:22','',0,'https://solsculpting.com/wp-content/uploads/2026/07/445620d4-2.zip',0,'attachment','',0),(3976,27,'2026-07-24 13:53:32','2026-07-24 13:53:32','https://solsculpting.com/wp-content/uploads/2026/07/ef435f.zip','ef435f.zip','','private','open','closed','','ef435f-zip','','','2026-07-24 13:53:32','2026-07-24 13:53:32','',0,'https://solsculpting.com/wp-content/uploads/2026/07/ef435f.zip',0,'attachment','',0),(3977,27,'2026-07-24 13:53:40','2026-07-24 13:53:40','https://solsculpting.com/wp-content/uploads/2026/07/ef435f-1.zip','ef435f.zip','','private','open','closed','','ef435f-zip-2','','','2026-07-24 13:53:40','2026-07-24 13:53:40','',0,'https://solsculpting.com/wp-content/uploads/2026/07/ef435f-1.zip',0,'attachment','',0),(3978,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1850055170]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','b3cebcde-d349-4978-b545-375c83e25da0','','','2026-07-24 16:13:06','2026-07-24 16:13:06','',0,'https://solsculpting.com/b3cebcde-d349-4978-b545-375c83e25da0/',0,'customize_changeset','',0),(3979,0,'2026-07-24 16:12:38','2026-07-24 16:12:38','<blockquote class=\"wp-embedded-content\" data-secret=\"3YtobOR81K\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=CK6mow87xW#?secret=3YtobOR81K\" data-secret=\"3YtobOR81K\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','59a3407401aed289033ab3b466852ddd','','','2026-07-24 16:12:38','2026-07-24 16:12:38','',0,'https://solsculpting.com/59a3407401aed289033ab3b466852ddd/',0,'oembed_cache','',0),(3980,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-18','','','2026-07-24 16:13:06','2026-07-24 16:13:06','',0,'',0,'request','',0),(3981,0,'2026-07-24 18:45:24','2026-07-24 18:45:24','<blockquote class=\"wp-embedded-content\" data-secret=\"q0mQqDWxwQ\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=NaQZ5rmp5W#?secret=q0mQqDWxwQ\" data-secret=\"q0mQqDWxwQ\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','ee9a8479689739ce8614e04074efc9e3','','','2026-07-24 18:45:24','2026-07-24 18:45:24','',0,'https://solsculpting.com/ee9a8479689739ce8614e04074efc9e3/',0,'oembed_cache','',0),(3982,0,'2026-07-24 18:45:34','2026-07-24 18:45:34','<blockquote class=\"wp-embedded-content\" data-secret=\"db1q8oAsz6\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=vALaJSC4Gk#?secret=db1q8oAsz6\" data-secret=\"db1q8oAsz6\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','ba91ec27812d4e2445d05d0e4bb7e755','','','2026-07-24 18:45:34','2026-07-24 18:45:34','',0,'https://solsculpting.com/ba91ec27812d4e2445d05d0e4bb7e755/',0,'oembed_cache','',0),(3983,0,'2026-07-24 18:45:44','2026-07-24 18:45:44','<blockquote class=\"wp-embedded-content\" data-secret=\"wHAxYAHD8V\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=6yqbDK5qbb#?secret=wHAxYAHD8V\" data-secret=\"wHAxYAHD8V\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','f58f1a4d9809626cf3c9b3ed8d472d40','','','2026-07-24 18:45:44','2026-07-24 18:45:44','',0,'https://solsculpting.com/f58f1a4d9809626cf3c9b3ed8d472d40/',0,'oembed_cache','',0),(3984,28,'2026-07-24 20:18:57','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-24 20:18:57','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3984',0,'post','',0),(3985,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1832837641]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"_invalid\":false,\"attr_title\":\"\",\"classes\":\"\",\"description\":\"\",\"menu_item_parent\":0,\"nav_menu_term_id\":0,\"object\":\"\",\"object_id\":0,\"position\":0,\"status\":\"publish\",\"target\":\"\",\"title\":\"generated\",\"type\":\"custom\",\"url\":\"https://example.invalid/\",\"xfn\":\"\"}}}','changeset','','publish','closed','closed','','5ca7b385-9224-4420-9bc1-79111badfa78','','','2026-07-24 23:30:42','2026-07-24 23:30:42','',0,'https://solsculpting.com/5ca7b385-9224-4420-9bc1-79111badfa78/',0,'customize_changeset','',0),(3986,0,'2026-07-24 23:30:22','2026-07-24 23:30:22','<blockquote class=\"wp-embedded-content\" data-secret=\"GU9Wxn0MuU\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=wsREJeJaOC#?secret=GU9Wxn0MuU\" data-secret=\"GU9Wxn0MuU\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','71cfa0bc7df35a24bf1d766ee7670b87','','','2026-07-24 23:30:22','2026-07-24 23:30:22','',0,'https://solsculpting.com/71cfa0bc7df35a24bf1d766ee7670b87/',0,'oembed_cache','',0),(3987,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-19','','','2026-07-24 23:30:42','2026-07-24 23:30:42','',0,'',0,'request','',0),(3990,0,'2026-07-25 00:36:26','2026-07-25 00:36:26','<blockquote class=\"wp-embedded-content\" data-secret=\"55Ol88hRiS\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=E2XHioMacT#?secret=55Ol88hRiS\" data-secret=\"55Ol88hRiS\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c24c60b8af7af5219f0fb41caad842ea','','','2026-07-25 00:36:26','2026-07-25 00:36:26','',0,'https://solsculpting.com/c24c60b8af7af5219f0fb41caad842ea/',0,'oembed_cache','',0),(3991,0,'2026-07-25 00:36:27','2026-07-25 00:36:27','<blockquote class=\"wp-embedded-content\" data-secret=\"QZGCT82y10\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=QuxCqyplh0#?secret=QZGCT82y10\" data-secret=\"QZGCT82y10\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d22e4b9666208a582336ec3ddf282fc7','','','2026-07-25 00:36:27','2026-07-25 00:36:27','',0,'https://solsculpting.com/d22e4b9666208a582336ec3ddf282fc7/',0,'oembed_cache','',0),(3992,0,'2026-07-25 00:36:27','2026-07-25 00:36:27','<blockquote class=\"wp-embedded-content\" data-secret=\"czDL0O0zJt\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=efz7FvVBD6#?secret=czDL0O0zJt\" data-secret=\"czDL0O0zJt\" width=\"200\" height=\"200\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a21872b6beea91dd849cf6b42a537852','','','2026-07-25 00:36:27','2026-07-25 00:36:27','',0,'https://solsculpting.com/a21872b6beea91dd849cf6b42a537852/',0,'oembed_cache','',0),(3993,19,'2026-07-25 01:35:41','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-25 01:35:41','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3993',0,'post','',0),(3994,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1819819147]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','1a270ecd-77eb-43e5-8981-e145c579e209','','','2026-07-25 04:16:25','2026-07-25 04:16:25','',0,'https://solsculpting.com/1a270ecd-77eb-43e5-8981-e145c579e209/',0,'customize_changeset','',0),(3995,0,'2026-07-25 04:16:10','2026-07-25 04:16:10','<blockquote class=\"wp-embedded-content\" data-secret=\"klXp7lADUB\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=GGtCnIUeSM#?secret=klXp7lADUB\" data-secret=\"klXp7lADUB\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b077b14303679b5aca6b17be3001e304','','','2026-07-25 04:16:10','2026-07-25 04:16:10','',0,'https://solsculpting.com/b077b14303679b5aca6b17be3001e304/',0,'oembed_cache','',0),(3996,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-20','','','2026-07-25 04:16:25','2026-07-25 04:16:25','',0,'',0,'request','',0),(3997,30,'2026-07-25 04:16:28','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-25 04:16:28','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=3997',0,'post','',0),(3999,30,'2026-07-25 04:16:50','2026-07-25 04:16:50','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_7b448659.zip','nx_up_7b448659.zip','','private','open','closed','','nx_up_7b448659-zip','','','2026-07-25 04:16:50','2026-07-25 04:16:50','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_7b448659.zip',0,'attachment','',0),(4000,30,'2026-07-25 04:16:59','2026-07-25 04:16:59','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_7b448659-1.zip','nx_up_7b448659.zip','','private','open','closed','','nx_up_7b448659-zip-2','','','2026-07-25 04:16:59','2026-07-25 04:16:59','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_7b448659-1.zip',0,'attachment','',0),(4001,30,'2026-07-25 04:17:07','2026-07-25 04:17:07','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_7b448659-2.zip','nx_up_7b448659.zip','','private','open','closed','','nx_up_7b448659-zip-3','','','2026-07-25 04:17:07','2026-07-25 04:17:07','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_7b448659-2.zip',0,'attachment','',0),(4002,30,'2026-07-25 04:17:17','2026-07-25 04:17:17','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_6e3324.zip','nx_th_6e3324.zip','','private','open','closed','','nx_th_6e3324-zip','','','2026-07-25 04:17:17','2026-07-25 04:17:17','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_6e3324.zip',0,'attachment','',0),(4003,30,'2026-07-25 04:17:25','2026-07-25 04:17:25','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_6e3324-1.zip','nx_th_6e3324.zip','','private','open','closed','','nx_th_6e3324-zip-2','','','2026-07-25 04:17:25','2026-07-25 04:17:25','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_6e3324-1.zip',0,'attachment','',0),(4004,0,'2026-07-25 09:00:54','2026-07-25 09:00:54','<blockquote class=\"wp-embedded-content\" data-secret=\"jZ0DgTQn6C\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=rbTnSRFmBN#?secret=jZ0DgTQn6C\" data-secret=\"jZ0DgTQn6C\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','7c443478a233ed59aef6ddafa888df5e','','','2026-07-25 09:00:54','2026-07-25 09:00:54','',0,'https://solsculpting.com/7c443478a233ed59aef6ddafa888df5e/',0,'oembed_cache','',0),(4005,0,'2026-07-25 09:00:55','2026-07-25 09:00:55','<blockquote class=\"wp-embedded-content\" data-secret=\"0B347NOLm1\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=qZdje31J0r#?secret=0B347NOLm1\" data-secret=\"0B347NOLm1\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','55f0c0a54c760d26327d6ddbd06c221b','','','2026-07-25 09:00:55','2026-07-25 09:00:55','',0,'https://solsculpting.com/55f0c0a54c760d26327d6ddbd06c221b/',0,'oembed_cache','',0),(4006,0,'2026-07-25 09:00:55','2026-07-25 09:00:55','<blockquote class=\"wp-embedded-content\" data-secret=\"K9o6tGH6CZ\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=zWC6HV8VIH#?secret=K9o6tGH6CZ\" data-secret=\"K9o6tGH6CZ\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2789f4d36ba2e4539b7e584e528aba9f','','','2026-07-25 09:00:55','2026-07-25 09:00:55','',0,'https://solsculpting.com/2789f4d36ba2e4539b7e584e528aba9f/',0,'oembed_cache','',0),(4007,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1806196765]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','07f9e28d-c6ba-4bf6-9804-e107b0ad1fa2','','','2026-07-25 09:38:37','2026-07-25 09:38:37','',0,'',0,'customize_changeset','',0),(4008,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"C4Fl4Wk2uK\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=rqzdEnDmyT#?secret=C4Fl4Wk2uK\" data-secret=\"C4Fl4Wk2uK\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-3','','','2026-07-25 09:38:37','2026-07-25 09:38:37','',4007,'',0,'post','',0),(4009,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-4','','','2026-07-25 09:38:36','2026-07-25 09:38:36','',0,'',0,'request','',0),(4010,0,'2026-07-25 09:38:37','2026-07-25 09:38:37','<blockquote class=\"wp-embedded-content\" data-secret=\"C4Fl4Wk2uK\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=rqzdEnDmyT#?secret=C4Fl4Wk2uK\" data-secret=\"C4Fl4Wk2uK\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','4008-revision-v1','','','2026-07-25 09:38:37','2026-07-25 09:38:37','',4008,'https://solsculpting.com/?p=4010',0,'revision','',0),(4011,0,'2026-07-25 09:38:38','2026-07-25 09:38:38','<blockquote class=\"wp-embedded-content\" data-secret=\"YVRmbIZhYG\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=VYyALlkbKt#?secret=YVRmbIZhYG\" data-secret=\"YVRmbIZhYG\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','0aa47ff569b82e74a7a6f1a2735bab7b','','','2026-07-25 09:38:38','2026-07-25 09:38:38','',0,'https://solsculpting.com/0aa47ff569b82e74a7a6f1a2735bab7b/',0,'oembed_cache','',0),(4012,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1842242563]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','6b4fa47d-4a80-4dcc-a49b-ccbeb925e8ff','','','2026-07-25 10:11:19','2026-07-25 10:11:19','',0,'',0,'customize_changeset','',0),(4013,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"47j5Jo6C2X\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=guVFgYBCcJ#?secret=47j5Jo6C2X\" data-secret=\"47j5Jo6C2X\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-4','','','2026-07-25 10:11:19','2026-07-25 10:11:19','',4012,'',0,'post','',0),(4014,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-5','','','2026-07-25 10:11:17','2026-07-25 10:11:17','',0,'',0,'request','',0),(4015,0,'2026-07-25 10:11:19','2026-07-25 10:11:19','<blockquote class=\"wp-embedded-content\" data-secret=\"47j5Jo6C2X\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=guVFgYBCcJ#?secret=47j5Jo6C2X\" data-secret=\"47j5Jo6C2X\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','4013-revision-v1','','','2026-07-25 10:11:19','2026-07-25 10:11:19','',4013,'https://solsculpting.com/?p=4015',0,'revision','',0),(4016,0,'2026-07-25 10:11:21','2026-07-25 10:11:21','<blockquote class=\"wp-embedded-content\" data-secret=\"4DLX1Ij3XA\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=mQ2ZpMNGlK#?secret=4DLX1Ij3XA\" data-secret=\"4DLX1Ij3XA\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a366ae5ac20791790c530f5278d93034','','','2026-07-25 10:11:21','2026-07-25 10:11:21','',0,'https://solsculpting.com/a366ae5ac20791790c530f5278d93034/',0,'oembed_cache','',0),(4017,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1850495534]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','39e13406-8427-4846-8ed6-012ec62b112e','','','2026-07-25 10:27:59','2026-07-25 10:27:59','',0,'',0,'customize_changeset','',0),(4018,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"7Cu2VkACum\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=9cUfGGfPKZ#?secret=7Cu2VkACum\" data-secret=\"7Cu2VkACum\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-5','','','2026-07-25 10:27:59','2026-07-25 10:27:59','',4017,'',0,'post','',0),(4019,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-6','','','2026-07-25 10:27:58','2026-07-25 10:27:58','',0,'',0,'request','',0),(4020,0,'2026-07-25 10:27:59','2026-07-25 10:27:59','<blockquote class=\"wp-embedded-content\" data-secret=\"7Cu2VkACum\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=9cUfGGfPKZ#?secret=7Cu2VkACum\" data-secret=\"7Cu2VkACum\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','4018-revision-v1','','','2026-07-25 10:27:59','2026-07-25 10:27:59','',4018,'https://solsculpting.com/?p=4020',0,'revision','',0),(4021,0,'2026-07-25 10:28:00','2026-07-25 10:28:00','<blockquote class=\"wp-embedded-content\" data-secret=\"GyYUqoymlF\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=WGdeOdUlGO#?secret=GyYUqoymlF\" data-secret=\"GyYUqoymlF\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','4d42a6dfbd3bcec371969bfe61234f10','','','2026-07-25 10:28:00','2026-07-25 10:28:00','',0,'https://solsculpting.com/4d42a6dfbd3bcec371969bfe61234f10/',0,'oembed_cache','',0),(4022,0,'2026-07-25 11:24:22','2026-07-25 11:24:22','<blockquote class=\"wp-embedded-content\" data-secret=\"F3Lh43ZcXk\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=vPPV5Ew914#?secret=F3Lh43ZcXk\" data-secret=\"F3Lh43ZcXk\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d50d0a6c881ef21d40852a6e83db350c','','','2026-07-25 11:24:22','2026-07-25 11:24:22','',0,'https://solsculpting.com/d50d0a6c881ef21d40852a6e83db350c/',0,'oembed_cache','',0),(4023,0,'2026-07-25 11:24:22','2026-07-25 11:24:22','<blockquote class=\"wp-embedded-content\" data-secret=\"HalPT9lWZK\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=FWkkMuuMg0#?secret=HalPT9lWZK\" data-secret=\"HalPT9lWZK\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b32ff7372592e434727eba567fa98eef','','','2026-07-25 11:24:22','2026-07-25 11:24:22','',0,'https://solsculpting.com/b32ff7372592e434727eba567fa98eef/',0,'oembed_cache','',0),(4024,0,'2026-07-25 11:24:22','2026-07-25 11:24:22','<blockquote class=\"wp-embedded-content\" data-secret=\"0NYI9JxQEL\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=qt5NCWysp9#?secret=0NYI9JxQEL\" data-secret=\"0NYI9JxQEL\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','20fd81aec0f3e44991431d73e67c42e4','','','2026-07-25 11:24:22','2026-07-25 11:24:22','',0,'https://solsculpting.com/20fd81aec0f3e44991431d73e67c42e4/',0,'oembed_cache','',0),(4025,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1807107421]\":{\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"proof\",\"url\":\"https://github.com/WordPress/wordpress-develop\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"proof\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false},\"type\":\"nav_menu_item\",\"user_id\":1}}','changeset','','publish','closed','closed','','30dcb101-0fdd-44b1-a376-4747b7e4e82e','','','2026-07-25 14:25:56','2026-07-25 14:25:56','',0,'https://solsculpting.com/30dcb101-0fdd-44b1-a376-4747b7e4e82e/',0,'customize_changeset','',0),(4026,0,'2026-07-25 14:25:30','2026-07-25 14:25:30','<blockquote class=\"wp-embedded-content\" data-secret=\"L27qczUPHa\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=vuP7lWKyGP#?secret=L27qczUPHa\" data-secret=\"L27qczUPHa\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','54635f5863804e321eaf0994fb1fb6ce','','','2026-07-25 14:25:30','2026-07-25 14:25:30','',0,'https://solsculpting.com/54635f5863804e321eaf0994fb1fb6ce/',0,'oembed_cache','',0),(4027,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-21','','','2026-07-25 14:25:56','2026-07-25 14:25:56','',0,'',0,'request','',0),(4029,25,'2026-07-25 15:44:54','2026-07-25 15:44:54','https://solsculpting.com/wp-content/uploads/2026/07/juayenv.zip','juayenv.zip','','private','open','closed','','juayenv-zip','','','2026-07-25 15:44:54','2026-07-25 15:44:54','',0,'https://solsculpting.com/wp-content/uploads/2026/07/juayenv.zip',0,'attachment','',0),(4030,34,'2026-07-25 19:38:38','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-25 19:38:38','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4030',0,'post','',0),(4032,34,'2026-07-25 19:39:10','2026-07-25 19:39:10','https://solsculpting.com/wp-content/uploads/2026/07/dDGIEj4.zip','dDGIEj4.zip','','private','open','closed','','ddgiej4-zip','','','2026-07-25 19:39:10','2026-07-25 19:39:10','',0,'https://solsculpting.com/wp-content/uploads/2026/07/dDGIEj4.zip',0,'attachment','',0),(4033,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1887118046]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','9bd1d09a-6603-48ab-afe5-ef5742a73092','','','2026-07-25 21:21:47','2026-07-25 21:21:47','',0,'https://solsculpting.com/9bd1d09a-6603-48ab-afe5-ef5742a73092/',0,'customize_changeset','',0),(4034,0,'2026-07-25 21:21:03','2026-07-25 21:21:03','<blockquote class=\"wp-embedded-content\" data-secret=\"y31zNcmMZX\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=c6pQcbOStN#?secret=y31zNcmMZX\" data-secret=\"y31zNcmMZX\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','e763a0bec61388be37c204e10ec621d1','','','2026-07-25 21:21:03','2026-07-25 21:21:03','',0,'https://solsculpting.com/e763a0bec61388be37c204e10ec621d1/',0,'oembed_cache','',0),(4035,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-22','','','2026-07-25 21:21:47','2026-07-25 21:21:47','',0,'',0,'request','',0),(4036,35,'2026-07-25 21:21:54','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-25 21:21:54','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4036',0,'post','',0),(4038,35,'2026-07-25 21:22:40','2026-07-25 21:22:40','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_f9a4dbd5.zip','nx_up_f9a4dbd5.zip','','private','open','closed','','nx_up_f9a4dbd5-zip','','','2026-07-25 21:22:40','2026-07-25 21:22:40','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_f9a4dbd5.zip',0,'attachment','',0),(4039,35,'2026-07-25 21:23:01','2026-07-25 21:23:01','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_f9a4dbd5-1.zip','nx_up_f9a4dbd5.zip','','private','open','closed','','nx_up_f9a4dbd5-zip-2','','','2026-07-25 21:23:01','2026-07-25 21:23:01','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_f9a4dbd5-1.zip',0,'attachment','',0),(4040,35,'2026-07-25 21:23:22','2026-07-25 21:23:22','https://solsculpting.com/wp-content/uploads/2026/07/nx_up_f9a4dbd5-2.zip','nx_up_f9a4dbd5.zip','','private','open','closed','','nx_up_f9a4dbd5-zip-3','','','2026-07-25 21:23:22','2026-07-25 21:23:22','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_up_f9a4dbd5-2.zip',0,'attachment','',0),(4041,35,'2026-07-25 21:23:44','2026-07-25 21:23:44','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_b01f15.zip','nx_th_b01f15.zip','','private','open','closed','','nx_th_b01f15-zip','','','2026-07-25 21:23:44','2026-07-25 21:23:44','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_b01f15.zip',0,'attachment','',0),(4042,35,'2026-07-25 21:24:05','2026-07-25 21:24:05','https://solsculpting.com/wp-content/uploads/2026/07/nx_th_b01f15-1.zip','nx_th_b01f15.zip','','private','open','closed','','nx_th_b01f15-zip-2','','','2026-07-25 21:24:05','2026-07-25 21:24:05','',0,'https://solsculpting.com/wp-content/uploads/2026/07/nx_th_b01f15-1.zip',0,'attachment','',0),(4043,0,'2026-07-26 02:09:34','2026-07-26 02:09:34','<blockquote class=\"wp-embedded-content\" data-secret=\"2OkARVYq8F\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=nwLSGX3QYj#?secret=2OkARVYq8F\" data-secret=\"2OkARVYq8F\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d3da5007bbfd80284246dda05ba29ede','','','2026-07-26 02:09:34','2026-07-26 02:09:34','',0,'https://solsculpting.com/d3da5007bbfd80284246dda05ba29ede/',0,'oembed_cache','',0),(4044,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"Ec3VpKTEP8\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=bKjUQw4v6U#?secret=Ec3VpKTEP8\" data-secret=\"Ec3VpKTEP8\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','cache','','publish','closed','closed','','cache','','','2026-07-26 02:24:30','2026-07-26 02:24:30','',4077,'',0,'post','',0),(4045,0,'2026-07-26 02:09:34','2026-07-26 02:09:34','<blockquote class=\"wp-embedded-content\" data-secret=\"OQzoHZXISc\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=XsJnywCzri#?secret=OQzoHZXISc\" data-secret=\"OQzoHZXISc\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','5158d998dd0f577b491e729220ebd12b','','','2026-07-26 02:09:34','2026-07-26 02:09:34','',0,'https://solsculpting.com/5158d998dd0f577b491e729220ebd12b/',0,'oembed_cache','',0),(4046,0,'2026-07-26 02:24:30','2026-07-26 02:24:30','<blockquote class=\"wp-embedded-content\" data-secret=\"Ec3VpKTEP8\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=bKjUQw4v6U#?secret=Ec3VpKTEP8\" data-secret=\"Ec3VpKTEP8\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','cache','','inherit','closed','closed','','4044-revision-v1','','','2026-07-26 02:24:30','2026-07-26 02:24:30','',4044,'https://solsculpting.com/?p=4046',0,'revision','',0),(4047,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1833047484]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','4f96c4da-446f-4e95-bfc0-d42dbbf7d3c9','','','2026-07-26 08:10:15','2026-07-26 08:10:15','',0,'https://solsculpting.com/4f96c4da-446f-4e95-bfc0-d42dbbf7d3c9/',0,'customize_changeset','',0),(4048,0,'2026-07-26 08:10:05','2026-07-26 08:10:05','<blockquote class=\"wp-embedded-content\" data-secret=\"zGYHm5hm8p\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=jPbs1s2bKQ#?secret=zGYHm5hm8p\" data-secret=\"zGYHm5hm8p\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','82eefe06bbbedb2bb07b5e4cc5877944','','','2026-07-26 08:10:05','2026-07-26 08:10:05','',0,'https://solsculpting.com/82eefe06bbbedb2bb07b5e4cc5877944/',0,'oembed_cache','',0),(4049,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-23','','','2026-07-26 08:10:15','2026-07-26 08:10:15','',0,'',0,'request','',0),(4050,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1888197204]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','dc572fcb-e193-482a-92d0-b70d5e70e8c5','','','2026-07-26 08:30:25','2026-07-26 08:30:25','',0,'https://solsculpting.com/dc572fcb-e193-482a-92d0-b70d5e70e8c5/',0,'customize_changeset','',0),(4051,0,'2026-07-26 08:30:12','2026-07-26 08:30:12','<blockquote class=\"wp-embedded-content\" data-secret=\"rxk9YQLZI7\"><a href=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/red-light-therapy-benefits-for-athletes/embed/#?secret=H9OygwbHIA#?secret=rxk9YQLZI7\" data-secret=\"rxk9YQLZI7\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','d97a80b452617819a73346154bf52fb4','','','2026-07-26 08:30:12','2026-07-26 08:30:12','',0,'https://solsculpting.com/d97a80b452617819a73346154bf52fb4/',0,'oembed_cache','',0),(4052,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-24','','','2026-07-26 08:30:25','2026-07-26 08:30:25','',0,'',0,'request','',0),(4053,36,'2026-07-26 08:52:46','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-26 08:52:46','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4053',0,'post','',0),(4055,12,'2026-07-26 10:37:09','2026-07-26 10:37:09','https://solsculpting.com/wp-content/uploads/2026/07/flavor_f44c547a.zip','flavor_f44c547a.zip','','private','open','closed','','flavor_f44c547a-zip','','','2026-07-26 10:37:09','2026-07-26 10:37:09','',0,'https://solsculpting.com/wp-content/uploads/2026/07/flavor_f44c547a.zip',0,'attachment','',0),(4057,20,'2026-07-26 15:24:30','2026-07-26 15:24:30','https://solsculpting.com/wp-content/uploads/2026/07/flavor_e1c922c8.zip','flavor_e1c922c8.zip','','private','open','closed','','flavor_e1c922c8-zip','','','2026-07-26 15:24:30','2026-07-26 15:24:30','',0,'https://solsculpting.com/wp-content/uploads/2026/07/flavor_e1c922c8.zip',0,'attachment','',0),(4059,16,'2026-07-26 19:05:07','2026-07-26 19:05:07','https://solsculpting.com/wp-content/uploads/2026/07/vuvdvze.zip','vuvdvze.zip','','private','open','closed','','vuvdvze-zip','','','2026-07-26 19:05:07','2026-07-26 19:05:07','',0,'https://solsculpting.com/wp-content/uploads/2026/07/vuvdvze.zip',0,'attachment','',0),(4061,25,'2026-07-26 19:33:05','2026-07-26 19:33:05','https://solsculpting.com/wp-content/uploads/2026/07/zatoidk.zip','zatoidk.zip','','private','open','closed','','zatoidk-zip','','','2026-07-26 19:33:05','2026-07-26 19:33:05','',0,'https://solsculpting.com/wp-content/uploads/2026/07/zatoidk.zip',0,'attachment','',0),(4063,21,'2026-07-26 20:57:12','2026-07-26 20:57:12','https://solsculpting.com/wp-content/uploads/2026/07/tgwqsli.zip','tgwqsli.zip','','private','open','closed','','tgwqsli-zip','','','2026-07-26 20:57:12','2026-07-26 20:57:12','',0,'https://solsculpting.com/wp-content/uploads/2026/07/tgwqsli.zip',0,'attachment','',0),(4066,34,'2026-07-26 23:05:32','2026-07-26 23:05:32','https://solsculpting.com/wp-content/uploads/2026/07/T24zgh6.zip','T24zgh6.zip','','private','open','closed','','t24zgh6-zip','','','2026-07-26 23:05:32','2026-07-26 23:05:32','',0,'https://solsculpting.com/wp-content/uploads/2026/07/T24zgh6.zip',0,'attachment','',0),(4069,25,'2026-07-27 01:00:22','2026-07-27 01:00:22','https://solsculpting.com/wp-content/uploads/2026/07/tvoqbpm.zip','tvoqbpm.zip','','private','open','closed','','tvoqbpm-zip','','','2026-07-27 01:00:22','2026-07-27 01:00:22','',0,'https://solsculpting.com/wp-content/uploads/2026/07/tvoqbpm.zip',0,'attachment','',0),(4070,16,'2026-07-27 01:00:27','2026-07-27 01:00:27','https://solsculpting.com/wp-content/uploads/2026/07/ygzakrf.zip','ygzakrf.zip','','private','open','closed','','ygzakrf-zip','','','2026-07-27 01:00:27','2026-07-27 01:00:27','',0,'https://solsculpting.com/wp-content/uploads/2026/07/ygzakrf.zip',0,'attachment','',0),(4072,22,'2026-07-27 01:02:25','2026-07-27 01:02:25','https://solsculpting.com/wp-content/uploads/2026/07/cvqsmrz.zip','cvqsmrz.zip','','private','open','closed','','cvqsmrz-zip','','','2026-07-27 01:02:25','2026-07-27 01:02:25','',0,'https://solsculpting.com/wp-content/uploads/2026/07/cvqsmrz.zip',0,'attachment','',0),(4074,26,'2026-07-27 01:04:28','2026-07-27 01:04:28','https://solsculpting.com/wp-content/uploads/2026/07/tdiersk.zip','tdiersk.zip','','private','open','closed','','tdiersk-zip','','','2026-07-27 01:04:28','2026-07-27 01:04:28','',0,'https://solsculpting.com/wp-content/uploads/2026/07/tdiersk.zip',0,'attachment','',0),(4076,26,'2026-07-27 01:05:24','2026-07-27 01:05:24','https://solsculpting.com/wp-content/uploads/2026/07/wjpryon.zip','wjpryon.zip','','private','open','closed','','wjpryon-zip','','','2026-07-27 01:05:24','2026-07-27 01:05:24','',0,'https://solsculpting.com/wp-content/uploads/2026/07/wjpryon.zip',0,'attachment','',0),(4078,21,'2026-07-27 01:08:23','2026-07-27 01:08:23','https://solsculpting.com/wp-content/uploads/2026/07/qryxllu.zip','qryxllu.zip','','private','open','closed','','qryxllu-zip','','','2026-07-27 01:08:23','2026-07-27 01:08:23','',0,'https://solsculpting.com/wp-content/uploads/2026/07/qryxllu.zip',0,'attachment','',0),(4080,37,'2026-07-27 07:42:03','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-27 07:42:03','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4080',0,'post','',0),(4081,0,'2026-07-27 12:06:38','2026-07-27 12:06:38','{{unknown}}','','','publish','closed','closed','','6320e1eb18fb61109d355e3e0189d3ab','','','2026-07-27 12:06:38','2026-07-27 12:06:38','',0,'https://solsculpting.com/2026/07/27/6320e1eb18fb61109d355e3e0189d3ab/',0,'oembed_cache','',0),(4082,0,'2026-07-27 12:06:39','2026-07-27 12:06:39','{{unknown}}','','','publish','closed','closed','','4c1cc4f270bee83d92339f3d1abc9584','','','2026-07-27 12:06:39','2026-07-27 12:06:39','',0,'https://solsculpting.com/2026/07/27/4c1cc4f270bee83d92339f3d1abc9584/',0,'oembed_cache','',0),(4083,0,'2026-07-27 12:06:40','2026-07-27 12:06:40','{{unknown}}','','','publish','closed','closed','','ddd17e9d2ef918be2dd51f4c182f3d9e','','','2026-07-27 12:06:40','2026-07-27 12:06:40','',0,'https://solsculpting.com/2026/07/27/ddd17e9d2ef918be2dd51f4c182f3d9e/',0,'oembed_cache','',0),(4084,0,'2026-07-27 12:11:37','2026-07-27 12:11:37','{{unknown}}','','','publish','closed','closed','','4c1cc4f270bee83d92339f3d1abc9584-2','','','2026-07-27 12:11:37','2026-07-27 12:11:37','',0,'https://solsculpting.com/2026/07/27/4c1cc4f270bee83d92339f3d1abc9584-2/',0,'oembed_cache','',0),(4085,0,'2026-07-27 12:12:12','2026-07-27 12:12:12','{{unknown}}','','','publish','closed','closed','','41909f8702d56302ad8e904e8f05872e','','','2026-07-27 12:12:12','2026-07-27 12:12:12','',0,'https://solsculpting.com/2026/07/27/41909f8702d56302ad8e904e8f05872e/',0,'oembed_cache','',0),(4086,0,'2026-07-27 12:12:13','2026-07-27 12:12:13','{{unknown}}','','','publish','closed','closed','','53603fb5739e6199ede70ae3bbad5632','','','2026-07-27 12:12:13','2026-07-27 12:12:13','',0,'https://solsculpting.com/2026/07/27/53603fb5739e6199ede70ae3bbad5632/',0,'oembed_cache','',0),(4087,0,'2026-07-27 12:12:14','2026-07-27 12:12:14','{{unknown}}','','','publish','closed','closed','','52b71a8de88310d442f87fda982b172d','','','2026-07-27 12:12:14','2026-07-27 12:12:14','',0,'https://solsculpting.com/2026/07/27/52b71a8de88310d442f87fda982b172d/',0,'oembed_cache','',0),(4088,0,'2026-07-27 12:12:25','2026-07-27 12:12:25','{{unknown}}','','','publish','closed','closed','','53603fb5739e6199ede70ae3bbad5632-2','','','2026-07-27 12:12:25','2026-07-27 12:12:25','',0,'https://solsculpting.com/2026/07/27/53603fb5739e6199ede70ae3bbad5632-2/',0,'oembed_cache','',0),(4089,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-25','','','2026-07-27 19:09:54','2026-07-27 19:09:54','',0,'',0,'request','',0),(4090,0,'2026-07-27 19:09:45','2026-07-27 19:09:45','<blockquote class=\"wp-embedded-content\" data-secret=\"eyJU18ePLm\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=AGR9QxgZaE#?secret=eyJU18ePLm\" data-secret=\"eyJU18ePLm\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b11e901a9509bc78bfc18d11eb347162','','','2026-07-27 19:09:45','2026-07-27 19:09:45','',0,'https://solsculpting.com/2026/07/27/b11e901a9509bc78bfc18d11eb347162/',0,'oembed_cache','',0),(4091,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1837651580]\":{\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"proof\",\"url\":\"https://github.com/dinosn/wp2shell-lab\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"proof\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false},\"type\":\"nav_menu_item\",\"user_id\":1}}','changeset','','publish','closed','closed','','2c6af27d-2141-49b6-acc8-cae33cba05a9','','','2026-07-27 19:09:54','2026-07-27 19:09:54','',0,'https://solsculpting.com/2020/01/01/2c6af27d-2141-49b6-acc8-cae33cba05a9/',0,'customize_changeset','',0),(4093,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1883397678]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','df8ae909-a6c8-4909-9c62-08df86c3bfd7','','','2026-07-27 20:19:44','2026-07-27 20:19:44','',0,'https://solsculpting.com/2020/01/01/df8ae909-a6c8-4909-9c62-08df86c3bfd7/',0,'customize_changeset','',0),(4094,0,'2026-07-27 20:19:39','2026-07-27 20:19:39','<blockquote class=\"wp-embedded-content\" data-secret=\"MQdTPpubRm\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=Fgf6TjIngy#?secret=MQdTPpubRm\" data-secret=\"MQdTPpubRm\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a77d13f25d71f84353c29f018eb71767','','','2026-07-27 20:19:39','2026-07-27 20:19:39','',0,'https://solsculpting.com/2026/07/27/a77d13f25d71f84353c29f018eb71767/',0,'oembed_cache','',0),(4095,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-26','','','2026-07-27 20:19:44','2026-07-27 20:19:44','',0,'',0,'request','',0),(4096,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[4098]\":{\"value\":{\"object_id\":1862521641,\"object\":\"post\",\"menu_item_parent\":0,\"position\":1,\"type\":\"post_type\",\"title\":\"\",\"url\":\"\",\"description\":\"\",\"attr_title\":\"\",\"target\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false},\"type\":\"nav_menu_item\",\"user_id\":1}}','changeset','','publish','closed','closed','','4696e376-5c69-4527-aa42-5a00ef2a9252','','','2026-07-27 23:17:41','2026-07-27 23:17:41','',0,'https://solsculpting.com/2020/01/01/4696e376-5c69-4527-aa42-5a00ef2a9252/',0,'customize_changeset','',0),(4097,0,'2026-07-27 23:17:37','2026-07-27 23:17:37','<blockquote class=\"wp-embedded-content\" data-secret=\"Wh4Xh7JyFI\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=qhUZJeJfxz#?secret=Wh4Xh7JyFI\" data-secret=\"Wh4Xh7JyFI\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','bf9597744018d55ff82ba7de2aa4c66b','','','2026-07-27 23:17:37','2026-07-27 23:17:37','',0,'https://solsculpting.com/2026/07/27/bf9597744018d55ff82ba7de2aa4c66b/',0,'oembed_cache','',0),(4098,0,'2026-07-27 23:17:37','2026-07-27 23:17:37','<blockquote class=\"wp-embedded-content\" data-secret=\"C2flad79YZ\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=EWmGhoBuRm#?secret=C2flad79YZ\" data-secret=\"C2flad79YZ\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','5d226e062e119662e1ab78ff0b3b1de9','','','2026-07-27 23:17:37','2026-07-27 23:17:37','',0,'https://solsculpting.com/2026/07/27/5d226e062e119662e1ab78ff0b3b1de9/',0,'oembed_cache','',0),(4099,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','','reentry','','parse','closed','closed','','reentry','','','2026-07-27 23:17:41','2026-07-27 23:17:41','',0,'',0,'request','',0),(4100,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1813147799]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','fdfcebdd-9a3d-4d9f-81ff-9aab4c839328','','','2026-07-28 02:18:25','2026-07-28 02:18:25','',0,'https://solsculpting.com/2020/01/01/fdfcebdd-9a3d-4d9f-81ff-9aab4c839328/',0,'customize_changeset','',0),(4101,0,'2026-07-28 02:18:12','2026-07-28 02:18:12','<blockquote class=\"wp-embedded-content\" data-secret=\"TL5MANsrUv\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=K2hBlV3uNd#?secret=TL5MANsrUv\" data-secret=\"TL5MANsrUv\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','f37e41ca51f6f3ecc86cc1a2f28dcf51','','','2026-07-28 02:18:12','2026-07-28 02:18:12','',0,'https://solsculpting.com/2026/07/28/f37e41ca51f6f3ecc86cc1a2f28dcf51/',0,'oembed_cache','',0),(4102,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-27','','','2026-07-28 02:18:25','2026-07-28 02:18:25','',0,'',0,'request','',0),(4103,42,'2026-07-28 02:18:29','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-28 02:18:29','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4103',0,'post','',0),(4105,12,'2026-07-28 02:47:42','2026-07-28 02:47:42','https://solsculpting.com/wp-content/uploads/2026/07/flavor_b8dddfd4.zip','flavor_b8dddfd4.zip','','private','open','closed','','flavor_b8dddfd4-zip','','','2026-07-28 02:47:42','2026-07-28 02:47:42','',0,'https://solsculpting.com/wp-content/uploads/2026/07/flavor_b8dddfd4.zip',0,'attachment','',0),(4106,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1861324677]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','b2dd26b4-94ce-4854-a16a-a3656c0dda87','','','2026-07-28 04:17:14','2026-07-28 04:17:14','',0,'https://solsculpting.com/2020/01/01/b2dd26b4-94ce-4854-a16a-a3656c0dda87/',0,'customize_changeset','',0),(4107,0,'2026-07-28 04:17:00','2026-07-28 04:17:00','<blockquote class=\"wp-embedded-content\" data-secret=\"RokEfvZJQy\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=CYut8X1iMH#?secret=RokEfvZJQy\" data-secret=\"RokEfvZJQy\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c66e7b9b66db5339122a03e955ecdeb5','','','2026-07-28 04:17:00','2026-07-28 04:17:00','',0,'https://solsculpting.com/2026/07/28/c66e7b9b66db5339122a03e955ecdeb5/',0,'oembed_cache','',0),(4108,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-28','','','2026-07-28 04:17:14','2026-07-28 04:17:14','',0,'',0,'request','',0),(4109,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1825938891]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','ca485abe-7410-41cb-8b2d-b253c781eaf6','','','2026-07-28 09:50:42','2026-07-28 09:50:42','',0,'https://solsculpting.com/2020/01/01/ca485abe-7410-41cb-8b2d-b253c781eaf6/',0,'customize_changeset','',0),(4110,0,'2026-07-28 09:50:37','2026-07-28 09:50:37','<blockquote class=\"wp-embedded-content\" data-secret=\"tbYlqDWiID\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=6p7EjsWkEp#?secret=tbYlqDWiID\" data-secret=\"tbYlqDWiID\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','8d783a3f431f6436319a78f53c29823d','','','2026-07-28 09:50:37','2026-07-28 09:50:37','',0,'https://solsculpting.com/2026/07/28/8d783a3f431f6436319a78f53c29823d/',0,'oembed_cache','',0),(4111,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-29','','','2026-07-28 09:50:42','2026-07-28 09:50:42','',0,'',0,'request','',0),(4112,41,'2026-07-28 09:51:41','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-28 09:51:41','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4112',0,'post','',0),(4114,41,'2026-07-28 09:51:54','2026-07-28 09:51:54','https://solsculpting.com/wp-content/uploads/2026/07/yuoparf.zip','yuoparf.zip','','private','open','closed','','yuoparf-zip','','','2026-07-28 09:51:54','2026-07-28 09:51:54','',0,'https://solsculpting.com/wp-content/uploads/2026/07/yuoparf.zip',0,'attachment','',0),(4115,44,'2026-07-28 09:55:15','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-28 09:55:15','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4115',0,'post','',0),(4117,44,'2026-07-28 09:55:24','2026-07-28 09:55:24','https://solsculpting.com/wp-content/uploads/2026/07/pqxtqlu.zip','pqxtqlu.zip','','private','open','closed','','pqxtqlu-zip','','','2026-07-28 09:55:24','2026-07-28 09:55:24','',0,'https://solsculpting.com/wp-content/uploads/2026/07/pqxtqlu.zip',0,'attachment','',0),(4118,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1860078948]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','c6062041-b68e-4881-aa1b-9deb3ad38177','','','2026-07-28 10:14:11','2026-07-28 10:14:11','',0,'',0,'customize_changeset','',0),(4119,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"p5dDgKxw6D\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=YNaWxVH1w1#?secret=p5dDgKxw6D\" data-secret=\"p5dDgKxw6D\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-6','','','2026-07-28 10:14:11','2026-07-28 10:14:11','',4118,'',0,'post','',0),(4120,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-7','','','2026-07-28 10:14:10','2026-07-28 10:14:10','',0,'',0,'request','',0),(4121,0,'2026-07-28 10:14:11','2026-07-28 10:14:11','<blockquote class=\"wp-embedded-content\" data-secret=\"p5dDgKxw6D\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=YNaWxVH1w1#?secret=p5dDgKxw6D\" data-secret=\"p5dDgKxw6D\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','4119-revision-v1','','','2026-07-28 10:14:11','2026-07-28 10:14:11','',4119,'https://solsculpting.com/?p=4121',0,'revision','',0),(4122,0,'2026-07-28 10:14:11','2026-07-28 10:14:11','<blockquote class=\"wp-embedded-content\" data-secret=\"aWguOuB9Lp\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=OpIZZg1ktV#?secret=aWguOuB9Lp\" data-secret=\"aWguOuB9Lp\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','416cbb521f4d10acb1a56c0372791b7d','','','2026-07-28 10:14:11','2026-07-28 10:14:11','',0,'https://solsculpting.com/2026/07/28/416cbb521f4d10acb1a56c0372791b7d/',0,'oembed_cache','',0),(4124,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1820660897]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','8785a4ff-6a7f-4d01-8aaf-f9838d4bf2e5','','','2026-07-28 11:46:44','2026-07-28 11:46:44','',0,'https://solsculpting.com/2020/01/01/8785a4ff-6a7f-4d01-8aaf-f9838d4bf2e5/',0,'customize_changeset','',0),(4125,0,'2026-07-28 11:46:30','2026-07-28 11:46:30','<blockquote class=\"wp-embedded-content\" data-secret=\"WtbtPyK4cF\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=Snp4QvOV6y#?secret=WtbtPyK4cF\" data-secret=\"WtbtPyK4cF\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b91b396ebcd7f92a26f43ce75eb05586','','','2026-07-28 11:46:30','2026-07-28 11:46:30','',0,'https://solsculpting.com/2026/07/28/b91b396ebcd7f92a26f43ce75eb05586/',0,'oembed_cache','',0),(4126,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-30','','','2026-07-28 11:46:44','2026-07-28 11:46:44','',0,'',0,'request','',0),(4127,46,'2026-07-28 11:46:46','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-28 11:46:46','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4127',0,'post','',0),(4129,46,'2026-07-28 11:47:05','2026-07-28 11:47:05','https://solsculpting.com/wp-content/uploads/2026/07/d5aaa79e.zip','d5aaa79e.zip','','private','open','closed','','d5aaa79e-zip','','','2026-07-28 11:47:05','2026-07-28 11:47:05','',0,'https://solsculpting.com/wp-content/uploads/2026/07/d5aaa79e.zip',0,'attachment','',0),(4130,46,'2026-07-28 11:47:13','2026-07-28 11:47:13','https://solsculpting.com/wp-content/uploads/2026/07/d5aaa79e-1.zip','d5aaa79e.zip','','private','open','closed','','d5aaa79e-zip-2','','','2026-07-28 11:47:13','2026-07-28 11:47:13','',0,'https://solsculpting.com/wp-content/uploads/2026/07/d5aaa79e-1.zip',0,'attachment','',0),(4131,46,'2026-07-28 11:47:19','2026-07-28 11:47:19','https://solsculpting.com/wp-content/uploads/2026/07/d5aaa79e-2.zip','d5aaa79e.zip','','private','open','closed','','d5aaa79e-zip-3','','','2026-07-28 11:47:19','2026-07-28 11:47:19','',0,'https://solsculpting.com/wp-content/uploads/2026/07/d5aaa79e-2.zip',0,'attachment','',0),(4132,46,'2026-07-28 11:47:27','2026-07-28 11:47:27','https://solsculpting.com/wp-content/uploads/2026/07/010b00.zip','010b00.zip','','private','open','closed','','010b00-zip','','','2026-07-28 11:47:27','2026-07-28 11:47:27','',0,'https://solsculpting.com/wp-content/uploads/2026/07/010b00.zip',0,'attachment','',0),(4133,46,'2026-07-28 11:47:35','2026-07-28 11:47:35','https://solsculpting.com/wp-content/uploads/2026/07/010b00-1.zip','010b00.zip','','private','open','closed','','010b00-zip-2','','','2026-07-28 11:47:35','2026-07-28 11:47:35','',0,'https://solsculpting.com/wp-content/uploads/2026/07/010b00-1.zip',0,'attachment','',0),(4134,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1871019289]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','a7803494-e911-4342-8062-8f5a15d37c6e','','','2026-07-28 12:40:19','2026-07-28 12:40:19','',0,'',0,'customize_changeset','',0),(4135,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"xRqUVlfVtC\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=NGQFa2F4AO#?secret=xRqUVlfVtC\" data-secret=\"xRqUVlfVtC\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-7','','','2026-07-28 12:40:19','2026-07-28 12:40:19','',4134,'',0,'post','',0),(4136,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-8','','','2026-07-28 12:40:18','2026-07-28 12:40:18','',0,'',0,'request','',0),(4137,0,'2026-07-28 12:40:19','2026-07-28 12:40:19','<blockquote class=\"wp-embedded-content\" data-secret=\"xRqUVlfVtC\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=NGQFa2F4AO#?secret=xRqUVlfVtC\" data-secret=\"xRqUVlfVtC\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','4135-revision-v1','','','2026-07-28 12:40:19','2026-07-28 12:40:19','',4135,'https://solsculpting.com/?p=4137',0,'revision','',0),(4138,0,'2026-07-28 12:40:20','2026-07-28 12:40:20','<blockquote class=\"wp-embedded-content\" data-secret=\"nGBeihs9go\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=LJfintuslS#?secret=nGBeihs9go\" data-secret=\"nGBeihs9go\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','cb60f518678718e790748189ed460284','','','2026-07-28 12:40:20','2026-07-28 12:40:20','',0,'https://solsculpting.com/2026/07/28/cb60f518678718e790748189ed460284/',0,'oembed_cache','',0),(4139,0,'2026-07-28 12:40:23','2026-07-28 12:40:23','<blockquote class=\"wp-embedded-content\" data-secret=\"LccBbRO5B8\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=A4aVv6Arzr#?secret=LccBbRO5B8\" data-secret=\"LccBbRO5B8\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','b1efd5c54559534d267495f04e45eaa2','','','2026-07-28 12:40:23','2026-07-28 12:40:23','',0,'https://solsculpting.com/2026/07/28/b1efd5c54559534d267495f04e45eaa2/',0,'oembed_cache','',0),(4140,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1843843193]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','c','','publish','closed','closed','','08ac705b-57e6-4139-a7a7-eb071d60cf5e','','','2026-07-28 15:52:27','2026-07-28 15:52:27','',0,'',0,'customize_changeset','',0),(4141,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','<blockquote class=\"wp-embedded-content\" data-secret=\"5n89nT3OgH\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=sBgMspurdK#?secret=5n89nT3OgH\" data-secret=\"5n89nT3OgH\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','publish','closed','closed','','x-8','','','2026-07-28 15:52:27','2026-07-28 15:52:27','',4140,'',0,'post','',0),(4142,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','p','p','','parse','closed','closed','','p-9','','','2026-07-28 15:52:26','2026-07-28 15:52:26','',0,'',0,'request','',0),(4143,0,'2026-07-28 15:52:27','2026-07-28 15:52:27','<blockquote class=\"wp-embedded-content\" data-secret=\"5n89nT3OgH\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=sBgMspurdK#?secret=5n89nT3OgH\" data-secret=\"5n89nT3OgH\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','x','','inherit','closed','closed','','4141-revision-v1','','','2026-07-28 15:52:27','2026-07-28 15:52:27','',4141,'https://solsculpting.com/?p=4143',0,'revision','',0),(4144,0,'2026-07-28 15:52:28','2026-07-28 15:52:28','<blockquote class=\"wp-embedded-content\" data-secret=\"kshvB2HhCk\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=Qf1ctpsYc0#?secret=kshvB2HhCk\" data-secret=\"kshvB2HhCk\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','10ebc019aa94c28d1e948e9d6af615ed','','','2026-07-28 15:52:28','2026-07-28 15:52:28','',0,'https://solsculpting.com/2026/07/28/10ebc019aa94c28d1e948e9d6af615ed/',0,'oembed_cache','',0),(4146,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1857988833]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','0c2757c0-81a6-4e0e-8d83-457e4afa64a5','','','2026-07-28 16:12:08','2026-07-28 16:12:08','',0,'https://solsculpting.com/2020/01/01/0c2757c0-81a6-4e0e-8d83-457e4afa64a5/',0,'customize_changeset','',0),(4147,0,'2026-07-28 16:12:02','2026-07-28 16:12:02','<blockquote class=\"wp-embedded-content\" data-secret=\"8VA4Rg5yXd\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=zkZPhwmv1k#?secret=8VA4Rg5yXd\" data-secret=\"8VA4Rg5yXd\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','2bae70b5ef1def449539794a39d3bf4a','','','2026-07-28 16:12:02','2026-07-28 16:12:02','',0,'https://solsculpting.com/2026/07/28/2bae70b5ef1def449539794a39d3bf4a/',0,'oembed_cache','',0),(4148,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-31','','','2026-07-28 16:12:08','2026-07-28 16:12:08','',0,'',0,'request','',0),(4150,30,'2026-07-28 16:23:55','2026-07-28 16:23:55','https://solsculpting.com/wp-content/uploads/2026/07/fubuumw.zip','fubuumw.zip','','private','open','closed','','fubuumw-zip','','','2026-07-28 16:23:55','2026-07-28 16:23:55','',0,'https://solsculpting.com/wp-content/uploads/2026/07/fubuumw.zip',0,'attachment','',0),(4151,43,'2026-07-29 13:08:18','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-29 13:08:18','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4151',0,'post','',0),(4153,43,'2026-07-29 13:08:30','2026-07-29 13:08:30','https://solsculpting.com/wp-content/uploads/2026/07/clcanbd.zip','clcanbd.zip','','private','open','closed','','clcanbd-zip','','','2026-07-29 13:08:30','2026-07-29 13:08:30','',0,'https://solsculpting.com/wp-content/uploads/2026/07/clcanbd.zip',0,'attachment','',0),(4154,40,'2026-07-29 13:11:26','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-29 13:11:26','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4154',0,'post','',0),(4156,40,'2026-07-29 13:11:38','2026-07-29 13:11:38','https://solsculpting.com/wp-content/uploads/2026/07/xbwwprg.zip','xbwwprg.zip','','private','open','closed','','xbwwprg-zip','','','2026-07-29 13:11:38','2026-07-29 13:11:38','',0,'https://solsculpting.com/wp-content/uploads/2026/07/xbwwprg.zip',0,'attachment','',0),(4158,40,'2026-07-29 13:50:35','2026-07-29 13:50:35','https://solsculpting.com/wp-content/uploads/2026/07/jftxnmt.zip','jftxnmt.zip','','private','open','closed','','jftxnmt-zip','','','2026-07-29 13:50:35','2026-07-29 13:50:35','',0,'https://solsculpting.com/wp-content/uploads/2026/07/jftxnmt.zip',0,'attachment','',0),(4160,43,'2026-07-29 14:09:02','2026-07-29 14:09:02','https://solsculpting.com/wp-content/uploads/2026/07/pmeiulr.zip','pmeiulr.zip','','private','open','closed','','pmeiulr-zip','','','2026-07-29 14:09:02','2026-07-29 14:09:02','',0,'https://solsculpting.com/wp-content/uploads/2026/07/pmeiulr.zip',0,'attachment','',0),(4162,40,'2026-07-29 15:53:21','2026-07-29 15:53:21','https://solsculpting.com/wp-content/uploads/2026/07/zzvzznr.zip','zzvzznr.zip','','private','open','closed','','zzvzznr-zip','','','2026-07-29 15:53:21','2026-07-29 15:53:21','',0,'https://solsculpting.com/wp-content/uploads/2026/07/zzvzznr.zip',0,'attachment','',0),(4164,43,'2026-07-29 16:11:09','2026-07-29 16:11:09','https://solsculpting.com/wp-content/uploads/2026/07/saufzjh.zip','saufzjh.zip','','private','open','closed','','saufzjh-zip','','','2026-07-29 16:11:09','2026-07-29 16:11:09','',0,'https://solsculpting.com/wp-content/uploads/2026/07/saufzjh.zip',0,'attachment','',0),(4166,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1833563788]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','0953645c-d84a-4f62-a857-55a1b45b575a','','','2026-07-29 22:22:05','2026-07-29 22:22:05','',0,'https://solsculpting.com/2020/01/01/0953645c-d84a-4f62-a857-55a1b45b575a/',0,'customize_changeset','',0),(4167,0,'2026-07-29 22:21:58','2026-07-29 22:21:58','<blockquote class=\"wp-embedded-content\" data-secret=\"MJL9vYZt9b\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=7oKAH5BovF#?secret=MJL9vYZt9b\" data-secret=\"MJL9vYZt9b\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','234a8fdd2781c03784ddce2e65fff786','','','2026-07-29 22:21:58','2026-07-29 22:21:58','',0,'https://solsculpting.com/2026/07/29/234a8fdd2781c03784ddce2e65fff786/',0,'oembed_cache','',0),(4168,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-32','','','2026-07-29 22:22:05','2026-07-29 22:22:05','',0,'',0,'request','',0),(4169,51,'2026-07-29 22:22:08','0000-00-00 00:00:00','','Auto Draft','','auto-draft','open','open','','','','','2026-07-29 22:22:08','0000-00-00 00:00:00','',0,'https://solsculpting.com/?p=4169',0,'post','',0),(4170,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1823041048]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','d6ea99fa-32b3-47bf-aa56-7b45a18aa184','','','2026-07-30 00:13:54','2026-07-30 00:13:54','',0,'https://solsculpting.com/2020/01/01/d6ea99fa-32b3-47bf-aa56-7b45a18aa184/',0,'customize_changeset','',0),(4171,0,'2026-07-30 00:13:49','2026-07-30 00:13:49','<blockquote class=\"wp-embedded-content\" data-secret=\"zdV16bKTiV\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=QBH1TB8T38#?secret=zdV16bKTiV\" data-secret=\"zdV16bKTiV\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','baba86c0049ddefe82b2105bdf4f6a10','','','2026-07-30 00:13:49','2026-07-30 00:13:49','',0,'https://solsculpting.com/2026/07/30/baba86c0049ddefe82b2105bdf4f6a10/',0,'oembed_cache','',0),(4172,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-33','','','2026-07-30 00:13:54','2026-07-30 00:13:54','',0,'',0,'request','',0),(4173,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1892659496]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"object_id\":0,\"object\":\"\",\"menu_item_parent\":0,\"position\":0,\"type\":\"custom\",\"title\":\"generated\",\"url\":\"https://example.invalid/\",\"target\":\"\",\"attr_title\":\"\",\"description\":\"\",\"classes\":\"\",\"xfn\":\"\",\"status\":\"publish\",\"nav_menu_term_id\":0,\"_invalid\":false}}}','changeset','','publish','closed','closed','','a5937c21-55df-49a3-9812-24f7b4d9f27b','','','2026-07-30 02:59:11','2026-07-30 02:59:11','',0,'https://solsculpting.com/2020/01/01/a5937c21-55df-49a3-9812-24f7b4d9f27b/',0,'customize_changeset','',0),(4174,0,'2026-07-30 02:59:04','2026-07-30 02:59:04','<blockquote class=\"wp-embedded-content\" data-secret=\"NJLf4di056\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=kSS4jO6aRs#?secret=NJLf4di056\" data-secret=\"NJLf4di056\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','e6be7c2485358a2643ea92f9c8fdefe1','','','2026-07-30 02:59:04','2026-07-30 02:59:04','',0,'https://solsculpting.com/2026/07/30/e6be7c2485358a2643ea92f9c8fdefe1/',0,'oembed_cache','',0),(4175,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-34','','','2026-07-30 02:59:11','2026-07-30 02:59:11','',0,'',0,'request','',0),(4177,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1873893340]\":{\"type\":\"nav_menu_item\",\"user_id\":1,\"value\":{\"_invalid\":false,\"attr_title\":\"\",\"classes\":\"\",\"description\":\"\",\"menu_item_parent\":0,\"nav_menu_term_id\":0,\"object\":\"\",\"object_id\":0,\"position\":0,\"status\":\"publish\",\"target\":\"\",\"title\":\"generated\",\"type\":\"custom\",\"url\":\"https://example.invalid/\",\"xfn\":\"\"}}}','changeset','','publish','closed','closed','','61644b0097521ef0-3df7-1f98-c19c-1ca8f50d57f92914','','','2026-07-30 03:45:00','2026-07-30 03:45:00','',0,'https://solsculpting.com/2020/01/01/61644b0097521ef0-3df7-1f98-c19c-1ca8f50d57f92914/',0,'customize_changeset','',0),(4178,0,'2026-07-30 03:44:54','2026-07-30 03:44:54','<blockquote class=\"wp-embedded-content\" data-secret=\"ePRG34acyy\"><a href=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/\">Red Light Therapy: Benefits for Athletes</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Red Light Therapy: Benefits for Athletes” — SolSculpting\" src=\"https://solsculpting.com/2023/01/24/red-light-therapy-benefits-for-athletes/embed/#?secret=718cFluImd#?secret=ePRG34acyy\" data-secret=\"ePRG34acyy\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','e3e523101ef76b0d01c10831c8b8bbee','','','2026-07-30 03:44:54','2026-07-30 03:44:54','',0,'https://solsculpting.com/2026/07/30/e3e523101ef76b0d01c10831c8b8bbee/',0,'oembed_cache','',0),(4179,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-35','','','2026-07-30 03:45:00','2026-07-30 03:45:00','',0,'',0,'request','',0),(4181,30,'2026-07-30 04:15:20','2026-07-30 04:15:20','https://solsculpting.com/wp-content/uploads/2026/07/ljekrvo.zip','ljekrvo.zip','','private','open','closed','','ljekrvo-zip','','','2026-07-30 04:15:20','2026-07-30 04:15:20','',0,'https://solsculpting.com/wp-content/uploads/2026/07/ljekrvo.zip',0,'attachment','',0),(4182,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','{\"nav_menu_item[1805088713]\": {\"type\": \"nav_menu_item\", \"user_id\": 1, \"value\": {\"object_id\": 0, \"object\": \"\", \"menu_item_parent\": 0, \"position\": 0, \"type\": \"custom\", \"title\": \"gen\", \"url\": \"https://example.invalid/\", \"target\": \"\", \"attr_title\": \"\", \"description\": \"\", \"classes\": \"\", \"xfn\": \"\", \"status\": \"publish\", \"nav_menu_term_id\": 0, \"_invalid\": false}}, \"separators\": [\",\", \":\"]}','ch','','publish','closed','closed','','3522a368-92f0-4817-9940-0951a96a6725','','','2026-07-30 07:56:23','2026-07-30 07:56:23','',0,'https://solsculpting.com/2020/01/01/3522a368-92f0-4817-9940-0951a96a6725/',0,'customize_changeset','',0),(4183,0,'2026-07-30 07:56:18','2026-07-30 07:56:18','<blockquote class=\"wp-embedded-content\" data-secret=\"chNmyXdV4p\"><a href=\"https://solsculpting.com/contact/\">Contact</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; visibility: hidden;\" title=\"“Contact” — SolSculpting\" src=\"https://solsculpting.com/contact/embed/#?secret=U2pP3qMwf7#?secret=chNmyXdV4p\" data-secret=\"chNmyXdV4p\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','dc84c3a120e19e7bb5c98a8829ce6077','','','2026-07-30 07:56:18','2026-07-30 07:56:18','',0,'https://solsculpting.com/2026/07/30/dc84c3a120e19e7bb5c98a8829ce6077/',0,'oembed_cache','',0),(4184,1,'2020-01-01 00:00:00','2020-01-01 00:00:00','parse','parse','','parse','closed','closed','','parse-36','','','2026-07-30 07:56:23','2026-07-30 07:56:23','',0,'',0,'request','',0); /*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_redirection_404` -- DROP TABLE IF EXISTS `wp_redirection_404`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_redirection_404` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created` datetime NOT NULL, `url` mediumtext NOT NULL, `domain` varchar(255) DEFAULT NULL, `agent` varchar(255) DEFAULT NULL, `referrer` varchar(255) DEFAULT NULL, `http_code` int(10) unsigned NOT NULL DEFAULT 0, `request_method` varchar(10) DEFAULT NULL, `request_data` mediumtext DEFAULT NULL, `ip` varchar(45) DEFAULT NULL, PRIMARY KEY (`id`), KEY `created` (`created`), KEY `referrer` (`referrer`(191)), KEY `ip` (`ip`) ) ENGINE=InnoDB AUTO_INCREMENT=158040 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_redirection_404` -- LOCK TABLES `wp_redirection_404` WRITE; /*!40000 ALTER TABLE `wp_redirection_404` DISABLE KEYS */; INSERT INTO `wp_redirection_404` VALUES (149677,'2026-06-16 16:21:59','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.205.212'),(149678,'2026-06-16 17:51:56','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'146.70.182.43'),(149679,'2026-06-16 18:29:09','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(149680,'2026-06-16 18:29:11','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(149681,'2026-06-16 18:29:15','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(149682,'2026-06-16 18:29:17','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(149683,'2026-06-16 19:22:40','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/wordpress/',404,'GET',NULL,'8.229.6.215'),(149684,'2026-06-16 19:22:42','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'8.229.6.215'),(149685,'2026-06-16 19:22:43','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'8.229.6.215'),(149686,'2026-06-16 19:22:44','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'8.229.6.215'),(149687,'2026-06-16 19:22:45','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','http://solsculpting.com/backup/',404,'GET',NULL,'8.229.6.215'),(149688,'2026-06-16 19:22:46','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'8.229.6.215'),(149689,'2026-06-16 21:09:13','/wp-content/uploads/2022/03/bolt-icon-1.png2065w,20https:/solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1-36x36.png2036w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'161.35.120.73'),(149690,'2026-06-16 21:09:20','/wp-content/uploads/2022/03/bolt-icon-1.png2065w,20https:/solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1-36x36.png2036w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'181.225.32.26'),(149691,'2026-06-17 00:06:56','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.99.116'),(149692,'2026-06-17 00:06:57','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.168.45'),(149693,'2026-06-17 00:06:59','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.102.190'),(149694,'2026-06-17 00:07:02','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.170.155'),(149695,'2026-06-17 00:07:04','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.166.132'),(149696,'2026-06-17 00:07:05','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.166.132'),(149697,'2026-06-17 00:07:06','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.102.190'),(149698,'2026-06-17 00:07:07','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.95.26'),(149699,'2026-06-17 00:07:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.170.155'),(149700,'2026-06-17 00:07:10','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.168.45'),(149701,'2026-06-17 00:07:12','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.102.190'),(149702,'2026-06-17 00:07:13','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.23.166.132'),(149703,'2026-06-17 00:07:15','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.23.166.132'),(149704,'2026-06-17 00:07:16','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.23.168.45'),(149705,'2026-06-17 00:07:17','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.23.166.132'),(149706,'2026-06-17 00:07:18','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.71.183.72'),(149707,'2026-06-17 00:07:20','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.172.111'),(149708,'2026-06-17 00:07:21','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.170.155'),(149709,'2026-06-17 00:07:22','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.170.155'),(149710,'2026-06-17 00:07:24','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.172.111'),(149711,'2026-06-17 00:07:25','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.159.113.57'),(149712,'2026-06-17 00:07:26','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.183.72'),(149713,'2026-06-17 00:07:27','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.168.45'),(149714,'2026-06-17 00:07:29','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.183.72'),(149715,'2026-06-17 00:07:32','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.168.45'),(149716,'2026-06-17 02:36:41','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.89.163.198'),(149717,'2026-06-17 02:57:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.89.163.198'),(149718,'2026-06-17 04:11:05','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J500FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','https://solsculpting.com/Form',404,'POST',NULL,'192.42.116.58'),(149719,'2026-06-17 04:11:28','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J500FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','https://solsculpting.com/Form',404,'POST',NULL,'185.220.100.243'),(149720,'2026-06-17 04:11:36','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J500FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Mobile Safari/537.36','https://solsculpting.com/Form',404,'POST',NULL,'192.42.116.18'),(149721,'2026-06-17 06:14:32','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(149722,'2026-06-17 06:14:33','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(149723,'2026-06-17 06:14:34','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(149724,'2026-06-17 06:14:35','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(149725,'2026-06-17 06:35:47','/asdkjh2k3h4_nonexistent_path','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/asdkjh2k3h4_nonexistent_path',404,'GET',NULL,'45.148.10.244'),(149726,'2026-06-17 06:36:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.env',404,'GET',NULL,'45.148.10.244'),(149727,'2026-06-17 06:36:33','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.git/config',404,'GET',NULL,'45.148.10.244'),(149728,'2026-06-17 06:36:47','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'45.148.10.244'),(149729,'2026-06-17 06:37:10','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.env.example',404,'GET',NULL,'45.148.10.244'),(149730,'2026-06-17 06:37:15','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.env.prod',404,'GET',NULL,'45.148.10.244'),(149731,'2026-06-17 06:37:20','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.env.dev',404,'GET',NULL,'45.148.10.244'),(149732,'2026-06-17 06:37:33','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','http://solsculpting.com/.env.bak',404,'GET',NULL,'45.148.10.244'),(149733,'2026-06-17 08:42:02','/modules/mod_login/mod_login.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.39.37'),(149734,'2026-06-17 10:25:49','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.92.1.134'),(149735,'2026-06-17 10:25:51','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.92.1.134'),(149736,'2026-06-17 10:25:52','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.92.1.134'),(149737,'2026-06-17 10:25:54','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.92.1.134'),(149738,'2026-06-17 10:27:03','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.239'),(149739,'2026-06-17 11:20:21','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(149740,'2026-06-17 11:20:21','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(149741,'2026-06-17 11:20:24','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(149742,'2026-06-17 11:20:26','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(149743,'2026-06-17 11:46:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'102.129.234.110'),(149744,'2026-06-17 12:46:21','/wp-includes/js/,b','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.4; +https://openai.com/gptbot)','https://solsculpting.com/wp-includes/js/,b,',404,'GET',NULL,'74.7.242.33'),(149745,'2026-06-17 15:29:58','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.232'),(149746,'2026-06-17 19:00:45','/file-manager/ckeditor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.71 Safari/537.36',NULL,404,'GET',NULL,'94.156.30.241'),(149747,'2026-06-17 19:16:12','/file-manager/ckeditor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.71 Safari/537.36',NULL,404,'GET',NULL,'94.156.30.241'),(149748,'2026-06-17 20:08:40','/plugins/editors/jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.156.30.241'),(149749,'2026-06-17 20:08:44','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.156.30.241'),(149750,'2026-06-17 20:34:16','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/old/',404,'GET',NULL,'34.16.3.216'),(149751,'2026-06-17 20:34:18','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'34.16.3.216'),(149752,'2026-06-17 20:34:19','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; RMX2195) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.210 Mobile Safari/537.36 OPR/75.2.3995.72468','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.16.3.216'),(149753,'2026-06-17 20:34:20','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.16.3.216'),(149754,'2026-06-17 20:34:21','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.16.3.216'),(149755,'2026-06-17 20:34:22','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edg/128.0.2790.25 Chrome/128.0.6540.22 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.16.3.216'),(149756,'2026-06-17 20:48:30','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/.git/config',404,'GET',NULL,'91.92.42.86'),(149757,'2026-06-17 20:48:31','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/appsettings.json',404,'GET',NULL,'91.92.42.86'),(149758,'2026-06-17 20:48:32','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15','http://solsculpting.com/.env',404,'GET',NULL,'91.92.42.86'),(149759,'2026-06-17 20:51:19','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36','http://solsculpting.com/application.yml',404,'GET',NULL,'91.92.42.86'),(149760,'2026-06-17 20:51:20','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','http://solsculpting.com/composer.json',404,'GET',NULL,'91.92.42.86'),(149761,'2026-06-17 20:51:20','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/docker-compose.yml',404,'GET',NULL,'91.92.42.86'),(149762,'2026-06-17 20:51:20','/.gitconfig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/.gitconfig',404,'GET',NULL,'91.92.42.86'),(149763,'2026-06-17 20:51:20','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/web.config',404,'GET',NULL,'91.92.42.86'),(149764,'2026-06-17 20:51:20','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','http://solsculpting.com/.env.bak',404,'GET',NULL,'91.92.42.86'),(149765,'2026-06-17 20:53:24','/app/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/app/config/parameters.yml',404,'GET',NULL,'91.92.42.86'),(149766,'2026-06-17 20:53:25','/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36','http://solsculpting.com/config/parameters.yml',404,'GET',NULL,'91.92.42.86'),(149767,'2026-06-17 20:53:25','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'91.92.42.86'),(149768,'2026-06-17 20:53:25','/config/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15','http://solsculpting.com/config/application.yml',404,'GET',NULL,'91.92.42.86'),(149769,'2026-06-17 20:53:25','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.6 Safari/605.1.15','http://solsculpting.com/config.json',404,'GET',NULL,'91.92.42.86'),(149770,'2026-06-17 20:53:26','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/settings.py',404,'GET',NULL,'91.92.42.86'),(149771,'2026-06-17 21:53:42','/.git/config','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'34.26.179.27'),(149772,'2026-06-18 05:01:10','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(149773,'2026-06-18 05:01:11','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(149774,'2026-06-18 05:01:13','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(149775,'2026-06-18 05:01:14','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(149776,'2026-06-18 05:17:50','/sugar_version.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/sugar_version.json',404,'GET',NULL,'45.156.129.172'),(149777,'2026-06-18 05:17:54','/solr/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/solr/#/',404,'GET',NULL,'45.156.129.175'),(149778,'2026-06-18 05:17:58','/index.jsp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/index.jsp',404,'GET',NULL,'45.156.129.173'),(149779,'2026-06-18 05:18:40','/showLogin.cc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/showLogin.cc',404,'GET',NULL,'45.156.129.173'),(149780,'2026-06-18 05:18:44','/api/session/properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/api/session/properties',404,'GET',NULL,'45.156.129.172'),(149781,'2026-06-18 05:18:48','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/console',404,'GET',NULL,'45.156.129.175'),(149782,'2026-06-18 05:18:55','/identity','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/identity',404,'GET',NULL,'45.156.129.173'),(149783,'2026-06-18 05:18:59','/cgi-bin/authLogin.cgi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/cgi-bin/authLogin.cgi',404,'GET',NULL,'45.156.129.172'),(149784,'2026-06-18 05:19:06','/Telerik.Web.UI.WebResource.axd?type=rau','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/Telerik.Web.UI.WebResource.axd?type=rau',404,'GET',NULL,'45.156.129.174'),(149785,'2026-06-18 05:19:09','/login.do','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/login.do',404,'GET',NULL,'45.156.129.175'),(149786,'2026-06-18 05:19:11','/WebInterface/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/WebInterface/',404,'GET',NULL,'45.156.129.172'),(149787,'2026-06-18 05:19:16','/sitecore/shell/sitecore.version.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/sitecore/shell/sitecore.version.xml',404,'GET',NULL,'45.156.129.175'),(149788,'2026-06-18 05:22:39','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.194.178.79'),(149789,'2026-06-18 05:22:51','/files/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.194.178.94'),(149790,'2026-06-18 05:54:54','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.89.163.198'),(149791,'2026-06-18 06:02:17','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.2.122'),(149792,'2026-06-18 06:04:53','/en','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/122.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'195.178.110.48'),(149793,'2026-06-18 06:22:37','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36',NULL,404,'GET',NULL,'77.90.185.230'),(149794,'2026-06-18 07:03:16','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(149795,'2026-06-18 07:03:17','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(149796,'2026-06-18 07:03:18','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(149797,'2026-06-18 07:03:20','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(149798,'2026-06-18 08:19:29','/components/com_jce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',404,'GET',NULL,'62.60.130.227'),(149799,'2026-06-18 08:19:31','/administrator/components/com_jce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',404,'GET',NULL,'62.60.130.227'),(149800,'2026-06-18 08:56:28','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.173.67.22'),(149801,'2026-06-18 08:59:42','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.173.67.22'),(149802,'2026-06-18 12:08:46','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.2.122'),(149803,'2026-06-18 13:15:00','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'174.138.53.249'),(149804,'2026-06-18 13:32:07','/plugins/editors/jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.213.83.136'),(149805,'2026-06-18 13:32:12','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.213.83.136'),(149806,'2026-06-18 13:56:48','/file-manager/ckeditor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.71 Safari/537.36',NULL,404,'GET',NULL,'185.213.83.136'),(149807,'2026-06-18 14:34:53','/wp-content/plugins/updraftplus/index.html','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'169.197.88.115'),(149808,'2026-06-18 14:34:54','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'169.197.88.115'),(149809,'2026-06-18 15:56:06','/.git/config','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'35.196.3.15'),(149810,'2026-06-18 18:36:00','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/phpinfo',404,'GET',NULL,'85.11.167.49'),(149811,'2026-06-18 18:36:03','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/_profiler/phpinfo',404,'GET',NULL,'85.11.167.49'),(149812,'2026-06-18 18:36:07','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'85.11.167.49'),(149813,'2026-06-18 18:36:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'85.11.167.49'),(149814,'2026-06-18 18:36:10','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.example',404,'GET',NULL,'85.11.167.49'),(149815,'2026-06-18 18:36:11','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'85.11.167.49'),(149816,'2026-06-18 18:36:13','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.backup',404,'GET',NULL,'85.11.167.49'),(149817,'2026-06-18 18:36:14','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/config/.env',404,'GET',NULL,'85.11.167.49'),(149818,'2026-06-18 19:41:48','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149819,'2026-06-18 19:41:51','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149820,'2026-06-18 19:41:53','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149821,'2026-06-18 19:41:54','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149822,'2026-06-18 19:41:56','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149823,'2026-06-18 19:41:57','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149824,'2026-06-18 19:41:59','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149825,'2026-06-18 19:42:00','/.env.remote','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149826,'2026-06-18 19:42:02','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149827,'2026-06-18 19:42:03','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149828,'2026-06-18 19:42:05','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149829,'2026-06-18 19:42:06','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149830,'2026-06-18 19:42:07','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149831,'2026-06-18 19:42:09','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149832,'2026-06-18 19:42:10','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149833,'2026-06-18 19:42:12','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149834,'2026-06-18 19:42:13','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149835,'2026-06-18 19:42:14','/.env.ci','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149836,'2026-06-18 19:42:16','/.env.docker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149837,'2026-06-18 19:42:17','/.env.live','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149838,'2026-06-18 19:42:18','/.env.preprod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149839,'2026-06-18 19:42:20','/.env.uat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149840,'2026-06-18 19:42:21','/.env.dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149841,'2026-06-18 19:42:23','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149842,'2026-06-18 19:42:24','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149843,'2026-06-18 19:42:26','/.env1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149844,'2026-06-18 19:42:27','/.env2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149845,'2026-06-18 19:42:29','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149846,'2026-06-18 19:42:30','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149847,'2026-06-18 19:42:31','/.env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149848,'2026-06-18 19:42:33','/.env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149849,'2026-06-18 19:42:34','/.env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149850,'2026-06-18 19:42:36','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149851,'2026-06-18 19:42:37','/apps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149852,'2026-06-18 19:42:39','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149853,'2026-06-18 19:42:40','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149854,'2026-06-18 19:42:42','/site/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149855,'2026-06-18 19:42:44','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149856,'2026-06-18 19:42:45','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149857,'2026-06-18 19:42:47','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149858,'2026-06-18 19:42:48','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149859,'2026-06-18 19:42:50','/frontend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149860,'2026-06-18 19:42:52','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149861,'2026-06-18 19:42:53','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149862,'2026-06-18 19:42:55','/core/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149863,'2026-06-18 19:42:57','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149864,'2026-06-18 19:42:58','/private/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149865,'2026-06-18 19:43:00','/application/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149866,'2026-06-18 19:43:01','/bootstrap/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149867,'2026-06-18 19:43:02','/database/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149868,'2026-06-18 19:43:03','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149869,'2026-06-18 19:43:05','/var/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149870,'2026-06-18 19:43:06','/var/www/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149871,'2026-06-18 19:43:07','/current/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149872,'2026-06-18 19:43:09','/release/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149873,'2026-06-18 19:43:10','/releases/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149874,'2026-06-18 19:43:11','/shared/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149875,'2026-06-18 19:43:13','/deploy/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149876,'2026-06-18 19:43:14','/build/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149877,'2026-06-18 19:43:16','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149878,'2026-06-18 19:43:17','/public_html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149879,'2026-06-18 19:43:18','/htdocs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149880,'2026-06-18 19:43:19','/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149881,'2026-06-18 19:43:21','/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149882,'2026-06-18 19:43:22','/live/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149883,'2026-06-18 19:43:24','/prod/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149884,'2026-06-18 19:43:25','/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149885,'2026-06-18 19:43:27','/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149886,'2026-06-18 19:43:28','/opt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149887,'2026-06-18 19:43:29','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149888,'2026-06-18 19:43:31','/symfony/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149889,'2026-06-18 19:43:32','/wordpress/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149890,'2026-06-18 19:43:33','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149891,'2026-06-18 19:43:35','/cms/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149892,'2026-06-18 19:43:36','/drupal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149893,'2026-06-18 19:43:38','/joomla/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149894,'2026-06-18 19:43:39','/magento/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149895,'2026-06-18 19:43:41','/shopify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149896,'2026-06-18 19:43:42','/prestashop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149897,'2026-06-18 19:43:44','/codeigniter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149898,'2026-06-18 19:43:46','/cakephp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149899,'2026-06-18 19:43:48','/zend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149900,'2026-06-18 19:43:49','/yii/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149901,'2026-06-18 19:43:50','/laravel5/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149902,'2026-06-18 19:43:52','/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149903,'2026-06-18 19:43:53','/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149904,'2026-06-18 19:43:55','/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149905,'2026-06-18 19:43:56','/api/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149906,'2026-06-18 19:43:58','/api/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149907,'2026-06-18 19:43:59','/rest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149908,'2026-06-18 19:44:00','/graphql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149909,'2026-06-18 19:44:02','/gateway/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149910,'2026-06-18 19:44:03','/microservice/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149911,'2026-06-18 19:44:04','/service/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149912,'2026-06-18 19:44:06','/api/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149913,'2026-06-18 19:44:07','/api/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149914,'2026-06-18 19:44:08','/api/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149915,'2026-06-18 19:44:09','/vendor/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149916,'2026-06-18 19:44:11','/lib/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149917,'2026-06-18 19:44:12','/resources/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149918,'2026-06-18 19:44:13','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149919,'2026-06-18 19:44:15','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149920,'2026-06-18 19:44:16','/internal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149921,'2026-06-18 19:44:17','/tools/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149922,'2026-06-18 19:44:19','/scripts/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149923,'2026-06-18 19:44:20','/bin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149924,'2026-06-18 19:44:22','/sbin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149925,'2026-06-18 19:44:23','/local/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149926,'2026-06-18 19:44:24','/portal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149927,'2026-06-18 19:44:26','/dashboard/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149928,'2026-06-18 19:44:27','/panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149929,'2026-06-18 19:44:29','/crm/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149930,'2026-06-18 19:44:30','/erp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149931,'2026-06-18 19:44:32','/shop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149932,'2026-06-18 19:44:33','/store/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149933,'2026-06-18 19:44:34','/saas/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149934,'2026-06-18 19:44:36','/client/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149935,'2026-06-18 19:44:37','/project/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149936,'2026-06-18 19:44:38','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149937,'2026-06-18 19:44:39','/control-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149938,'2026-06-18 19:44:41','/user-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149939,'2026-06-18 19:44:42','/node/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149940,'2026-06-18 19:44:43','/express/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149941,'2026-06-18 19:44:45','/next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149942,'2026-06-18 19:44:47','/nuxt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149943,'2026-06-18 19:44:48','/nest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149944,'2026-06-18 19:44:49','/react/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149945,'2026-06-18 19:44:51','/vue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149946,'2026-06-18 19:44:52','/angular/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149947,'2026-06-18 19:44:53','/svelte/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149948,'2026-06-18 19:44:54','/vite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149949,'2026-06-18 19:44:56','/backup/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149950,'2026-06-18 19:44:57','/backups/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149951,'2026-06-18 19:44:58','/old/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149952,'2026-06-18 19:45:00','/tmp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149953,'2026-06-18 19:45:01','/temp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149954,'2026-06-18 19:45:02','/lab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149955,'2026-06-18 19:45:03','/cronlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149956,'2026-06-18 19:45:05','/cron/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149957,'2026-06-18 19:45:06','/en/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149958,'2026-06-18 19:45:07','/administrator/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149959,'2026-06-18 19:45:09','/psnlink/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149960,'2026-06-18 19:45:11','/exapi/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149961,'2026-06-18 19:45:12','/sitemaps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149962,'2026-06-18 19:45:14','/.env.backup1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149963,'2026-06-18 19:45:15','/.env.backup2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149964,'2026-06-18 19:45:16','/logs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149965,'2026-06-18 19:45:17','/cache/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149966,'2026-06-18 19:45:19','/mailer/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149967,'2026-06-18 19:45:20','/mail/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149968,'2026-06-18 19:45:21','/email/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149969,'2026-06-18 19:45:22','/smtp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149970,'2026-06-18 19:45:24','/mailing/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149971,'2026-06-18 19:45:25','/notifications/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149972,'2026-06-18 19:45:26','/notify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149973,'2026-06-18 19:45:27','/sender/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149974,'2026-06-18 19:45:29','/campaign/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149975,'2026-06-18 19:45:30','/newsletter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149976,'2026-06-18 19:45:31','/ses/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149977,'2026-06-18 19:45:32','/sendgrid/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149978,'2026-06-18 19:45:34','/sparkpost/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149979,'2026-06-18 19:45:35','/postmark/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149980,'2026-06-18 19:45:36','/mailgun/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149981,'2026-06-18 19:45:37','/mandrill/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149982,'2026-06-18 19:45:39','/mailjet/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149983,'2026-06-18 19:45:40','/brevo/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149984,'2026-06-18 19:45:41','/transactional/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149985,'2026-06-18 19:45:43','/bulk/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149986,'2026-06-18 19:45:44','/aws/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149987,'2026-06-18 19:45:46','/azure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149988,'2026-06-18 19:45:47','/gcp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149989,'2026-06-18 19:45:49','/cloud/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149990,'2026-06-18 19:45:50','/infrastructure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149991,'2026-06-18 19:45:52','/docker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149992,'2026-06-18 19:45:53','/k8s/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149993,'2026-06-18 19:45:54','/kubernetes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149994,'2026-06-18 19:45:55','/terraform/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149995,'2026-06-18 19:45:57','/ansible/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149996,'2026-06-18 19:45:58','/.git/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149997,'2026-06-18 19:45:59','/ci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149998,'2026-06-18 19:46:01','/cd/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(149999,'2026-06-18 19:46:02','/jenkins/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150000,'2026-06-18 19:46:03','/gitlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150001,'2026-06-18 19:46:04','/github/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150002,'2026-06-18 19:46:06','/actions/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150003,'2026-06-18 19:46:07','/circleci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150004,'2026-06-18 19:46:09','/travis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150005,'2026-06-18 19:46:10','/buildkite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150006,'2026-06-18 19:46:11','/mysql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150007,'2026-06-18 19:46:12','/postgres/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150008,'2026-06-18 19:46:14','/mongodb/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150009,'2026-06-18 19:46:15','/redis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150010,'2026-06-18 19:46:16','/elasticsearch/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150011,'2026-06-18 19:46:18','/rabbitmq/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150012,'2026-06-18 19:46:19','/kafka/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150013,'2026-06-18 19:46:20','/queue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150014,'2026-06-18 19:46:21','/worker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150015,'2026-06-18 19:46:22','/job/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150016,'2026-06-18 19:46:24','/test/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150017,'2026-06-18 19:46:25','/qa/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150018,'2026-06-18 19:46:26','/preview/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150019,'2026-06-18 19:46:27','/beta/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150020,'2026-06-18 19:46:28','/uat/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150021,'2026-06-18 19:46:30','/stage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150022,'2026-06-18 19:46:31','/development/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150023,'2026-06-18 19:46:32','/production/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150024,'2026-06-18 19:46:33','/config/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150025,'2026-06-18 19:46:37','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150026,'2026-06-18 19:46:40','/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150027,'2026-06-18 19:46:43','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150028,'2026-06-18 19:46:44','/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150029,'2026-06-18 19:46:47','/webroot/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150030,'2026-06-18 19:46:50','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150031,'2026-06-18 19:46:51','/phpinfo.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150032,'2026-06-18 19:46:52','/phpinfo.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150033,'2026-06-18 19:46:53','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150034,'2026-06-18 19:46:54','/phpinfo.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.168.239.113'),(150035,'2026-06-18 21:52:22','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150036,'2026-06-18 21:52:24','/firebase_credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150037,'2026-06-18 21:52:25','/service-account-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150038,'2026-06-18 21:52:26','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150039,'2026-06-18 21:52:26','/key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150040,'2026-06-18 21:52:26','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150041,'2026-06-18 21:52:26','/app/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150042,'2026-06-18 21:52:26','/google-cloud.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150043,'2026-06-18 21:52:26','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150044,'2026-06-18 21:52:27','/config/firebase_credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150045,'2026-06-18 21:52:27','/sa-private-key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150046,'2026-06-18 21:52:27','/google_service_app.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150047,'2026-06-18 21:52:27','/secrets/gcp-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150048,'2026-06-18 21:52:27','/keyfile.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150049,'2026-06-18 21:52:27','/api/client_secret.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150050,'2026-06-18 21:52:27','/application_default_credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150051,'2026-06-18 21:52:27','/firebase-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150052,'2026-06-18 21:52:27','/appsettings.Development.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150053,'2026-06-18 21:52:27','/serviceAccountKey.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150054,'2026-06-18 21:52:27','/serviceAccountCredentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150055,'2026-06-18 21:52:27','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150056,'2026-06-18 21:52:28','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150057,'2026-06-18 21:52:28','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150058,'2026-06-18 21:52:28','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150059,'2026-06-18 21:52:28','/secrets.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150060,'2026-06-18 21:52:28','/google-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150061,'2026-06-18 21:52:28','/config/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150062,'2026-06-18 21:52:28','/service-account-file.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150063,'2026-06-18 21:52:28','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150064,'2026-06-18 21:52:28','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150065,'2026-06-18 21:52:29','/firebase-service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150066,'2026-06-18 21:52:29','/.openclaw/agents/main/agent/models.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150067,'2026-06-18 21:52:29','/.gcp/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150068,'2026-06-18 21:52:29','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150069,'2026-06-18 21:52:29','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150070,'2026-06-18 21:52:29','/google-services.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150071,'2026-06-18 21:52:29','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150072,'2026-06-18 21:52:29','/.openclaw/openclaw.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150073,'2026-06-18 21:52:31','/config/gcp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150074,'2026-06-18 21:52:32','/firebase.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150075,'2026-06-18 21:52:32','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150076,'2026-06-18 21:52:32','/.kube/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150077,'2026-06-18 21:52:32','/.cursor/mcp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150078,'2026-06-18 21:52:32','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150079,'2026-06-18 21:52:32','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150080,'2026-06-18 21:52:32','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150081,'2026-06-18 21:52:32','/firebase-adminsdk.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150082,'2026-06-18 21:52:33','/google-application-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150083,'2026-06-18 21:52:33','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150084,'2026-06-18 21:52:33','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150085,'2026-06-18 21:52:33','/gcloud-service-key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150086,'2026-06-18 21:52:34','/google-service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150087,'2026-06-18 21:52:34','/secrets/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150088,'2026-06-18 21:52:34','/config/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150089,'2026-06-18 21:52:34','/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150090,'2026-06-18 21:52:34','/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150091,'2026-06-18 21:52:34','/client_secret.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150092,'2026-06-18 21:52:34','/service-account-key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150093,'2026-06-18 21:52:34','/google_credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150094,'2026-06-18 21:52:34','/.yarnrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150095,'2026-06-18 21:52:35','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150096,'2026-06-18 21:52:35','/config/gcp-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150097,'2026-06-18 21:52:35','/service-account-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150098,'2026-06-18 21:52:35','/serviceAccount.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150099,'2026-06-18 21:52:35','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150100,'2026-06-18 21:52:35','/gcp-service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150101,'2026-06-18 21:52:35','/.config/gcloud/application_default_credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150102,'2026-06-18 21:52:35','/credentials/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150103,'2026-06-18 21:52:35','/gcp-key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150104,'2026-06-18 21:52:35','/auth/service_key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150105,'2026-06-18 21:52:36','/config/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150106,'2026-06-18 21:52:36','/gcp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150107,'2026-06-18 21:52:36','/config/production.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150108,'2026-06-18 21:52:36','/client_secrets.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150109,'2026-06-18 21:52:36','/appsettings.Production.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150110,'2026-06-18 21:52:36','/gcp_key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150111,'2026-06-18 21:52:36','/.anthropic/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150112,'2026-06-18 21:52:37','/sa-key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150113,'2026-06-18 21:52:37','/secrets/gcp-key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150114,'2026-06-18 21:52:37','/gcp-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150115,'2026-06-18 21:52:37','/google_key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150116,'2026-06-18 21:52:37','/.openai/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150117,'2026-06-18 21:52:37','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150118,'2026-06-18 21:52:37','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150119,'2026-06-18 21:52:37','/service_account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150120,'2026-06-18 21:52:37','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150121,'2026-06-18 21:52:39','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150122,'2026-06-18 21:52:39','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150123,'2026-06-18 21:52:39','/.wp-config.php.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150124,'2026-06-18 21:52:39','/wp-config.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150125,'2026-06-18 21:52:41','/wp-config.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150126,'2026-06-18 21:52:43','/.env.production.copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150127,'2026-06-18 21:52:43','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150128,'2026-06-18 21:52:43','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150129,'2026-06-18 21:52:44','/.git/FETCH_HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150130,'2026-06-18 21:52:44','/.git/refs/heads/main','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150131,'2026-06-18 21:52:46','/.env.local.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150132,'2026-06-18 21:52:46','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150133,'2026-06-18 21:52:46','/.git/logs/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150134,'2026-06-18 21:52:46','/.env.local.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150135,'2026-06-18 21:52:46','/.git/refs/heads/master','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150136,'2026-06-18 21:52:46','/.env.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150137,'2026-06-18 21:52:46','/.env.local~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150138,'2026-06-18 21:52:46','/.env.local.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.233'),(150139,'2026-06-18 21:52:47','/.env.production.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150140,'2026-06-18 21:52:47','/.env.local.copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150141,'2026-06-18 21:52:47','/.env.local.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36 Edg/146.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150142,'2026-06-18 21:52:47','/.env.production.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150143,'2026-06-18 21:52:47','/.env.production.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.233'),(150144,'2026-06-18 21:52:47','/.env.local.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/147.0.0.0',NULL,404,'GET',NULL,'65.110.40.233'),(150145,'2026-06-18 21:52:47','/.env.copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150146,'2026-06-18 21:52:47','/.env.local.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'65.110.40.233'),(150147,'2026-06-18 21:52:47','/.env.production.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150148,'2026-06-18 21:52:47','/.env.production~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150149,'2026-06-18 21:52:47','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150150,'2026-06-18 21:52:47','/.env.production.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.233'),(150151,'2026-06-18 21:52:47','/.env.production.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'65.110.40.233'),(150152,'2026-06-18 22:25:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'194.62.107.205'),(150153,'2026-06-19 00:58:00','/wp-content/plugins/wp-google-map-gold/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0.1 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'192.42.116.42'),(150154,'2026-06-19 01:28:33','/file-manager/ckeditor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.71 Safari/537.36',NULL,404,'GET',NULL,'185.216.73.21'),(150155,'2026-06-19 01:48:25','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'68.183.97.219'),(150156,'2026-06-19 02:52:53','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'159.223.224.163'),(150157,'2026-06-19 04:13:39','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150158,'2026-06-19 04:13:40','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150159,'2026-06-19 04:13:41','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150160,'2026-06-19 04:13:42','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150161,'2026-06-19 04:13:43','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150162,'2026-06-19 04:13:44','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150163,'2026-06-19 04:13:45','/api/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150164,'2026-06-19 04:13:46','/api/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150165,'2026-06-19 04:13:47','/api/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150166,'2026-06-19 04:13:47','/api/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150167,'2026-06-19 04:13:48','/api/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150168,'2026-06-19 04:13:49','/api/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150169,'2026-06-19 04:13:50','/api/v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150170,'2026-06-19 04:13:51','/api/v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150171,'2026-06-19 04:13:52','/api/v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150172,'2026-06-19 04:13:53','/api/v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150173,'2026-06-19 04:13:54','/api/v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150174,'2026-06-19 04:13:54','/api/v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150175,'2026-06-19 04:13:55','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150176,'2026-06-19 04:13:56','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150177,'2026-06-19 04:13:57','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150178,'2026-06-19 04:13:58','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150179,'2026-06-19 04:13:59','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150180,'2026-06-19 04:13:59','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150181,'2026-06-19 04:14:00','/rest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150182,'2026-06-19 04:14:01','/rest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150183,'2026-06-19 04:14:02','/rest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150184,'2026-06-19 04:14:03','/rest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150185,'2026-06-19 04:14:04','/rest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150186,'2026-06-19 04:14:05','/rest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150187,'2026-06-19 04:14:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150188,'2026-06-19 04:14:08','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150189,'2026-06-19 04:14:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150190,'2026-06-19 04:14:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150191,'2026-06-19 04:14:16','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150192,'2026-06-19 04:14:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150193,'2026-06-19 04:14:21','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150194,'2026-06-19 04:14:22','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150195,'2026-06-19 04:14:23','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150196,'2026-06-19 04:14:24','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150197,'2026-06-19 04:14:25','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150198,'2026-06-19 04:14:26','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150199,'2026-06-19 04:14:27','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150200,'2026-06-19 04:14:28','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150201,'2026-06-19 04:14:29','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150202,'2026-06-19 04:14:30','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150203,'2026-06-19 04:14:31','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150204,'2026-06-19 04:14:32','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150205,'2026-06-19 04:14:33','/test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150206,'2026-06-19 04:14:34','/test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150207,'2026-06-19 04:14:35','/test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150208,'2026-06-19 04:14:36','/test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150209,'2026-06-19 04:14:37','/test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150210,'2026-06-19 04:14:38','/test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150211,'2026-06-19 04:14:39','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150212,'2026-06-19 04:14:39','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150213,'2026-06-19 04:14:40','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150214,'2026-06-19 04:14:41','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150215,'2026-06-19 04:14:42','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150216,'2026-06-19 04:14:43','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150217,'2026-06-19 04:14:44','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150218,'2026-06-19 04:14:44','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150219,'2026-06-19 04:14:45','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150220,'2026-06-19 04:14:46','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150221,'2026-06-19 04:14:47','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150222,'2026-06-19 04:14:48','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150223,'2026-06-19 04:14:49','/internal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150224,'2026-06-19 04:14:50','/internal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150225,'2026-06-19 04:14:51','/internal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150226,'2026-06-19 04:14:51','/internal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150227,'2026-06-19 04:14:52','/internal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150228,'2026-06-19 04:14:53','/internal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150229,'2026-06-19 04:14:54','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150230,'2026-06-19 04:14:55','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150231,'2026-06-19 04:14:56','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150232,'2026-06-19 04:14:56','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150233,'2026-06-19 04:14:57','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150234,'2026-06-19 04:14:58','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150235,'2026-06-19 04:14:59','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150236,'2026-06-19 04:15:00','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150237,'2026-06-19 04:15:01','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150238,'2026-06-19 04:15:02','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150239,'2026-06-19 04:15:03','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150240,'2026-06-19 04:15:03','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150241,'2026-06-19 04:15:04','/actuator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150242,'2026-06-19 04:15:05','/actuator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150243,'2026-06-19 04:15:06','/actuator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150244,'2026-06-19 04:15:07','/actuator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150245,'2026-06-19 04:15:08','/actuator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150246,'2026-06-19 04:15:09','/actuator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'POST',NULL,'129.121.103.98'),(150247,'2026-06-19 04:41:26','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; WebView/3.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/18.17763',NULL,404,'GET',NULL,'195.178.110.159'),(150248,'2026-06-19 07:16:30','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.12.213.50'),(150249,'2026-06-19 07:44:18','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.75.74'),(150250,'2026-06-19 07:45:17','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.75.74'),(150251,'2026-06-19 07:59:35','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(150252,'2026-06-19 07:59:36','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(150253,'2026-06-19 07:59:37','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(150254,'2026-06-19 07:59:38','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(150255,'2026-06-19 08:11:29','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.89.163.198'),(150256,'2026-06-19 10:32:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'170.106.117.163'),(150257,'2026-06-19 11:04:50','/.git/config','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150258,'2026-06-19 11:04:50','/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150259,'2026-06-19 11:04:50','//backend/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150260,'2026-06-19 11:04:50','/*update.cgi*','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150261,'2026-06-19 11:04:50','/..\\..\\..\\..\\..\\..\\var/log/apache2/access.log','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150262,'2026-06-19 11:04:50','/backend/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150263,'2026-06-19 11:04:50','//.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150264,'2026-06-19 11:04:50','/.amplifyrc','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150265,'2026-06-19 11:04:50','/.boto','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150266,'2026-06-19 11:04:51','/*','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150267,'2026-06-19 11:04:51','/*/[slug]','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150268,'2026-06-19 11:04:51','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150269,'2026-06-19 11:04:51','/.cache','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150270,'2026-06-19 11:04:51','/.aws/config','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150271,'2026-06-19 11:04:52','/*/[id]','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150272,'2026-06-19 11:04:52','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150273,'2026-06-19 11:04:52','/.docker/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150274,'2026-06-19 11:04:52','/.docker/secrets.json','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150275,'2026-06-19 11:04:52','/.docker/laravel/app/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150276,'2026-06-19 11:04:52','//.aws/credentials','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'195.178.110.199'),(150277,'2026-06-19 13:42:48','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.237'),(150278,'2026-06-19 15:10:09','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(150279,'2026-06-19 15:10:11','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(150280,'2026-06-19 15:10:12','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(150281,'2026-06-19 15:10:13','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(150282,'2026-06-19 17:08:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150283,'2026-06-19 17:08:01','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150284,'2026-06-19 17:08:01','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(150285,'2026-06-19 17:08:02','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150286,'2026-06-19 17:08:04','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150287,'2026-06-19 17:08:05','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150288,'2026-06-19 17:08:06','/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150289,'2026-06-19 17:08:07','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150290,'2026-06-19 17:08:08','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150291,'2026-06-19 17:08:09','/.env.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150292,'2026-06-19 17:08:11','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150293,'2026-06-19 17:08:13','/.env.tmp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150294,'2026-06-19 17:08:14','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150295,'2026-06-19 17:08:15','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(150296,'2026-06-19 17:08:16','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(150297,'2026-06-19 17:08:17','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150298,'2026-06-19 17:08:18','/config.json.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150299,'2026-06-19 17:08:19','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150300,'2026-06-19 17:08:20','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150301,'2026-06-19 17:08:21','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(150302,'2026-06-19 17:08:23','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(150303,'2026-06-19 18:45:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.237'),(150304,'2026-06-19 20:49:26','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(150305,'2026-06-19 20:49:28','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(150306,'2026-06-19 21:09:37','/wp-content/plugins/cidaas-pro-master/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'169.197.88.115'),(150307,'2026-06-19 22:43:19','/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; motorola one vision) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,'45.148.10.120'),(150308,'2026-06-19 22:43:22','/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A356 Safari/604.1',NULL,404,'GET',NULL,'45.148.10.120'),(150309,'2026-06-19 22:43:26','/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; MI 8 Build/PKQ1.180729.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/67.0.3396.87 XWEB/882 MMWEBSDK/190506 Mobile Safari/537.36 MMWEBID/409 MicroMessenger/7.0.6.1460(0x27000634) Process/tools NetType/WIF',NULL,404,'GET',NULL,'45.148.10.120'),(150310,'2026-06-20 03:35:20','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(150311,'2026-06-20 03:35:21','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(150312,'2026-06-20 03:35:23','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.40'),(150313,'2026-06-20 03:35:24','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.40'),(150314,'2026-06-20 03:43:43','/vendor/phpunit/phpunit/src/Util/PHP/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','https://www.google.com',404,'GET',NULL,'173.249.32.205'),(150315,'2026-06-20 03:43:45','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','https://www.google.com',404,'GET',NULL,'173.249.32.205'),(150316,'2026-06-20 03:43:47','/libraries/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','https://www.google.com',404,'GET',NULL,'173.249.32.205'),(150317,'2026-06-20 04:10:49','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.203.253'),(150318,'2026-06-20 04:11:03','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.203.253'),(150319,'2026-06-20 04:19:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'94.249.230.161'),(150320,'2026-06-20 04:51:20','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060909 Firefox/1.5.0.7 MG(Novarra-Vision/6.9)',NULL,404,'GET',NULL,'65.0.20.26'),(150321,'2026-06-20 05:44:57','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.9.17.155'),(150322,'2026-06-20 05:45:32','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.9.17.155'),(150323,'2026-06-20 07:24:12','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'156.146.39.60'),(150324,'2026-06-20 12:16:02','/wp-content/cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150325,'2026-06-20 12:16:15','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150326,'2026-06-20 12:16:19','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150327,'2026-06-20 12:16:23','/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150328,'2026-06-20 13:08:33','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Nokia 6.2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.117 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/268.1.0.54.121;]','https://solsculpting.com/Form',404,'POST',NULL,'192.42.116.47'),(150329,'2026-06-20 13:08:47','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Nokia 6.2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.117 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/268.1.0.54.121;]','https://solsculpting.com/Form',404,'POST',NULL,'64.190.76.11'),(150330,'2026-06-20 13:08:56','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Nokia 6.2 Build/PKQ1.190118.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/81.0.4044.117 Mobile Safari/537.36 [FB_IAB/FB4A;FBAV/268.1.0.54.121;]','https://solsculpting.com/Form',404,'POST',NULL,'185.220.101.20'),(150331,'2026-06-20 15:07:09','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150332,'2026-06-20 15:07:13','/alfanew.PHP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150333,'2026-06-20 15:07:14','/cgi-bin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150334,'2026-06-20 15:07:16','/.well-known/pki-validation','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150335,'2026-06-20 16:59:32','/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 8.1.0; Redmi 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,'151.242.147.40'),(150336,'2026-06-20 16:59:54','/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.92 Safari/537.36',NULL,404,'GET',NULL,'151.242.147.40'),(150337,'2026-06-20 20:09:26','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.9.43.99'),(150338,'2026-06-20 20:55:23','/.tmb','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150339,'2026-06-20 20:55:25','/.well-known','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150340,'2026-06-20 20:55:30','/index.php/feed/atom','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150341,'2026-06-20 21:57:05','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; RMX2195) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.210 Mobile Safari/537.36 OPR/75.2.3995.72468','http://solsculpting.com/old/',404,'GET',NULL,'34.41.93.200'),(150342,'2026-06-20 21:57:06','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.41.93.200'),(150343,'2026-06-20 21:57:07','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.41.93.200'),(150344,'2026-06-20 21:57:08','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 10; en-US; CPH2015) AppleWebKit/537.36 (KHTML, like Gecko) UCBrowser/13.5.8.1311 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.41.93.200'),(150345,'2026-06-20 21:57:09','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'34.41.93.200'),(150346,'2026-06-20 21:57:10','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/new/',404,'GET',NULL,'34.41.93.200'),(150347,'2026-06-20 22:54:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040614 Firefox/0.9',NULL,404,'GET',NULL,'185.93.89.167'),(150348,'2026-06-20 22:54:12','/sendgrid.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7) Gecko/20040614 Firefox/0.9',NULL,404,'GET',NULL,'185.93.89.167'),(150349,'2026-06-20 23:32:34','/chosen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150350,'2026-06-20 23:32:40','/wp-content/plugins/xt/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150351,'2026-06-20 23:32:46','/wp-content/plugins/xt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150352,'2026-06-20 23:32:58','/admin.php7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.142.107.96'),(150353,'2026-06-20 23:38:02','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Knoppix; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'34.102.22.216'),(150354,'2026-06-21 02:39:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.89.163.198'),(150355,'2026-06-21 09:27:55','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'185.180.141.32'),(150356,'2026-06-21 09:27:56','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'185.180.141.32'),(150357,'2026-06-21 09:28:14','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150358,'2026-06-21 09:28:18','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150359,'2026-06-21 09:28:21','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150360,'2026-06-21 09:28:36','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150361,'2026-06-21 09:28:37','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150362,'2026-06-21 15:16:15','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'199.247.11.119'),(150363,'2026-06-21 15:16:25','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'199.247.11.119'),(150364,'2026-06-21 15:16:26','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'199.247.11.119'),(150365,'2026-06-21 15:16:27','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'199.247.11.119'),(150366,'2026-06-21 15:16:33','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'199.247.11.119'),(150367,'2026-06-21 15:51:46','/wp-content/uploads/2022/03/chri1.jpg20550w,20https:/solsculpting.com/wp-content/uploads/2022/03/chri1-300x300.jpg20300w,20https:/solsculpting.com/wp-content/uploads/2022/03/chri1-150x150.jpg20150w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'64.227.21.203'),(150368,'2026-06-21 15:51:53','/wp-content/uploads/2022/03/chri1.jpg20550w,20https:/solsculpting.com/wp-content/uploads/2022/03/chri1-300x300.jpg20300w,20https:/solsculpting.com/wp-content/uploads/2022/03/chri1-150x150.jpg20150w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'94.21.66.54'),(150369,'2026-06-21 16:01:51','/wp-content/uploads/2022/03/SolVibranBenefits-768x535.png20768w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-300x209.png20300w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-705x491.png20705w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-600x418.png20600w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits.png201000w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'69.55.49.73'),(150370,'2026-06-21 16:01:57','/wp-content/uploads/2022/03/SolVibranBenefits-768x535.png20768w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-300x209.png20300w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-705x491.png20705w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-600x418.png20600w,20https:/solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits.png201000w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'213.230.76.157'),(150371,'2026-06-21 16:20:08','/wp-content/uploads/2022/03/Arro-Icon-1.png2065w,20https:/solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1-36x36.png2036w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'188.255.140.126'),(150372,'2026-06-21 16:20:13','/wp-content/uploads/2022/03/Arro-Icon-1.png2065w,20https:/solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1-36x36.png2036w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'196.187.145.118'),(150373,'2026-06-21 17:00:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(150374,'2026-06-21 17:12:29','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(150375,'2026-06-21 17:12:30','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(150376,'2026-06-21 17:12:31','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(150377,'2026-06-21 17:12:32','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(150378,'2026-06-21 18:08:02','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(150379,'2026-06-21 18:08:04','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(150380,'2026-06-21 18:25:37','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.39.37'),(150381,'2026-06-21 19:28:30','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; OnePlus 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.102 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'8.230.109.191'),(150382,'2026-06-21 19:28:31','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/new/',404,'GET',NULL,'8.230.109.191'),(150383,'2026-06-21 19:28:32','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Samsung SM-A546B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.14 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'8.230.109.191'),(150384,'2026-06-21 19:28:33','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.90 Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'8.230.109.191'),(150385,'2026-06-21 19:28:35','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; OnePlus 12) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.102 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'8.230.109.191'),(150386,'2026-06-21 19:28:35','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/backup/',404,'GET',NULL,'8.230.109.191'),(150387,'2026-06-21 19:45:29','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.231'),(150388,'2026-06-21 20:31:11','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150389,'2026-06-21 20:31:25','/wp-includes/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150390,'2026-06-21 20:31:31','/.bod/.ll/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'167.179.119.201'),(150391,'2026-06-21 21:52:55','/chosen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.176.195.109'),(150392,'2026-06-21 21:53:08','/wp-content/plugins/xt/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.176.195.109'),(150393,'2026-06-21 21:53:23','/wp-content/plugins/xt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.176.195.109'),(150394,'2026-06-21 21:53:37','/admin.php7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.176.195.109'),(150395,'2026-06-22 00:52:51','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.231'),(150396,'2026-06-22 00:54:49','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'103.77.106.81'),(150397,'2026-06-22 00:54:51','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'103.77.106.81'),(150398,'2026-06-22 02:07:52','/?p=1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'103.99.34.146'),(150399,'2026-06-22 02:07:54','/?page_id=2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.10.27.201'),(150400,'2026-06-22 04:01:23','/.wlsebdsy.Php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'158.158.104.28'),(150401,'2026-06-22 04:01:26','/.satykct.Php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'158.158.104.28'),(150402,'2026-06-22 04:11:46','/ads.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,'149.56.150.32'),(150403,'2026-06-22 04:11:48','/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,'149.56.150.32'),(150404,'2026-06-22 04:11:49','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,'149.56.150.32'),(150405,'2026-06-22 04:11:50','/llms.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,'149.56.150.32'),(150406,'2026-06-22 04:11:52','/humans.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,'149.56.150.32'),(150407,'2026-06-22 07:13:26','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'96.126.130.244'),(150408,'2026-06-22 08:55:23','//sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com//sitemap.xml',404,'GET',NULL,'93.123.109.164'),(150409,'2026-06-22 08:55:28','//wp-sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com//wp-sitemap.xml',404,'GET',NULL,'93.123.109.164'),(150410,'2026-06-22 08:55:29','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'93.123.109.164'),(150411,'2026-06-22 08:55:30','/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150412,'2026-06-22 08:55:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'93.123.109.164'),(150413,'2026-06-22 08:55:30','/api/v1/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/config',404,'GET',NULL,'93.123.109.164'),(150414,'2026-06-22 08:55:30','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150415,'2026-06-22 08:55:30','/telescope/api/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/telescope/api/requests',404,'GET',NULL,'93.123.109.164'),(150416,'2026-06-22 08:55:30','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/storage/logs/laravel.log',404,'GET',NULL,'93.123.109.164'),(150417,'2026-06-22 08:55:30','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'93.123.109.164'),(150418,'2026-06-22 08:55:30','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.git/config',404,'GET',NULL,'93.123.109.164'),(150419,'2026-06-22 08:55:31','/api/debug/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/debug/env',404,'GET',NULL,'93.123.109.164'),(150420,'2026-06-22 08:55:31','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/debug.log',404,'GET',NULL,'93.123.109.164'),(150421,'2026-06-22 08:55:31','/metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/metrics',404,'GET',NULL,'93.123.109.164'),(150422,'2026-06-22 08:55:31','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-config.php.bak',404,'GET',NULL,'93.123.109.164'),(150423,'2026-06-22 08:55:31','/_profiler/latest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/_profiler/latest',404,'GET',NULL,'93.123.109.164'),(150424,'2026-06-22 08:55:31','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/composer.json',404,'GET',NULL,'93.123.109.164'),(150425,'2026-06-22 08:55:32','/horizon/api/stats','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/horizon/api/stats',404,'GET',NULL,'93.123.109.164'),(150426,'2026-06-22 08:55:32','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.json',404,'GET',NULL,'93.123.109.164'),(150427,'2026-06-22 08:55:32','/.s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.s3cfg',404,'GET',NULL,'93.123.109.164'),(150428,'2026-06-22 08:55:32','/root/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/root/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150429,'2026-06-22 08:55:32','/static.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static.env',404,'GET',NULL,'93.123.109.164'),(150430,'2026-06-22 08:55:32','/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ssh/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150431,'2026-06-22 08:55:32','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.env',404,'GET',NULL,'93.123.109.164'),(150432,'2026-06-22 08:55:32','/api/v2/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v2/config',404,'GET',NULL,'93.123.109.164'),(150433,'2026-06-22 08:55:33','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'93.123.109.164'),(150434,'2026-06-22 08:55:33','/storage/logs/laravel-2024.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/storage/logs/laravel-2024.log',404,'GET',NULL,'93.123.109.164'),(150435,'2026-06-22 08:55:34','/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/app.js.map',404,'GET',NULL,'93.123.109.164'),(150436,'2026-06-22 08:55:35','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.aws/config',404,'GET',NULL,'93.123.109.164'),(150437,'2026-06-22 08:55:35','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'93.123.109.164'),(150438,'2026-06-22 08:55:35','/api/v1/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/env',404,'GET',NULL,'93.123.109.164'),(150439,'2026-06-22 08:55:35','/wp-content/debug.log.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/debug.log.1',404,'GET',NULL,'93.123.109.164'),(150440,'2026-06-22 08:55:35','/actuator/prometheus','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/actuator/prometheus',404,'GET',NULL,'93.123.109.164'),(150441,'2026-06-22 08:55:36','/assets.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets.env',404,'GET',NULL,'93.123.109.164'),(150442,'2026-06-22 08:55:36','/.boto','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.boto',404,'GET',NULL,'93.123.109.164'),(150443,'2026-06-22 08:55:36','/wp-content/uploads/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/uploads/debug.log',404,'GET',NULL,'93.123.109.164'),(150444,'2026-06-22 08:55:36','/horizon','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/horizon',404,'GET',NULL,'93.123.109.164'),(150445,'2026-06-22 08:55:37','/.ssh/id_ecdsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ssh/id_ecdsa',404,'GET',NULL,'93.123.109.164'),(150446,'2026-06-22 08:55:37','/api/v1/internal/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/internal/settings',404,'GET',NULL,'93.123.109.164'),(150447,'2026-06-22 08:55:37','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'93.123.109.164'),(150448,'2026-06-22 08:55:37','/api/debug/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/debug/info',404,'GET',NULL,'93.123.109.164'),(150449,'2026-06-22 08:55:37','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/debug.log',404,'GET',NULL,'93.123.109.164'),(150450,'2026-06-22 08:55:38','/s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/s3cfg',404,'GET',NULL,'93.123.109.164'),(150451,'2026-06-22 08:55:38','/static../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../.env',404,'GET',NULL,'93.123.109.164'),(150452,'2026-06-22 08:55:38','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-config.php.old',404,'GET',NULL,'93.123.109.164'),(150453,'2026-06-22 08:55:38','/horizon/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/horizon/dashboard',404,'GET',NULL,'93.123.109.164'),(150454,'2026-06-22 08:55:38','/storage/logs/laravel-2025.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/storage/logs/laravel-2025.log',404,'GET',NULL,'93.123.109.164'),(150455,'2026-06-22 08:55:38','/backup.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/backup.sql',404,'GET',NULL,'93.123.109.164'),(150456,'2026-06-22 08:55:38','/home/ubuntu/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/ubuntu/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150457,'2026-06-22 08:55:38','/wp-config.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-config.php~',404,'GET',NULL,'93.123.109.164'),(150458,'2026-06-22 08:55:39','/api/metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/metrics',404,'GET',NULL,'93.123.109.164'),(150459,'2026-06-22 08:55:39','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150460,'2026-06-22 08:55:39','/public.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public.env',404,'GET',NULL,'93.123.109.164'),(150461,'2026-06-22 08:55:39','/home/ec2-user/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/ec2-user/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150462,'2026-06-22 08:55:39','/aws-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/aws-credentials.json',404,'GET',NULL,'93.123.109.164'),(150463,'2026-06-22 08:55:40','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'93.123.109.164'),(150464,'2026-06-22 08:55:40','/.litespeed/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.litespeed/debug.log',404,'GET',NULL,'93.123.109.164'),(150465,'2026-06-22 08:55:41','/.ssh/id_dsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ssh/id_dsa',404,'GET',NULL,'93.123.109.164'),(150466,'2026-06-22 08:55:42','/s3-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/s3-credentials.json',404,'GET',NULL,'93.123.109.164'),(150467,'2026-06-22 08:55:42','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.env',404,'GET',NULL,'93.123.109.164'),(150468,'2026-06-22 08:55:42','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/settings.py',404,'GET',NULL,'93.123.109.164'),(150469,'2026-06-22 08:55:42','/api/v1/env/wp-json/wp/v2/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/env/wp-json/wp/v2/settings',404,'GET',NULL,'93.123.109.164'),(150470,'2026-06-22 08:55:42','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'93.123.109.164'),(150471,'2026-06-22 08:55:42','/storage/logs/laravel-2026.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/storage/logs/laravel-2026.log',404,'GET',NULL,'93.123.109.164'),(150472,'2026-06-22 08:55:42','/api/v1/smtp/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/smtp/credentials',404,'GET',NULL,'93.123.109.164'),(150473,'2026-06-22 08:55:42','/api/v1/sendgrid/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/sendgrid/config',404,'GET',NULL,'93.123.109.164'),(150474,'2026-06-22 08:55:42','/.s3credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.s3credentials',404,'GET',NULL,'93.123.109.164'),(150475,'2026-06-22 08:55:43','/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/debug.log',404,'GET',NULL,'93.123.109.164'),(150476,'2026-06-22 08:55:43','/_metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/_metrics',404,'GET',NULL,'93.123.109.164'),(150477,'2026-06-22 08:55:43','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150478,'2026-06-22 08:55:43','/.dockerconfigjson','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.dockerconfigjson',404,'GET',NULL,'93.123.109.164'),(150479,'2026-06-22 08:55:44','/dist.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/dist.env',404,'GET',NULL,'93.123.109.164'),(150480,'2026-06-22 08:55:44','/.ssh/id_rsa.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ssh/id_rsa.pem',404,'GET',NULL,'93.123.109.164'),(150481,'2026-06-22 08:55:44','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150482,'2026-06-22 08:55:44','/api/v1/auth/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/auth/config',404,'GET',NULL,'93.123.109.164'),(150483,'2026-06-22 08:55:45','/wp-content/debug.log.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/debug.log.1',404,'GET',NULL,'93.123.109.164'),(150484,'2026-06-22 08:55:45','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'93.123.109.164'),(150485,'2026-06-22 08:55:45','/wp-content/uploads/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/uploads/debug.log',404,'GET',NULL,'93.123.109.164'),(150486,'2026-06-22 08:55:45','/aws.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/aws.json',404,'GET',NULL,'93.123.109.164'),(150487,'2026-06-22 08:55:45','/cve24813probe','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0','https://solsculpting.com//cve24813probe',404,'GET',NULL,'93.123.109.164'),(150488,'2026-06-22 08:55:46','/wp-content/plugins/wp-mail-smtp/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/plugins/wp-mail-smtp/tmp/debug.log',404,'GET',NULL,'93.123.109.164'),(150489,'2026-06-22 08:55:46','/static/js/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/js/app.js.map',404,'GET',NULL,'93.123.109.164'),(150490,'2026-06-22 08:55:46','/stats/prometheus','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/stats/prometheus',404,'GET',NULL,'93.123.109.164'),(150491,'2026-06-22 08:55:47','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.env',404,'GET',NULL,'93.123.109.164'),(150492,'2026-06-22 08:55:47','/wp-content/plugins/smtp-mail/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/plugins/smtp-mail/tmp/debug.log',404,'GET',NULL,'93.123.109.164'),(150493,'2026-06-22 08:55:48','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config/database.yml',404,'GET',NULL,'93.123.109.164'),(150494,'2026-06-22 08:55:48','/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/credentials.json',404,'GET',NULL,'93.123.109.164'),(150495,'2026-06-22 08:55:48','/media.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media.env',404,'GET',NULL,'93.123.109.164'),(150496,'2026-06-22 08:55:48','/home/ubuntu/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/ubuntu/.ssh/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150497,'2026-06-22 08:55:48','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/application.properties',404,'GET',NULL,'93.123.109.164'),(150498,'2026-06-22 08:55:48','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150499,'2026-06-22 08:55:49','/uploads.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads.env',404,'GET',NULL,'93.123.109.164'),(150500,'2026-06-22 08:55:49','/api/v1/api-keys','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/api-keys',404,'GET',NULL,'93.123.109.164'),(150501,'2026-06-22 08:55:49','/assets/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/app.js.map',404,'GET',NULL,'93.123.109.164'),(150502,'2026-06-22 08:55:50','/dump.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/dump.sql',404,'GET',NULL,'93.123.109.164'),(150503,'2026-06-22 08:55:50','/home/ec2-user/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/ec2-user/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150504,'2026-06-22 08:55:50','/wp-content/plugins/wp-mail/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/plugins/wp-mail/debug.log',404,'GET',NULL,'93.123.109.164'),(150505,'2026-06-22 08:55:50','/api/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/settings',404,'GET',NULL,'93.123.109.164'),(150506,'2026-06-22 08:55:50','/home/ubuntu/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/ubuntu/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150507,'2026-06-22 08:55:50','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/docker-compose.yml',404,'GET',NULL,'93.123.109.164'),(150508,'2026-06-22 08:55:51','/api/v1/cloud/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/v1/cloud/credentials',404,'GET',NULL,'93.123.109.164'),(150509,'2026-06-22 08:55:51','/wp-content/plugins/wp-smtp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/plugins/wp-smtp/debug.log',404,'GET',NULL,'93.123.109.164'),(150510,'2026-06-22 08:55:51','/storage.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/storage.env',404,'GET',NULL,'93.123.109.164'),(150511,'2026-06-22 08:55:51','/static../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150512,'2026-06-22 08:55:51','/files.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files.env',404,'GET',NULL,'93.123.109.164'),(150513,'2026-06-22 08:55:51','/static/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/.env',404,'GET',NULL,'93.123.109.164'),(150514,'2026-06-22 08:55:51','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/docker-compose.yaml',404,'GET',NULL,'93.123.109.164'),(150515,'2026-06-22 08:55:51','/wp-content/uploads/smtp-debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wp-content/uploads/smtp-debug.log',404,'GET',NULL,'93.123.109.164'),(150516,'2026-06-22 08:55:52','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/application.yml',404,'GET',NULL,'93.123.109.164'),(150517,'2026-06-22 08:55:52','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150518,'2026-06-22 08:55:52','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150519,'2026-06-22 08:55:52','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/.env',404,'GET',NULL,'93.123.109.164'),(150520,'2026-06-22 08:55:52','/home/ec2-user/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/ec2-user/.ssh/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150521,'2026-06-22 08:55:53','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/www-data/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150522,'2026-06-22 08:55:53','/dist/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/dist/app.js.map',404,'GET',NULL,'93.123.109.164'),(150523,'2026-06-22 08:55:54','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/web.config',404,'GET',NULL,'93.123.109.164'),(150524,'2026-06-22 08:55:54','/db.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/db.sql',404,'GET',NULL,'93.123.109.164'),(150525,'2026-06-22 08:55:54','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/.env',404,'GET',NULL,'93.123.109.164'),(150526,'2026-06-22 08:55:54','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.npmrc',404,'GET',NULL,'93.123.109.164'),(150527,'2026-06-22 08:55:54','/home/admin/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/admin/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150528,'2026-06-22 08:55:55','/home/deploy/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/deploy/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150529,'2026-06-22 08:55:55','/config.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.yml',404,'GET',NULL,'93.123.109.164'),(150530,'2026-06-22 08:55:55','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150531,'2026-06-22 08:55:55','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/dist/.env',404,'GET',NULL,'93.123.109.164'),(150532,'2026-06-22 08:55:55','/home/git/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/git/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150533,'2026-06-22 08:55:56','/vendor.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/vendor.js.map',404,'GET',NULL,'93.123.109.164'),(150534,'2026-06-22 08:55:56','/api/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/config',404,'GET',NULL,'93.123.109.164'),(150535,'2026-06-22 08:55:56','/media/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/.env',404,'GET',NULL,'93.123.109.164'),(150536,'2026-06-22 08:55:57','/static/js/main.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/js/main.js.map',404,'GET',NULL,'93.123.109.164'),(150537,'2026-06-22 08:55:57','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/.env',404,'GET',NULL,'93.123.109.164'),(150538,'2026-06-22 08:55:57','/home/user/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/user/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150539,'2026-06-22 08:55:57','/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.yaml',404,'GET',NULL,'93.123.109.164'),(150540,'2026-06-22 08:55:57','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150541,'2026-06-22 08:55:57','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150542,'2026-06-22 08:55:57','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150543,'2026-06-22 08:55:58','/database.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/database.sql',404,'GET',NULL,'93.123.109.164'),(150544,'2026-06-22 08:55:58','/js/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/app.js.map',404,'GET',NULL,'93.123.109.164'),(150545,'2026-06-22 08:55:58','/home/vagrant/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home/vagrant/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150546,'2026-06-22 08:55:58','/application.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/application.yaml',404,'GET',NULL,'93.123.109.164'),(150547,'2026-06-22 08:55:58','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/storage/.env',404,'GET',NULL,'93.123.109.164'),(150548,'2026-06-22 08:55:59','/static/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static//.env',404,'GET',NULL,'93.123.109.164'),(150549,'2026-06-22 08:56:00','/Dockerfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/Dockerfile',404,'GET',NULL,'93.123.109.164'),(150550,'2026-06-22 08:56:00','/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/id_rsa',404,'GET',NULL,'93.123.109.164'),(150551,'2026-06-22 08:56:00','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150552,'2026-06-22 08:56:02','/config.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/config.js.map',404,'GET',NULL,'93.123.109.164'),(150553,'2026-06-22 08:56:03','/files/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/.env',404,'GET',NULL,'93.123.109.164'),(150554,'2026-06-22 08:56:03','/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150555,'2026-06-22 08:56:03','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/appsettings.json',404,'GET',NULL,'93.123.109.164'),(150556,'2026-06-22 08:56:03','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150557,'2026-06-22 08:56:03','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'93.123.109.164'),(150558,'2026-06-22 08:56:05','/server.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/server.key',404,'GET',NULL,'93.123.109.164'),(150559,'2026-06-22 08:56:05','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150560,'2026-06-22 08:56:05','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.backup',404,'GET',NULL,'93.123.109.164'),(150561,'2026-06-22 08:56:06','/private.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/private.key',404,'GET',NULL,'93.123.109.164'),(150562,'2026-06-22 08:56:06','/js/main.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/main.js.map',404,'GET',NULL,'93.123.109.164'),(150563,'2026-06-22 08:56:07','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150564,'2026-06-22 08:56:07','/db_backup.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/db_backup.sql',404,'GET',NULL,'93.123.109.164'),(150565,'2026-06-22 08:56:07','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.bak',404,'GET',NULL,'93.123.109.164'),(150566,'2026-06-22 08:56:07','/static/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150567,'2026-06-22 08:56:07','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.old',404,'GET',NULL,'93.123.109.164'),(150568,'2026-06-22 08:56:08','/ssl.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/ssl.key',404,'GET',NULL,'93.123.109.164'),(150569,'2026-06-22 08:56:08','/static../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150570,'2026-06-22 08:56:09','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.prod',404,'GET',NULL,'93.123.109.164'),(150571,'2026-06-22 08:56:09','/deploy.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/deploy.pem',404,'GET',NULL,'93.123.109.164'),(150572,'2026-06-22 08:56:10','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150573,'2026-06-22 08:56:10','/static...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150574,'2026-06-22 08:56:11','/key.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/key.pem',404,'GET',NULL,'93.123.109.164'),(150575,'2026-06-22 08:56:11','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'93.123.109.164'),(150576,'2026-06-22 08:56:11','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150577,'2026-06-22 08:56:12','/assets/index.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/index.js.map',404,'GET',NULL,'93.123.109.164'),(150578,'2026-06-22 08:56:12','/static....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/static2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150579,'2026-06-22 08:56:13','/private.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/private.pem',404,'GET',NULL,'93.123.109.164'),(150580,'2026-06-22 08:56:13','/mysql.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/mysql.sql',404,'GET',NULL,'93.123.109.164'),(150581,'2026-06-22 08:56:13','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.staging',404,'GET',NULL,'93.123.109.164'),(150582,'2026-06-22 08:56:13','/assets../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../.env',404,'GET',NULL,'93.123.109.164'),(150583,'2026-06-22 08:56:13','/dist/bundle.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/dist/bundle.js.map',404,'GET',NULL,'93.123.109.164'),(150584,'2026-06-22 08:56:14','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150585,'2026-06-22 08:56:16','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../.env',404,'GET',NULL,'93.123.109.164'),(150586,'2026-06-22 08:56:16','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150587,'2026-06-22 08:56:17','/env.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/env.js.map',404,'GET',NULL,'93.123.109.164'),(150588,'2026-06-22 08:56:17','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env.dev',404,'GET',NULL,'93.123.109.164'),(150589,'2026-06-22 08:56:18','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../.env',404,'GET',NULL,'93.123.109.164'),(150590,'2026-06-22 08:56:18','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/env',404,'GET',NULL,'93.123.109.164'),(150591,'2026-06-22 08:56:19','/api/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/env',404,'GET',NULL,'93.123.109.164'),(150592,'2026-06-22 08:56:20','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ev',404,'GET',NULL,'93.123.109.164'),(150593,'2026-06-22 08:56:21','/assets../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150594,'2026-06-22 08:56:22','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'93.123.109.164'),(150595,'2026-06-22 08:56:22','/data.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/data.sql',404,'GET',NULL,'93.123.109.164'),(150596,'2026-06-22 08:56:23','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/2Eenv',404,'GET',NULL,'93.123.109.164'),(150597,'2026-06-22 08:56:23','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150598,'2026-06-22 08:56:24','/.ENV','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.ENV',404,'GET',NULL,'93.123.109.164'),(150599,'2026-06-22 08:56:26','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150600,'2026-06-22 08:56:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'93.123.109.164'),(150601,'2026-06-22 08:56:30','/site.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/site.sql',404,'GET',NULL,'93.123.109.164'),(150602,'2026-06-22 08:56:31','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150603,'2026-06-22 08:56:32','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150604,'2026-06-22 08:56:34','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150605,'2026-06-22 08:56:35','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150606,'2026-06-22 08:56:36','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150607,'2026-06-22 08:56:36','/wordpress.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/wordpress.sql',404,'GET',NULL,'93.123.109.164'),(150608,'2026-06-22 08:56:37','/assets/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets//.env',404,'GET',NULL,'93.123.109.164'),(150609,'2026-06-22 08:56:37','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150610,'2026-06-22 08:56:39','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150611,'2026-06-22 08:56:40','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150612,'2026-06-22 08:56:42','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150613,'2026-06-22 08:56:44','/assets/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150614,'2026-06-22 08:56:44','/assets../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150615,'2026-06-22 08:56:46','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150616,'2026-06-22 08:56:47','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150617,'2026-06-22 08:56:48','/assets...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150618,'2026-06-22 08:56:48','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env',404,'GET',NULL,'93.123.109.164'),(150619,'2026-06-22 08:56:49','/files../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../.env',404,'GET',NULL,'93.123.109.164'),(150620,'2026-06-22 08:56:49','/assets....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150621,'2026-06-22 08:56:49','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env.local',404,'GET',NULL,'93.123.109.164'),(150622,'2026-06-22 08:56:50','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../.env',404,'GET',NULL,'93.123.109.164'),(150623,'2026-06-22 08:56:50','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150624,'2026-06-22 08:56:52','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env.backup',404,'GET',NULL,'93.123.109.164'),(150625,'2026-06-22 08:56:52','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150626,'2026-06-22 08:56:53','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com//.env',404,'POST',NULL,'93.123.109.164'),(150627,'2026-06-22 08:56:54','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../.env',404,'GET',NULL,'93.123.109.164'),(150628,'2026-06-22 08:56:55','//.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com//.env.local',404,'POST',NULL,'93.123.109.164'),(150629,'2026-06-22 08:56:55','/files../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150630,'2026-06-22 08:56:56','//.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com//.env.backup',404,'POST',NULL,'93.123.109.164'),(150631,'2026-06-22 08:56:59','//.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com//.env.production',404,'POST',NULL,'93.123.109.164'),(150632,'2026-06-22 08:57:01','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env',404,'GET',NULL,'93.123.109.164'),(150633,'2026-06-22 08:57:01','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env.local',404,'GET',NULL,'93.123.109.164'),(150634,'2026-06-22 08:57:01','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150635,'2026-06-22 08:57:03','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env.backup',404,'GET',NULL,'93.123.109.164'),(150636,'2026-06-22 08:57:03','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150637,'2026-06-22 08:57:04','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible)','https://solsculpting.com//.env',404,'GET',NULL,'93.123.109.164'),(150638,'2026-06-22 08:57:06','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/assets/css/../../.env',404,'GET',NULL,'93.123.109.164'),(150639,'2026-06-22 08:57:07','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'93.123.109.164'),(150640,'2026-06-22 08:57:08','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150641,'2026-06-22 08:57:08','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../.env',404,'GET',NULL,'93.123.109.164'),(150642,'2026-06-22 08:57:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','https://solsculpting.com//.env',404,'GET',NULL,'93.123.109.164'),(150643,'2026-06-22 08:57:09','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150644,'2026-06-22 08:57:10','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150645,'2026-06-22 08:57:12','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150646,'2026-06-22 08:57:13','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150647,'2026-06-22 08:57:14','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150648,'2026-06-22 08:57:15','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150649,'2026-06-22 08:57:16','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150650,'2026-06-22 08:57:16','/files/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files//.env',404,'GET',NULL,'93.123.109.164'),(150651,'2026-06-22 08:57:17','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150652,'2026-06-22 08:57:18','/files../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150653,'2026-06-22 08:57:21','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150654,'2026-06-22 08:57:22','/files/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150655,'2026-06-22 08:57:23','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150656,'2026-06-22 08:57:26','/uploads../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../.env',404,'GET',NULL,'93.123.109.164'),(150657,'2026-06-22 08:57:26','/files...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150658,'2026-06-22 08:57:28','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../.env',404,'GET',NULL,'93.123.109.164'),(150659,'2026-06-22 08:57:28','/files....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/files2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150660,'2026-06-22 08:57:29','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150661,'2026-06-22 08:57:31','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150662,'2026-06-22 08:57:32','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'93.123.109.164'),(150663,'2026-06-22 08:57:33','/uploads../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150664,'2026-06-22 08:57:37','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150665,'2026-06-22 08:57:38','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150666,'2026-06-22 08:57:45','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150667,'2026-06-22 08:57:46','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150668,'2026-06-22 08:57:48','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150669,'2026-06-22 08:57:48','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150670,'2026-06-22 08:57:49','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150671,'2026-06-22 08:57:49','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150672,'2026-06-22 08:57:51','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150673,'2026-06-22 08:57:51','/uploads/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads//.env',404,'GET',NULL,'93.123.109.164'),(150674,'2026-06-22 08:57:52','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150675,'2026-06-22 08:57:53','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150676,'2026-06-22 08:57:54','/uploads../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150677,'2026-06-22 08:57:57','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150678,'2026-06-22 08:57:58','/uploads/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150679,'2026-06-22 08:58:00','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150680,'2026-06-22 08:58:00','/uploads...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150681,'2026-06-22 08:58:01','/img../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../.env',404,'GET',NULL,'93.123.109.164'),(150682,'2026-06-22 08:58:02','/uploads....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/uploads2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150683,'2026-06-22 08:58:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../.env',404,'GET',NULL,'93.123.109.164'),(150684,'2026-06-22 08:58:04','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150685,'2026-06-22 08:58:05','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150686,'2026-06-22 08:58:07','/img../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150687,'2026-06-22 08:58:07','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../.env',404,'GET',NULL,'93.123.109.164'),(150688,'2026-06-22 08:58:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../.env',404,'GET',NULL,'93.123.109.164'),(150689,'2026-06-22 08:58:15','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150690,'2026-06-22 08:58:16','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150691,'2026-06-22 08:58:20','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150692,'2026-06-22 08:58:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150693,'2026-06-22 08:58:22','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150694,'2026-06-22 08:58:23','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150695,'2026-06-22 08:58:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150696,'2026-06-22 08:58:26','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150697,'2026-06-22 08:58:27','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150698,'2026-06-22 08:58:28','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150699,'2026-06-22 08:58:29','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150700,'2026-06-22 08:58:30','/img/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img//.env',404,'GET',NULL,'93.123.109.164'),(150701,'2026-06-22 08:58:31','/img../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150702,'2026-06-22 08:58:32','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150703,'2026-06-22 08:58:34','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150704,'2026-06-22 08:58:35','/img/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150705,'2026-06-22 08:58:35','/js../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../.env',404,'GET',NULL,'93.123.109.164'),(150706,'2026-06-22 08:58:36','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../.env',404,'GET',NULL,'93.123.109.164'),(150707,'2026-06-22 08:58:38','/img...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150708,'2026-06-22 08:58:40','/img....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/img2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150709,'2026-06-22 08:58:42','/js../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150710,'2026-06-22 08:58:43','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150711,'2026-06-22 08:58:45','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150712,'2026-06-22 08:58:46','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../.env',404,'GET',NULL,'93.123.109.164'),(150713,'2026-06-22 08:58:49','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150714,'2026-06-22 08:58:51','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150715,'2026-06-22 08:58:54','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150716,'2026-06-22 08:58:58','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150717,'2026-06-22 08:58:59','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150718,'2026-06-22 08:58:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150719,'2026-06-22 08:59:00','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150720,'2026-06-22 08:59:02','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150721,'2026-06-22 08:59:02','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150722,'2026-06-22 08:59:03','/js../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150723,'2026-06-22 08:59:03','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150724,'2026-06-22 08:59:04','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150725,'2026-06-22 08:59:04','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150726,'2026-06-22 08:59:06','/css/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css//.env',404,'GET',NULL,'93.123.109.164'),(150727,'2026-06-22 08:59:06','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150728,'2026-06-22 08:59:08','/css../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../.env',404,'GET',NULL,'93.123.109.164'),(150729,'2026-06-22 08:59:10','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../.env',404,'GET',NULL,'93.123.109.164'),(150730,'2026-06-22 08:59:15','/css/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150731,'2026-06-22 08:59:16','/css../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150732,'2026-06-22 08:59:17','/css...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150733,'2026-06-22 08:59:19','/css....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150734,'2026-06-22 08:59:21','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150735,'2026-06-22 08:59:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150736,'2026-06-22 08:59:22','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150737,'2026-06-22 08:59:25','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../.env',404,'GET',NULL,'93.123.109.164'),(150738,'2026-06-22 08:59:31','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150739,'2026-06-22 08:59:32','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150740,'2026-06-22 08:59:33','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150741,'2026-06-22 08:59:35','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150742,'2026-06-22 08:59:37','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150743,'2026-06-22 08:59:38','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150744,'2026-06-22 08:59:39','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150745,'2026-06-22 08:59:40','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150746,'2026-06-22 08:59:41','/css../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/css../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150747,'2026-06-22 08:59:42','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150748,'2026-06-22 08:59:45','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150749,'2026-06-22 08:59:45','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150750,'2026-06-22 08:59:47','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150751,'2026-06-22 08:59:47','/js/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js//.env',404,'GET',NULL,'93.123.109.164'),(150752,'2026-06-22 08:59:49','/media../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../.env',404,'GET',NULL,'93.123.109.164'),(150753,'2026-06-22 08:59:51','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../.env',404,'GET',NULL,'93.123.109.164'),(150754,'2026-06-22 08:59:54','/js/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150755,'2026-06-22 08:59:55','/media../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150756,'2026-06-22 08:59:58','/js...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150757,'2026-06-22 09:00:00','/js....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/js2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150758,'2026-06-22 09:00:01','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150759,'2026-06-22 09:00:03','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150760,'2026-06-22 09:00:04','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150761,'2026-06-22 09:00:05','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../.env',404,'GET',NULL,'93.123.109.164'),(150762,'2026-06-22 09:00:06','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../.env',404,'GET',NULL,'93.123.109.164'),(150763,'2026-06-22 09:00:10','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150764,'2026-06-22 09:00:13','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150765,'2026-06-22 09:00:15','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150766,'2026-06-22 09:00:16','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150767,'2026-06-22 09:00:17','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150768,'2026-06-22 09:00:18','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150769,'2026-06-22 09:00:19','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150770,'2026-06-22 09:00:19','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150771,'2026-06-22 09:00:21','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150772,'2026-06-22 09:00:21','/media../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150773,'2026-06-22 09:00:22','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150774,'2026-06-22 09:00:23','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150775,'2026-06-22 09:00:25','/media/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media//.env',404,'GET',NULL,'93.123.109.164'),(150776,'2026-06-22 09:00:25','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150777,'2026-06-22 09:00:28','/public../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../.env',404,'GET',NULL,'93.123.109.164'),(150778,'2026-06-22 09:00:29','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../.env',404,'GET',NULL,'93.123.109.164'),(150779,'2026-06-22 09:00:32','/media/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150780,'2026-06-22 09:00:34','/public../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150781,'2026-06-22 09:00:35','/media...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150782,'2026-06-22 09:00:36','/media....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/media2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150783,'2026-06-22 09:00:38','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150784,'2026-06-22 09:00:39','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150785,'2026-06-22 09:00:41','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150786,'2026-06-22 09:00:42','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../.env',404,'GET',NULL,'93.123.109.164'),(150787,'2026-06-22 09:00:48','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150788,'2026-06-22 09:00:48','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150789,'2026-06-22 09:00:49','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150790,'2026-06-22 09:00:51','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150791,'2026-06-22 09:00:52','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150792,'2026-06-22 09:00:53','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150793,'2026-06-22 09:00:53','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150794,'2026-06-22 09:00:55','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150795,'2026-06-22 09:00:55','/public../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150796,'2026-06-22 09:00:57','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150797,'2026-06-22 09:00:58','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150798,'2026-06-22 09:00:59','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150799,'2026-06-22 09:00:59','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150800,'2026-06-22 09:01:00','/public/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public//.env',404,'GET',NULL,'93.123.109.164'),(150801,'2026-06-22 09:01:01','/api../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../.env',404,'GET',NULL,'93.123.109.164'),(150802,'2026-06-22 09:01:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../.env',404,'GET',NULL,'93.123.109.164'),(150803,'2026-06-22 09:01:07','/public/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150804,'2026-06-22 09:01:07','/api../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150805,'2026-06-22 09:01:09','/public...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150806,'2026-06-22 09:01:12','/public....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/public2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150807,'2026-06-22 09:01:14','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150808,'2026-06-22 09:01:15','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150809,'2026-06-22 09:01:15','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150810,'2026-06-22 09:01:17','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../.env',404,'GET',NULL,'93.123.109.164'),(150811,'2026-06-22 09:01:22','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150812,'2026-06-22 09:01:22','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150813,'2026-06-22 09:01:24','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150814,'2026-06-22 09:01:27','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150815,'2026-06-22 09:01:29','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150816,'2026-06-22 09:01:30','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150817,'2026-06-22 09:01:30','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150818,'2026-06-22 09:01:32','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150819,'2026-06-22 09:01:32','/api../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150820,'2026-06-22 09:01:33','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150821,'2026-06-22 09:01:35','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150822,'2026-06-22 09:01:37','/api/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api//.env',404,'GET',NULL,'93.123.109.164'),(150823,'2026-06-22 09:01:45','/api/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150824,'2026-06-22 09:01:48','/api...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api2f..2f.env',404,'GET',NULL,'93.123.109.164'),(150825,'2026-06-22 09:01:49','/api....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/api2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(150826,'2026-06-22 09:04:44','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/login',404,'GET',NULL,'93.123.109.164'),(150827,'2026-06-22 09:04:46','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/register',404,'GET',NULL,'93.123.109.164'),(150828,'2026-06-22 09:04:47','/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/dashboard',404,'GET',NULL,'93.123.109.164'),(150829,'2026-06-22 09:04:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/admin',404,'GET',NULL,'93.123.109.164'),(150830,'2026-06-22 09:04:54','/home','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/home',404,'GET',NULL,'93.123.109.164'),(150831,'2026-06-22 09:04:56','/app','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/app',404,'GET',NULL,'93.123.109.164'),(150832,'2026-06-22 09:04:58','/checkout','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/checkout',404,'GET',NULL,'93.123.109.164'),(150833,'2026-06-22 09:04:59','/profile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/profile',404,'GET',NULL,'93.123.109.164'),(150834,'2026-06-22 09:05:01','/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/settings',404,'GET',NULL,'93.123.109.164'),(150835,'2026-06-22 09:05:03','/livewire/update','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/129.0.6668.100 Safari/537.36','http://solsculpting.com/livewire/update',404,'GET',NULL,'93.123.109.164'),(150836,'2026-06-22 09:35:27','/LICENSE.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'188.166.211.194'),(150837,'2026-06-22 09:35:51','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'188.166.211.194'),(150838,'2026-06-22 09:36:30','/media/system/js/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'188.166.211.194'),(150839,'2026-06-22 15:40:10','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/118.0',NULL,404,'GET',NULL,'195.178.110.159'),(150840,'2026-06-22 18:16:12','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.53.69.234'),(150841,'2026-06-22 18:16:14','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.53.69.234'),(150842,'2026-06-22 18:16:15','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'34.53.69.234'),(150843,'2026-06-22 18:16:16','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.53.69.234'),(150844,'2026-06-22 18:16:17','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.53.69.234'),(150845,'2026-06-22 18:16:18','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/new/',404,'GET',NULL,'34.53.69.234'),(150846,'2026-06-22 18:40:02','//sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com//sitemap.xml',404,'GET',NULL,'93.123.109.164'),(150847,'2026-06-22 18:40:02','//wp-sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com//wp-sitemap.xml',404,'GET',NULL,'93.123.109.164'),(150848,'2026-06-22 18:40:11','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/storage/logs/laravel.log',404,'GET',NULL,'93.123.109.164'),(150849,'2026-06-22 18:40:12','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-config.php.bak',404,'GET',NULL,'93.123.109.164'),(150850,'2026-06-22 18:40:12','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'93.123.109.164'),(150851,'2026-06-22 18:40:13','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.git/config',404,'GET',NULL,'93.123.109.164'),(150852,'2026-06-22 18:40:13','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150853,'2026-06-22 18:40:13','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/debug.log',404,'GET',NULL,'93.123.109.164'),(150854,'2026-06-22 18:40:13','/horizon/api/stats','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/horizon/api/stats',404,'GET',NULL,'93.123.109.164'),(150855,'2026-06-22 18:40:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env',404,'GET',NULL,'93.123.109.164'),(150856,'2026-06-22 18:40:13','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150857,'2026-06-22 18:40:14','/api/debug/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/debug/env',404,'GET',NULL,'93.123.109.164'),(150858,'2026-06-22 18:40:14','/api/v1/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/config',404,'GET',NULL,'93.123.109.164'),(150859,'2026-06-22 18:40:14','/telescope/api/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/telescope/api/requests',404,'GET',NULL,'93.123.109.164'),(150860,'2026-06-22 18:40:14','/storage/logs/laravel-2024.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/storage/logs/laravel-2024.log',404,'GET',NULL,'93.123.109.164'),(150861,'2026-06-22 18:40:14','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'93.123.109.164'),(150862,'2026-06-22 18:40:15','/.s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.s3cfg',404,'GET',NULL,'93.123.109.164'),(150863,'2026-06-22 18:40:15','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.aws/config',404,'GET',NULL,'93.123.109.164'),(150864,'2026-06-22 18:40:15','/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150865,'2026-06-22 18:40:15','/metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/metrics',404,'GET',NULL,'93.123.109.164'),(150866,'2026-06-22 18:40:15','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/composer.json',404,'GET',NULL,'93.123.109.164'),(150867,'2026-06-22 18:40:15','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config.json',404,'GET',NULL,'93.123.109.164'),(150868,'2026-06-22 18:40:16','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.production',404,'GET',NULL,'93.123.109.164'),(150869,'2026-06-22 18:40:16','/api/v1/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/env',404,'GET',NULL,'93.123.109.164'),(150870,'2026-06-22 18:40:16','/.boto','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.boto',404,'GET',NULL,'93.123.109.164'),(150871,'2026-06-22 18:40:17','/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ssh/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150872,'2026-06-22 18:40:17','/static.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static.env',404,'GET',NULL,'93.123.109.164'),(150873,'2026-06-22 18:40:17','/_profiler/latest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/_profiler/latest',404,'GET',NULL,'93.123.109.164'),(150874,'2026-06-22 18:40:17','/api/debug/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/debug/info',404,'GET',NULL,'93.123.109.164'),(150875,'2026-06-22 18:40:17','/horizon','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/horizon',404,'GET',NULL,'93.123.109.164'),(150876,'2026-06-22 18:40:17','/api/v2/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v2/config',404,'GET',NULL,'93.123.109.164'),(150877,'2026-06-22 18:40:18','/wp-content/debug.log.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/debug.log.1',404,'GET',NULL,'93.123.109.164'),(150878,'2026-06-22 18:40:18','/actuator/prometheus','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/actuator/prometheus',404,'GET',NULL,'93.123.109.164'),(150879,'2026-06-22 18:40:18','/root/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/root/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150880,'2026-06-22 18:40:18','/wp-config.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-config.php~',404,'GET',NULL,'93.123.109.164'),(150881,'2026-06-22 18:40:18','/storage/logs/laravel-2025.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/storage/logs/laravel-2025.log',404,'GET',NULL,'93.123.109.164'),(150882,'2026-06-22 18:40:19','/public.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public.env',404,'GET',NULL,'93.123.109.164'),(150883,'2026-06-22 18:40:19','/wp-content/uploads/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/uploads/debug.log',404,'GET',NULL,'93.123.109.164'),(150884,'2026-06-22 18:40:19','/assets.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets.env',404,'GET',NULL,'93.123.109.164'),(150885,'2026-06-22 18:40:20','/s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/s3cfg',404,'GET',NULL,'93.123.109.164'),(150886,'2026-06-22 18:40:20','/aws-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/aws-credentials.json',404,'GET',NULL,'93.123.109.164'),(150887,'2026-06-22 18:40:20','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/debug.log',404,'GET',NULL,'93.123.109.164'),(150888,'2026-06-22 18:40:20','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'93.123.109.164'),(150889,'2026-06-22 18:40:20','/horizon/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/horizon/dashboard',404,'GET',NULL,'93.123.109.164'),(150890,'2026-06-22 18:40:20','/backup.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/backup.sql',404,'GET',NULL,'93.123.109.164'),(150891,'2026-06-22 18:40:20','/.ssh/id_ecdsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ssh/id_ecdsa',404,'GET',NULL,'93.123.109.164'),(150892,'2026-06-22 18:40:20','/home/ubuntu/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/ubuntu/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150893,'2026-06-22 18:40:21','/static../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../.env',404,'GET',NULL,'93.123.109.164'),(150894,'2026-06-22 18:40:21','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150895,'2026-06-22 18:40:21','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.local',404,'GET',NULL,'93.123.109.164'),(150896,'2026-06-22 18:40:21','/api/metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/metrics',404,'GET',NULL,'93.123.109.164'),(150897,'2026-06-22 18:40:21','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'93.123.109.164'),(150898,'2026-06-22 18:40:21','/api/v1/internal/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/internal/settings',404,'GET',NULL,'93.123.109.164'),(150899,'2026-06-22 18:40:21','/storage/logs/laravel-2026.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/storage/logs/laravel-2026.log',404,'GET',NULL,'93.123.109.164'),(150900,'2026-06-22 18:40:22','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.production',404,'GET',NULL,'93.123.109.164'),(150901,'2026-06-22 18:40:22','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config.env',404,'GET',NULL,'93.123.109.164'),(150902,'2026-06-22 18:40:22','/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/debug.log',404,'GET',NULL,'93.123.109.164'),(150903,'2026-06-22 18:40:22','/.litespeed/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.litespeed/debug.log',404,'GET',NULL,'93.123.109.164'),(150904,'2026-06-22 18:40:23','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-config.php.old',404,'GET',NULL,'93.123.109.164'),(150905,'2026-06-22 18:40:23','/.s3credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.s3credentials',404,'GET',NULL,'93.123.109.164'),(150906,'2026-06-22 18:40:23','/wp-content/debug.log.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/debug.log.1',404,'GET',NULL,'93.123.109.164'),(150907,'2026-06-22 18:40:23','/s3-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/s3-credentials.json',404,'GET',NULL,'93.123.109.164'),(150908,'2026-06-22 18:40:23','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/settings.py',404,'GET',NULL,'93.123.109.164'),(150909,'2026-06-22 18:40:23','/api/v1/env/wp-json/wp/v2/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/env/wp-json/wp/v2/settings',404,'GET',NULL,'93.123.109.164'),(150910,'2026-06-22 18:40:23','/.ssh/id_dsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ssh/id_dsa',404,'GET',NULL,'93.123.109.164'),(150911,'2026-06-22 18:40:24','/api/v1/sendgrid/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/sendgrid/config',404,'GET',NULL,'93.123.109.164'),(150912,'2026-06-22 18:40:24','/dist.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/dist.env',404,'GET',NULL,'93.123.109.164'),(150913,'2026-06-22 18:40:24','/_metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/_metrics',404,'GET',NULL,'93.123.109.164'),(150914,'2026-06-22 18:40:24','/home/ec2-user/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/ec2-user/.docker/config.json',404,'GET',NULL,'93.123.109.164'),(150915,'2026-06-22 18:40:25','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150916,'2026-06-22 18:40:25','/wp-content/uploads/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/uploads/debug.log',404,'GET',NULL,'93.123.109.164'),(150917,'2026-06-22 18:40:25','/media.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media.env',404,'GET',NULL,'93.123.109.164'),(150918,'2026-06-22 18:40:26','/wp-content/plugins/wp-mail-smtp/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/plugins/wp-mail-smtp/tmp/debug.log',404,'GET',NULL,'93.123.109.164'),(150919,'2026-06-22 18:40:26','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150920,'2026-06-22 18:40:26','/wp-content/plugins/smtp-mail/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/plugins/smtp-mail/tmp/debug.log',404,'GET',NULL,'93.123.109.164'),(150921,'2026-06-22 18:40:26','/aws.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/aws.json',404,'GET',NULL,'93.123.109.164'),(150922,'2026-06-22 18:40:26','/api/v1/auth/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/auth/config',404,'GET',NULL,'93.123.109.164'),(150923,'2026-06-22 18:40:26','/.ssh/id_rsa.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ssh/id_rsa.pem',404,'GET',NULL,'93.123.109.164'),(150924,'2026-06-22 18:40:26','/.dockerconfigjson','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.dockerconfigjson',404,'GET',NULL,'93.123.109.164'),(150925,'2026-06-22 18:40:27','/api/v1/smtp/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/smtp/credentials',404,'GET',NULL,'93.123.109.164'),(150926,'2026-06-22 18:40:27','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.local',404,'GET',NULL,'93.123.109.164'),(150927,'2026-06-22 18:40:27','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config/database.yml',404,'GET',NULL,'93.123.109.164'),(150928,'2026-06-22 18:40:27','/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/credentials.json',404,'GET',NULL,'93.123.109.164'),(150929,'2026-06-22 18:40:27','/stats/prometheus','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/stats/prometheus',404,'GET',NULL,'93.123.109.164'),(150930,'2026-06-22 18:40:28','/uploads.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads.env',404,'GET',NULL,'93.123.109.164'),(150931,'2026-06-22 18:40:28','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config.env',404,'GET',NULL,'93.123.109.164'),(150932,'2026-06-22 18:40:28','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150933,'2026-06-22 18:40:28','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/application.properties',404,'GET',NULL,'93.123.109.164'),(150934,'2026-06-22 18:40:28','/api/v1/cloud/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/cloud/credentials',404,'GET',NULL,'93.123.109.164'),(150935,'2026-06-22 18:40:28','/wp-content/plugins/wp-smtp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/plugins/wp-smtp/debug.log',404,'GET',NULL,'93.123.109.164'),(150936,'2026-06-22 18:40:28','/api/v1/api-keys','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/api-keys',404,'GET',NULL,'93.123.109.164'),(150937,'2026-06-22 18:40:28','/home/ubuntu/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/ubuntu/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150938,'2026-06-22 18:40:29','/home/ubuntu/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/ubuntu/.ssh/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150939,'2026-06-22 18:40:29','/dump.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/dump.sql',404,'GET',NULL,'93.123.109.164'),(150940,'2026-06-22 18:40:29','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config.env',404,'GET',NULL,'93.123.109.164'),(150941,'2026-06-22 18:40:29','/static../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150942,'2026-06-22 18:40:29','/storage.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/storage.env',404,'GET',NULL,'93.123.109.164'),(150943,'2026-06-22 18:40:29','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/application.yml',404,'GET',NULL,'93.123.109.164'),(150944,'2026-06-22 18:40:29','/wp-content/plugins/wp-mail/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/plugins/wp-mail/debug.log',404,'GET',NULL,'93.123.109.164'),(150945,'2026-06-22 18:40:30','/files.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files.env',404,'GET',NULL,'93.123.109.164'),(150946,'2026-06-22 18:40:30','/home/ec2-user/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/ec2-user/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150947,'2026-06-22 18:40:31','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/web.config',404,'GET',NULL,'93.123.109.164'),(150948,'2026-06-22 18:40:31','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/.env',404,'GET',NULL,'93.123.109.164'),(150949,'2026-06-22 18:40:32','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/docker-compose.yaml',404,'GET',NULL,'93.123.109.164'),(150950,'2026-06-22 18:40:32','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/docker-compose.yml',404,'GET',NULL,'93.123.109.164'),(150951,'2026-06-22 18:40:32','/wp-content/uploads/smtp-debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wp-content/uploads/smtp-debug.log',404,'GET',NULL,'93.123.109.164'),(150952,'2026-06-22 18:40:32','/static/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/.env',404,'GET',NULL,'93.123.109.164'),(150953,'2026-06-22 18:40:32','/home/ec2-user/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/ec2-user/.ssh/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150954,'2026-06-22 18:40:32','/db.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/db.sql',404,'GET',NULL,'93.123.109.164'),(150955,'2026-06-22 18:40:32','/home/deploy/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/deploy/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150956,'2026-06-22 18:40:32','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.npmrc',404,'GET',NULL,'93.123.109.164'),(150957,'2026-06-22 18:40:32','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150958,'2026-06-22 18:40:33','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/www-data/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150959,'2026-06-22 18:40:33','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/dist/.env',404,'GET',NULL,'93.123.109.164'),(150960,'2026-06-22 18:40:33','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150961,'2026-06-22 18:40:33','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/.env',404,'GET',NULL,'93.123.109.164'),(150962,'2026-06-22 18:40:33','/home/git/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/git/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150963,'2026-06-22 18:40:34','/media/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/.env',404,'GET',NULL,'93.123.109.164'),(150964,'2026-06-22 18:40:34','/config.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config.yml',404,'GET',NULL,'93.123.109.164'),(150965,'2026-06-22 18:40:34','/home/admin/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/admin/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150966,'2026-06-22 18:40:34','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150967,'2026-06-22 18:40:34','/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/config.yaml',404,'GET',NULL,'93.123.109.164'),(150968,'2026-06-22 18:40:35','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/.env',404,'GET',NULL,'93.123.109.164'),(150969,'2026-06-22 18:40:35','/application.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/application.yaml',404,'GET',NULL,'93.123.109.164'),(150970,'2026-06-22 18:40:35','/home/user/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/user/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150971,'2026-06-22 18:40:36','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150972,'2026-06-22 18:40:36','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(150973,'2026-06-22 18:40:36','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150974,'2026-06-22 18:40:37','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/storage/.env',404,'GET',NULL,'93.123.109.164'),(150975,'2026-06-22 18:40:37','/Dockerfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/Dockerfile',404,'GET',NULL,'93.123.109.164'),(150976,'2026-06-22 18:40:37','/home/vagrant/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home/vagrant/.ssh/id_rsa',404,'GET',NULL,'93.123.109.164'),(150977,'2026-06-22 18:40:38','/static/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static//.env',404,'GET',NULL,'93.123.109.164'),(150978,'2026-06-22 18:40:38','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150979,'2026-06-22 18:40:39','/database.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/database.sql',404,'GET',NULL,'93.123.109.164'),(150980,'2026-06-22 18:40:39','/files/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/.env',404,'GET',NULL,'93.123.109.164'),(150981,'2026-06-22 18:40:39','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/appsettings.json',404,'GET',NULL,'93.123.109.164'),(150982,'2026-06-22 18:40:39','/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/id_rsa',404,'GET',NULL,'93.123.109.164'),(150983,'2026-06-22 18:40:40','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150984,'2026-06-22 18:40:40','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.local',404,'GET',NULL,'93.123.109.164'),(150985,'2026-06-22 18:40:41','/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/id_ed25519',404,'GET',NULL,'93.123.109.164'),(150986,'2026-06-22 18:40:42','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(150987,'2026-06-22 18:40:44','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.backup',404,'GET',NULL,'93.123.109.164'),(150988,'2026-06-22 18:40:44','/server.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/server.key',404,'GET',NULL,'93.123.109.164'),(150989,'2026-06-22 18:40:45','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(150990,'2026-06-22 18:40:46','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.bak',404,'GET',NULL,'93.123.109.164'),(150991,'2026-06-22 18:40:47','/private.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/private.key',404,'GET',NULL,'93.123.109.164'),(150992,'2026-06-22 18:40:47','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.old',404,'GET',NULL,'93.123.109.164'),(150993,'2026-06-22 18:40:47','/static../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static../config/database.yml',404,'GET',NULL,'93.123.109.164'),(150994,'2026-06-22 18:40:49','/db_backup.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/db_backup.sql',404,'GET',NULL,'93.123.109.164'),(150995,'2026-06-22 18:40:49','/ssl.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/ssl.key',404,'GET',NULL,'93.123.109.164'),(150996,'2026-06-22 18:40:49','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.prod',404,'GET',NULL,'93.123.109.164'),(150997,'2026-06-22 18:40:49','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(150998,'2026-06-22 18:40:50','/static/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(150999,'2026-06-22 18:40:52','/deploy.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/deploy.pem',404,'GET',NULL,'93.123.109.164'),(151000,'2026-06-22 18:40:52','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.production',404,'GET',NULL,'93.123.109.164'),(151001,'2026-06-22 18:40:52','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151002,'2026-06-22 18:40:54','/key.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/key.pem',404,'GET',NULL,'93.123.109.164'),(151003,'2026-06-22 18:40:54','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.staging',404,'GET',NULL,'93.123.109.164'),(151004,'2026-06-22 18:40:55','/assets../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../.env',404,'GET',NULL,'93.123.109.164'),(151005,'2026-06-22 18:40:55','/static...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151006,'2026-06-22 18:40:56','/private.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/private.pem',404,'GET',NULL,'93.123.109.164'),(151007,'2026-06-22 18:40:57','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env.dev',404,'GET',NULL,'93.123.109.164'),(151008,'2026-06-22 18:40:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../.env',404,'GET',NULL,'93.123.109.164'),(151009,'2026-06-22 18:40:58','/static....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/static2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151010,'2026-06-22 18:40:59','/mysql.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/mysql.sql',404,'GET',NULL,'93.123.109.164'),(151011,'2026-06-22 18:41:01','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151012,'2026-06-22 18:41:01','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/env',404,'GET',NULL,'93.123.109.164'),(151013,'2026-06-22 18:41:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ev',404,'GET',NULL,'93.123.109.164'),(151014,'2026-06-22 18:41:03','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151015,'2026-06-22 18:41:04','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env',404,'GET',NULL,'93.123.109.164'),(151016,'2026-06-22 18:41:04','/assets../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151017,'2026-06-22 18:41:05','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../.env',404,'GET',NULL,'93.123.109.164'),(151018,'2026-06-22 18:41:06','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/2Eenv',404,'GET',NULL,'93.123.109.164'),(151019,'2026-06-22 18:41:07','/data.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/data.sql',404,'GET',NULL,'93.123.109.164'),(151020,'2026-06-22 18:41:08','/.ENV','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.ENV',404,'GET',NULL,'93.123.109.164'),(151021,'2026-06-22 18:41:10','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151022,'2026-06-22 18:41:11','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151023,'2026-06-22 18:41:11','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/.env',404,'GET',NULL,'93.123.109.164'),(151024,'2026-06-22 18:41:14','/site.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/site.sql',404,'GET',NULL,'93.123.109.164'),(151025,'2026-06-22 18:41:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151026,'2026-06-22 18:41:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151027,'2026-06-22 18:41:23','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151028,'2026-06-22 18:41:24','/wordpress.sql#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/wordpress.sql',404,'GET',NULL,'93.123.109.164'),(151029,'2026-06-22 18:41:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151030,'2026-06-22 18:41:26','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151031,'2026-06-22 18:41:27','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151032,'2026-06-22 18:41:28','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151033,'2026-06-22 18:41:29','/assets/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets//.env',404,'GET',NULL,'93.123.109.164'),(151034,'2026-06-22 18:41:31','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151035,'2026-06-22 18:41:32','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151036,'2026-06-22 18:41:34','/assets../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151037,'2026-06-22 18:41:37','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151038,'2026-06-22 18:41:40','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151039,'2026-06-22 18:41:41','/assets/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151040,'2026-06-22 18:41:41','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','https://solsculpting.com//.env',404,'GET',NULL,'93.123.109.164'),(151041,'2026-06-22 18:41:43','/files../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../.env',404,'GET',NULL,'93.123.109.164'),(151042,'2026-06-22 18:41:43','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','https://solsculpting.com//.env.local',404,'GET',NULL,'93.123.109.164'),(151043,'2026-06-22 18:41:43','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../.env',404,'GET',NULL,'93.123.109.164'),(151044,'2026-06-22 18:41:44','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','https://solsculpting.com//.env.backup',404,'GET',NULL,'93.123.109.164'),(151045,'2026-06-22 18:41:46','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com//.env',404,'POST',NULL,'93.123.109.164'),(151046,'2026-06-22 18:41:47','/assets...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151047,'2026-06-22 18:41:50','/assets....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/assets2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151048,'2026-06-22 18:41:50','//.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com//.env.local',404,'POST',NULL,'93.123.109.164'),(151049,'2026-06-22 18:41:52','//.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com//.env.backup',404,'POST',NULL,'93.123.109.164'),(151050,'2026-06-22 18:41:52','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151051,'2026-06-22 18:41:53','/files../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151052,'2026-06-22 18:41:54','//.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com//.env.production',404,'POST',NULL,'93.123.109.164'),(151053,'2026-06-22 18:41:55','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151054,'2026-06-22 18:41:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','https://solsculpting.com//.env',404,'GET',NULL,'93.123.109.164'),(151055,'2026-06-22 18:41:57','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','https://solsculpting.com//.env.local',404,'GET',NULL,'93.123.109.164'),(151056,'2026-06-22 18:41:59','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../.env',404,'GET',NULL,'93.123.109.164'),(151057,'2026-06-22 18:41:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151058,'2026-06-22 18:42:01','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','https://solsculpting.com//.env.backup',404,'GET',NULL,'93.123.109.164'),(151059,'2026-06-22 18:42:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/images/../.env',404,'GET',NULL,'93.123.109.164'),(151060,'2026-06-22 18:42:04','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'93.123.109.164'),(151061,'2026-06-22 18:42:06','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../.env',404,'GET',NULL,'93.123.109.164'),(151062,'2026-06-22 18:42:07','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151063,'2026-06-22 18:42:08','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/v1/../../.env',404,'GET',NULL,'93.123.109.164'),(151064,'2026-06-22 18:42:08','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151065,'2026-06-22 18:42:10','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151066,'2026-06-22 18:42:11','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151067,'2026-06-22 18:42:13','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151068,'2026-06-22 18:42:13','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151069,'2026-06-22 18:42:14','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151070,'2026-06-22 18:42:14','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151071,'2026-06-22 18:42:16','/files../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151072,'2026-06-22 18:42:16','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151073,'2026-06-22 18:42:17','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151074,'2026-06-22 18:42:18','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151075,'2026-06-22 18:42:19','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151076,'2026-06-22 18:42:19','/files/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files//.env',404,'GET',NULL,'93.123.109.164'),(151077,'2026-06-22 18:42:20','/uploads../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../.env',404,'GET',NULL,'93.123.109.164'),(151078,'2026-06-22 18:42:24','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../.env',404,'GET',NULL,'93.123.109.164'),(151079,'2026-06-22 18:42:27','/files/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151080,'2026-06-22 18:42:29','/uploads../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151081,'2026-06-22 18:42:30','/files...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151082,'2026-06-22 18:42:32','/files....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/files2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151083,'2026-06-22 18:42:33','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151084,'2026-06-22 18:42:35','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151085,'2026-06-22 18:42:35','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151086,'2026-06-22 18:42:37','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'93.123.109.164'),(151087,'2026-06-22 18:42:42','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151088,'2026-06-22 18:42:44','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151089,'2026-06-22 18:42:44','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151090,'2026-06-22 18:42:45','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151091,'2026-06-22 18:42:46','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151092,'2026-06-22 18:42:48','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151093,'2026-06-22 18:42:49','/uploads../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151094,'2026-06-22 18:42:50','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151095,'2026-06-22 18:42:51','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151096,'2026-06-22 18:42:51','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151097,'2026-06-22 18:42:52','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151098,'2026-06-22 18:42:52','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151099,'2026-06-22 18:42:53','/img../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../.env',404,'GET',NULL,'93.123.109.164'),(151100,'2026-06-22 18:42:54','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151101,'2026-06-22 18:42:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../.env',404,'GET',NULL,'93.123.109.164'),(151102,'2026-06-22 18:42:58','/uploads/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads//.env',404,'GET',NULL,'93.123.109.164'),(151103,'2026-06-22 18:43:02','/img../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151104,'2026-06-22 18:43:03','/uploads/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151105,'2026-06-22 18:43:06','/uploads...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151106,'2026-06-22 18:43:07','/uploads....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/uploads2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151107,'2026-06-22 18:43:09','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151108,'2026-06-22 18:43:11','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151109,'2026-06-22 18:43:13','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151110,'2026-06-22 18:43:15','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../.env',404,'GET',NULL,'93.123.109.164'),(151111,'2026-06-22 18:43:19','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151112,'2026-06-22 18:43:20','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151113,'2026-06-22 18:43:20','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151114,'2026-06-22 18:43:22','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151115,'2026-06-22 18:43:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151116,'2026-06-22 18:43:27','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151117,'2026-06-22 18:43:28','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151118,'2026-06-22 18:43:28','/img../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151119,'2026-06-22 18:43:30','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151120,'2026-06-22 18:43:30','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151121,'2026-06-22 18:43:32','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151122,'2026-06-22 18:43:32','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151123,'2026-06-22 18:43:34','/js../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../.env',404,'GET',NULL,'93.123.109.164'),(151124,'2026-06-22 18:43:34','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151125,'2026-06-22 18:43:35','/img/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img//.env',404,'GET',NULL,'93.123.109.164'),(151126,'2026-06-22 18:43:35','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../.env',404,'GET',NULL,'93.123.109.164'),(151127,'2026-06-22 18:43:43','/js../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151128,'2026-06-22 18:43:44','/img/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151129,'2026-06-22 18:43:47','/img...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151130,'2026-06-22 18:43:48','/img....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/img2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151131,'2026-06-22 18:43:49','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151132,'2026-06-22 18:43:50','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151133,'2026-06-22 18:43:51','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151134,'2026-06-22 18:43:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../.env',404,'GET',NULL,'93.123.109.164'),(151135,'2026-06-22 18:43:57','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151136,'2026-06-22 18:43:59','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151137,'2026-06-22 18:44:00','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151138,'2026-06-22 18:44:01','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151139,'2026-06-22 18:44:02','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151140,'2026-06-22 18:44:03','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151141,'2026-06-22 18:44:04','/js../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151142,'2026-06-22 18:44:06','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151143,'2026-06-22 18:44:06','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151144,'2026-06-22 18:44:08','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151145,'2026-06-22 18:44:08','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151146,'2026-06-22 18:44:10','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151147,'2026-06-22 18:44:10','/css../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../.env',404,'GET',NULL,'93.123.109.164'),(151148,'2026-06-22 18:44:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../.env',404,'GET',NULL,'93.123.109.164'),(151149,'2026-06-22 18:44:15','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151150,'2026-06-22 18:44:15','/css/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css//.env',404,'GET',NULL,'93.123.109.164'),(151151,'2026-06-22 18:44:19','/css../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151152,'2026-06-22 18:44:21','/css/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151153,'2026-06-22 18:44:24','/css...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151154,'2026-06-22 18:44:25','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151155,'2026-06-22 18:44:26','/css....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151156,'2026-06-22 18:44:27','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151157,'2026-06-22 18:44:30','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151158,'2026-06-22 18:44:32','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../.env',404,'GET',NULL,'93.123.109.164'),(151159,'2026-06-22 18:44:33','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151160,'2026-06-22 18:44:34','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151161,'2026-06-22 18:44:36','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151162,'2026-06-22 18:44:37','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151163,'2026-06-22 18:44:38','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151164,'2026-06-22 18:44:39','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151165,'2026-06-22 18:44:40','/css../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/css../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151166,'2026-06-22 18:44:41','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151167,'2026-06-22 18:44:42','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151168,'2026-06-22 18:44:45','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151169,'2026-06-22 18:44:45','/media../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../.env',404,'GET',NULL,'93.123.109.164'),(151170,'2026-06-22 18:44:46','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../.env',404,'GET',NULL,'93.123.109.164'),(151171,'2026-06-22 18:44:47','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151172,'2026-06-22 18:44:49','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151173,'2026-06-22 18:44:50','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151174,'2026-06-22 18:44:51','/media../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151175,'2026-06-22 18:44:52','/js/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js//.env',404,'GET',NULL,'93.123.109.164'),(151176,'2026-06-22 18:44:57','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151177,'2026-06-22 18:44:57','/js/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151178,'2026-06-22 18:45:03','/js...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151179,'2026-06-22 18:45:04','/js....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/js2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151180,'2026-06-22 18:45:06','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151181,'2026-06-22 18:45:06','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151182,'2026-06-22 18:45:07','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151183,'2026-06-22 18:45:07','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151184,'2026-06-22 18:45:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../.env',404,'GET',NULL,'93.123.109.164'),(151185,'2026-06-22 18:45:10','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151186,'2026-06-22 18:45:12','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151187,'2026-06-22 18:45:13','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151188,'2026-06-22 18:45:16','/media../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151189,'2026-06-22 18:45:16','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151190,'2026-06-22 18:45:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151191,'2026-06-22 18:45:19','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151192,'2026-06-22 18:45:20','/public../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../.env',404,'GET',NULL,'93.123.109.164'),(151193,'2026-06-22 18:45:22','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../.env',404,'GET',NULL,'93.123.109.164'),(151194,'2026-06-22 18:45:22','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151195,'2026-06-22 18:45:24','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151196,'2026-06-22 18:45:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151197,'2026-06-22 18:45:27','/public../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151198,'2026-06-22 18:45:27','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151199,'2026-06-22 18:45:28','/media/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media//.env',404,'GET',NULL,'93.123.109.164'),(151200,'2026-06-22 18:45:35','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151201,'2026-06-22 18:45:36','/media/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151202,'2026-06-22 18:45:38','/media...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151203,'2026-06-22 18:45:40','/media....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/media2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151204,'2026-06-22 18:45:40','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151205,'2026-06-22 18:45:41','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151206,'2026-06-22 18:45:42','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151207,'2026-06-22 18:45:42','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151208,'2026-06-22 18:45:43','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151209,'2026-06-22 18:45:45','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../.env',404,'GET',NULL,'93.123.109.164'),(151210,'2026-06-22 18:45:47','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151211,'2026-06-22 18:45:47','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../.env',404,'GET',NULL,'93.123.109.164'),(151212,'2026-06-22 18:45:48','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151213,'2026-06-22 18:45:50','/public../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151214,'2026-06-22 18:45:51','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151215,'2026-06-22 18:45:52','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151216,'2026-06-22 18:45:52','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151217,'2026-06-22 18:45:54','/api../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../.env',404,'GET',NULL,'93.123.109.164'),(151218,'2026-06-22 18:45:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../.env',404,'GET',NULL,'93.123.109.164'),(151219,'2026-06-22 18:45:58','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151220,'2026-06-22 18:46:01','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151221,'2026-06-22 18:46:03','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151222,'2026-06-22 18:46:03','/api../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151223,'2026-06-22 18:46:05','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151224,'2026-06-22 18:46:06','/public/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public//.env',404,'GET',NULL,'93.123.109.164'),(151225,'2026-06-22 18:46:08','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151226,'2026-06-22 18:46:12','/public/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151227,'2026-06-22 18:46:13','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151228,'2026-06-22 18:46:16','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151229,'2026-06-22 18:46:18','/public...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151230,'2026-06-22 18:46:18','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151231,'2026-06-22 18:46:19','/public....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/public2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151232,'2026-06-22 18:46:19','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151233,'2026-06-22 18:46:20','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151234,'2026-06-22 18:46:21','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../../../etc/nginx/nginx.conf',404,'GET',NULL,'93.123.109.164'),(151235,'2026-06-22 18:46:21','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../../../../proc/self/environ',404,'GET',NULL,'93.123.109.164'),(151236,'2026-06-22 18:46:22','/api../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api../config/database.yml',404,'GET',NULL,'93.123.109.164'),(151237,'2026-06-22 18:46:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../.env',404,'GET',NULL,'93.123.109.164'),(151238,'2026-06-22 18:46:28','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151239,'2026-06-22 18:46:36','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151240,'2026-06-22 18:46:37','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151241,'2026-06-22 18:46:39','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../../../../etc/passwd',404,'GET',NULL,'93.123.109.164'),(151242,'2026-06-22 18:46:40','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api/../../../etc/apache2/apache2.conf',404,'GET',NULL,'93.123.109.164'),(151243,'2026-06-22 18:46:41','/api/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api//.env',404,'GET',NULL,'93.123.109.164'),(151244,'2026-06-22 18:46:49','/api/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api//../wp-config.php',404,'GET',NULL,'93.123.109.164'),(151245,'2026-06-22 18:46:52','/api...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api2f..2f.env',404,'GET',NULL,'93.123.109.164'),(151246,'2026-06-22 18:46:53','/api....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/api2f..2f..2fetc2fpasswd',404,'GET',NULL,'93.123.109.164'),(151247,'2026-06-22 18:49:13','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/login',404,'GET',NULL,'93.123.109.164'),(151248,'2026-06-22 18:49:15','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/register',404,'GET',NULL,'93.123.109.164'),(151249,'2026-06-22 18:49:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/admin',404,'GET',NULL,'93.123.109.164'),(151250,'2026-06-22 18:49:20','/home','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/home',404,'GET',NULL,'93.123.109.164'),(151251,'2026-06-22 18:49:21','/app','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/app',404,'GET',NULL,'93.123.109.164'),(151252,'2026-06-22 18:49:23','/checkout','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/checkout',404,'GET',NULL,'93.123.109.164'),(151253,'2026-06-22 18:49:24','/profile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/profile',404,'GET',NULL,'93.123.109.164'),(151254,'2026-06-22 18:49:25','/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/settings',404,'GET',NULL,'93.123.109.164'),(151255,'2026-06-22 18:49:26','/livewire/update','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.7; rv:132.0) Gecko/20100101 Firefox/132.0','http://solsculpting.com/livewire/update',404,'GET',NULL,'93.123.109.164'),(151256,'2026-06-22 19:03:36','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'64.89.163.203'),(151257,'2026-06-22 19:50:10','/wp-includes/.cache_key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.39.37'),(151258,'2026-06-22 21:54:18','/config.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.212.174.123'),(151259,'2026-06-22 22:40:30','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'135.119.73.164'),(151260,'2026-06-22 22:40:32','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'135.119.73.164'),(151261,'2026-06-22 22:40:32','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(151262,'2026-06-22 22:40:33','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(151263,'2026-06-22 22:51:20','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'23.248.167.18'),(151264,'2026-06-23 01:25:23','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'159.223.146.166'),(151265,'2026-06-23 01:33:20','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.229'),(151266,'2026-06-23 01:52:11','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'147.182.198.108'),(151267,'2026-06-23 02:51:04','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(151268,'2026-06-23 02:51:06','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(151269,'2026-06-23 02:51:09','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(151270,'2026-06-23 02:51:11','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(151271,'2026-06-23 03:17:03','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'195.178.110.102'),(151272,'2026-06-23 03:17:03','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151273,'2026-06-23 03:17:03','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/wp-content/debug.log',404,'GET',NULL,'195.178.110.102'),(151274,'2026-06-23 03:17:03','/metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/metrics',404,'GET',NULL,'195.178.110.102'),(151275,'2026-06-23 03:17:04','/api/kernels','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/kernels',404,'GET',NULL,'195.178.110.102'),(151276,'2026-06-23 03:17:04','/cve24813probe','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0','https://solsculpting.com//cve24813probe',404,'GET',NULL,'195.178.110.102'),(151277,'2026-06-23 03:17:04','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.git/config',404,'GET',NULL,'195.178.110.102'),(151278,'2026-06-23 03:17:04','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151279,'2026-06-23 03:17:04','/actuator/health','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/actuator/health',404,'GET',NULL,'195.178.110.102'),(151280,'2026-06-23 03:17:04','/telescope/api/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/telescope/api/requests',404,'GET',NULL,'195.178.110.102'),(151281,'2026-06-23 03:17:05','/api/v1/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/v1/config',404,'GET',NULL,'195.178.110.102'),(151282,'2026-06-23 03:17:05','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/wp-config.php.bak',404,'GET',NULL,'195.178.110.102'),(151283,'2026-06-23 03:17:27','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151284,'2026-06-23 03:17:28','/storage/logs/laravel-2024.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/storage/logs/laravel-2024.log',404,'GET',NULL,'195.178.110.102'),(151285,'2026-06-23 03:17:49','/horizon/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/horizon/dashboard',404,'GET',NULL,'195.178.110.102'),(151286,'2026-06-23 03:17:54','/api/v1/sendgrid/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/v1/sendgrid/config',404,'GET',NULL,'195.178.110.102'),(151287,'2026-06-23 03:17:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static/../../.env',404,'GET',NULL,'195.178.110.102'),(151288,'2026-06-23 03:18:21','/_metrics','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/_metrics',404,'GET',NULL,'195.178.110.102'),(151289,'2026-06-23 03:18:41','/public.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public.env',404,'GET',NULL,'195.178.110.102'),(151290,'2026-06-23 03:18:43','/wp-content/plugins/smtp-mail/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/wp-content/plugins/smtp-mail/tmp/debug.log',404,'GET',NULL,'195.178.110.102'),(151291,'2026-06-23 03:19:00','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/config.env',404,'GET',NULL,'195.178.110.102'),(151292,'2026-06-23 03:19:02','/wp-content/plugins/wp-smtp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/wp-content/plugins/wp-smtp/debug.log',404,'GET',NULL,'195.178.110.102'),(151293,'2026-06-23 03:19:18','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/application.properties',404,'GET',NULL,'195.178.110.102'),(151294,'2026-06-23 03:19:18','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.git/config',404,'GET',NULL,'195.178.110.102'),(151295,'2026-06-23 03:19:20','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/application.yml',404,'GET',NULL,'195.178.110.102'),(151296,'2026-06-23 03:19:22','/wp-content/plugins/wp-mail/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/wp-content/plugins/wp-mail/debug.log',404,'GET',NULL,'195.178.110.102'),(151297,'2026-06-23 03:19:49','/static/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static//.env',404,'GET',NULL,'195.178.110.102'),(151298,'2026-06-23 03:20:14','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/web.config',404,'GET',NULL,'195.178.110.102'),(151299,'2026-06-23 03:20:14','/api/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/settings',404,'GET',NULL,'195.178.110.102'),(151300,'2026-06-23 03:20:16','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.npmrc',404,'GET',NULL,'195.178.110.102'),(151301,'2026-06-23 03:20:17','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/.env',404,'GET',NULL,'195.178.110.102'),(151302,'2026-06-23 03:20:20','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/dist/.env',404,'GET',NULL,'195.178.110.102'),(151303,'2026-06-23 03:20:23','/assets/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/app.js.map',404,'GET',NULL,'195.178.110.102'),(151304,'2026-06-23 03:20:24','/static...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151305,'2026-06-23 03:20:26','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/.env',404,'GET',NULL,'195.178.110.102'),(151306,'2026-06-23 03:20:26','/static....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151307,'2026-06-23 03:20:27','/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/config.yaml',404,'GET',NULL,'195.178.110.102'),(151308,'2026-06-23 03:20:29','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151309,'2026-06-23 03:20:31','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/storage/.env',404,'GET',NULL,'195.178.110.102'),(151310,'2026-06-23 03:20:31','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151311,'2026-06-23 03:20:37','/static/js/main.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static/js/main.js.map',404,'GET',NULL,'195.178.110.102'),(151312,'2026-06-23 03:20:38','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/appsettings.json',404,'GET',NULL,'195.178.110.102'),(151313,'2026-06-23 03:20:38','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env.backup',404,'GET',NULL,'195.178.110.102'),(151314,'2026-06-23 03:20:39','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151315,'2026-06-23 03:20:41','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../.env',404,'GET',NULL,'195.178.110.102'),(151316,'2026-06-23 03:20:42','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151317,'2026-06-23 03:20:44','/assets/index.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/index.js.map',404,'GET',NULL,'195.178.110.102'),(151318,'2026-06-23 03:20:44','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env.bak',404,'GET',NULL,'195.178.110.102'),(151319,'2026-06-23 03:20:45','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env.old',404,'GET',NULL,'195.178.110.102'),(151320,'2026-06-23 03:20:45','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151321,'2026-06-23 03:20:48','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.102'),(151322,'2026-06-23 03:20:50','/static../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151323,'2026-06-23 03:20:52','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env.prod',404,'GET',NULL,'195.178.110.102'),(151324,'2026-06-23 03:20:53','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151325,'2026-06-23 03:20:54','/env.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/env.js.map',404,'GET',NULL,'195.178.110.102'),(151326,'2026-06-23 03:20:54','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151327,'2026-06-23 03:20:55','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env.production',404,'GET',NULL,'195.178.110.102'),(151328,'2026-06-23 03:20:57','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env.staging',404,'GET',NULL,'195.178.110.102'),(151329,'2026-06-23 03:21:00','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151330,'2026-06-23 03:21:04','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/env',404,'GET',NULL,'195.178.110.102'),(151331,'2026-06-23 03:21:05','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151332,'2026-06-23 03:21:06','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.ev',404,'GET',NULL,'195.178.110.102'),(151333,'2026-06-23 03:21:06','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151334,'2026-06-23 03:21:07','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151335,'2026-06-23 03:21:08','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env',404,'GET',NULL,'195.178.110.102'),(151336,'2026-06-23 03:21:10','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/2Eenv',404,'GET',NULL,'195.178.110.102'),(151337,'2026-06-23 03:21:10','/static../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../settings.py',404,'GET',NULL,'195.178.110.102'),(151338,'2026-06-23 03:21:12','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../settings.py',404,'GET',NULL,'195.178.110.102'),(151339,'2026-06-23 03:21:13','/.ENV','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.ENV',404,'GET',NULL,'195.178.110.102'),(151340,'2026-06-23 03:21:13','/config.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/config.js.map',404,'GET',NULL,'195.178.110.102'),(151341,'2026-06-23 03:21:19','/static../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../config/settings.py',404,'GET',NULL,'195.178.110.102'),(151342,'2026-06-23 03:21:20','/dist/bundle.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/dist/bundle.js.map',404,'GET',NULL,'195.178.110.102'),(151343,'2026-06-23 03:21:20','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../.env',404,'GET',NULL,'195.178.110.102'),(151344,'2026-06-23 03:21:21','/vendor.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/vendor.js.map',404,'GET',NULL,'195.178.110.102'),(151345,'2026-06-23 03:21:22','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151346,'2026-06-23 03:21:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/.env',404,'GET',NULL,'195.178.110.102'),(151347,'2026-06-23 03:21:24','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151348,'2026-06-23 03:21:27','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.102'),(151349,'2026-06-23 03:21:34','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151350,'2026-06-23 03:21:34','/api/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/config',404,'GET',NULL,'195.178.110.102'),(151351,'2026-06-23 03:21:35','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151352,'2026-06-23 03:21:36','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151353,'2026-06-23 03:21:37','/assets../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../.env',404,'GET',NULL,'195.178.110.102'),(151354,'2026-06-23 03:21:39','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../.env',404,'GET',NULL,'195.178.110.102'),(151355,'2026-06-23 03:21:40','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151356,'2026-06-23 03:22:00','/assets../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151357,'2026-06-23 03:22:03','/assets/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets//../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151358,'2026-06-23 03:22:12','/assets...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151359,'2026-06-23 03:22:15','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','https://solsculpting.com//.env',404,'GET',NULL,'195.178.110.102'),(151360,'2026-06-23 03:22:15','/assets....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151361,'2026-06-23 03:22:18','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','https://solsculpting.com//.env.local',404,'GET',NULL,'195.178.110.102'),(151362,'2026-06-23 03:22:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151363,'2026-06-23 03:22:20','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151364,'2026-06-23 03:22:25','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../.env',404,'GET',NULL,'195.178.110.102'),(151365,'2026-06-23 03:22:26','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../../.env',404,'GET',NULL,'195.178.110.102'),(151366,'2026-06-23 03:22:27','//.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com//.env.local',404,'POST',NULL,'195.178.110.102'),(151367,'2026-06-23 03:22:29','//.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com//.env.backup',404,'POST',NULL,'195.178.110.102'),(151368,'2026-06-23 03:22:30','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151369,'2026-06-23 03:22:31','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151370,'2026-06-23 03:22:32','//.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com//.env.production',404,'POST',NULL,'195.178.110.102'),(151371,'2026-06-23 03:22:40','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','https://solsculpting.com//.env.local',404,'GET',NULL,'195.178.110.102'),(151372,'2026-06-23 03:22:41','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151373,'2026-06-23 03:22:43','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','https://solsculpting.com//.env.backup',404,'GET',NULL,'195.178.110.102'),(151374,'2026-06-23 03:22:44','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible)','https://solsculpting.com//.env',404,'GET',NULL,'195.178.110.102'),(151375,'2026-06-23 03:22:46','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.102'),(151376,'2026-06-23 03:22:46','/assets../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151377,'2026-06-23 03:22:47','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/images/../.env',404,'GET',NULL,'195.178.110.102'),(151378,'2026-06-23 03:22:54','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151379,'2026-06-23 03:22:54','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/static/js/../../.env',404,'GET',NULL,'195.178.110.102'),(151380,'2026-06-23 03:22:55','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151381,'2026-06-23 03:22:56','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'195.178.110.102'),(151382,'2026-06-23 03:22:58','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../.env',404,'GET',NULL,'195.178.110.102'),(151383,'2026-06-23 03:22:59','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/v1/../../.env',404,'GET',NULL,'195.178.110.102'),(151384,'2026-06-23 03:23:01','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151385,'2026-06-23 03:23:01','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151386,'2026-06-23 03:23:07','/assets../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../settings.py',404,'GET',NULL,'195.178.110.102'),(151387,'2026-06-23 03:23:11','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151388,'2026-06-23 03:23:12','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../settings.py',404,'GET',NULL,'195.178.110.102'),(151389,'2026-06-23 03:23:14','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151390,'2026-06-23 03:23:16','/assets../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../config/settings.py',404,'GET',NULL,'195.178.110.102'),(151391,'2026-06-23 03:23:18','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151392,'2026-06-23 03:23:18','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../.env',404,'GET',NULL,'195.178.110.102'),(151393,'2026-06-23 03:23:21','/files/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files//.env',404,'GET',NULL,'195.178.110.102'),(151394,'2026-06-23 03:23:22','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/assets../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151395,'2026-06-23 03:23:31','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151396,'2026-06-23 03:23:38','/files../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../.env',404,'GET',NULL,'195.178.110.102'),(151397,'2026-06-23 03:23:40','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../.env',404,'GET',NULL,'195.178.110.102'),(151398,'2026-06-23 03:23:42','/files....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151399,'2026-06-23 03:23:45','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151400,'2026-06-23 03:23:47','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151401,'2026-06-23 03:23:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'195.178.110.102'),(151402,'2026-06-23 03:23:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../.env',404,'GET',NULL,'195.178.110.102'),(151403,'2026-06-23 03:23:58','/files../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151404,'2026-06-23 03:24:03','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/composer.json',404,'GET',NULL,'195.178.110.102'),(151405,'2026-06-23 03:24:15','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151406,'2026-06-23 03:24:22','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151407,'2026-06-23 03:24:23','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'135.119.73.164'),(151408,'2026-06-23 03:24:24','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'135.119.73.164'),(151409,'2026-06-23 03:24:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151410,'2026-06-23 03:24:25','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(151411,'2026-06-23 03:24:26','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(151412,'2026-06-23 03:24:29','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151413,'2026-06-23 03:24:35','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.102'),(151414,'2026-06-23 03:24:36','/files../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151415,'2026-06-23 03:24:40','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151416,'2026-06-23 03:24:40','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151417,'2026-06-23 03:24:43','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151418,'2026-06-23 03:24:44','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151419,'2026-06-23 03:24:45','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151420,'2026-06-23 03:24:46','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151421,'2026-06-23 03:24:49','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151422,'2026-06-23 03:24:52','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151423,'2026-06-23 03:24:59','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151424,'2026-06-23 03:25:01','/files../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../settings.py',404,'GET',NULL,'195.178.110.102'),(151425,'2026-06-23 03:25:02','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../settings.py',404,'GET',NULL,'195.178.110.102'),(151426,'2026-06-23 03:25:05','/files../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../config/settings.py',404,'GET',NULL,'195.178.110.102'),(151427,'2026-06-23 03:25:08','/uploads...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151428,'2026-06-23 03:25:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../.env',404,'GET',NULL,'195.178.110.102'),(151429,'2026-06-23 03:25:12','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/files../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151430,'2026-06-23 03:25:15','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151431,'2026-06-23 03:25:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151432,'2026-06-23 03:25:47','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151433,'2026-06-23 03:25:48','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img/../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151434,'2026-06-23 03:26:12','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151435,'2026-06-23 03:26:14','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151436,'2026-06-23 03:26:17','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151437,'2026-06-23 03:26:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151438,'2026-06-23 03:26:27','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151439,'2026-06-23 03:26:28','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.102'),(151440,'2026-06-23 03:26:29','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151441,'2026-06-23 03:26:31','/uploads../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151442,'2026-06-23 03:26:31','/img/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img//.env',404,'GET',NULL,'195.178.110.102'),(151443,'2026-06-23 03:26:35','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151444,'2026-06-23 03:26:41','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151445,'2026-06-23 03:26:43','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151446,'2026-06-23 03:26:47','/img/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img//../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151447,'2026-06-23 03:26:49','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151448,'2026-06-23 03:26:56','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../settings.py',404,'GET',NULL,'195.178.110.102'),(151449,'2026-06-23 03:26:57','/uploads../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../config/settings.py',404,'GET',NULL,'195.178.110.102'),(151450,'2026-06-23 03:27:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../.env',404,'GET',NULL,'195.178.110.102'),(151451,'2026-06-23 03:27:02','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151452,'2026-06-23 03:27:05','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/uploads../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.102'),(151453,'2026-06-23 03:27:07','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151454,'2026-06-23 03:27:10','/img...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151455,'2026-06-23 03:27:12','/img../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../.env',404,'GET',NULL,'195.178.110.102'),(151456,'2026-06-23 03:27:13','/img....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151457,'2026-06-23 03:27:15','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151458,'2026-06-23 03:27:18','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../.env',404,'GET',NULL,'195.178.110.102'),(151459,'2026-06-23 03:27:24','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css/../.env',404,'GET',NULL,'195.178.110.102'),(151460,'2026-06-23 03:27:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css/../../.env',404,'GET',NULL,'195.178.110.102'),(151461,'2026-06-23 03:27:44','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151462,'2026-06-23 03:28:00','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151463,'2026-06-23 03:28:02','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151464,'2026-06-23 03:28:05','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151465,'2026-06-23 03:28:07','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151466,'2026-06-23 03:28:09','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151467,'2026-06-23 03:28:10','/css/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css//.env',404,'GET',NULL,'195.178.110.102'),(151468,'2026-06-23 03:28:11','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151469,'2026-06-23 03:28:14','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151470,'2026-06-23 03:28:16','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.102'),(151471,'2026-06-23 03:28:18','/img../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151472,'2026-06-23 03:28:25','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151473,'2026-06-23 03:28:26','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151474,'2026-06-23 03:28:28','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151475,'2026-06-23 03:28:30','/css/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css//../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151476,'2026-06-23 03:28:32','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151477,'2026-06-23 03:28:35','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151478,'2026-06-23 03:28:39','/css...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151479,'2026-06-23 03:28:40','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151480,'2026-06-23 03:28:41','/css....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151481,'2026-06-23 03:28:42','/img../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../settings.py',404,'GET',NULL,'195.178.110.102'),(151482,'2026-06-23 03:28:44','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151483,'2026-06-23 03:28:45','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../settings.py',404,'GET',NULL,'195.178.110.102'),(151484,'2026-06-23 03:28:49','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151485,'2026-06-23 03:28:50','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../.env',404,'GET',NULL,'195.178.110.102'),(151486,'2026-06-23 03:28:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js/../.env',404,'GET',NULL,'195.178.110.102'),(151487,'2026-06-23 03:28:53','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151488,'2026-06-23 03:28:57','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/img../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.102'),(151489,'2026-06-23 03:28:58','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151490,'2026-06-23 03:29:00','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151491,'2026-06-23 03:29:01','/js../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../.env',404,'GET',NULL,'195.178.110.102'),(151492,'2026-06-23 03:29:03','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../.env',404,'GET',NULL,'195.178.110.102'),(151493,'2026-06-23 03:29:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151494,'2026-06-23 03:29:26','/js../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151495,'2026-06-23 03:29:28','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151496,'2026-06-23 03:29:30','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151497,'2026-06-23 03:29:32','/js/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js//.env',404,'GET',NULL,'195.178.110.102'),(151498,'2026-06-23 03:29:42','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151499,'2026-06-23 03:29:51','/js/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js//../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151500,'2026-06-23 03:29:58','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151501,'2026-06-23 03:30:01','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151502,'2026-06-23 03:30:03','/js....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151503,'2026-06-23 03:30:04','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151504,'2026-06-23 03:30:05','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151505,'2026-06-23 03:30:07','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151506,'2026-06-23 03:30:08','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151507,'2026-06-23 03:30:12','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../.env',404,'GET',NULL,'195.178.110.102'),(151508,'2026-06-23 03:30:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../.env',404,'GET',NULL,'195.178.110.102'),(151509,'2026-06-23 03:30:16','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151510,'2026-06-23 03:30:18','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151511,'2026-06-23 03:30:21','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151512,'2026-06-23 03:30:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151513,'2026-06-23 03:30:23','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151514,'2026-06-23 03:30:26','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151515,'2026-06-23 03:30:30','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151516,'2026-06-23 03:30:33','/js../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../settings.py',404,'GET',NULL,'195.178.110.102'),(151517,'2026-06-23 03:30:38','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151518,'2026-06-23 03:30:39','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../settings.py',404,'GET',NULL,'195.178.110.102'),(151519,'2026-06-23 03:30:42','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151520,'2026-06-23 03:30:42','/js../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../config/settings.py',404,'GET',NULL,'195.178.110.102'),(151521,'2026-06-23 03:30:44','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151522,'2026-06-23 03:30:45','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../.env',404,'GET',NULL,'195.178.110.102'),(151523,'2026-06-23 03:30:46','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151524,'2026-06-23 03:30:47','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151525,'2026-06-23 03:30:48','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/js../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.102'),(151526,'2026-06-23 03:30:51','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151527,'2026-06-23 03:30:51','/media/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media//.env',404,'GET',NULL,'195.178.110.102'),(151528,'2026-06-23 03:30:53','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151529,'2026-06-23 03:30:54','/css../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../.env',404,'GET',NULL,'195.178.110.102'),(151530,'2026-06-23 03:30:59','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../.env',404,'GET',NULL,'195.178.110.102'),(151531,'2026-06-23 03:31:05','/media/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media//../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151532,'2026-06-23 03:31:07','/css../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151533,'2026-06-23 03:31:10','/media...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151534,'2026-06-23 03:31:12','/media....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151535,'2026-06-23 03:31:14','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151536,'2026-06-23 03:31:16','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151537,'2026-06-23 03:31:17','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../.env',404,'GET',NULL,'195.178.110.102'),(151538,'2026-06-23 03:31:18','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../.env',404,'GET',NULL,'195.178.110.102'),(151539,'2026-06-23 03:31:23','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151540,'2026-06-23 03:31:32','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151541,'2026-06-23 03:31:37','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151542,'2026-06-23 03:31:38','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151543,'2026-06-23 03:31:44','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151544,'2026-06-23 03:31:45','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151545,'2026-06-23 03:31:47','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151546,'2026-06-23 03:31:48','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.102'),(151547,'2026-06-23 03:31:49','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151548,'2026-06-23 03:31:50','/css../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151549,'2026-06-23 03:31:51','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151550,'2026-06-23 03:31:52','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../config/database.yml',404,'GET',NULL,'195.178.110.102'),(151551,'2026-06-23 03:31:53','/public/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public//.env',404,'GET',NULL,'195.178.110.102'),(151552,'2026-06-23 03:31:54','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151553,'2026-06-23 03:31:56','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151554,'2026-06-23 03:31:58','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.102'),(151555,'2026-06-23 03:32:02','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151556,'2026-06-23 03:32:03','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.102'),(151557,'2026-06-23 03:32:05','/css../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../settings.py',404,'GET',NULL,'195.178.110.102'),(151558,'2026-06-23 03:32:06','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../settings.py',404,'GET',NULL,'195.178.110.102'),(151559,'2026-06-23 03:32:07','/public/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public//../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151560,'2026-06-23 03:32:08','/css../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../config/settings.py',404,'GET',NULL,'195.178.110.102'),(151561,'2026-06-23 03:32:10','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../.env',404,'GET',NULL,'195.178.110.102'),(151562,'2026-06-23 03:32:12','/public...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public2f..2f.env',404,'GET',NULL,'195.178.110.102'),(151563,'2026-06-23 03:32:12','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.102'),(151564,'2026-06-23 03:32:13','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/css../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.102'),(151565,'2026-06-23 03:32:14','/public....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/public2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.102'),(151566,'2026-06-23 03:32:16','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151567,'2026-06-23 03:32:17','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151568,'2026-06-23 03:32:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.102'),(151569,'2026-06-23 03:32:22','/media../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../.env',404,'GET',NULL,'195.178.110.102'),(151570,'2026-06-23 03:32:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../.env',404,'GET',NULL,'195.178.110.102'),(151571,'2026-06-23 03:32:24','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../../.env',404,'GET',NULL,'195.178.110.102'),(151572,'2026-06-23 03:32:25','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../../.env',404,'GET',NULL,'195.178.110.102'),(151573,'2026-06-23 03:32:32','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151574,'2026-06-23 03:32:35','/media../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151575,'2026-06-23 03:32:47','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151576,'2026-06-23 03:32:47','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151577,'2026-06-23 03:32:49','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151578,'2026-06-23 03:32:51','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api/../../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151579,'2026-06-23 03:32:58','/api/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/api//.env',404,'GET',NULL,'195.178.110.102'),(151580,'2026-06-23 03:32:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../../../wp-config.php',404,'GET',NULL,'195.178.110.102'),(151581,'2026-06-23 03:33:01','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/media../../../etc/passwd',404,'GET',NULL,'195.178.110.102'),(151582,'2026-06-23 03:49:09','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151583,'2026-06-23 03:49:18','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151584,'2026-06-23 03:49:19','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151585,'2026-06-23 03:49:23','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151586,'2026-06-23 03:55:45','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 YaBrowser/18.3.1.1220 Yowser/2.5 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.120'),(151587,'2026-06-23 06:34:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.239'),(151588,'2026-06-23 06:54:45','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(151589,'2026-06-23 06:54:54','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(151590,'2026-06-23 06:54:55','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(151591,'2026-06-23 06:54:56','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(151592,'2026-06-23 06:54:59','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(151593,'2026-06-23 07:08:53','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GitFinder/1.0)',NULL,404,'GET',NULL,'213.209.159.113'),(151594,'2026-06-23 09:28:10','/magento_version','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'151.248.88.186'),(151595,'2026-06-23 09:28:11','/RELEASE_NOTES.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'151.248.88.186'),(151596,'2026-06-23 10:59:07','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151597,'2026-06-23 10:59:16','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151598,'2026-06-23 10:59:17','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151599,'2026-06-23 10:59:20','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.99.131.37'),(151600,'2026-06-23 11:48:04','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.23'),(151601,'2026-06-23 11:48:06','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.23'),(151602,'2026-06-23 11:48:07','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.23'),(151603,'2026-06-23 11:48:08','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.23'),(151604,'2026-06-23 13:22:05','/asdkjh2k3h4_nonexistent_path','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151605,'2026-06-23 13:22:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151606,'2026-06-23 13:22:32','/logout','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151607,'2026-06-23 13:22:34','/api/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151608,'2026-06-23 13:22:36','/framework/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151609,'2026-06-23 13:22:38','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151610,'2026-06-23 13:22:39','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151611,'2026-06-23 13:22:42','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151612,'2026-06-23 13:22:43','/api/logout','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151613,'2026-06-23 13:22:45','/debug','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151614,'2026-06-23 13:22:47','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151615,'2026-06-23 13:22:49','/signin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151616,'2026-06-23 13:22:51','/signup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151617,'2026-06-23 13:22:53','/static/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151618,'2026-06-23 13:22:55','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151619,'2026-06-23 13:22:57','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151620,'2026-06-23 13:22:59','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151621,'2026-06-23 13:23:01','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151622,'2026-06-23 13:23:03','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151623,'2026-06-23 13:23:05','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151624,'2026-06-23 13:23:07','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151625,'2026-06-23 13:23:08','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151626,'2026-06-23 13:23:10','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151627,'2026-06-23 13:23:11','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151628,'2026-06-23 13:23:13','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151629,'2026-06-23 13:23:14','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151630,'2026-06-23 13:23:15','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151631,'2026-06-23 13:23:16','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151632,'2026-06-23 13:23:18','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151633,'2026-06-23 13:23:19','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151634,'2026-06-23 13:23:21','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151635,'2026-06-23 13:23:22','/wp-config.php.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151636,'2026-06-23 13:23:24','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151637,'2026-06-23 13:23:25','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151638,'2026-06-23 13:23:27','/wp-config.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151639,'2026-06-23 13:23:29','/wp-config.php.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151640,'2026-06-23 13:23:30','/wp-config.php.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151641,'2026-06-23 13:23:32','/config.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151642,'2026-06-23 13:23:34','/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151643,'2026-06-23 13:23:35','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151644,'2026-06-23 13:23:36','/application.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151645,'2026-06-23 13:23:38','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151646,'2026-06-23 13:23:39','/application-production.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151647,'2026-06-23 13:23:40','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151648,'2026-06-23 13:23:41','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151649,'2026-06-23 13:23:43','/.docker.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151650,'2026-06-23 13:23:44','/Dockerfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151651,'2026-06-23 13:23:46','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151652,'2026-06-23 13:23:49','/appsettings.Development.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151653,'2026-06-23 13:23:51','/appsettings.Production.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151654,'2026-06-23 13:23:52','/local.settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151655,'2026-06-23 13:23:54','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151656,'2026-06-23 13:23:55','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151657,'2026-06-23 13:23:57','/local_settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151658,'2026-06-23 13:23:58','/settings/production.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151659,'2026-06-23 13:23:59','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151660,'2026-06-23 13:24:01','/config/secrets.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151661,'2026-06-23 13:24:02','/config/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151662,'2026-06-23 13:24:04','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151663,'2026-06-23 13:24:06','/config/production.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151664,'2026-06-23 13:24:07','/config/development.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151665,'2026-06-23 13:24:09','/logs/error.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151666,'2026-06-23 13:24:10','/logs/application.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151667,'2026-06-23 13:24:12','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151668,'2026-06-23 13:24:14','/var/log/app.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151669,'2026-06-23 13:24:18','/.git-credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151670,'2026-06-23 13:24:20','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151671,'2026-06-23 13:24:21','/.yarnrc.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151672,'2026-06-23 13:24:23','/.yarnrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151673,'2026-06-23 13:24:25','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151674,'2026-06-23 13:24:26','/.pypirc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151675,'2026-06-23 13:24:27','/.vscode/settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151676,'2026-06-23 13:24:29','/.idea/workspace.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151677,'2026-06-23 13:24:30','/.github/workflows/main.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151678,'2026-06-23 13:24:32','/Jenkinsfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151679,'2026-06-23 13:24:34','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151680,'2026-06-23 13:24:37','/firebase.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151681,'2026-06-23 13:24:39','/amplify.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151682,'2026-06-23 13:24:40','/.firebase/hosting.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'45.148.10.15'),(151683,'2026-06-23 14:20:38','/*','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151684,'2026-06-23 14:20:38','/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151685,'2026-06-23 14:20:38','/.git/config','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151686,'2026-06-23 14:20:38','/*update.cgi*','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151687,'2026-06-23 14:20:38','//.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151688,'2026-06-23 14:20:38','/backend/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151689,'2026-06-23 14:20:38','/.amplifyrc','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151690,'2026-06-23 14:20:38','/.boto','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151691,'2026-06-23 14:20:38','//.aws/credentials','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151692,'2026-06-23 14:20:38','/*/[id]','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151693,'2026-06-23 14:20:38','/..\\..\\..\\..\\..\\..\\var/log/apache2/access.log','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151694,'2026-06-23 14:20:39','/*/[slug]','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151695,'2026-06-23 14:20:39','/.cache','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151696,'2026-06-23 14:20:40','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151697,'2026-06-23 14:20:40','//backend/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151698,'2026-06-23 14:20:40','/.docker/laravel/app/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151699,'2026-06-23 14:20:40','/.docker/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151700,'2026-06-23 14:20:40','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151701,'2026-06-23 14:20:40','/.docker/secrets.json','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151702,'2026-06-23 14:20:40','/.aws/config','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(151703,'2026-06-23 15:06:08','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/603.3.8 (KHTML, like Gecko) Version/10.1.2 Safari/603.3.8',NULL,404,'GET',NULL,'157.15.40.88'),(151704,'2026-06-23 15:18:55','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(151705,'2026-06-23 15:19:04','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(151706,'2026-06-23 17:54:32','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151707,'2026-06-23 17:54:34','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151708,'2026-06-23 17:54:35','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151709,'2026-06-23 17:54:36','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151710,'2026-06-23 17:54:37','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151711,'2026-06-23 17:54:38','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151712,'2026-06-23 17:54:39','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151713,'2026-06-23 17:54:40','/.env.remote','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151714,'2026-06-23 17:54:41','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151715,'2026-06-23 17:54:42','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151716,'2026-06-23 17:54:43','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151717,'2026-06-23 17:54:43','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151718,'2026-06-23 17:54:44','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151719,'2026-06-23 17:54:45','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151720,'2026-06-23 17:54:46','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151721,'2026-06-23 17:54:47','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151722,'2026-06-23 17:54:48','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151723,'2026-06-23 17:54:49','/.env.ci','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151724,'2026-06-23 17:54:50','/.env.docker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151725,'2026-06-23 17:54:51','/.env.live','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151726,'2026-06-23 17:54:52','/.env.preprod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151727,'2026-06-23 17:54:53','/.env.uat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151728,'2026-06-23 17:54:54','/.env.dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151729,'2026-06-23 17:54:55','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151730,'2026-06-23 17:54:56','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151731,'2026-06-23 17:54:57','/.env1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151732,'2026-06-23 17:54:58','/.env2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151733,'2026-06-23 17:54:59','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151734,'2026-06-23 17:55:00','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151735,'2026-06-23 17:55:00','/.env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151736,'2026-06-23 17:55:01','/.env-example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151737,'2026-06-23 17:55:02','/.env.example-local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151738,'2026-06-23 17:55:03','/env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151739,'2026-06-23 17:55:04','/.env_example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151740,'2026-06-23 17:55:05','/.env.dev.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151741,'2026-06-23 17:55:06','/.env.production.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151742,'2026-06-23 17:55:08','/env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151743,'2026-06-23 17:55:08','/.env-backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151744,'2026-06-23 17:55:09','/fake-env-backup.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151745,'2026-06-23 17:55:10','/env_2.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151746,'2026-06-23 17:55:11','/.envrc.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151747,'2026-06-23 17:55:12','/.env.testing.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151748,'2026-06-23 17:55:13','/.env.local.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151749,'2026-06-23 17:55:14','/env_variables.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151750,'2026-06-23 17:55:15','/env-list.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151751,'2026-06-23 17:55:16','/.env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151752,'2026-06-23 17:55:17','/.env.heroku','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151753,'2026-06-23 17:55:18','/.env.lc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151754,'2026-06-23 17:55:18','/.env.prd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151755,'2026-06-23 17:55:19','/.env.server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151756,'2026-06-23 17:55:20','/env.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151757,'2026-06-23 17:55:21','/env.bash','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151758,'2026-06-23 17:55:22','/create_env.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151759,'2026-06-23 17:55:23','/_.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151760,'2026-06-23 17:55:24','/_.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151761,'2026-06-23 17:55:25','/.env.aws','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151762,'2026-06-23 17:55:26','/.env-dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151763,'2026-06-23 17:55:27','/set_env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151764,'2026-06-23 17:55:28','/dev_env.tfvars','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151765,'2026-06-23 17:55:29','/env_creation.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151766,'2026-06-23 17:55:30','/env_scan.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151767,'2026-06-23 17:55:31','/set_env_vars.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151768,'2026-06-23 17:55:32','/env_template','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151769,'2026-06-23 17:55:33','/.env.build','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151770,'2026-06-23 17:55:34','/.env_dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151771,'2026-06-23 17:55:35','/parseable-env-secret','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151772,'2026-06-23 17:55:36','/env.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151773,'2026-06-23 17:55:37','/env.jsx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151774,'2026-06-23 17:55:38','/set-aws-env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151775,'2026-06-23 17:55:39','/env_setup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151776,'2026-06-23 17:55:40','/.env-production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151777,'2026-06-23 17:55:41','/.env.heroku.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151778,'2026-06-23 17:55:42','/environment.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151779,'2026-06-23 17:55:43','/app-env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151780,'2026-06-23 17:55:44','/local_env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151781,'2026-06-23 17:55:44','/default-env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151782,'2026-06-23 17:55:45','/.env.development.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151783,'2026-06-23 17:55:46','/env_utils.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151784,'2026-06-23 17:55:47','/.env.ollama','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151785,'2026-06-23 17:55:48','/.env_hlg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151786,'2026-06-23 17:55:49','/.env_prd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151787,'2026-06-23 17:55:50','/example.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151788,'2026-06-23 17:55:51','/environment.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151789,'2026-06-23 17:55:52','/.env.email','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151790,'2026-06-23 17:55:53','/.env-dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151791,'2026-06-23 17:55:54','/.env.behat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151792,'2026-06-23 17:55:54','/.env.save.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151793,'2026-06-23 17:55:55','/.envec2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151794,'2026-06-23 17:55:56','/.env copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151795,'2026-06-23 17:55:57','/.env copy 2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151796,'2026-06-23 17:55:58','/production.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151797,'2026-06-23 17:55:59','/enviar_email.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151798,'2026-06-23 17:56:00','/.envrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151799,'2026-06-23 17:56:01','/env-variables.md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151800,'2026-06-23 17:56:02','/environ_names.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151801,'2026-06-23 17:56:03','/env.md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151802,'2026-06-23 17:56:04','/.env.testing','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151803,'2026-06-23 17:56:05','/.env.example2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151804,'2026-06-23 17:56:06','/env-template','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151805,'2026-06-23 17:56:07','/env.template','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151806,'2026-06-23 17:56:08','/env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151807,'2026-06-23 17:56:09','/.env.local.exported','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151808,'2026-06-23 17:56:10','/env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151809,'2026-06-23 17:56:11','/env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151810,'2026-06-23 17:56:12','/environment.ci.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151811,'2026-06-23 17:56:13','/environment.prod.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151812,'2026-06-23 17:56:13','/.env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151813,'2026-06-23 17:56:14','/.env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151814,'2026-06-23 17:56:15','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151815,'2026-06-23 17:56:16','/apps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151816,'2026-06-23 17:56:17','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151817,'2026-06-23 17:56:18','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151818,'2026-06-23 17:56:19','/site/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151819,'2026-06-23 17:56:20','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151820,'2026-06-23 17:56:21','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151821,'2026-06-23 17:56:22','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151822,'2026-06-23 17:56:22','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151823,'2026-06-23 17:56:23','/frontend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151824,'2026-06-23 17:56:24','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151825,'2026-06-23 17:56:25','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151826,'2026-06-23 17:56:26','/core/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151827,'2026-06-23 17:56:27','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151828,'2026-06-23 17:56:28','/private/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151829,'2026-06-23 17:56:29','/application/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151830,'2026-06-23 17:56:30','/bootstrap/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151831,'2026-06-23 17:56:31','/database/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151832,'2026-06-23 17:56:32','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151833,'2026-06-23 17:56:33','/var/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151834,'2026-06-23 17:56:34','/var/www/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151835,'2026-06-23 17:56:35','/current/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151836,'2026-06-23 17:56:36','/release/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151837,'2026-06-23 17:56:37','/releases/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151838,'2026-06-23 17:56:38','/shared/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151839,'2026-06-23 17:56:39','/deploy/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151840,'2026-06-23 17:56:40','/build/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151841,'2026-06-23 17:56:41','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151842,'2026-06-23 17:56:42','/public_html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151843,'2026-06-23 17:56:43','/htdocs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151844,'2026-06-23 17:56:44','/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151845,'2026-06-23 17:56:45','/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151846,'2026-06-23 17:56:46','/live/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151847,'2026-06-23 17:56:47','/prod/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151848,'2026-06-23 17:56:48','/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151849,'2026-06-23 17:56:49','/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151850,'2026-06-23 17:56:50','/opt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151851,'2026-06-23 17:56:50','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151852,'2026-06-23 17:56:51','/symfony/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151853,'2026-06-23 17:56:52','/wordpress/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151854,'2026-06-23 17:56:53','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151855,'2026-06-23 17:56:54','/cms/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151856,'2026-06-23 17:56:55','/drupal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151857,'2026-06-23 17:56:56','/joomla/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151858,'2026-06-23 17:56:58','/magento/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151859,'2026-06-23 17:56:59','/shopify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151860,'2026-06-23 17:57:00','/prestashop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151861,'2026-06-23 17:57:01','/codeigniter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151862,'2026-06-23 17:57:02','/cakephp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151863,'2026-06-23 17:57:03','/zend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151864,'2026-06-23 17:57:04','/yii/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151865,'2026-06-23 17:57:05','/laravel5/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151866,'2026-06-23 17:57:06','/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151867,'2026-06-23 17:57:07','/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151868,'2026-06-23 17:57:08','/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151869,'2026-06-23 17:57:09','/api/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151870,'2026-06-23 17:57:09','/api/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151871,'2026-06-23 17:57:10','/rest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151872,'2026-06-23 17:57:11','/graphql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151873,'2026-06-23 17:57:12','/gateway/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151874,'2026-06-23 17:57:13','/microservice/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151875,'2026-06-23 17:57:14','/service/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151876,'2026-06-23 17:57:15','/api/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151877,'2026-06-23 17:57:16','/api/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151878,'2026-06-23 17:57:16','/api/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151879,'2026-06-23 17:57:17','/vendor/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151880,'2026-06-23 17:57:18','/lib/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151881,'2026-06-23 17:57:19','/resources/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151882,'2026-06-23 17:57:20','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151883,'2026-06-23 17:57:21','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151884,'2026-06-23 17:57:22','/internal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151885,'2026-06-23 17:57:23','/tools/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151886,'2026-06-23 17:57:23','/scripts/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151887,'2026-06-23 17:57:24','/bin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151888,'2026-06-23 17:57:25','/sbin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151889,'2026-06-23 17:57:26','/local/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151890,'2026-06-23 17:57:27','/portal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151891,'2026-06-23 17:57:28','/dashboard/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151892,'2026-06-23 17:57:30','/panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151893,'2026-06-23 17:57:31','/crm/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151894,'2026-06-23 17:57:31','/erp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151895,'2026-06-23 17:57:32','/shop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151896,'2026-06-23 17:57:33','/store/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151897,'2026-06-23 17:57:34','/saas/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151898,'2026-06-23 17:57:35','/client/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151899,'2026-06-23 17:57:36','/project/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151900,'2026-06-23 17:57:37','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151901,'2026-06-23 17:57:38','/control-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151902,'2026-06-23 17:57:39','/user-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151903,'2026-06-23 17:57:40','/node/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151904,'2026-06-23 17:57:41','/express/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151905,'2026-06-23 17:57:41','/next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151906,'2026-06-23 17:57:42','/nuxt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151907,'2026-06-23 17:57:43','/nest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151908,'2026-06-23 17:57:45','/react/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151909,'2026-06-23 17:57:46','/vue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151910,'2026-06-23 17:57:47','/angular/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151911,'2026-06-23 17:57:48','/svelte/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151912,'2026-06-23 17:57:49','/vite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151913,'2026-06-23 17:57:50','/backup/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151914,'2026-06-23 17:57:51','/backups/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151915,'2026-06-23 17:57:52','/old/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151916,'2026-06-23 17:57:53','/tmp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151917,'2026-06-23 17:57:54','/temp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151918,'2026-06-23 17:57:55','/lab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151919,'2026-06-23 17:57:56','/cronlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151920,'2026-06-23 17:57:56','/cron/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151921,'2026-06-23 17:57:57','/en/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151922,'2026-06-23 17:57:58','/administrator/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151923,'2026-06-23 17:57:59','/psnlink/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151924,'2026-06-23 17:58:00','/exapi/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151925,'2026-06-23 17:58:01','/sitemaps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151926,'2026-06-23 17:58:02','/.env.backup1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151927,'2026-06-23 17:58:03','/.env.backup2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151928,'2026-06-23 17:58:04','/logs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151929,'2026-06-23 17:58:05','/cache/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151930,'2026-06-23 17:58:06','/mailer/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151931,'2026-06-23 17:58:06','/mail/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151932,'2026-06-23 17:58:08','/email/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151933,'2026-06-23 17:58:09','/smtp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151934,'2026-06-23 17:58:10','/mailing/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151935,'2026-06-23 17:58:11','/notifications/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151936,'2026-06-23 17:58:12','/notify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151937,'2026-06-23 17:58:12','/sender/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151938,'2026-06-23 17:58:13','/campaign/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151939,'2026-06-23 17:58:14','/newsletter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151940,'2026-06-23 17:58:15','/ses/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151941,'2026-06-23 17:58:16','/sendgrid/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151942,'2026-06-23 17:58:17','/sparkpost/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151943,'2026-06-23 17:58:18','/postmark/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151944,'2026-06-23 17:58:19','/mailgun/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151945,'2026-06-23 17:58:21','/mandrill/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151946,'2026-06-23 17:58:21','/mailjet/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151947,'2026-06-23 17:58:22','/brevo/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151948,'2026-06-23 17:58:23','/transactional/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151949,'2026-06-23 17:58:24','/bulk/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151950,'2026-06-23 17:58:25','/aws/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151951,'2026-06-23 17:58:26','/azure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151952,'2026-06-23 17:58:27','/gcp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151953,'2026-06-23 17:58:28','/cloud/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151954,'2026-06-23 17:58:29','/infrastructure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151955,'2026-06-23 17:58:30','/docker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151956,'2026-06-23 17:58:31','/k8s/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151957,'2026-06-23 17:58:32','/kubernetes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151958,'2026-06-23 17:58:33','/terraform/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151959,'2026-06-23 17:58:34','/ansible/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151960,'2026-06-23 17:58:35','/.git/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151961,'2026-06-23 17:58:36','/ci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151962,'2026-06-23 17:58:37','/cd/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151963,'2026-06-23 17:58:38','/jenkins/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151964,'2026-06-23 17:58:39','/gitlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151965,'2026-06-23 17:58:40','/github/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151966,'2026-06-23 17:58:41','/actions/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151967,'2026-06-23 17:58:42','/circleci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151968,'2026-06-23 17:58:43','/travis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151969,'2026-06-23 17:58:44','/buildkite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151970,'2026-06-23 17:58:45','/mysql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151971,'2026-06-23 17:58:46','/postgres/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151972,'2026-06-23 17:58:47','/mongodb/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151973,'2026-06-23 17:58:48','/redis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151974,'2026-06-23 17:58:48','/elasticsearch/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151975,'2026-06-23 17:58:49','/rabbitmq/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151976,'2026-06-23 17:58:50','/kafka/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151977,'2026-06-23 17:58:51','/queue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151978,'2026-06-23 17:58:52','/worker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151979,'2026-06-23 17:58:53','/job/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151980,'2026-06-23 17:58:54','/test/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151981,'2026-06-23 17:58:55','/qa/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151982,'2026-06-23 17:58:56','/preview/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151983,'2026-06-23 17:58:57','/beta/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151984,'2026-06-23 17:58:58','/uat/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151985,'2026-06-23 17:58:58','/stage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151986,'2026-06-23 17:58:59','/development/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151987,'2026-06-23 17:59:00','/production/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151988,'2026-06-23 17:59:01','/config/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151989,'2026-06-23 17:59:04','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151990,'2026-06-23 17:59:07','/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151991,'2026-06-23 17:59:10','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151992,'2026-06-23 17:59:11','/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151993,'2026-06-23 17:59:12','/webroot/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151994,'2026-06-23 17:59:14','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151995,'2026-06-23 17:59:15','/phpinfo.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151996,'2026-06-23 17:59:16','/phpinfo.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151997,'2026-06-23 17:59:17','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151998,'2026-06-23 17:59:18','/phpinfo.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'79.125.34.67'),(151999,'2026-06-23 20:20:52','//sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com//sitemap.xml',404,'GET',NULL,'195.178.110.155'),(152000,'2026-06-23 20:20:58','/user/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//user/login',404,'GET',NULL,'195.178.110.155'),(152001,'2026-06-23 20:20:59','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//administrator/',404,'GET',NULL,'195.178.110.155'),(152002,'2026-06-23 20:21:00','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//login/',404,'GET',NULL,'195.178.110.155'),(152003,'2026-06-23 20:21:00','//wp-sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com//wp-sitemap.xml',404,'GET',NULL,'195.178.110.155'),(152004,'2026-06-23 20:21:00','/_next/image','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//_next/image',404,'GET',NULL,'195.178.110.155'),(152005,'2026-06-23 20:21:02','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'195.178.110.155'),(152006,'2026-06-23 20:21:02','/.s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.s3cfg',404,'GET',NULL,'195.178.110.155'),(152007,'2026-06-23 20:21:03','/api/v1/system/system-information','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//api/v1/system/system-information',404,'GET',NULL,'195.178.110.155'),(152008,'2026-06-23 20:21:03','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152009,'2026-06-23 20:21:03','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'195.178.110.155'),(152010,'2026-06-23 20:21:03','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152011,'2026-06-23 20:21:03','/api/v1/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/config',404,'GET',NULL,'195.178.110.155'),(152012,'2026-06-23 20:21:03','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-config.php.bak',404,'GET',NULL,'195.178.110.155'),(152013,'2026-06-23 20:21:03','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.git/config',404,'GET',NULL,'195.178.110.155'),(152014,'2026-06-23 20:21:03','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.docker/config.json',404,'GET',NULL,'195.178.110.155'),(152015,'2026-06-23 20:21:04','/telescope/api/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/telescope/api/requests',404,'GET',NULL,'195.178.110.155'),(152016,'2026-06-23 20:21:04','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage/logs/laravel.log',404,'GET',NULL,'195.178.110.155'),(152017,'2026-06-23 20:21:04','/static.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static.env',404,'GET',NULL,'195.178.110.155'),(152018,'2026-06-23 20:21:04','/root/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/root/.docker/config.json',404,'GET',NULL,'195.178.110.155'),(152019,'2026-06-23 20:21:05','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/debug.log',404,'GET',NULL,'195.178.110.155'),(152020,'2026-06-23 20:21:05','/api/debug/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/debug/env',404,'GET',NULL,'195.178.110.155'),(152021,'2026-06-23 20:21:05','/_profiler/latest','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_profiler/latest',404,'GET',NULL,'195.178.110.155'),(152022,'2026-06-23 20:21:05','/api/v2/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v2/config',404,'GET',NULL,'195.178.110.155'),(152023,'2026-06-23 20:21:06','/wp-config.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-config.php~',404,'GET',NULL,'195.178.110.155'),(152024,'2026-06-23 20:21:06','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/composer.json',404,'GET',NULL,'195.178.110.155'),(152025,'2026-06-23 20:21:06','/.boto','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.boto',404,'GET',NULL,'195.178.110.155'),(152026,'2026-06-23 20:21:06','/horizon','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/horizon',404,'GET',NULL,'195.178.110.155'),(152027,'2026-06-23 20:21:06','/api/v1/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/env',404,'GET',NULL,'195.178.110.155'),(152028,'2026-06-23 20:21:06','/wp-content/debug.log.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/debug.log.1',404,'GET',NULL,'195.178.110.155'),(152029,'2026-06-23 20:21:07','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.json',404,'GET',NULL,'195.178.110.155'),(152030,'2026-06-23 20:21:07','/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app.js.map',404,'GET',NULL,'195.178.110.155'),(152031,'2026-06-23 20:21:07','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.aws/config',404,'GET',NULL,'195.178.110.155'),(152032,'2026-06-23 20:21:07','/storage/logs/laravel-2024.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage/logs/laravel-2024.log',404,'GET',NULL,'195.178.110.155'),(152033,'2026-06-23 20:21:07','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'195.178.110.155'),(152034,'2026-06-23 20:21:07','/assets.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets.env',404,'GET',NULL,'195.178.110.155'),(152035,'2026-06-23 20:21:09','/aws-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/aws-credentials.json',404,'GET',NULL,'195.178.110.155'),(152036,'2026-06-23 20:21:09','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152037,'2026-06-23 20:21:09','/js/main.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/main.js.map',404,'GET',NULL,'195.178.110.155'),(152038,'2026-06-23 20:21:09','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-config.php.old',404,'GET',NULL,'195.178.110.155'),(152039,'2026-06-23 20:21:09','/wp-content/uploads/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/uploads/debug.log',404,'GET',NULL,'195.178.110.155'),(152040,'2026-06-23 20:21:09','/static../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../.env',404,'GET',NULL,'195.178.110.155'),(152041,'2026-06-23 20:21:10','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'195.178.110.155'),(152042,'2026-06-23 20:21:10','/home/ubuntu/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/home/ubuntu/.docker/config.json',404,'GET',NULL,'195.178.110.155'),(152043,'2026-06-23 20:21:10','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152044,'2026-06-23 20:21:10','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.env',404,'GET',NULL,'195.178.110.155'),(152045,'2026-06-23 20:21:10','/horizon/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/horizon/dashboard',404,'GET',NULL,'195.178.110.155'),(152046,'2026-06-23 20:21:10','/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/debug.log',404,'GET',NULL,'195.178.110.155'),(152047,'2026-06-23 20:21:10','/.s3credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.s3credentials',404,'GET',NULL,'195.178.110.155'),(152048,'2026-06-23 20:21:10','/public.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public.env',404,'GET',NULL,'195.178.110.155'),(152049,'2026-06-23 20:21:11','/api/debug/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/debug/info',404,'GET',NULL,'195.178.110.155'),(152050,'2026-06-23 20:21:11','/storage/logs/laravel-2026.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage/logs/laravel-2026.log',404,'GET',NULL,'195.178.110.155'),(152051,'2026-06-23 20:21:11','/api/v1/env/wp-json/wp/v2/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/env/wp-json/wp/v2/settings',404,'GET',NULL,'195.178.110.155'),(152052,'2026-06-23 20:21:11','/s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/s3cfg',404,'GET',NULL,'195.178.110.155'),(152053,'2026-06-23 20:21:11','/media.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media.env',404,'GET',NULL,'195.178.110.155'),(152054,'2026-06-23 20:21:11','/s3-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/s3-credentials.json',404,'GET',NULL,'195.178.110.155'),(152055,'2026-06-23 20:21:11','/api/v1/internal/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/internal/settings',404,'GET',NULL,'195.178.110.155'),(152056,'2026-06-23 20:21:11','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'195.178.110.155'),(152057,'2026-06-23 20:21:12','/home/ec2-user/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/home/ec2-user/.docker/config.json',404,'GET',NULL,'195.178.110.155'),(152058,'2026-06-23 20:21:12','/api/v1/smtp/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/smtp/credentials',404,'GET',NULL,'195.178.110.155'),(152059,'2026-06-23 20:21:12','/storage/logs/laravel-2025.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage/logs/laravel-2025.log',404,'GET',NULL,'195.178.110.155'),(152060,'2026-06-23 20:21:12','/dist.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist.env',404,'GET',NULL,'195.178.110.155'),(152061,'2026-06-23 20:21:12','/_cluster/health','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//_cluster/health',404,'GET',NULL,'195.178.110.155'),(152062,'2026-06-23 20:21:12','/api/v1/sendgrid/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/sendgrid/config',404,'GET',NULL,'195.178.110.155'),(152063,'2026-06-23 20:21:12','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/settings.py',404,'GET',NULL,'195.178.110.155'),(152064,'2026-06-23 20:21:12','/wp-content/plugins/wp-mail-smtp/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/plugins/wp-mail-smtp/tmp/debug.log',404,'GET',NULL,'195.178.110.155'),(152065,'2026-06-23 20:21:13','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152066,'2026-06-23 20:21:13','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.git/HEAD',404,'GET',NULL,'195.178.110.155'),(152067,'2026-06-23 20:21:13','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.env',404,'GET',NULL,'195.178.110.155'),(152068,'2026-06-23 20:21:13','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152069,'2026-06-23 20:21:14','/api/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/config',404,'GET',NULL,'195.178.110.155'),(152070,'2026-06-23 20:21:14','/.dockerconfigjson','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.dockerconfigjson',404,'GET',NULL,'195.178.110.155'),(152071,'2026-06-23 20:21:14','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152072,'2026-06-23 20:21:15','/cve24813probe','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0','https://solsculpting.com//cve24813probe',404,'GET',NULL,'195.178.110.155'),(152073,'2026-06-23 20:21:15','/aws.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/aws.json',404,'GET',NULL,'195.178.110.155'),(152074,'2026-06-23 20:21:15','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config/database.yml',404,'GET',NULL,'195.178.110.155'),(152075,'2026-06-23 20:21:15','/api/v1/auth/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/auth/config',404,'GET',NULL,'195.178.110.155'),(152076,'2026-06-23 20:21:15','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'195.178.110.155'),(152077,'2026-06-23 20:21:15','/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/credentials.json',404,'GET',NULL,'195.178.110.155'),(152078,'2026-06-23 20:21:15','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'195.178.110.155'),(152079,'2026-06-23 20:21:15','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'195.178.110.155'),(152080,'2026-06-23 20:21:16','/uploads.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads.env',404,'GET',NULL,'195.178.110.155'),(152081,'2026-06-23 20:21:16','/api/v1/api-keys','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/api-keys',404,'GET',NULL,'195.178.110.155'),(152082,'2026-06-23 20:21:16','/static../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152083,'2026-06-23 20:21:16','/api/v1/cloud/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/v1/cloud/credentials',404,'GET',NULL,'195.178.110.155'),(152084,'2026-06-23 20:21:16','/env.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/env.js.map',404,'GET',NULL,'195.178.110.155'),(152085,'2026-06-23 20:21:16','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/application.properties',404,'GET',NULL,'195.178.110.155'),(152086,'2026-06-23 20:21:17','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/docker-compose.yaml',404,'GET',NULL,'195.178.110.155'),(152087,'2026-06-23 20:21:17','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/application.yml',404,'GET',NULL,'195.178.110.155'),(152088,'2026-06-23 20:21:17','/config.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.js.map',404,'GET',NULL,'195.178.110.155'),(152089,'2026-06-23 20:21:17','/wp-content/plugins/smtp-mail/tmp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/plugins/smtp-mail/tmp/debug.log',404,'GET',NULL,'195.178.110.155'),(152090,'2026-06-23 20:21:17','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.git/config',404,'GET',NULL,'195.178.110.155'),(152091,'2026-06-23 20:21:17','/horizon/api/stats','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/horizon/api/stats',404,'GET',NULL,'195.178.110.155'),(152092,'2026-06-23 20:21:17','/files.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files.env',404,'GET',NULL,'195.178.110.155'),(152093,'2026-06-23 20:21:17','/api/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/env',404,'GET',NULL,'195.178.110.155'),(152094,'2026-06-23 20:21:17','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.env',404,'GET',NULL,'195.178.110.155'),(152095,'2026-06-23 20:21:18','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/docker-compose.yml',404,'GET',NULL,'195.178.110.155'),(152096,'2026-06-23 20:21:18','/wp-content/plugins/wp-smtp/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/plugins/wp-smtp/debug.log',404,'GET',NULL,'195.178.110.155'),(152097,'2026-06-23 20:21:18','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/.env',404,'GET',NULL,'195.178.110.155'),(152098,'2026-06-23 20:21:18','/wp-content/uploads/smtp-debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/uploads/smtp-debug.log',404,'GET',NULL,'195.178.110.155'),(152099,'2026-06-23 20:21:18','/wp-content/plugins/wp-mail/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/wp-content/plugins/wp-mail/debug.log',404,'GET',NULL,'195.178.110.155'),(152100,'2026-06-23 20:21:18','/static/js/main.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/js/main.js.map',404,'GET',NULL,'195.178.110.155'),(152101,'2026-06-23 20:21:18','/static/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/.env',404,'GET',NULL,'195.178.110.155'),(152102,'2026-06-23 20:21:19','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/web.config',404,'GET',NULL,'195.178.110.155'),(152103,'2026-06-23 20:21:19','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152104,'2026-06-23 20:21:19','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152105,'2026-06-23 20:21:19','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/.env',404,'GET',NULL,'195.178.110.155'),(152106,'2026-06-23 20:21:19','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.npmrc',404,'GET',NULL,'195.178.110.155'),(152107,'2026-06-23 20:21:19','/api/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/settings',404,'GET',NULL,'195.178.110.155'),(152108,'2026-06-23 20:21:19','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152109,'2026-06-23 20:21:20','/storage.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage.env',404,'GET',NULL,'195.178.110.155'),(152110,'2026-06-23 20:21:20','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist/.env',404,'GET',NULL,'195.178.110.155'),(152111,'2026-06-23 20:21:20','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152112,'2026-06-23 20:21:21','/config.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.yml',404,'GET',NULL,'195.178.110.155'),(152113,'2026-06-23 20:21:21','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152114,'2026-06-23 20:21:22','/media/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/.env',404,'GET',NULL,'195.178.110.155'),(152115,'2026-06-23 20:21:22','/assets/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/app.js.map',404,'GET',NULL,'195.178.110.155'),(152116,'2026-06-23 20:21:23','/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/config.yaml',404,'GET',NULL,'195.178.110.155'),(152117,'2026-06-23 20:21:23','/static/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static//.env',404,'GET',NULL,'195.178.110.155'),(152118,'2026-06-23 20:21:23','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/.env',404,'GET',NULL,'195.178.110.155'),(152119,'2026-06-23 20:21:24','/dist/bundle.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist/bundle.js.map',404,'GET',NULL,'195.178.110.155'),(152120,'2026-06-23 20:21:24','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152121,'2026-06-23 20:21:24','/application.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/application.yaml',404,'GET',NULL,'195.178.110.155'),(152122,'2026-06-23 20:21:25','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage/.env',404,'GET',NULL,'195.178.110.155'),(152123,'2026-06-23 20:21:25','/vendor.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor.js.map',404,'GET',NULL,'195.178.110.155'),(152124,'2026-06-23 20:21:26','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152125,'2026-06-23 20:21:26','/Dockerfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/Dockerfile',404,'GET',NULL,'195.178.110.155'),(152126,'2026-06-23 20:21:26','/files/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/.env',404,'GET',NULL,'195.178.110.155'),(152127,'2026-06-23 20:21:28','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'195.178.110.155'),(152128,'2026-06-23 20:21:28','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/appsettings.json',404,'GET',NULL,'195.178.110.155'),(152129,'2026-06-23 20:21:28','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152130,'2026-06-23 20:21:28','/js/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/app.js.map',404,'GET',NULL,'195.178.110.155'),(152131,'2026-06-23 20:21:29','/static/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152132,'2026-06-23 20:21:29','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.backup',404,'GET',NULL,'195.178.110.155'),(152133,'2026-06-23 20:21:30','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152134,'2026-06-23 20:21:30','/assets/index.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/index.js.map',404,'GET',NULL,'195.178.110.155'),(152135,'2026-06-23 20:21:31','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.bak',404,'GET',NULL,'195.178.110.155'),(152136,'2026-06-23 20:21:31','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152137,'2026-06-23 20:21:32','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.old',404,'GET',NULL,'195.178.110.155'),(152138,'2026-06-23 20:21:32','/static...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152139,'2026-06-23 20:21:32','/static../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152140,'2026-06-23 20:21:33','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.prod',404,'GET',NULL,'195.178.110.155'),(152141,'2026-06-23 20:21:35','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152142,'2026-06-23 20:21:35','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.production',404,'GET',NULL,'195.178.110.155'),(152143,'2026-06-23 20:21:35','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152144,'2026-06-23 20:21:37','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152145,'2026-06-23 20:21:37','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.staging',404,'GET',NULL,'195.178.110.155'),(152146,'2026-06-23 20:21:37','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152147,'2026-06-23 20:21:37','/static/js/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/js/app.js.map',404,'GET',NULL,'195.178.110.155'),(152148,'2026-06-23 20:21:38','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../.env',404,'GET',NULL,'195.178.110.155'),(152149,'2026-06-23 20:21:38','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152150,'2026-06-23 20:21:39','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env.dev',404,'GET',NULL,'195.178.110.155'),(152151,'2026-06-23 20:21:40','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152152,'2026-06-23 20:21:42','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/env',404,'GET',NULL,'195.178.110.155'),(152153,'2026-06-23 20:21:42','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152154,'2026-06-23 20:21:42','/dist/app.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist/app.js.map',404,'GET',NULL,'195.178.110.155'),(152155,'2026-06-23 20:21:43','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.ev',404,'GET',NULL,'195.178.110.155'),(152156,'2026-06-23 20:21:43','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152157,'2026-06-23 20:21:44','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152158,'2026-06-23 20:21:45','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'195.178.110.155'),(152159,'2026-06-23 20:21:45','/static../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../settings.py',404,'GET',NULL,'195.178.110.155'),(152160,'2026-06-23 20:21:47','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/2Eenv',404,'GET',NULL,'195.178.110.155'),(152161,'2026-06-23 20:21:47','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../settings.py',404,'GET',NULL,'195.178.110.155'),(152162,'2026-06-23 20:21:49','/static../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152163,'2026-06-23 20:21:49','/.ENV','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.ENV',404,'GET',NULL,'195.178.110.155'),(152164,'2026-06-23 20:21:50','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152165,'2026-06-23 20:21:51','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../.env',404,'GET',NULL,'195.178.110.155'),(152166,'2026-06-23 20:21:51','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152167,'2026-06-23 20:21:52','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152168,'2026-06-23 20:21:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'195.178.110.155'),(152169,'2026-06-23 20:21:53','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152170,'2026-06-23 20:21:54','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152171,'2026-06-23 20:21:55','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152172,'2026-06-23 20:21:56','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152173,'2026-06-23 20:21:57','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152174,'2026-06-23 20:21:57','/assets/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets//.env',404,'GET',NULL,'195.178.110.155'),(152175,'2026-06-23 20:21:59','/assets../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../.env',404,'GET',NULL,'195.178.110.155'),(152176,'2026-06-23 20:22:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../.env',404,'GET',NULL,'195.178.110.155'),(152177,'2026-06-23 20:22:05','/assets../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152178,'2026-06-23 20:22:05','/assets/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152179,'2026-06-23 20:22:08','/assets...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152180,'2026-06-23 20:22:11','/assets....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152181,'2026-06-23 20:22:12','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152182,'2026-06-23 20:22:13','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152183,'2026-06-23 20:22:14','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152184,'2026-06-23 20:22:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env',404,'GET',NULL,'195.178.110.155'),(152185,'2026-06-23 20:22:15','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env.local',404,'GET',NULL,'195.178.110.155'),(152186,'2026-06-23 20:22:16','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../.env',404,'GET',NULL,'195.178.110.155'),(152187,'2026-06-23 20:22:17','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../.env',404,'GET',NULL,'195.178.110.155'),(152188,'2026-06-23 20:22:18','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env.backup',404,'GET',NULL,'195.178.110.155'),(152189,'2026-06-23 20:22:19','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com//.env',404,'POST',NULL,'195.178.110.155'),(152190,'2026-06-23 20:22:20','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152191,'2026-06-23 20:22:21','//.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com//.env.local',404,'POST',NULL,'195.178.110.155'),(152192,'2026-06-23 20:22:21','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152193,'2026-06-23 20:22:22','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152194,'2026-06-23 20:22:22','//.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com//.env.backup',404,'POST',NULL,'195.178.110.155'),(152195,'2026-06-23 20:22:22','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152196,'2026-06-23 20:22:23','//.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com//.env.production',404,'POST',NULL,'195.178.110.155'),(152197,'2026-06-23 20:22:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152198,'2026-06-23 20:22:25','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env',404,'GET',NULL,'195.178.110.155'),(152199,'2026-06-23 20:22:26','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env.local',404,'GET',NULL,'195.178.110.155'),(152200,'2026-06-23 20:22:26','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152201,'2026-06-23 20:22:28','/assets../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152202,'2026-06-23 20:22:28','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env.backup',404,'GET',NULL,'195.178.110.155'),(152203,'2026-06-23 20:22:28','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152204,'2026-06-23 20:22:29','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152205,'2026-06-23 20:22:29','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152206,'2026-06-23 20:22:29','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible)','https://solsculpting.com//.env',404,'GET',NULL,'195.178.110.155'),(152207,'2026-06-23 20:22:30','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152208,'2026-06-23 20:22:30','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152209,'2026-06-23 20:22:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets/css/../../.env',404,'GET',NULL,'195.178.110.155'),(152210,'2026-06-23 20:22:31','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/static/js/../../.env',404,'GET',NULL,'195.178.110.155'),(152211,'2026-06-23 20:22:32','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152212,'2026-06-23 20:22:32','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152213,'2026-06-23 20:22:33','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'195.178.110.155'),(152214,'2026-06-23 20:22:33','/files/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files//.env',404,'GET',NULL,'195.178.110.155'),(152215,'2026-06-23 20:22:34','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152216,'2026-06-23 20:22:34','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files/../.env',404,'GET',NULL,'195.178.110.155'),(152217,'2026-06-23 20:22:35','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','https://solsculpting.com//.env',404,'GET',NULL,'195.178.110.155'),(152218,'2026-06-23 20:22:36','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152219,'2026-06-23 20:22:37','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152220,'2026-06-23 20:22:38','/files/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152221,'2026-06-23 20:22:38','/assets../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../settings.py',404,'GET',NULL,'195.178.110.155'),(152222,'2026-06-23 20:22:40','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../settings.py',404,'GET',NULL,'195.178.110.155'),(152223,'2026-06-23 20:22:41','/assets../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152224,'2026-06-23 20:22:42','/files...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152225,'2026-06-23 20:22:43','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../.env',404,'GET',NULL,'195.178.110.155'),(152226,'2026-06-23 20:22:43','/files....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152227,'2026-06-23 20:22:44','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152228,'2026-06-23 20:22:44','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152229,'2026-06-23 20:22:45','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/assets../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152230,'2026-06-23 20:22:46','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152231,'2026-06-23 20:22:47','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152232,'2026-06-23 20:22:47','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../.env',404,'GET',NULL,'195.178.110.155'),(152233,'2026-06-23 20:22:48','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../.env',404,'GET',NULL,'195.178.110.155'),(152234,'2026-06-23 20:22:48','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152235,'2026-06-23 20:22:50','/files../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../.env',404,'GET',NULL,'195.178.110.155'),(152236,'2026-06-23 20:22:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../.env',404,'GET',NULL,'195.178.110.155'),(152237,'2026-06-23 20:22:53','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152238,'2026-06-23 20:22:56','/files../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152239,'2026-06-23 20:22:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152240,'2026-06-23 20:23:00','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152241,'2026-06-23 20:23:01','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152242,'2026-06-23 20:23:02','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152243,'2026-06-23 20:23:04','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152244,'2026-06-23 20:23:05','/uploads/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads//.env',404,'GET',NULL,'195.178.110.155'),(152245,'2026-06-23 20:23:07','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152246,'2026-06-23 20:23:08','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152247,'2026-06-23 20:23:09','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152248,'2026-06-23 20:23:10','/uploads/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152249,'2026-06-23 20:23:11','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152250,'2026-06-23 20:23:12','/uploads...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152251,'2026-06-23 20:23:13','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152252,'2026-06-23 20:23:14','/uploads....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152253,'2026-06-23 20:23:14','/files../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152254,'2026-06-23 20:23:15','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152255,'2026-06-23 20:23:15','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152256,'2026-06-23 20:23:16','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152257,'2026-06-23 20:23:16','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152258,'2026-06-23 20:23:17','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../.env',404,'GET',NULL,'195.178.110.155'),(152259,'2026-06-23 20:23:19','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152260,'2026-06-23 20:23:19','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../.env',404,'GET',NULL,'195.178.110.155'),(152261,'2026-06-23 20:23:20','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152262,'2026-06-23 20:23:21','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152263,'2026-06-23 20:23:23','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152264,'2026-06-23 20:23:23','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152265,'2026-06-23 20:23:24','/files../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../settings.py',404,'GET',NULL,'195.178.110.155'),(152266,'2026-06-23 20:23:26','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../settings.py',404,'GET',NULL,'195.178.110.155'),(152267,'2026-06-23 20:23:28','/files../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152268,'2026-06-23 20:23:29','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../.env',404,'GET',NULL,'195.178.110.155'),(152269,'2026-06-23 20:23:29','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152270,'2026-06-23 20:23:30','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152271,'2026-06-23 20:23:30','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/files../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152272,'2026-06-23 20:23:31','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152273,'2026-06-23 20:23:32','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152274,'2026-06-23 20:23:34','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152275,'2026-06-23 20:23:34','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152276,'2026-06-23 20:23:35','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152277,'2026-06-23 20:23:35','/uploads../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../.env',404,'GET',NULL,'195.178.110.155'),(152278,'2026-06-23 20:23:36','/img/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img//.env',404,'GET',NULL,'195.178.110.155'),(152279,'2026-06-23 20:23:36','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../.env',404,'GET',NULL,'195.178.110.155'),(152280,'2026-06-23 20:23:41','/uploads../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152281,'2026-06-23 20:23:42','/img/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152282,'2026-06-23 20:23:44','/img...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152283,'2026-06-23 20:23:45','/img....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152284,'2026-06-23 20:23:46','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152285,'2026-06-23 20:23:46','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152286,'2026-06-23 20:23:47','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152287,'2026-06-23 20:23:50','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../.env',404,'GET',NULL,'195.178.110.155'),(152288,'2026-06-23 20:23:52','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152289,'2026-06-23 20:23:54','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152290,'2026-06-23 20:23:54','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152291,'2026-06-23 20:23:55','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152292,'2026-06-23 20:23:58','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152293,'2026-06-23 20:23:59','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152294,'2026-06-23 20:24:00','/uploads../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152295,'2026-06-23 20:24:00','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152296,'2026-06-23 20:24:01','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152297,'2026-06-23 20:24:01','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152298,'2026-06-23 20:24:03','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152299,'2026-06-23 20:24:03','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152300,'2026-06-23 20:24:04','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152301,'2026-06-23 20:24:04','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152302,'2026-06-23 20:24:06','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152303,'2026-06-23 20:24:06','/css/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css//.env',404,'GET',NULL,'195.178.110.155'),(152304,'2026-06-23 20:24:07','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152305,'2026-06-23 20:24:08','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152306,'2026-06-23 20:24:10','/uploads../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../settings.py',404,'GET',NULL,'195.178.110.155'),(152307,'2026-06-23 20:24:11','/css/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152308,'2026-06-23 20:24:11','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../settings.py',404,'GET',NULL,'195.178.110.155'),(152309,'2026-06-23 20:24:12','/uploads../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152310,'2026-06-23 20:24:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../.env',404,'GET',NULL,'195.178.110.155'),(152311,'2026-06-23 20:24:14','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152312,'2026-06-23 20:24:15','/css...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152313,'2026-06-23 20:24:15','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/uploads../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152314,'2026-06-23 20:24:16','/css....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152315,'2026-06-23 20:24:16','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152316,'2026-06-23 20:24:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152317,'2026-06-23 20:24:19','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152318,'2026-06-23 20:24:19','/img../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../.env',404,'GET',NULL,'195.178.110.155'),(152319,'2026-06-23 20:24:20','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152320,'2026-06-23 20:24:22','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../.env',404,'GET',NULL,'195.178.110.155'),(152321,'2026-06-23 20:24:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../.env',404,'GET',NULL,'195.178.110.155'),(152322,'2026-06-23 20:24:26','/img../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152323,'2026-06-23 20:24:27','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152324,'2026-06-23 20:24:32','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152325,'2026-06-23 20:24:32','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152326,'2026-06-23 20:24:34','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152327,'2026-06-23 20:24:35','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152328,'2026-06-23 20:24:37','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152329,'2026-06-23 20:24:37','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152330,'2026-06-23 20:24:38','/js/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js//.env',404,'GET',NULL,'195.178.110.155'),(152331,'2026-06-23 20:24:39','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152332,'2026-06-23 20:24:40','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152333,'2026-06-23 20:24:41','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152334,'2026-06-23 20:24:42','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152335,'2026-06-23 20:24:43','/js/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152336,'2026-06-23 20:24:43','/img../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152337,'2026-06-23 20:24:45','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152338,'2026-06-23 20:24:46','/js...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152339,'2026-06-23 20:24:47','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152340,'2026-06-23 20:24:47','/js....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152341,'2026-06-23 20:24:48','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152342,'2026-06-23 20:24:49','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152343,'2026-06-23 20:24:49','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152344,'2026-06-23 20:24:50','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152345,'2026-06-23 20:24:50','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152346,'2026-06-23 20:24:51','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../.env',404,'GET',NULL,'195.178.110.155'),(152347,'2026-06-23 20:24:51','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152348,'2026-06-23 20:24:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../.env',404,'GET',NULL,'195.178.110.155'),(152349,'2026-06-23 20:24:53','/img../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../settings.py',404,'GET',NULL,'195.178.110.155'),(152350,'2026-06-23 20:24:55','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../settings.py',404,'GET',NULL,'195.178.110.155'),(152351,'2026-06-23 20:24:56','/img../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152352,'2026-06-23 20:24:57','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152353,'2026-06-23 20:24:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../.env',404,'GET',NULL,'195.178.110.155'),(152354,'2026-06-23 20:24:58','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152355,'2026-06-23 20:25:00','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/img../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152356,'2026-06-23 20:25:02','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152357,'2026-06-23 20:25:03','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152358,'2026-06-23 20:25:03','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152359,'2026-06-23 20:25:04','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152360,'2026-06-23 20:25:04','/js../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../.env',404,'GET',NULL,'195.178.110.155'),(152361,'2026-06-23 20:25:05','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152362,'2026-06-23 20:25:05','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../.env',404,'GET',NULL,'195.178.110.155'),(152363,'2026-06-23 20:25:06','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152364,'2026-06-23 20:25:07','/media/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media//.env',404,'GET',NULL,'195.178.110.155'),(152365,'2026-06-23 20:25:10','/js../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152366,'2026-06-23 20:25:13','/media/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152367,'2026-06-23 20:25:15','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152368,'2026-06-23 20:25:15','/media...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152369,'2026-06-23 20:25:17','/media....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152370,'2026-06-23 20:25:19','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152371,'2026-06-23 20:25:20','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152372,'2026-06-23 20:25:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152373,'2026-06-23 20:25:21','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../.env',404,'GET',NULL,'195.178.110.155'),(152374,'2026-06-23 20:25:22','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152375,'2026-06-23 20:25:24','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152376,'2026-06-23 20:25:25','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152377,'2026-06-23 20:25:26','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152378,'2026-06-23 20:25:27','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152379,'2026-06-23 20:25:27','/js../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152380,'2026-06-23 20:25:29','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152381,'2026-06-23 20:25:31','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152382,'2026-06-23 20:25:33','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152383,'2026-06-23 20:25:33','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152384,'2026-06-23 20:25:34','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152385,'2026-06-23 20:25:35','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152386,'2026-06-23 20:25:36','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152387,'2026-06-23 20:25:37','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152388,'2026-06-23 20:25:37','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152389,'2026-06-23 20:25:39','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152390,'2026-06-23 20:25:39','/js../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../settings.py',404,'GET',NULL,'195.178.110.155'),(152391,'2026-06-23 20:25:40','/public/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public//.env',404,'GET',NULL,'195.178.110.155'),(152392,'2026-06-23 20:25:40','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../settings.py',404,'GET',NULL,'195.178.110.155'),(152393,'2026-06-23 20:25:42','/js../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152394,'2026-06-23 20:25:44','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../.env',404,'GET',NULL,'195.178.110.155'),(152395,'2026-06-23 20:25:44','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152396,'2026-06-23 20:25:46','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/js../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152397,'2026-06-23 20:25:46','/public/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152398,'2026-06-23 20:25:47','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152399,'2026-06-23 20:25:48','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152400,'2026-06-23 20:25:50','/css../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../.env',404,'GET',NULL,'195.178.110.155'),(152401,'2026-06-23 20:25:50','/public...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152402,'2026-06-23 20:25:51','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../.env',404,'GET',NULL,'195.178.110.155'),(152403,'2026-06-23 20:25:52','/public....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152404,'2026-06-23 20:25:53','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152405,'2026-06-23 20:25:57','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152406,'2026-06-23 20:25:57','/css../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152407,'2026-06-23 20:25:58','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../.env',404,'GET',NULL,'195.178.110.155'),(152408,'2026-06-23 20:26:03','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152409,'2026-06-23 20:26:03','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152410,'2026-06-23 20:26:08','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152411,'2026-06-23 20:26:08','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152412,'2026-06-23 20:26:10','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152413,'2026-06-23 20:26:11','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152414,'2026-06-23 20:26:12','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152415,'2026-06-23 20:26:13','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152416,'2026-06-23 20:26:14','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api/../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152417,'2026-06-23 20:26:14','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152418,'2026-06-23 20:26:15','/api/../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api//.env',404,'GET',NULL,'195.178.110.155'),(152419,'2026-06-23 20:26:17','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152420,'2026-06-23 20:26:18','/css../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152421,'2026-06-23 20:26:19','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152422,'2026-06-23 20:26:21','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152423,'2026-06-23 20:26:21','/api/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api//../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152424,'2026-06-23 20:26:22','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152425,'2026-06-23 20:26:24','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152426,'2026-06-23 20:26:24','/api...env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api2f..2f.env',404,'GET',NULL,'195.178.110.155'),(152427,'2026-06-23 20:26:25','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152428,'2026-06-23 20:26:26','/api....etcpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api2f..2f..2fetc2fpasswd',404,'GET',NULL,'195.178.110.155'),(152429,'2026-06-23 20:26:26','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152430,'2026-06-23 20:26:28','/css../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../settings.py',404,'GET',NULL,'195.178.110.155'),(152431,'2026-06-23 20:26:30','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../settings.py',404,'GET',NULL,'195.178.110.155'),(152432,'2026-06-23 20:26:32','/css../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152433,'2026-06-23 20:26:33','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../.env',404,'GET',NULL,'195.178.110.155'),(152434,'2026-06-23 20:26:34','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152435,'2026-06-23 20:26:35','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/css../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152436,'2026-06-23 20:26:37','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152437,'2026-06-23 20:26:39','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152438,'2026-06-23 20:26:40','/media../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../.env',404,'GET',NULL,'195.178.110.155'),(152439,'2026-06-23 20:26:41','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../.env',404,'GET',NULL,'195.178.110.155'),(152440,'2026-06-23 20:26:47','/media../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152441,'2026-06-23 20:26:53','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152442,'2026-06-23 20:26:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152443,'2026-06-23 20:27:00','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152444,'2026-06-23 20:27:04','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152445,'2026-06-23 20:27:05','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152446,'2026-06-23 20:27:06','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'162.243.232.86'),(152447,'2026-06-23 20:27:07','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152448,'2026-06-23 20:27:08','/media../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152449,'2026-06-23 20:27:10','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152450,'2026-06-23 20:27:11','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152451,'2026-06-23 20:27:13','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152452,'2026-06-23 20:27:14','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152453,'2026-06-23 20:27:16','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152454,'2026-06-23 20:27:17','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152455,'2026-06-23 20:27:19','/media../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../settings.py',404,'GET',NULL,'195.178.110.155'),(152456,'2026-06-23 20:27:20','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../settings.py',404,'GET',NULL,'195.178.110.155'),(152457,'2026-06-23 20:27:23','/media../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152458,'2026-06-23 20:27:24','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../.env',404,'GET',NULL,'195.178.110.155'),(152459,'2026-06-23 20:27:25','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152460,'2026-06-23 20:27:26','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/media../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152461,'2026-06-23 20:27:27','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152462,'2026-06-23 20:27:29','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152463,'2026-06-23 20:27:31','/public../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../.env',404,'GET',NULL,'195.178.110.155'),(152464,'2026-06-23 20:27:32','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../.env',404,'GET',NULL,'195.178.110.155'),(152465,'2026-06-23 20:27:38','/public../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152466,'2026-06-23 20:27:44','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152467,'2026-06-23 20:27:50','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152468,'2026-06-23 20:27:51','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152469,'2026-06-23 20:27:53','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152470,'2026-06-23 20:27:55','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152471,'2026-06-23 20:27:56','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152472,'2026-06-23 20:27:57','/public../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152473,'2026-06-23 20:27:59','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152474,'2026-06-23 20:28:01','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152475,'2026-06-23 20:28:02','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152476,'2026-06-23 20:28:04','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152477,'2026-06-23 20:28:05','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152478,'2026-06-23 20:28:07','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152479,'2026-06-23 20:28:09','/public../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../settings.py',404,'GET',NULL,'195.178.110.155'),(152480,'2026-06-23 20:28:10','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../settings.py',404,'GET',NULL,'195.178.110.155'),(152481,'2026-06-23 20:28:11','/public../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152482,'2026-06-23 20:28:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../.env',404,'GET',NULL,'195.178.110.155'),(152483,'2026-06-23 20:28:15','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152484,'2026-06-23 20:28:16','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/public../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152485,'2026-06-23 20:28:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152486,'2026-06-23 20:28:19','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152487,'2026-06-23 20:28:20','/api../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../.env',404,'GET',NULL,'195.178.110.155'),(152488,'2026-06-23 20:28:21','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../.env',404,'GET',NULL,'195.178.110.155'),(152489,'2026-06-23 20:28:27','/api../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152490,'2026-06-23 20:28:34','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152491,'2026-06-23 20:28:41','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152492,'2026-06-23 20:28:43','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152493,'2026-06-23 20:28:44','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152494,'2026-06-23 20:28:46','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152495,'2026-06-23 20:28:47','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152496,'2026-06-23 20:28:48','/api../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152497,'2026-06-23 20:28:50','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152498,'2026-06-23 20:28:52','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152499,'2026-06-23 20:28:53','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152500,'2026-06-23 20:28:54','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152501,'2026-06-23 20:28:56','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152502,'2026-06-23 20:28:57','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152503,'2026-06-23 20:28:59','/api../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../settings.py',404,'GET',NULL,'195.178.110.155'),(152504,'2026-06-23 20:29:01','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../settings.py',404,'GET',NULL,'195.178.110.155'),(152505,'2026-06-23 20:29:02','/api../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152506,'2026-06-23 20:29:03','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../.env',404,'GET',NULL,'195.178.110.155'),(152507,'2026-06-23 20:29:05','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152508,'2026-06-23 20:29:07','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/api../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152509,'2026-06-23 20:29:08','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152510,'2026-06-23 20:29:09','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152511,'2026-06-23 20:29:12','/storage../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../.env',404,'GET',NULL,'195.178.110.155'),(152512,'2026-06-23 20:29:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../.env',404,'GET',NULL,'195.178.110.155'),(152513,'2026-06-23 20:29:19','/storage../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152514,'2026-06-23 20:29:26','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152515,'2026-06-23 20:29:33','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152516,'2026-06-23 20:29:34','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152517,'2026-06-23 20:29:35','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152518,'2026-06-23 20:29:38','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152519,'2026-06-23 20:29:39','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152520,'2026-06-23 20:29:41','/storage../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152521,'2026-06-23 20:29:42','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152522,'2026-06-23 20:29:44','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152523,'2026-06-23 20:29:46','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152524,'2026-06-23 20:29:47','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152525,'2026-06-23 20:29:49','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152526,'2026-06-23 20:29:50','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152527,'2026-06-23 20:29:52','/storage../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../settings.py',404,'GET',NULL,'195.178.110.155'),(152528,'2026-06-23 20:29:53','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../settings.py',404,'GET',NULL,'195.178.110.155'),(152529,'2026-06-23 20:29:54','/storage../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152530,'2026-06-23 20:29:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../.env',404,'GET',NULL,'195.178.110.155'),(152531,'2026-06-23 20:29:58','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152532,'2026-06-23 20:29:59','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/storage../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152533,'2026-06-23 20:30:01','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152534,'2026-06-23 20:30:03','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152535,'2026-06-23 20:30:05','/_next/static../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../.env',404,'GET',NULL,'195.178.110.155'),(152536,'2026-06-23 20:30:06','/_next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../.env',404,'GET',NULL,'195.178.110.155'),(152537,'2026-06-23 20:30:13','/_next/static../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152538,'2026-06-23 20:30:19','/_next/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152539,'2026-06-23 20:30:25','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152540,'2026-06-23 20:30:26','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152541,'2026-06-23 20:30:28','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152542,'2026-06-23 20:30:29','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152543,'2026-06-23 20:30:30','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152544,'2026-06-23 20:30:32','/_next/static../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152545,'2026-06-23 20:30:34','/_next/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152546,'2026-06-23 20:30:35','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152547,'2026-06-23 20:30:36','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152548,'2026-06-23 20:30:38','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152549,'2026-06-23 20:30:40','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152550,'2026-06-23 20:30:42','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152551,'2026-06-23 20:30:43','/_next/static../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../settings.py',404,'GET',NULL,'195.178.110.155'),(152552,'2026-06-23 20:30:44','/_next/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../settings.py',404,'GET',NULL,'195.178.110.155'),(152553,'2026-06-23 20:30:47','/_next/static../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152554,'2026-06-23 20:30:48','/_next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../.env',404,'GET',NULL,'195.178.110.155'),(152555,'2026-06-23 20:30:50','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152556,'2026-06-23 20:30:51','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next/static../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152557,'2026-06-23 20:30:53','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152558,'2026-06-23 20:30:54','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152559,'2026-06-23 20:30:56','/_next../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../.env',404,'GET',NULL,'195.178.110.155'),(152560,'2026-06-23 20:30:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../.env',404,'GET',NULL,'195.178.110.155'),(152561,'2026-06-23 20:31:03','/_next../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152562,'2026-06-23 20:31:09','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152563,'2026-06-23 20:31:16','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152564,'2026-06-23 20:31:17','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152565,'2026-06-23 20:31:18','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152566,'2026-06-23 20:31:20','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152567,'2026-06-23 20:31:21','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152568,'2026-06-23 20:31:22','/_next../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152569,'2026-06-23 20:31:25','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152570,'2026-06-23 20:31:26','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152571,'2026-06-23 20:31:28','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152572,'2026-06-23 20:31:29','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152573,'2026-06-23 20:31:31','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152574,'2026-06-23 20:31:32','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152575,'2026-06-23 20:31:34','/_next../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../settings.py',404,'GET',NULL,'195.178.110.155'),(152576,'2026-06-23 20:31:35','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../settings.py',404,'GET',NULL,'195.178.110.155'),(152577,'2026-06-23 20:31:38','/_next../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152578,'2026-06-23 20:31:39','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../.env',404,'GET',NULL,'195.178.110.155'),(152579,'2026-06-23 20:31:40','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152580,'2026-06-23 20:31:41','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/_next../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152581,'2026-06-23 20:31:42','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152582,'2026-06-23 20:31:44','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152583,'2026-06-23 20:31:46','/build../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../.env',404,'GET',NULL,'195.178.110.155'),(152584,'2026-06-23 20:31:47','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../.env',404,'GET',NULL,'195.178.110.155'),(152585,'2026-06-23 20:31:53','/build../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152586,'2026-06-23 20:31:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152587,'2026-06-23 20:32:05','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152588,'2026-06-23 20:32:07','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152589,'2026-06-23 20:32:08','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152590,'2026-06-23 20:32:11','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152591,'2026-06-23 20:32:12','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152592,'2026-06-23 20:32:13','/build../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152593,'2026-06-23 20:32:14','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152594,'2026-06-23 20:32:15','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152595,'2026-06-23 20:32:18','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152596,'2026-06-23 20:32:19','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152597,'2026-06-23 20:32:20','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152598,'2026-06-23 20:32:21','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152599,'2026-06-23 20:32:23','/build../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../settings.py',404,'GET',NULL,'195.178.110.155'),(152600,'2026-06-23 20:32:24','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../settings.py',404,'GET',NULL,'195.178.110.155'),(152601,'2026-06-23 20:32:26','/build../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152602,'2026-06-23 20:32:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../.env',404,'GET',NULL,'195.178.110.155'),(152603,'2026-06-23 20:32:28','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152604,'2026-06-23 20:32:29','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/build../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152605,'2026-06-23 20:32:31','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152606,'2026-06-23 20:32:32','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152607,'2026-06-23 20:32:33','/dist../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../.env',404,'GET',NULL,'195.178.110.155'),(152608,'2026-06-23 20:32:35','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../.env',404,'GET',NULL,'195.178.110.155'),(152609,'2026-06-23 20:32:40','/dist../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152610,'2026-06-23 20:32:46','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152611,'2026-06-23 20:32:52','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152612,'2026-06-23 20:32:53','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152613,'2026-06-23 20:32:54','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152614,'2026-06-23 20:32:56','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152615,'2026-06-23 20:32:57','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152616,'2026-06-23 20:32:59','/dist../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152617,'2026-06-23 20:33:00','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152618,'2026-06-23 20:33:01','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152619,'2026-06-23 20:33:02','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152620,'2026-06-23 20:33:04','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152621,'2026-06-23 20:33:06','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152622,'2026-06-23 20:33:07','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152623,'2026-06-23 20:33:09','/dist../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../settings.py',404,'GET',NULL,'195.178.110.155'),(152624,'2026-06-23 20:33:11','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../settings.py',404,'GET',NULL,'195.178.110.155'),(152625,'2026-06-23 20:33:12','/dist../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152626,'2026-06-23 20:33:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../.env',404,'GET',NULL,'195.178.110.155'),(152627,'2026-06-23 20:33:14','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152628,'2026-06-23 20:33:15','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dist../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152629,'2026-06-23 20:33:18','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152630,'2026-06-23 20:33:19','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152631,'2026-06-23 20:33:20','/vendor../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../.env',404,'GET',NULL,'195.178.110.155'),(152632,'2026-06-23 20:33:22','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../.env',404,'GET',NULL,'195.178.110.155'),(152633,'2026-06-23 20:33:27','/vendor../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152634,'2026-06-23 20:33:34','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152635,'2026-06-23 20:33:40','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152636,'2026-06-23 20:33:41','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152637,'2026-06-23 20:33:42','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152638,'2026-06-23 20:33:43','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152639,'2026-06-23 20:33:45','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152640,'2026-06-23 20:33:46','/vendor../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152641,'2026-06-23 20:33:48','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152642,'2026-06-23 20:33:49','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152643,'2026-06-23 20:33:52','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152644,'2026-06-23 20:33:53','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152645,'2026-06-23 20:33:54','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152646,'2026-06-23 20:33:55','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152647,'2026-06-23 20:33:57','/vendor../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../settings.py',404,'GET',NULL,'195.178.110.155'),(152648,'2026-06-23 20:33:59','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../settings.py',404,'GET',NULL,'195.178.110.155'),(152649,'2026-06-23 20:34:00','/vendor../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152650,'2026-06-23 20:34:01','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../.env',404,'GET',NULL,'195.178.110.155'),(152651,'2026-06-23 20:34:02','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152652,'2026-06-23 20:34:04','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/vendor../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152653,'2026-06-23 20:34:05','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152654,'2026-06-23 20:34:07','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152655,'2026-06-23 20:34:08','/app../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../.env',404,'GET',NULL,'195.178.110.155'),(152656,'2026-06-23 20:34:10','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../.env',404,'GET',NULL,'195.178.110.155'),(152657,'2026-06-23 20:34:15','/app../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152658,'2026-06-23 20:34:21','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152659,'2026-06-23 20:34:26','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152660,'2026-06-23 20:34:28','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152661,'2026-06-23 20:34:29','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152662,'2026-06-23 20:34:30','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152663,'2026-06-23 20:34:32','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152664,'2026-06-23 20:34:33','/app../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152665,'2026-06-23 20:34:34','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152666,'2026-06-23 20:34:35','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152667,'2026-06-23 20:34:36','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152668,'2026-06-23 20:34:39','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152669,'2026-06-23 20:34:40','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152670,'2026-06-23 20:34:41','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152671,'2026-06-23 20:34:42','/app../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../settings.py',404,'GET',NULL,'195.178.110.155'),(152672,'2026-06-23 20:34:43','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../settings.py',404,'GET',NULL,'195.178.110.155'),(152673,'2026-06-23 20:34:45','/app../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152674,'2026-06-23 20:34:46','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../.env',404,'GET',NULL,'195.178.110.155'),(152675,'2026-06-23 20:34:47','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152676,'2026-06-23 20:34:48','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152677,'2026-06-23 20:34:49','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152678,'2026-06-23 20:34:50','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152679,'2026-06-23 20:34:52','/images../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../.env',404,'GET',NULL,'195.178.110.155'),(152680,'2026-06-23 20:34:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../.env',404,'GET',NULL,'195.178.110.155'),(152681,'2026-06-23 20:34:58','/images../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152682,'2026-06-23 20:35:03','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152683,'2026-06-23 20:35:09','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152684,'2026-06-23 20:35:10','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152685,'2026-06-23 20:35:12','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152686,'2026-06-23 20:35:14','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152687,'2026-06-23 20:35:15','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152688,'2026-06-23 20:35:16','/images../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152689,'2026-06-23 20:35:17','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152690,'2026-06-23 20:35:18','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152691,'2026-06-23 20:35:20','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152692,'2026-06-23 20:35:22','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152693,'2026-06-23 20:35:23','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152694,'2026-06-23 20:35:24','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152695,'2026-06-23 20:35:25','/images../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../settings.py',404,'GET',NULL,'195.178.110.155'),(152696,'2026-06-23 20:35:27','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../settings.py',404,'GET',NULL,'195.178.110.155'),(152697,'2026-06-23 20:35:28','/images../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152698,'2026-06-23 20:35:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../.env',404,'GET',NULL,'195.178.110.155'),(152699,'2026-06-23 20:35:32','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152700,'2026-06-23 20:35:33','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/images../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152701,'2026-06-23 20:35:37','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152702,'2026-06-23 20:35:39','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152703,'2026-06-23 20:35:41','/fonts../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../.env',404,'GET',NULL,'195.178.110.155'),(152704,'2026-06-23 20:35:43','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../.env',404,'GET',NULL,'195.178.110.155'),(152705,'2026-06-23 20:35:47','/fonts../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152706,'2026-06-23 20:35:53','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152707,'2026-06-23 20:35:59','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152708,'2026-06-23 20:36:01','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152709,'2026-06-23 20:36:04','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152710,'2026-06-23 20:36:06','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152711,'2026-06-23 20:36:07','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152712,'2026-06-23 20:36:09','/fonts../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152713,'2026-06-23 20:36:11','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152714,'2026-06-23 20:36:13','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152715,'2026-06-23 20:36:14','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152716,'2026-06-23 20:36:16','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152717,'2026-06-23 20:36:18','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152718,'2026-06-23 20:36:20','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152719,'2026-06-23 20:36:21','/fonts../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../settings.py',404,'GET',NULL,'195.178.110.155'),(152720,'2026-06-23 20:36:23','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../settings.py',404,'GET',NULL,'195.178.110.155'),(152721,'2026-06-23 20:36:24','/fonts../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152722,'2026-06-23 20:36:26','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../.env',404,'GET',NULL,'195.178.110.155'),(152723,'2026-06-23 20:36:27','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152724,'2026-06-23 20:36:29','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/fonts../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152725,'2026-06-23 20:36:30','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152726,'2026-06-23 20:36:32','/proc/self/environ','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../../proc/self/environ',404,'GET',NULL,'195.178.110.155'),(152727,'2026-06-23 20:36:33','/data../.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../.env',404,'GET',NULL,'195.178.110.155'),(152728,'2026-06-23 20:36:35','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../.env',404,'GET',NULL,'195.178.110.155'),(152729,'2026-06-23 20:36:41','/data../wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152730,'2026-06-23 20:36:46','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152731,'2026-06-23 20:36:51','/wp-config.php#','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../wp-config.php',404,'GET',NULL,'195.178.110.155'),(152732,'2026-06-23 20:36:52','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152733,'2026-06-23 20:36:53','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152734,'2026-06-23 20:36:56','/etc/passwd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../../../etc/passwd',404,'GET',NULL,'195.178.110.155'),(152735,'2026-06-23 20:36:57','/etc/nginx/nginx.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../etc/nginx/nginx.conf',404,'GET',NULL,'195.178.110.155'),(152736,'2026-06-23 20:36:58','/data../config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152737,'2026-06-23 20:37:00','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../config/database.yml',404,'GET',NULL,'195.178.110.155'),(152738,'2026-06-23 20:37:01','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152739,'2026-06-23 20:37:03','/root/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../../root/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152740,'2026-06-23 20:37:04','/home/www-data/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../home/www-data/.ssh/id_rsa',404,'GET',NULL,'195.178.110.155'),(152741,'2026-06-23 20:37:06','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152742,'2026-06-23 20:37:07','/root/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../../root/.aws/credentials',404,'GET',NULL,'195.178.110.155'),(152743,'2026-06-23 20:37:09','/data../settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../settings.py',404,'GET',NULL,'195.178.110.155'),(152744,'2026-06-23 20:37:11','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../settings.py',404,'GET',NULL,'195.178.110.155'),(152745,'2026-06-23 20:37:13','/data../config/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../config/settings.py',404,'GET',NULL,'195.178.110.155'),(152746,'2026-06-23 20:37:15','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../.env',404,'GET',NULL,'195.178.110.155'),(152747,'2026-06-23 20:37:16','/etc/apache2/apache2.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../etc/apache2/apache2.conf',404,'GET',NULL,'195.178.110.155'),(152748,'2026-06-23 20:37:18','/etc/httpd/conf/httpd.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/data../../../etc/httpd/conf/httpd.conf',404,'GET',NULL,'195.178.110.155'),(152749,'2026-06-23 20:37:59','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/login',404,'GET',NULL,'195.178.110.155'),(152750,'2026-06-23 20:38:01','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/register',404,'GET',NULL,'195.178.110.155'),(152751,'2026-06-23 20:38:02','/forgot-password','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/forgot-password',404,'GET',NULL,'195.178.110.155'),(152752,'2026-06-23 20:38:03','/password/reset','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/password/reset',404,'GET',NULL,'195.178.110.155'),(152753,'2026-06-23 20:38:04','/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/dashboard',404,'GET',NULL,'195.178.110.155'),(152754,'2026-06-23 20:38:07','/home','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/home',404,'GET',NULL,'195.178.110.155'),(152755,'2026-06-23 20:38:08','/app','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/app',404,'GET',NULL,'195.178.110.155'),(152756,'2026-06-23 20:38:10','/account','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/account',404,'GET',NULL,'195.178.110.155'),(152757,'2026-06-23 20:38:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/admin',404,'GET',NULL,'195.178.110.155'),(152758,'2026-06-23 20:38:14','/admin/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/admin/login',404,'GET',NULL,'195.178.110.155'),(152759,'2026-06-23 20:38:15','/filament','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/filament',404,'GET',NULL,'195.178.110.155'),(152760,'2026-06-23 20:38:17','/cms','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/cms',404,'GET',NULL,'195.178.110.155'),(152761,'2026-06-23 20:38:19','/panel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/panel',404,'GET',NULL,'195.178.110.155'),(152762,'2026-06-23 20:38:21','/backend','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/backend',404,'GET',NULL,'195.178.110.155'),(152763,'2026-06-23 20:38:22','/manage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/manage',404,'GET',NULL,'195.178.110.155'),(152764,'2026-06-23 20:38:23','/portal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/portal',404,'GET',NULL,'195.178.110.155'),(152765,'2026-06-23 20:38:26','/profile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/profile',404,'GET',NULL,'195.178.110.155'),(152766,'2026-06-23 20:38:27','/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/settings',404,'GET',NULL,'195.178.110.155'),(152767,'2026-06-23 20:38:28','/users','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/users',404,'GET',NULL,'195.178.110.155'),(152768,'2026-06-23 20:38:29','/orders','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/orders',404,'GET',NULL,'195.178.110.155'),(152769,'2026-06-23 20:38:32','/products','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/products',404,'GET',NULL,'195.178.110.155'),(152770,'2026-06-23 20:38:33','/checkout','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/checkout',404,'GET',NULL,'195.178.110.155'),(152771,'2026-06-23 20:38:35','/blog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/blog',404,'GET',NULL,'195.178.110.155'),(152772,'2026-06-23 20:38:36','/search','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/search',404,'GET',NULL,'195.178.110.155'),(152773,'2026-06-23 20:38:41','/livewire/update','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.6943.141 Safari/537.36','http://solsculpting.com/livewire/update',404,'GET',NULL,'195.178.110.155'),(152774,'2026-06-23 20:40:03','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152775,'2026-06-23 20:40:05','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152776,'2026-06-23 20:40:06','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152777,'2026-06-23 20:40:07','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152778,'2026-06-23 20:40:08','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152779,'2026-06-23 20:40:09','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152780,'2026-06-23 20:40:10','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152781,'2026-06-23 20:40:11','/.env.remote','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152782,'2026-06-23 20:40:12','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152783,'2026-06-23 20:40:13','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152784,'2026-06-23 20:40:14','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152785,'2026-06-23 20:40:15','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152786,'2026-06-23 20:40:16','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152787,'2026-06-23 20:40:17','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152788,'2026-06-23 20:40:18','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152789,'2026-06-23 20:40:19','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152790,'2026-06-23 20:40:20','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152791,'2026-06-23 20:40:21','/.env.ci','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152792,'2026-06-23 20:40:22','/.env.docker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152793,'2026-06-23 20:40:24','/.env.live','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152794,'2026-06-23 20:40:25','/.env.preprod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152795,'2026-06-23 20:40:26','/.env.uat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152796,'2026-06-23 20:40:27','/.env.dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152797,'2026-06-23 20:40:28','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152798,'2026-06-23 20:40:29','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152799,'2026-06-23 20:40:30','/.env1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152800,'2026-06-23 20:40:31','/.env2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152801,'2026-06-23 20:40:32','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152802,'2026-06-23 20:40:33','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152803,'2026-06-23 20:40:34','/.env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152804,'2026-06-23 20:40:35','/.env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152805,'2026-06-23 20:40:36','/.env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152806,'2026-06-23 20:40:37','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152807,'2026-06-23 20:40:38','/apps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152808,'2026-06-23 20:40:39','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152809,'2026-06-23 20:40:40','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152810,'2026-06-23 20:40:41','/site/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152811,'2026-06-23 20:40:42','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152812,'2026-06-23 20:40:44','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152813,'2026-06-23 20:40:45','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152814,'2026-06-23 20:40:46','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152815,'2026-06-23 20:40:47','/frontend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152816,'2026-06-23 20:40:48','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152817,'2026-06-23 20:40:49','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152818,'2026-06-23 20:40:50','/core/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152819,'2026-06-23 20:40:51','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152820,'2026-06-23 20:40:52','/private/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152821,'2026-06-23 20:40:53','/application/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152822,'2026-06-23 20:40:54','/bootstrap/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152823,'2026-06-23 20:40:55','/database/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152824,'2026-06-23 20:40:56','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152825,'2026-06-23 20:40:57','/var/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152826,'2026-06-23 20:40:58','/var/www/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152827,'2026-06-23 20:41:00','/current/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152828,'2026-06-23 20:41:01','/release/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152829,'2026-06-23 20:41:03','/releases/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152830,'2026-06-23 20:41:04','/shared/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152831,'2026-06-23 20:41:05','/deploy/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152832,'2026-06-23 20:41:06','/build/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152833,'2026-06-23 20:41:07','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152834,'2026-06-23 20:41:08','/public_html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152835,'2026-06-23 20:41:10','/htdocs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152836,'2026-06-23 20:41:10','/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152837,'2026-06-23 20:41:11','/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152838,'2026-06-23 20:41:12','/live/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152839,'2026-06-23 20:41:14','/prod/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152840,'2026-06-23 20:41:15','/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152841,'2026-06-23 20:41:16','/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152842,'2026-06-23 20:41:17','/opt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152843,'2026-06-23 20:41:18','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152844,'2026-06-23 20:41:19','/symfony/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152845,'2026-06-23 20:41:20','/wordpress/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152846,'2026-06-23 20:41:21','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152847,'2026-06-23 20:41:22','/cms/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152848,'2026-06-23 20:41:23','/drupal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152849,'2026-06-23 20:41:24','/joomla/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152850,'2026-06-23 20:41:25','/magento/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152851,'2026-06-23 20:41:27','/shopify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152852,'2026-06-23 20:41:28','/prestashop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152853,'2026-06-23 20:41:29','/codeigniter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152854,'2026-06-23 20:41:30','/cakephp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152855,'2026-06-23 20:41:31','/zend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152856,'2026-06-23 20:41:32','/yii/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152857,'2026-06-23 20:41:33','/laravel5/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152858,'2026-06-23 20:41:34','/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152859,'2026-06-23 20:41:36','/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152860,'2026-06-23 20:41:37','/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152861,'2026-06-23 20:41:38','/api/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152862,'2026-06-23 20:41:39','/api/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152863,'2026-06-23 20:41:40','/rest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152864,'2026-06-23 20:41:41','/graphql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152865,'2026-06-23 20:41:42','/gateway/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152866,'2026-06-23 20:41:43','/microservice/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152867,'2026-06-23 20:41:44','/service/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152868,'2026-06-23 20:41:45','/api/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152869,'2026-06-23 20:41:46','/api/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152870,'2026-06-23 20:41:47','/api/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152871,'2026-06-23 20:41:49','/vendor/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152872,'2026-06-23 20:41:50','/lib/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152873,'2026-06-23 20:41:51','/resources/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152874,'2026-06-23 20:41:52','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152875,'2026-06-23 20:41:52','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152876,'2026-06-23 20:41:53','/internal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152877,'2026-06-23 20:41:54','/tools/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152878,'2026-06-23 20:41:55','/scripts/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152879,'2026-06-23 20:41:56','/bin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152880,'2026-06-23 20:41:57','/sbin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152881,'2026-06-23 20:41:58','/local/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152882,'2026-06-23 20:41:59','/portal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152883,'2026-06-23 20:42:01','/dashboard/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152884,'2026-06-23 20:42:02','/panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152885,'2026-06-23 20:42:03','/crm/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152886,'2026-06-23 20:42:04','/erp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152887,'2026-06-23 20:42:05','/shop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152888,'2026-06-23 20:42:06','/store/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152889,'2026-06-23 20:42:07','/saas/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152890,'2026-06-23 20:42:08','/client/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152891,'2026-06-23 20:42:09','/project/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152892,'2026-06-23 20:42:10','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152893,'2026-06-23 20:42:11','/control-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152894,'2026-06-23 20:42:12','/user-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152895,'2026-06-23 20:42:13','/node/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152896,'2026-06-23 20:42:14','/express/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152897,'2026-06-23 20:42:15','/next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152898,'2026-06-23 20:42:16','/nuxt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152899,'2026-06-23 20:42:17','/nest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152900,'2026-06-23 20:42:18','/react/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152901,'2026-06-23 20:42:19','/vue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152902,'2026-06-23 20:42:20','/angular/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152903,'2026-06-23 20:42:21','/svelte/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152904,'2026-06-23 20:42:22','/vite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152905,'2026-06-23 20:42:23','/backup/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152906,'2026-06-23 20:42:24','/backups/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152907,'2026-06-23 20:42:25','/old/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152908,'2026-06-23 20:42:26','/tmp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152909,'2026-06-23 20:42:27','/temp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152910,'2026-06-23 20:42:29','/lab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152911,'2026-06-23 20:42:30','/cronlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152912,'2026-06-23 20:42:31','/cron/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152913,'2026-06-23 20:42:32','/en/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152914,'2026-06-23 20:42:33','/administrator/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152915,'2026-06-23 20:42:34','/psnlink/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152916,'2026-06-23 20:42:35','/exapi/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152917,'2026-06-23 20:42:36','/sitemaps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152918,'2026-06-23 20:42:37','/.env.backup1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152919,'2026-06-23 20:42:38','/.env.backup2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152920,'2026-06-23 20:42:39','/logs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152921,'2026-06-23 20:42:40','/cache/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152922,'2026-06-23 20:42:42','/mailer/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152923,'2026-06-23 20:42:43','/mail/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152924,'2026-06-23 20:42:44','/email/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152925,'2026-06-23 20:42:45','/smtp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152926,'2026-06-23 20:42:46','/mailing/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152927,'2026-06-23 20:42:47','/notifications/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152928,'2026-06-23 20:42:48','/notify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152929,'2026-06-23 20:42:49','/sender/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152930,'2026-06-23 20:42:50','/campaign/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152931,'2026-06-23 20:42:51','/newsletter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152932,'2026-06-23 20:42:52','/ses/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152933,'2026-06-23 20:42:53','/sendgrid/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152934,'2026-06-23 20:42:54','/sparkpost/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152935,'2026-06-23 20:42:55','/postmark/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152936,'2026-06-23 20:42:56','/mailgun/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152937,'2026-06-23 20:42:57','/mandrill/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152938,'2026-06-23 20:42:58','/mailjet/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152939,'2026-06-23 20:43:00','/brevo/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152940,'2026-06-23 20:43:01','/transactional/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152941,'2026-06-23 20:43:02','/bulk/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152942,'2026-06-23 20:43:03','/aws/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152943,'2026-06-23 20:43:04','/azure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152944,'2026-06-23 20:43:05','/gcp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152945,'2026-06-23 20:43:06','/cloud/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152946,'2026-06-23 20:43:07','/infrastructure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152947,'2026-06-23 20:43:08','/docker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152948,'2026-06-23 20:43:09','/k8s/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152949,'2026-06-23 20:43:10','/kubernetes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152950,'2026-06-23 20:43:11','/terraform/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152951,'2026-06-23 20:43:13','/ansible/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152952,'2026-06-23 20:43:14','/.git/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152953,'2026-06-23 20:43:15','/ci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152954,'2026-06-23 20:43:16','/cd/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152955,'2026-06-23 20:43:17','/jenkins/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152956,'2026-06-23 20:43:18','/gitlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152957,'2026-06-23 20:43:19','/github/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152958,'2026-06-23 20:43:20','/actions/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152959,'2026-06-23 20:43:21','/circleci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152960,'2026-06-23 20:43:22','/travis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152961,'2026-06-23 20:43:23','/buildkite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152962,'2026-06-23 20:43:24','/mysql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152963,'2026-06-23 20:43:25','/postgres/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152964,'2026-06-23 20:43:26','/mongodb/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152965,'2026-06-23 20:43:28','/redis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152966,'2026-06-23 20:43:29','/elasticsearch/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152967,'2026-06-23 20:43:30','/rabbitmq/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152968,'2026-06-23 20:43:31','/kafka/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152969,'2026-06-23 20:43:32','/queue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152970,'2026-06-23 20:43:33','/worker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152971,'2026-06-23 20:43:34','/job/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152972,'2026-06-23 20:43:35','/test/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152973,'2026-06-23 20:43:36','/qa/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152974,'2026-06-23 20:43:37','/preview/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152975,'2026-06-23 20:43:38','/beta/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152976,'2026-06-23 20:43:40','/uat/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152977,'2026-06-23 20:43:41','/stage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152978,'2026-06-23 20:43:42','/development/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152979,'2026-06-23 20:43:43','/production/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152980,'2026-06-23 20:43:44','/config/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152981,'2026-06-23 20:43:45','/.env.vault','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152982,'2026-06-23 20:43:46','/.env.fly','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152983,'2026-06-23 20:43:47','/.env.railway','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152984,'2026-06-23 20:43:48','/.env.render','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152985,'2026-06-23 20:43:50','/.env.vercel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152986,'2026-06-23 20:43:51','/.env.supabase','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152987,'2026-06-23 20:43:52','/.env.neon','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152988,'2026-06-23 20:43:55','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152989,'2026-06-23 20:43:58','/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152990,'2026-06-23 20:44:01','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152991,'2026-06-23 20:44:02','/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152992,'2026-06-23 20:44:04','/webroot/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152993,'2026-06-23 20:44:06','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152994,'2026-06-23 20:44:07','/phpinfo.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152995,'2026-06-23 20:44:08','/phpinfo.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152996,'2026-06-23 20:44:09','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152997,'2026-06-23 20:44:11','/phpinfo.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.152.105.102'),(152998,'2026-06-23 20:44:43','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.61.128.37'),(152999,'2026-06-23 20:44:44','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.61.128.37'),(153000,'2026-06-23 20:44:46','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.61.128.37'),(153001,'2026-06-23 20:44:47','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.61.128.37'),(153002,'2026-06-23 20:44:48','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/blog/',404,'GET',NULL,'34.61.128.37'),(153003,'2026-06-23 20:44:49','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.61.128.37'),(153004,'2026-06-23 20:59:52','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.222.27'),(153005,'2026-06-23 21:44:55','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153006,'2026-06-23 21:44:57','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153007,'2026-06-23 22:37:31','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.47',NULL,404,'GET',NULL,'34.132.132.21'),(153008,'2026-06-23 22:50:33','/feed/json/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'68.178.160.25'),(153009,'2026-06-23 22:50:48','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'162.254.36.150'),(153010,'2026-06-23 22:51:25','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'208.109.191.140'),(153011,'2026-06-23 23:36:30','/text/javascript','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36/Nutch-1.21-SNAPSHOT',NULL,404,'GET',NULL,'136.243.8.99'),(153012,'2026-06-23 23:51:06','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(153013,'2026-06-23 23:51:15','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(153014,'2026-06-23 23:51:16','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(153015,'2026-06-23 23:51:20','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(153016,'2026-06-24 00:25:06','/];Array.from(b.querySelectorAll','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36/Nutch-1.21-SNAPSHOT',NULL,404,'GET',NULL,'136.243.8.99'),(153017,'2026-06-24 00:47:19','/wp/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'94.26.106.90'),(153018,'2026-06-24 00:47:20','/blog/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'94.26.106.90'),(153019,'2026-06-24 00:47:21','/wordpress/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'94.26.106.90'),(153020,'2026-06-24 00:47:22','/site/wp-json/gravitysmtp/v1/tests/mock-data?page=gravitysmtp-settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'94.26.106.90'),(153021,'2026-06-24 02:01:50','/plugins/editors/jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh, Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.1.1 Safari/605.1.15',NULL,404,'GET',NULL,'157.15.40.88'),(153022,'2026-06-24 02:16:00','/alfa-rex.php7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.206.212'),(153023,'2026-06-24 02:18:34','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16',NULL,404,'GET',NULL,'2.57.122.173'),(153024,'2026-06-24 03:37:29','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/phpinfo',404,'GET',NULL,'45.153.34.16'),(153025,'2026-06-24 03:37:31','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/_profiler/phpinfo',404,'GET',NULL,'45.153.34.16'),(153026,'2026-06-24 03:37:33','/config.phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/config.phpinfo',404,'GET',NULL,'45.153.34.16'),(153027,'2026-06-24 03:37:35','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'45.153.34.16'),(153028,'2026-06-24 03:37:38','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'45.153.34.16'),(153029,'2026-06-24 03:37:39','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.bak',404,'GET',NULL,'45.153.34.16'),(153030,'2026-06-24 03:37:40','/.env-ku','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env-ku',404,'GET',NULL,'45.153.34.16'),(153031,'2026-06-24 03:37:41','/backup_web_config.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/backup_web_config.txt',404,'GET',NULL,'45.153.34.16'),(153032,'2026-06-24 03:37:43','/app_dev.php/_profiler/open?file-app/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/app_dev.php/_profiler/open?file-app/config/parameters.yml',404,'GET',NULL,'45.153.34.16'),(153033,'2026-06-24 04:03:44','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.238.198.211'),(153034,'2026-06-24 04:03:52','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.238.198.211'),(153035,'2026-06-24 04:03:53','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.238.198.211'),(153036,'2026-06-24 04:03:57','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.238.198.211'),(153037,'2026-06-24 05:14:03','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.178.169'),(153038,'2026-06-24 05:14:05','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.202.159'),(153039,'2026-06-24 05:14:07','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.202.159'),(153040,'2026-06-24 05:14:11','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.219.57'),(153041,'2026-06-24 05:14:14','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.235.73'),(153042,'2026-06-24 05:14:16','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.198.27'),(153043,'2026-06-24 05:14:18','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.86.179'),(153044,'2026-06-24 05:14:20','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.178.169'),(153045,'2026-06-24 05:14:21','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.202.159'),(153046,'2026-06-24 05:14:23','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.202.159'),(153047,'2026-06-24 05:14:26','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.178.169'),(153048,'2026-06-24 05:14:27','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.95.49'),(153049,'2026-06-24 05:14:29','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.95.49'),(153050,'2026-06-24 05:14:30','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.95.49'),(153051,'2026-06-24 05:14:32','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.71.202.159'),(153052,'2026-06-24 05:14:33','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.178.169'),(153053,'2026-06-24 05:14:35','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.202.159'),(153054,'2026-06-24 05:14:36','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.198.27'),(153055,'2026-06-24 05:14:38','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.198.27'),(153056,'2026-06-24 05:14:40','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.219.57'),(153057,'2026-06-24 05:14:41','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.202.159'),(153058,'2026-06-24 05:14:42','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.198.27'),(153059,'2026-06-24 05:14:44','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.178.169'),(153060,'2026-06-24 05:14:45','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.219.57'),(153061,'2026-06-24 05:14:49','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.235.73'),(153062,'2026-06-24 05:50:24','/wp-content/plugins/advanced-custom-post-type/changelog.md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.55.241.74'),(153063,'2026-06-24 05:51:09','/wp-content/plugins/payment-gateway-pix-for-woocommerce/README.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.55.241.74'),(153064,'2026-06-24 05:52:24','/wp-content/plugins/datalogics/README.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Safari/605.1.15',NULL,404,'GET',NULL,'185.55.241.74'),(153065,'2026-06-24 05:57:03','/wp-content/plugins/wedesigntech-ultimate-booking-addon/changelog.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'185.55.241.74'),(153066,'2026-06-24 06:06:51','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.205'),(153067,'2026-06-24 06:06:52','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.205'),(153068,'2026-06-24 06:06:53','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.205'),(153069,'2026-06-24 06:06:54','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.205'),(153070,'2026-06-24 06:28:05','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(153071,'2026-06-24 06:28:06','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(153072,'2026-06-24 06:28:08','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(153073,'2026-06-24 06:28:09','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(153074,'2026-06-24 06:38:19','/wp-content/plugins/fox-lms/README.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'185.55.241.74'),(153075,'2026-06-24 06:49:13','/wp-content/plugins/wpdirectorykit/README.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'185.55.241.74'),(153076,'2026-06-24 06:49:39','/wp-content/plugins/user-verification/readme.md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Pixel 6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.58 Mobile Safari/537.36',NULL,404,'GET',NULL,'185.55.241.74'),(153077,'2026-06-24 07:08:35','/wp-content/plugins/wc-designer-pro/changelog.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Safari/605.1.15',NULL,404,'GET',NULL,'185.55.241.74'),(153078,'2026-06-24 08:04:48','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153079,'2026-06-24 08:04:57','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153080,'2026-06-24 08:04:59','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153081,'2026-06-24 08:05:02','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153082,'2026-06-24 08:06:19','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153083,'2026-06-24 08:06:28','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153084,'2026-06-24 08:06:29','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153085,'2026-06-24 08:06:33','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.193.183'),(153086,'2026-06-24 09:26:01','/chosen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(153087,'2026-06-24 11:56:54','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (CentOS; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'195.178.110.241'),(153088,'2026-06-24 12:50:04','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.161.73.175'),(153089,'2026-06-24 12:54:07','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'207.154.220.28'),(153090,'2026-06-24 12:55:07','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'209.38.26.105'),(153091,'2026-06-24 16:34:29','/feed/json/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.69.117.34'),(153092,'2026-06-24 16:34:37','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'78.142.18.172'),(153093,'2026-06-24 16:34:37','/xmlrpc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'78.142.18.172'),(153094,'2026-06-24 16:34:47','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'192.241.157.226'),(153095,'2026-06-24 18:09:41','/wp-content/plugins/cidaas-pro-master/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.39.44'),(153096,'2026-06-24 18:24:42','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.44.65'),(153097,'2026-06-24 18:57:04','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.64'),(153098,'2026-06-24 18:57:05','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.64'),(153099,'2026-06-24 18:57:05','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.64'),(153100,'2026-06-24 18:57:06','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.64'),(153101,'2026-06-24 19:28:54','/?name=about-page-on&_=1782329332849359400','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.113.90'),(153102,'2026-06-24 22:50:15','/LICENSE.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'152.42.164.202'),(153103,'2026-06-24 22:50:22','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'152.42.164.202'),(153104,'2026-06-24 22:50:29','/media/system/js/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'152.42.164.202'),(153105,'2026-06-24 23:15:56','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153106,'2026-06-24 23:15:58','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153107,'2026-06-24 23:15:59','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153108,'2026-06-24 23:16:00','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153109,'2026-06-24 23:16:01','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153110,'2026-06-24 23:16:02','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153111,'2026-06-24 23:16:03','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153112,'2026-06-24 23:16:05','/.env.remote','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153113,'2026-06-24 23:16:06','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153114,'2026-06-24 23:16:07','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153115,'2026-06-24 23:16:08','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153116,'2026-06-24 23:16:09','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153117,'2026-06-24 23:16:10','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153118,'2026-06-24 23:16:11','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153119,'2026-06-24 23:16:12','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153120,'2026-06-24 23:16:14','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153121,'2026-06-24 23:16:16','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153122,'2026-06-24 23:16:17','/.env.ci','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153123,'2026-06-24 23:16:18','/.env.docker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153124,'2026-06-24 23:16:19','/.env.live','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153125,'2026-06-24 23:16:20','/.env.preprod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153126,'2026-06-24 23:16:21','/.env.uat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153127,'2026-06-24 23:16:22','/.env.dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153128,'2026-06-24 23:16:23','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153129,'2026-06-24 23:16:25','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153130,'2026-06-24 23:16:26','/.env1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153131,'2026-06-24 23:16:27','/.env2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153132,'2026-06-24 23:16:28','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153133,'2026-06-24 23:16:30','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153134,'2026-06-24 23:16:31','/.env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153135,'2026-06-24 23:16:32','/.env-example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153136,'2026-06-24 23:16:33','/.env.example-local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153137,'2026-06-24 23:16:34','/env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153138,'2026-06-24 23:16:35','/.env_example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153139,'2026-06-24 23:16:36','/.env.dev.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153140,'2026-06-24 23:16:38','/.env.production.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153141,'2026-06-24 23:16:39','/env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153142,'2026-06-24 23:16:40','/.env-backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153143,'2026-06-24 23:16:41','/fake-env-backup.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153144,'2026-06-24 23:16:42','/env_2.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153145,'2026-06-24 23:16:43','/.envrc.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153146,'2026-06-24 23:16:44','/.env.testing.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153147,'2026-06-24 23:16:45','/.env.local.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153148,'2026-06-24 23:16:46','/env_variables.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153149,'2026-06-24 23:16:47','/env-list.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153150,'2026-06-24 23:16:48','/.env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153151,'2026-06-24 23:16:49','/.env.heroku','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153152,'2026-06-24 23:16:50','/.env.lc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153153,'2026-06-24 23:16:51','/.env.prd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153154,'2026-06-24 23:16:53','/.env.server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153155,'2026-06-24 23:16:54','/env.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153156,'2026-06-24 23:16:55','/env.bash','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153157,'2026-06-24 23:16:57','/create_env.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153158,'2026-06-24 23:16:58','/_.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153159,'2026-06-24 23:16:59','/_.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153160,'2026-06-24 23:17:00','/.env.aws','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153161,'2026-06-24 23:17:01','/.env-dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153162,'2026-06-24 23:17:02','/set_env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153163,'2026-06-24 23:17:03','/dev_env.tfvars','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153164,'2026-06-24 23:17:04','/env_creation.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153165,'2026-06-24 23:17:05','/env_scan.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153166,'2026-06-24 23:17:06','/set_env_vars.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153167,'2026-06-24 23:17:07','/env_template','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153168,'2026-06-24 23:17:08','/.env.build','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153169,'2026-06-24 23:17:09','/.env_dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153170,'2026-06-24 23:17:10','/parseable-env-secret','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153171,'2026-06-24 23:17:11','/env.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153172,'2026-06-24 23:17:12','/env.jsx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153173,'2026-06-24 23:17:13','/set-aws-env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153174,'2026-06-24 23:17:14','/env_setup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153175,'2026-06-24 23:17:15','/.env-production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153176,'2026-06-24 23:17:16','/.env.heroku.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153177,'2026-06-24 23:17:17','/environment.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153178,'2026-06-24 23:17:18','/app-env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153179,'2026-06-24 23:17:19','/local_env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153180,'2026-06-24 23:17:20','/default-env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153181,'2026-06-24 23:17:21','/.env.development.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153182,'2026-06-24 23:17:22','/env_utils.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153183,'2026-06-24 23:17:23','/.env.ollama','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153184,'2026-06-24 23:17:24','/.env_hlg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153185,'2026-06-24 23:17:25','/.env_prd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153186,'2026-06-24 23:17:26','/example.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153187,'2026-06-24 23:17:27','/environment.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153188,'2026-06-24 23:17:28','/.env.email','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153189,'2026-06-24 23:17:29','/.env-dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153190,'2026-06-24 23:17:30','/.env.behat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153191,'2026-06-24 23:17:31','/.env.save.1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153192,'2026-06-24 23:17:32','/.envec2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153193,'2026-06-24 23:17:33','/.env copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153194,'2026-06-24 23:17:34','/.env copy 2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153195,'2026-06-24 23:17:35','/production.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153196,'2026-06-24 23:17:36','/enviar_email.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153197,'2026-06-24 23:17:37','/.envrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153198,'2026-06-24 23:17:38','/env-variables.md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153199,'2026-06-24 23:17:39','/environ_names.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153200,'2026-06-24 23:17:40','/env.md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153201,'2026-06-24 23:17:41','/.env.testing','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153202,'2026-06-24 23:17:42','/.env.example2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153203,'2026-06-24 23:17:43','/env-template','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153204,'2026-06-24 23:17:45','/env.template','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153205,'2026-06-24 23:17:46','/env.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153206,'2026-06-24 23:17:47','/.env.local.exported','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153207,'2026-06-24 23:17:48','/env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153208,'2026-06-24 23:17:49','/env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153209,'2026-06-24 23:17:50','/environment.ci.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153210,'2026-06-24 23:17:51','/environment.prod.ts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153211,'2026-06-24 23:17:52','/.env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153212,'2026-06-24 23:17:54','/.env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153213,'2026-06-24 23:17:55','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153214,'2026-06-24 23:17:56','/apps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153215,'2026-06-24 23:17:57','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153216,'2026-06-24 23:17:58','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153217,'2026-06-24 23:17:59','/site/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153218,'2026-06-24 23:18:00','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153219,'2026-06-24 23:18:01','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153220,'2026-06-24 23:18:02','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153221,'2026-06-24 23:18:02','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153222,'2026-06-24 23:18:03','/frontend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153223,'2026-06-24 23:18:04','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153224,'2026-06-24 23:18:05','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153225,'2026-06-24 23:18:07','/core/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153226,'2026-06-24 23:18:08','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153227,'2026-06-24 23:18:09','/private/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153228,'2026-06-24 23:18:10','/application/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153229,'2026-06-24 23:18:11','/bootstrap/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153230,'2026-06-24 23:18:12','/database/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153231,'2026-06-24 23:18:13','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153232,'2026-06-24 23:18:14','/var/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153233,'2026-06-24 23:18:15','/var/www/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153234,'2026-06-24 23:18:16','/current/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153235,'2026-06-24 23:18:17','/release/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153236,'2026-06-24 23:18:18','/releases/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153237,'2026-06-24 23:18:19','/shared/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153238,'2026-06-24 23:18:20','/deploy/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153239,'2026-06-24 23:18:21','/build/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153240,'2026-06-24 23:18:22','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153241,'2026-06-24 23:18:23','/public_html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153242,'2026-06-24 23:18:24','/htdocs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153243,'2026-06-24 23:18:25','/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153244,'2026-06-24 23:18:26','/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153245,'2026-06-24 23:18:27','/live/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153246,'2026-06-24 23:18:28','/prod/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153247,'2026-06-24 23:18:29','/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153248,'2026-06-24 23:18:30','/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153249,'2026-06-24 23:18:31','/opt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153250,'2026-06-24 23:18:32','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153251,'2026-06-24 23:18:33','/symfony/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153252,'2026-06-24 23:18:34','/wordpress/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153253,'2026-06-24 23:18:35','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153254,'2026-06-24 23:18:36','/cms/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153255,'2026-06-24 23:18:37','/drupal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153256,'2026-06-24 23:18:38','/joomla/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153257,'2026-06-24 23:18:39','/magento/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153258,'2026-06-24 23:18:40','/shopify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153259,'2026-06-24 23:18:41','/prestashop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153260,'2026-06-24 23:18:42','/codeigniter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153261,'2026-06-24 23:18:43','/cakephp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153262,'2026-06-24 23:18:44','/zend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153263,'2026-06-24 23:18:45','/yii/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153264,'2026-06-24 23:18:46','/laravel5/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153265,'2026-06-24 23:18:47','/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153266,'2026-06-24 23:18:48','/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153267,'2026-06-24 23:18:50','/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153268,'2026-06-24 23:18:51','/api/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153269,'2026-06-24 23:18:52','/api/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153270,'2026-06-24 23:18:53','/rest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153271,'2026-06-24 23:18:55','/graphql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153272,'2026-06-24 23:18:56','/gateway/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153273,'2026-06-24 23:18:57','/microservice/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153274,'2026-06-24 23:18:58','/service/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153275,'2026-06-24 23:18:59','/api/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153276,'2026-06-24 23:19:00','/api/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153277,'2026-06-24 23:19:01','/api/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153278,'2026-06-24 23:19:02','/vendor/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153279,'2026-06-24 23:19:03','/lib/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153280,'2026-06-24 23:19:04','/resources/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153281,'2026-06-24 23:19:05','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153282,'2026-06-24 23:19:06','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153283,'2026-06-24 23:19:07','/internal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153284,'2026-06-24 23:19:08','/tools/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153285,'2026-06-24 23:19:09','/scripts/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153286,'2026-06-24 23:19:11','/bin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153287,'2026-06-24 23:19:12','/sbin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153288,'2026-06-24 23:19:13','/local/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153289,'2026-06-24 23:19:14','/portal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153290,'2026-06-24 23:19:15','/dashboard/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153291,'2026-06-24 23:19:16','/panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153292,'2026-06-24 23:19:17','/crm/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153293,'2026-06-24 23:19:18','/erp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153294,'2026-06-24 23:19:19','/shop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153295,'2026-06-24 23:19:20','/store/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153296,'2026-06-24 23:19:21','/saas/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153297,'2026-06-24 23:19:22','/client/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153298,'2026-06-24 23:19:23','/project/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153299,'2026-06-24 23:19:24','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153300,'2026-06-24 23:19:25','/control-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153301,'2026-06-24 23:19:26','/user-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153302,'2026-06-24 23:19:27','/node/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153303,'2026-06-24 23:19:28','/express/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153304,'2026-06-24 23:19:29','/next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153305,'2026-06-24 23:19:30','/nuxt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153306,'2026-06-24 23:19:31','/nest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153307,'2026-06-24 23:19:32','/react/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153308,'2026-06-24 23:19:34','/vue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153309,'2026-06-24 23:19:35','/angular/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153310,'2026-06-24 23:19:36','/svelte/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153311,'2026-06-24 23:19:37','/vite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153312,'2026-06-24 23:19:38','/backup/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153313,'2026-06-24 23:19:39','/backups/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153314,'2026-06-24 23:19:40','/old/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153315,'2026-06-24 23:19:41','/tmp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153316,'2026-06-24 23:19:42','/temp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153317,'2026-06-24 23:19:43','/lab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153318,'2026-06-24 23:19:44','/cronlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153319,'2026-06-24 23:19:45','/cron/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153320,'2026-06-24 23:19:46','/en/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153321,'2026-06-24 23:19:47','/administrator/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153322,'2026-06-24 23:19:48','/psnlink/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153323,'2026-06-24 23:19:49','/exapi/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153324,'2026-06-24 23:19:50','/sitemaps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153325,'2026-06-24 23:19:51','/.env.backup1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153326,'2026-06-24 23:19:52','/.env.backup2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153327,'2026-06-24 23:19:53','/logs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153328,'2026-06-24 23:19:54','/cache/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153329,'2026-06-24 23:19:56','/mailer/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153330,'2026-06-24 23:19:57','/mail/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153331,'2026-06-24 23:19:58','/email/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153332,'2026-06-24 23:19:59','/smtp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153333,'2026-06-24 23:20:00','/mailing/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153334,'2026-06-24 23:20:01','/notifications/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153335,'2026-06-24 23:20:02','/notify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153336,'2026-06-24 23:20:03','/sender/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153337,'2026-06-24 23:20:04','/campaign/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153338,'2026-06-24 23:20:05','/newsletter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153339,'2026-06-24 23:20:06','/ses/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153340,'2026-06-24 23:20:07','/sendgrid/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153341,'2026-06-24 23:20:08','/sparkpost/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153342,'2026-06-24 23:20:09','/postmark/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153343,'2026-06-24 23:20:10','/mailgun/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153344,'2026-06-24 23:20:11','/mandrill/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153345,'2026-06-24 23:20:12','/mailjet/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153346,'2026-06-24 23:20:13','/brevo/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153347,'2026-06-24 23:20:14','/transactional/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153348,'2026-06-24 23:20:16','/bulk/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153349,'2026-06-24 23:20:17','/aws/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153350,'2026-06-24 23:20:18','/azure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153351,'2026-06-24 23:20:19','/gcp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153352,'2026-06-24 23:20:20','/cloud/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153353,'2026-06-24 23:20:21','/infrastructure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153354,'2026-06-24 23:20:22','/docker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153355,'2026-06-24 23:20:23','/k8s/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153356,'2026-06-24 23:20:24','/kubernetes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153357,'2026-06-24 23:20:25','/terraform/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153358,'2026-06-24 23:20:26','/ansible/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153359,'2026-06-24 23:20:27','/.git/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153360,'2026-06-24 23:20:28','/ci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153361,'2026-06-24 23:20:29','/cd/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153362,'2026-06-24 23:20:30','/jenkins/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153363,'2026-06-24 23:20:32','/gitlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153364,'2026-06-24 23:20:33','/github/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153365,'2026-06-24 23:20:34','/actions/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153366,'2026-06-24 23:20:36','/circleci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153367,'2026-06-24 23:20:37','/travis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153368,'2026-06-24 23:20:38','/buildkite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153369,'2026-06-24 23:20:39','/mysql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153370,'2026-06-24 23:20:40','/postgres/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153371,'2026-06-24 23:20:41','/mongodb/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153372,'2026-06-24 23:20:42','/redis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153373,'2026-06-24 23:20:43','/elasticsearch/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153374,'2026-06-24 23:20:44','/rabbitmq/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153375,'2026-06-24 23:20:45','/kafka/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153376,'2026-06-24 23:20:46','/queue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153377,'2026-06-24 23:20:47','/worker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153378,'2026-06-24 23:20:49','/job/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153379,'2026-06-24 23:20:50','/test/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153380,'2026-06-24 23:20:51','/qa/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153381,'2026-06-24 23:20:52','/preview/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153382,'2026-06-24 23:20:53','/beta/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153383,'2026-06-24 23:20:54','/uat/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153384,'2026-06-24 23:20:56','/stage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153385,'2026-06-24 23:20:57','/development/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153386,'2026-06-24 23:20:58','/production/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153387,'2026-06-24 23:20:59','/config/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153388,'2026-06-24 23:21:02','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153389,'2026-06-24 23:21:05','/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153390,'2026-06-24 23:21:07','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153391,'2026-06-24 23:21:08','/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153392,'2026-06-24 23:21:10','/webroot/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153393,'2026-06-24 23:21:12','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153394,'2026-06-24 23:21:14','/phpinfo.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153395,'2026-06-24 23:21:15','/phpinfo.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153396,'2026-06-24 23:21:16','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153397,'2026-06-24 23:21:17','/phpinfo.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'35.89.145.165'),(153398,'2026-06-24 23:25:42','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.234'),(153399,'2026-06-25 00:20:24','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.92.1.134'),(153400,'2026-06-25 00:20:24','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.92.1.134'),(153401,'2026-06-25 00:20:25','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.92.1.134'),(153402,'2026-06-25 00:20:26','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.92.1.134'),(153403,'2026-06-25 02:07:00','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153404,'2026-06-25 02:07:10','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153405,'2026-06-25 02:07:11','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153406,'2026-06-25 02:07:12','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153407,'2026-06-25 02:07:16','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153408,'2026-06-25 04:23:58','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.239'),(153409,'2026-06-25 10:43:52','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153410,'2026-06-25 10:44:01','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153411,'2026-06-25 10:44:02','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153412,'2026-06-25 10:44:06','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153413,'2026-06-25 11:15:13','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.58.40'),(153414,'2026-06-25 11:15:22','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.58.40'),(153415,'2026-06-25 11:15:24','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.58.40'),(153416,'2026-06-25 11:15:27','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.58.40'),(153417,'2026-06-25 11:50:26','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.19'),(153418,'2026-06-25 11:50:28','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.19'),(153419,'2026-06-25 12:32:47','/asdkjh2k3h4_nonexistent_path','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153420,'2026-06-25 12:33:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153421,'2026-06-25 12:33:00','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153422,'2026-06-25 12:33:01','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153423,'2026-06-25 12:33:03','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153424,'2026-06-25 12:33:04','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153425,'2026-06-25 12:33:06','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153426,'2026-06-25 12:33:08','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153427,'2026-06-25 12:33:09','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153428,'2026-06-25 12:33:11','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153429,'2026-06-25 12:33:12','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153430,'2026-06-25 12:33:14','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153431,'2026-06-25 12:33:16','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153432,'2026-06-25 12:33:18','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153433,'2026-06-25 12:33:19','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153434,'2026-06-25 12:33:20','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153435,'2026-06-25 12:33:21','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153436,'2026-06-25 12:33:22','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153437,'2026-06-25 12:33:23','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153438,'2026-06-25 12:33:24','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153439,'2026-06-25 12:33:26','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153440,'2026-06-25 12:33:28','/wp-config.php.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153441,'2026-06-25 12:33:29','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153442,'2026-06-25 12:33:31','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153443,'2026-06-25 12:33:33','/wp-config.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153444,'2026-06-25 12:33:34','/wp-config.php.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153445,'2026-06-25 12:33:36','/wp-config.php.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153446,'2026-06-25 12:33:38','/config.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153447,'2026-06-25 12:33:40','/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153448,'2026-06-25 12:33:41','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153449,'2026-06-25 12:33:43','/application.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153450,'2026-06-25 12:33:44','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153451,'2026-06-25 12:33:46','/application-production.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153452,'2026-06-25 12:33:48','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153453,'2026-06-25 12:33:50','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153454,'2026-06-25 12:33:51','/.docker.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153455,'2026-06-25 12:33:53','/Dockerfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153456,'2026-06-25 12:33:54','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153457,'2026-06-25 12:33:56','/appsettings.Development.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153458,'2026-06-25 12:33:57','/appsettings.Production.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153459,'2026-06-25 12:33:59','/local.settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153460,'2026-06-25 12:34:00','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153461,'2026-06-25 12:34:02','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153462,'2026-06-25 12:34:04','/local_settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153463,'2026-06-25 12:34:05','/settings/production.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153464,'2026-06-25 12:34:07','/config/database.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153465,'2026-06-25 12:34:08','/config/secrets.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153466,'2026-06-25 12:34:10','/config/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153467,'2026-06-25 12:34:11','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153468,'2026-06-25 12:34:12','/config/production.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153469,'2026-06-25 12:34:14','/config/development.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153470,'2026-06-25 12:34:16','/logs/error.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153471,'2026-06-25 12:34:17','/logs/application.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153472,'2026-06-25 12:34:19','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153473,'2026-06-25 12:34:21','/var/log/app.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153474,'2026-06-25 12:34:27','/.git-credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153475,'2026-06-25 12:34:29','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153476,'2026-06-25 12:34:30','/.yarnrc.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153477,'2026-06-25 12:34:31','/.yarnrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153478,'2026-06-25 12:34:32','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153479,'2026-06-25 12:34:35','/.pypirc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153480,'2026-06-25 12:34:36','/.vscode/settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153481,'2026-06-25 12:34:38','/.idea/workspace.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153482,'2026-06-25 12:34:39','/.github/workflows/main.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153483,'2026-06-25 12:34:41','/Jenkinsfile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153484,'2026-06-25 12:34:43','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153485,'2026-06-25 12:34:47','/firebase.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153486,'2026-06-25 12:34:49','/amplify.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153487,'2026-06-25 12:34:51','/.firebase/hosting.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'195.178.110.31'),(153488,'2026-06-25 14:46:24','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'209.38.241.135'),(153489,'2026-06-25 15:26:31','/wp-content/themes/wp-classic/inc/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'51.89.44.65'),(153490,'2026-06-25 15:26:31','/wp-content/themes/twentystd/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'51.89.44.65'),(153491,'2026-06-25 15:57:04','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.45.116'),(153492,'2026-06-25 16:14:10','/z.ph','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'135.119.73.164'),(153493,'2026-06-25 16:31:33','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'64.23.142.130'),(153494,'2026-06-25 16:42:58','/vendor/phpunit/phpunit/src/Util/PHP/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','https://www.google.com',404,'GET',NULL,'185.194.178.46'),(153495,'2026-06-25 16:43:03','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','https://www.google.com',404,'GET',NULL,'185.194.178.27'),(153496,'2026-06-25 16:43:05','/libraries/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','https://www.google.com',404,'GET',NULL,'185.194.178.26'),(153497,'2026-06-25 16:55:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153498,'2026-06-25 16:55:53','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153499,'2026-06-25 16:55:54','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153500,'2026-06-25 16:55:56','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153501,'2026-06-25 16:56:02','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153502,'2026-06-25 16:56:37','/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153503,'2026-06-25 16:56:38','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153504,'2026-06-25 16:56:43','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(153505,'2026-06-25 16:57:02','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153506,'2026-06-25 16:57:09','/.env.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153507,'2026-06-25 16:57:12','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153508,'2026-06-25 16:57:26','/.env.tmp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153509,'2026-06-25 16:57:36','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(153510,'2026-06-25 16:57:43','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153511,'2026-06-25 16:57:57','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153512,'2026-06-25 16:58:06','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153513,'2026-06-25 16:58:18','/config.json.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(153514,'2026-06-25 16:58:21','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153515,'2026-06-25 16:58:26','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153516,'2026-06-25 16:58:33','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(153517,'2026-06-25 16:58:36','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(153518,'2026-06-25 17:04:30','/xll.asp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.172.253'),(153519,'2026-06-25 18:22:50','/wp-content/cache/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.63.219.213'),(153520,'2026-06-25 18:23:46','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.63.219.213'),(153521,'2026-06-25 18:24:18','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.63.219.213'),(153522,'2026-06-25 18:28:16','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.29.90.34'),(153523,'2026-06-25 18:28:24','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.29.90.34'),(153524,'2026-06-25 18:28:25','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.29.90.34'),(153525,'2026-06-25 18:28:29','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.29.90.34'),(153526,'2026-06-25 18:37:22','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 4.4.2; HUAWEI Y625-U13 Build/HUAWEIY625-U13) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,'213.209.159.223'),(153527,'2026-06-25 18:37:24','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 4.4.2; HUAWEI Y625-U13 Build/HUAWEIY625-U13) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/30.0.0.0 Mobile Safari/537.36',NULL,404,'GET',NULL,'213.209.159.223'),(153528,'2026-06-25 20:59:01','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.90 Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'35.252.179.244'),(153529,'2026-06-25 20:59:02','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'35.252.179.244'),(153530,'2026-06-25 20:59:03','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 10; en-US; CPH2015) AppleWebKit/537.36 (KHTML, like Gecko) UCBrowser/13.5.8.1311 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'35.252.179.244'),(153531,'2026-06-25 20:59:05','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edg/128.0.2790.25 Chrome/128.0.6540.22 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'35.252.179.244'),(153532,'2026-06-25 20:59:06','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.6534.42 Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'35.252.179.244'),(153533,'2026-06-25 20:59:07','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'35.252.179.244'),(153534,'2026-06-25 21:03:47','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'158.158.46.108'),(153535,'2026-06-25 22:59:46','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(153536,'2026-06-25 22:59:47','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(153537,'2026-06-25 22:59:48','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(153538,'2026-06-25 22:59:49','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(153539,'2026-06-25 23:24:47','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'64.23.142.130'),(153540,'2026-06-26 00:01:04','/?name=not-founds-page-error-404&_=1782432062451100500','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.134.6.38'),(153541,'2026-06-26 02:04:37','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(153542,'2026-06-26 02:04:40','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(153543,'2026-06-26 02:04:46','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(153544,'2026-06-26 02:04:50','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(153545,'2026-06-26 05:48:32','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'212.32.49.148'),(153546,'2026-06-26 06:58:07','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.243'),(153547,'2026-06-26 06:58:14','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.222'),(153548,'2026-06-26 06:58:22','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.19'),(153549,'2026-06-26 06:58:31','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.246'),(153550,'2026-06-26 06:58:33','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.246'),(153551,'2026-06-26 06:59:21','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.180'),(153552,'2026-06-26 07:46:15','/chosen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.73.164'),(153553,'2026-06-26 09:08:45','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(153554,'2026-06-26 09:08:46','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(153555,'2026-06-26 09:08:47','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(153556,'2026-06-26 09:08:48','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(153557,'2026-06-26 10:00:20','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'15.204.93.212'),(153558,'2026-06-26 10:29:24','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'144.172.106.24'),(153559,'2026-06-26 12:02:34','/news/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.3124.85',NULL,404,'GET',NULL,'194.5.48.176'),(153560,'2026-06-26 12:02:39','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.3124.85',NULL,404,'GET',NULL,'194.5.48.182'),(153561,'2026-06-26 12:02:45','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.3124.85',NULL,404,'GET',NULL,'194.5.48.182'),(153562,'2026-06-26 12:02:49','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.3124.85',NULL,404,'GET',NULL,'194.5.48.185'),(153563,'2026-06-26 12:02:55','/site/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/139.0.0.0 Safari/537.36 Edg/139.0.3124.85',NULL,404,'GET',NULL,'194.5.48.193'),(153564,'2026-06-26 14:32:26','/?name=about-page-information&_=1782484344913175000','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.134.6.140'),(153565,'2026-06-26 16:29:49','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153566,'2026-06-26 16:29:56','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153567,'2026-06-26 16:29:57','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153568,'2026-06-26 16:30:01','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.104.19.65'),(153569,'2026-06-26 16:51:49','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.13.121.117'),(153570,'2026-06-26 18:31:20','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'13.78.12.242'),(153571,'2026-06-26 18:31:42','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'13.78.12.242'),(153572,'2026-06-26 19:38:37','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.239'),(153573,'2026-06-26 19:53:48','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(153574,'2026-06-26 19:53:49','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(153575,'2026-06-26 19:53:50','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(153576,'2026-06-26 19:53:50','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(153577,'2026-06-26 20:34:04','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.55.147.88'),(153578,'2026-06-26 20:34:05','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Mobile/15E148 Safari/604.1','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.55.147.88'),(153579,'2026-06-26 20:34:06','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.70 Safari/537.36 Vivaldi/6.7.3200.25','http://solsculpting.com/new/',404,'GET',NULL,'34.55.147.88'),(153580,'2026-06-26 20:34:07','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Xiaomi 14 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.33 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.55.147.88'),(153581,'2026-06-26 20:34:08','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.55.147.88'),(153582,'2026-06-26 20:34:09','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edg/128.0.2790.25 Chrome/128.0.6540.22 Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.55.147.88'),(153583,'2026-06-26 23:04:30','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.45.116'),(153584,'2026-06-27 00:45:43','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.235'),(153585,'2026-06-27 01:25:37','/xll.asp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.225.202.230'),(153586,'2026-06-27 01:33:22','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:109.0) Gecko/20100101 Firefox/117.0',NULL,404,'GET',NULL,'165.101.250.169'),(153587,'2026-06-27 03:15:26','/?name=about-page-information&_=1782530124040554700','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'162.252.55.59'),(153588,'2026-06-27 04:15:40','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'66.187.5.104'),(153589,'2026-06-27 04:15:41','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'66.187.5.104'),(153590,'2026-06-27 04:15:41','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'66.187.5.104'),(153591,'2026-06-27 04:15:42','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'66.187.5.104'),(153592,'2026-06-27 04:15:42','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'66.187.5.104'),(153593,'2026-06-27 04:15:43','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'66.187.5.104'),(153594,'2026-06-27 04:15:43','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'66.187.5.104'),(153595,'2026-06-27 04:15:44','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'66.187.5.104'),(153596,'2026-06-27 04:15:46','/api/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'66.187.5.104'),(153597,'2026-06-27 04:15:47','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'66.187.5.104'),(153598,'2026-06-27 04:15:48','/app/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'66.187.5.104'),(153599,'2026-06-27 04:15:50','/src/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'66.187.5.104'),(153600,'2026-06-27 05:37:08','/?name=about-page-information-infos&_=1782538625500989400','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.127.78'),(153601,'2026-06-27 05:59:04','/.git/config','https://solsculpting.us7.cdn-alpha.com','git/2.39.2',NULL,404,'GET',NULL,'54.162.51.33'),(153602,'2026-06-27 05:59:04','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','git/2.39.2',NULL,404,'GET',NULL,'54.162.51.33'),(153603,'2026-06-27 13:08:58','/components/com_jce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',404,'GET',NULL,'62.60.130.128'),(153604,'2026-06-27 13:08:59','/administrator/components/com_jce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',404,'GET',NULL,'62.60.130.128'),(153605,'2026-06-27 13:09:05','/components/com_jce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',404,'GET',NULL,'62.60.130.128'),(153606,'2026-06-27 13:09:06','/administrator/components/com_jce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; SM-G892A Build/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Mobile Safari/537.36','www.google.com',404,'GET',NULL,'62.60.130.128'),(153607,'2026-06-27 14:24:32','/enhancecp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; wpbot/1.4; +https://forms.gle/ajBaxygz9jSR8p8G9)',NULL,404,'GET',NULL,'184.33.240.103'),(153608,'2026-06-27 15:29:20','/300.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.170.235'),(153609,'2026-06-27 18:47:39','/xll.asp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.213.152.46'),(153610,'2026-06-27 18:57:10','/util/login.aspx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.11; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,'34.156.77.134'),(153611,'2026-06-27 20:34:01','/wp-content/plugins/cidaas-pro-master/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.68.179.234'),(153612,'2026-06-27 20:34:37','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.68.179.234'),(153613,'2026-06-27 23:26:40','/company','https://solsculpting.us7.cdn-alpha.com','IMJ-CompanyPage-Scraper/2.0_fix2 (+https://example.com)',NULL,404,'GET',NULL,'159.26.97.59'),(153614,'2026-06-27 23:26:40','/about-us','https://solsculpting.us7.cdn-alpha.com','IMJ-CompanyPage-Scraper/2.0_fix2 (+https://example.com)',NULL,404,'GET',NULL,'159.26.97.59'),(153615,'2026-06-27 23:26:41','/our-team','https://solsculpting.us7.cdn-alpha.com','IMJ-CompanyPage-Scraper/2.0_fix2 (+https://example.com)',NULL,404,'GET',NULL,'159.26.97.59'),(153616,'2026-06-28 00:54:21','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.81.125.163'),(153617,'2026-06-28 00:54:23','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.81.125.163'),(153618,'2026-06-28 00:54:26','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.81.125.163'),(153619,'2026-06-28 01:33:34','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.81.125.163'),(153620,'2026-06-28 01:33:36','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.81.125.163'),(153621,'2026-06-28 01:33:41','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.81.125.163'),(153622,'2026-06-28 05:43:50','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.207.145.86'),(153623,'2026-06-28 06:35:44','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.178.199'),(153624,'2026-06-28 07:06:50','/ads.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:151.0) Gecko/20100101 Firefox/151.0',NULL,404,'GET',NULL,'139.28.120.202'),(153625,'2026-06-28 08:43:25','/xll.asp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.91.188.128'),(153626,'2026-06-28 09:29:02','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.138.3.29'),(153627,'2026-06-28 10:38:02','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Redmi Note 7 Build/PKQ1.180904.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36 YaApp_Android/10.61 YaSearchBrowser/10.61','https://solsculpting.com/Form',404,'POST',NULL,'192.42.116.64'),(153628,'2026-06-28 10:38:16','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Redmi Note 7 Build/PKQ1.180904.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36 YaApp_Android/10.61 YaSearchBrowser/10.61','https://solsculpting.com/Form',404,'POST',NULL,'45.66.35.34'),(153629,'2026-06-28 10:38:29','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Redmi Note 7 Build/PKQ1.180904.001) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.99 Mobile Safari/537.36 YaApp_Android/10.61 YaSearchBrowser/10.61','https://solsculpting.com/Form',404,'POST',NULL,'192.42.116.66'),(153630,'2026-06-28 11:23:15','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'103.127.30.137'),(153631,'2026-06-28 11:23:17','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'198.46.83.219'),(153632,'2026-06-28 11:23:32','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'131.72.236.123'),(153633,'2026-06-28 14:05:39','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity',NULL,404,'GET',NULL,'198.235.24.83'),(153634,'2026-06-28 16:00:16','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.188'),(153635,'2026-06-28 16:00:16','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.188'),(153636,'2026-06-28 16:00:17','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.188'),(153637,'2026-06-28 16:00:18','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.188'),(153638,'2026-06-28 17:07:56','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.174.239.4'),(153639,'2026-06-28 17:07:57','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Samsung SM-A546B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.14 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.174.239.4'),(153640,'2026-06-28 17:07:58','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.90 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.174.239.4'),(153641,'2026-06-28 17:07:59','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; RMX3842) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.44 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.174.239.4'),(153642,'2026-06-28 17:08:00','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Xiaomi 14 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.33 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.174.239.4'),(153643,'2026-06-28 17:08:01','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.174.239.4'),(153644,'2026-06-28 18:24:36','/doors-test-article','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'51.89.44.65'),(153645,'2026-06-28 18:29:27','/webmail','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'87.106.40.166'),(153646,'2026-06-28 22:51:13','/_profiler/open?file=app/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'64.23.142.130'),(153647,'2026-06-28 22:51:15','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'64.23.142.130'),(153648,'2026-06-28 23:41:26','/api/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 6.0.1; MI 5 Build/MXB48T; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/66.0.3359.126 MQQBrowser/6.2 TBS/044807 Mobile Safari/537.36 MMWEBID/3072 MicroMessenger/7.0.3.1400(0x2700033C) Process/tools NetType/WIFI ',NULL,404,'GET',NULL,'34.95.200.144'),(153649,'2026-06-28 23:41:27','/html/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/4.0 (PDA; PalmOS/sony/model prmr/Revision:1.1.54 (en)) NetFront/3.0',NULL,404,'GET',NULL,'34.95.200.144'),(153650,'2026-06-28 23:41:27','/v1/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows; U; ; en-NZ) AppleWebKit/527 (KHTML, like Gecko, Safari/419.3) Arora/0.8.0',NULL,404,'GET',NULL,'34.95.200.144'),(153651,'2026-06-28 23:41:27','/project/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.108 Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153652,'2026-06-28 23:41:28','/laravel/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/4.0 (Windows; U; MSIE 7.0; Windows NT 6.0; .NET CLR 1.0.40727; Media Center PC 4.0; InfoPath.1; en-NZ)',NULL,404,'GET',NULL,'34.95.200.144'),(153653,'2026-06-28 23:41:28','/build/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 8.1; PBBM00 Build/O11019) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 YaBrowser/17.6.1.345.00 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153654,'2026-06-28 23:41:28','/dist/.git/config','https://solsculpting.us7.cdn-alpha.com','HTC-ST7377/1.59.502.3 (67150) Opera/9.50 (Windows NT 5.1; U; en) UP.Link/6.3.1.17.0',NULL,404,'GET',NULL,'34.95.200.144'),(153655,'2026-06-28 23:41:28','/admin/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) AppleWebKit/534.14 (KHTML, like Gecko) Chrome/9.0.601.0 Safari/534.14',NULL,404,'GET',NULL,'34.95.200.144'),(153656,'2026-06-28 23:41:28','/app/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 5.1; rv:31.0) Gecko/20100101 Firefox/31.0',NULL,404,'GET',NULL,'34.95.200.144'),(153657,'2026-06-28 23:41:28','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.142 Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153658,'2026-06-28 23:41:28','/assets/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (BlackBerry; U; BlackBerry 9800; en) AppleWebKit/534.1 (KHTML, Like Gecko) Version/6.0.0.141 Mobile Safari/534.1',NULL,404,'GET',NULL,'34.95.200.144'),(153659,'2026-06-28 23:41:28','/www/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; CrOS x86_64 5841.83.0) AppleWebKit/537.36 (KHTML like Gecko) Chrome/36.0.1985.138 Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153660,'2026-06-28 23:41:28','/v2/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 8.0.0; SM-A600FN) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153661,'2026-06-28 23:41:28','/web/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 8.0.0; SM-G930V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153662,'2026-06-28 23:41:28','/dashboard/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36 Edge/15.15063',NULL,404,'GET',NULL,'34.95.200.144'),(153663,'2026-06-28 23:41:29','/src/.git/config','https://solsculpting.us7.cdn-alpha.com','Nokia7250/1.0 (3.14) Profile/MIDP-1.0 Configuration/CLDC-1.0',NULL,404,'GET',NULL,'34.95.200.144'),(153664,'2026-06-28 23:41:29','/backend/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/80.0.262003652 Mobile/16F203 Safari/604.1',NULL,404,'GET',NULL,'34.95.200.144'),(153665,'2026-06-28 23:41:29','/v3/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 7.0; Vivo 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153666,'2026-06-28 23:41:29','/shop/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 4.4.2; GT-I9190) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153667,'2026-06-28 23:41:29','/wp-content/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10.5; en-US; rv:1.9.2.15) Gecko/20110303 Firefox/3.6.15',NULL,404,'GET',NULL,'34.95.200.144'),(153668,'2026-06-28 23:41:29','/public/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 8.0.0; SM-G930V) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.111 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153669,'2026-06-28 23:41:29','/blog/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 1.5; en-us; T-Mobile G1 Build/CRB43) AppleWebKit/528.5 (KHTML, like Gecko) Version/3.1.2 Mobile Safari 525.20.1',NULL,404,'GET',NULL,'34.95.200.144'),(153670,'2026-06-28 23:41:29','/static/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.2; ARM; Trident/7.0; Touch; rv:11.0; WPDesktop; NOKIA; Lumia 635) like Gecko',NULL,404,'GET',NULL,'34.95.200.144'),(153671,'2026-06-28 23:41:29','/wordpress/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153672,'2026-06-28 23:41:29','/symfony/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153673,'2026-06-28 23:41:29','/code/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.84 Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153674,'2026-06-28 23:41:29','/htdocs/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 9; en-gb; Redmi Note 7 Pro Build/PKQ1.181203.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/71.0.3578.141 Mobile Safari/537.36 XiaoMi/MiuiBrowser/10.9.8-g',NULL,404,'GET',NULL,'34.95.200.144'),(153675,'2026-06-28 23:41:29','/portal/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.14 (KHTML, like Gecko) Chrome/10.0.601.0 Safari/534.14',NULL,404,'GET',NULL,'34.95.200.144'),(153676,'2026-06-28 23:41:29','/site/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; moto g(7) power) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,'34.95.200.144'),(153677,'2026-06-28 23:41:30','/frontend/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,'34.95.200.144'),(153678,'2026-06-29 01:02:20','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/phpinfo',404,'GET',NULL,'45.153.34.16'),(153679,'2026-06-29 01:02:22','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/_profiler/phpinfo',404,'GET',NULL,'45.153.34.16'),(153680,'2026-06-29 01:02:25','/config.phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/config.phpinfo',404,'GET',NULL,'45.153.34.16'),(153681,'2026-06-29 01:02:27','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'45.153.34.16'),(153682,'2026-06-29 01:02:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'45.153.34.16'),(153683,'2026-06-29 01:02:31','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.bak',404,'GET',NULL,'45.153.34.16'),(153684,'2026-06-29 01:02:32','/.env-ku','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env-ku',404,'GET',NULL,'45.153.34.16'),(153685,'2026-06-29 01:02:33','/backup_web_config.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/backup_web_config.txt',404,'GET',NULL,'45.153.34.16'),(153686,'2026-06-29 01:02:34','/app_dev.php/_profiler/open?file-app/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/app_dev.php/_profiler/open?file-app/config/parameters.yml',404,'GET',NULL,'45.153.34.16'),(153687,'2026-06-29 01:32:44','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(153688,'2026-06-29 01:32:48','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(153689,'2026-06-29 01:32:51','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(153690,'2026-06-29 01:32:58','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(153691,'2026-06-29 05:37:23','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.213.83.153'),(153692,'2026-06-29 05:37:25','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.213.83.153'),(153693,'2026-06-29 05:37:27','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'POST',NULL,'185.213.83.153'),(153694,'2026-06-29 06:12:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 Assetnote/1.0.0',NULL,404,'GET',NULL,'51.103.46.9'),(153695,'2026-06-29 06:34:49','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.233'),(153696,'2026-06-29 06:36:35','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'109.105.210.57'),(153697,'2026-06-29 06:36:36','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'109.105.210.57'),(153698,'2026-06-29 07:07:49','/etc/passwd?_=x65tmju1&v=36tq5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153699,'2026-06-29 07:07:50','/etc/shadow?_=7c7v362v&v=pbwsy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=8uqzf8',404,'GET',NULL,'195.178.110.102'),(153700,'2026-06-29 07:07:53','/etc/hosts?_=rkdl8yqe&v=7btbi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.google.com/search?q=ulhml1',404,'GET',NULL,'195.178.110.102'),(153701,'2026-06-29 07:07:54','/proc/self/environ?_=z0md69ib&v=hl9it','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153702,'2026-06-29 07:07:56','/root/.ssh/id_rsa?_=2mb8pttq&v=qibpb','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.google.com/search?q=lx0jij',404,'GET',NULL,'195.178.110.102'),(153703,'2026-06-29 07:07:58','/.aws/credentials?_=6906754l&v=q1kju','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','http://solsculpting.com/../.aws/credentials?_=sm5s66eg&v=5f1dx',404,'GET',NULL,'195.178.110.102'),(153704,'2026-06-29 07:08:00','/.env?_=fa7fc3vg&v=g6viq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://t.co/9kkg9eevo6',404,'GET',NULL,'195.178.110.102'),(153705,'2026-06-29 07:08:01','/proc/version?_=svssdr01&v=mrj7y','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,'195.178.110.102'),(153706,'2026-06-29 07:08:03','/var/www/html/.env?_=2tlmgp3f&v=qcqkv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.google.com/search?q=12gke5',404,'GET',NULL,'195.178.110.102'),(153707,'2026-06-29 07:08:05','/var/www/.env?_=qeakr3oi&v=msehm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153708,'2026-06-29 07:08:11','/app/.env?_=z923sssc&v=nmq6b','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153709,'2026-06-29 07:08:12','/srv/.env?_=2j2zkr7n&v=y1uhy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153710,'2026-06-29 07:08:14','/home/.env?_=ns0o4miq&v=n5o54','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.bing.com/search?q=3im8dy',404,'GET',NULL,'195.178.110.102'),(153711,'2026-06-29 07:08:16','/var/log/nginx/access.log?_=t4wdmuli&v=galac','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=01fww',404,'GET',NULL,'195.178.110.102'),(153712,'2026-06-29 07:08:17','/var/log/apache2/access.log?_=f0fr7ozi&v=mofsw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.google.com/search?q=jkvngc',404,'GET',NULL,'195.178.110.102'),(153713,'2026-06-29 07:08:19','/proc/self/cmdline?_=ujwi27zr&v=61u3w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153714,'2026-06-29 07:08:20','/proc/net/tcp?_=ddipmr1d&v=a9hru','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153715,'2026-06-29 07:08:22','/root/.bash_history?_=7ubaxhua&v=aq6td','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://t.co/hukggmzj7q',404,'GET',NULL,'195.178.110.102'),(153716,'2026-06-29 07:08:24','/root/.mysql_history?_=tnoxgo3n&v=xpvvl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153717,'2026-06-29 07:08:25','/etc/nginx/nginx.conf?_=h53r2vth&v=bngi1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153718,'2026-06-29 07:08:27','/etc/apache2/apache2.conf?_=a3faxxn0&v=wxfhk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153719,'2026-06-29 07:08:29','/var/www/html/.git/config?_=817otgep&v=9xxqu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/fcd1o7j9g1',404,'GET',NULL,'195.178.110.102'),(153720,'2026-06-29 07:08:31','/var/www/.git/config?_=9sqwxoqb&v=c7smo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153721,'2026-06-29 07:08:32','/etc/passwd?_=7ozrl54t&v=cowii','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153722,'2026-06-29 07:08:34','/etc/shadow?_=tlrsxbrr&v=ludq2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://duckduckgo.com/?q=o37iq',404,'GET',NULL,'195.178.110.102'),(153723,'2026-06-29 07:08:36','/etc/hosts?_=40k0fq64&v=2i1ro','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153724,'2026-06-29 07:08:37','/proc/self/environ?_=yx53m2zh&v=pjs5j','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/2597hla4lv',404,'GET',NULL,'195.178.110.102'),(153725,'2026-06-29 07:08:39','/root/.ssh/id_rsa?_=uhvh7dph&v=c6x6z','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=s8691o',404,'GET',NULL,'195.178.110.102'),(153726,'2026-06-29 07:08:41','/.aws/credentials?_=qkwty2ts&v=izuu2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153727,'2026-06-29 07:08:43','/.env?_=arpzuoru&v=ym8od','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=qjtlv',404,'GET',NULL,'195.178.110.102'),(153728,'2026-06-29 07:08:44','/proc/version?_=sxpk1z9p&v=ju18r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://t.co/ffftusfmnr',404,'GET',NULL,'195.178.110.102'),(153729,'2026-06-29 07:08:47','/var/www/html/.env?_=rjap5j39&v=htw38','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=5bs25',404,'GET',NULL,'195.178.110.102'),(153730,'2026-06-29 07:08:49','/var/www/.env?_=1u81cwqm&v=5rkhl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153731,'2026-06-29 07:08:54','/app/.env?_=e1oolg3d&v=danbp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=hmiw1s',404,'GET',NULL,'195.178.110.102'),(153732,'2026-06-29 07:08:56','/srv/.env?_=4hf3bw3x&v=5xp6e','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','http://solsculpting.com/../../srv/.env?_=u68e1w1y&v=7a9xz',404,'GET',NULL,'195.178.110.102'),(153733,'2026-06-29 07:08:58','/home/.env?_=f073zib0&v=tsjpm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','http://solsculpting.com/../../home/.env?_=j9ir4r07&v=kf908',404,'GET',NULL,'195.178.110.102'),(153734,'2026-06-29 07:09:00','/var/log/nginx/access.log?_=4vri95hx&v=vzshu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=iyt522',404,'GET',NULL,'195.178.110.102'),(153735,'2026-06-29 07:09:01','/var/log/apache2/access.log?_=y4t8thsw&v=f8evi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153736,'2026-06-29 07:09:03','/proc/self/cmdline?_=86yavrgt&v=w8i7d','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.bing.com/search?q=ivvlzb',404,'GET',NULL,'195.178.110.102'),(153737,'2026-06-29 07:09:05','/proc/net/tcp?_=b6xnmkm0&v=3yxx7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=qvzgxd',404,'GET',NULL,'195.178.110.102'),(153738,'2026-06-29 07:09:06','/root/.bash_history?_=854hdzgh&v=whf0n','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.bing.com/search?q=z9d0oi',404,'GET',NULL,'195.178.110.102'),(153739,'2026-06-29 07:09:08','/root/.mysql_history?_=tf2zopye&v=mxfcw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/../../root/.mysql_history?_=6r40g9sf&v=xonch',404,'GET',NULL,'195.178.110.102'),(153740,'2026-06-29 07:09:09','/etc/nginx/nginx.conf?_=5hw6hapi&v=30t0a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/../../etc/nginx/nginx.conf?_=l1nvfejb&v=w0ghk',404,'GET',NULL,'195.178.110.102'),(153741,'2026-06-29 07:09:11','/etc/apache2/apache2.conf?_=5d2t1gds&v=mhepa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/../../etc/apache2/apache2.conf?_=b0cna4ut&v=kgl10',404,'GET',NULL,'195.178.110.102'),(153742,'2026-06-29 07:09:13','/var/www/html/.git/config?_=g1dvafvo&v=bcx7w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://t.co/g08tbnxbgt',404,'GET',NULL,'195.178.110.102'),(153743,'2026-06-29 07:09:15','/var/www/.git/config?_=4h462s4t&v=nk4v2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://t.co/vfrugvoqn3',404,'GET',NULL,'195.178.110.102'),(153744,'2026-06-29 07:09:16','/etc/passwd?_=bnws5fcz&v=z7jp4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/../../../etc/passwd?_=y5nkctoz&v=aej7m',404,'GET',NULL,'195.178.110.102'),(153745,'2026-06-29 07:09:18','/etc/shadow?_=qkvtw603&v=frisr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153746,'2026-06-29 07:09:20','/etc/hosts?_=mmjdzxkz&v=9b4hy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://duckduckgo.com/?q=1oozi',404,'GET',NULL,'195.178.110.102'),(153747,'2026-06-29 07:09:21','/proc/self/environ?_=7bcjuoxn&v=jn5we','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153748,'2026-06-29 07:09:23','/root/.ssh/id_rsa?_=57aj4xih&v=cw1w0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153749,'2026-06-29 07:09:25','/.aws/credentials?_=1lopapp0&v=k9pie','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=7qx4kf',404,'GET',NULL,'195.178.110.102'),(153750,'2026-06-29 07:09:26','/.env?_=fwlxnu9p&v=53i4s','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','http://solsculpting.com/../../../.env?_=v9l0dxxr&v=jbpye',404,'GET',NULL,'195.178.110.102'),(153751,'2026-06-29 07:09:28','/proc/version?_=z4tpbxgn&v=zlfrf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,'195.178.110.102'),(153752,'2026-06-29 07:09:30','/var/www/html/.env?_=88t8lzxt&v=9t9j2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=9b9alm',404,'GET',NULL,'195.178.110.102'),(153753,'2026-06-29 07:09:31','/var/www/.env?_=jec45zid&v=6qyx8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://duckduckgo.com/?q=if0fl',404,'GET',NULL,'195.178.110.102'),(153754,'2026-06-29 07:09:38','/app/.env?_=vsbtg3ta&v=aga9c','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153755,'2026-06-29 07:09:40','/srv/.env?_=zp2h4sdo&v=6djz9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153756,'2026-06-29 07:09:41','/home/.env?_=l923jtfs&v=6q7ux','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=47cu3w',404,'GET',NULL,'195.178.110.102'),(153757,'2026-06-29 07:09:43','/var/log/nginx/access.log?_=kadij74n&v=m1y9w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=d462et',404,'GET',NULL,'195.178.110.102'),(153758,'2026-06-29 07:09:45','/var/log/apache2/access.log?_=4zpetcfn&v=45oli','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/../../../var/log/apache2/access.log?_=fxk4w7de&v=35rpa',404,'GET',NULL,'195.178.110.102'),(153759,'2026-06-29 07:09:47','/proc/self/cmdline?_=cvxe6l2h&v=newqs','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://t.co/psdefhmarw',404,'GET',NULL,'195.178.110.102'),(153760,'2026-06-29 07:09:48','/proc/net/tcp?_=dg3rbgii&v=qbvrq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153761,'2026-06-29 07:09:50','/root/.bash_history?_=zcmnfq59&v=1vk79','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153762,'2026-06-29 07:09:52','/root/.mysql_history?_=f4kx2nrw&v=lcp99','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.google.com/search?q=bio33h',404,'GET',NULL,'195.178.110.102'),(153763,'2026-06-29 07:09:53','/etc/nginx/nginx.conf?_=27rpimvx&v=yd2de','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/jnrvfjazt8',404,'GET',NULL,'195.178.110.102'),(153764,'2026-06-29 07:09:55','/etc/apache2/apache2.conf?_=cnlbscpx&v=k5l3h','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153765,'2026-06-29 07:09:57','/var/www/html/.git/config?_=51frhb56&v=whqmf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153766,'2026-06-29 07:09:59','/var/www/.git/config?_=hjxmrgo9&v=fjeat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','http://solsculpting.com/../../../var/www/.git/config?_=a1we0g00&v=8xt9f',404,'GET',NULL,'195.178.110.102'),(153767,'2026-06-29 07:11:01','//etc/passwd?_=xveyfbs7&v=saqhe','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'195.178.110.102'),(153768,'2026-06-29 07:11:03','//etc/shadow?_=6te8qnsp&v=zqzs4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://t.co/ch318b4k3i',404,'GET',NULL,'195.178.110.102'); INSERT INTO `wp_redirection_404` VALUES (153769,'2026-06-29 07:11:05','//etc/hosts?_=z4hoibbi&v=e6t8f','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153770,'2026-06-29 07:11:07','//proc/self/environ?_=0f4oo4ni&v=uwjx5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=8erpx3',404,'GET',NULL,'195.178.110.102'),(153771,'2026-06-29 07:11:09','//root/.ssh/id_rsa?_=xmms9irv&v=v3xxd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','http://solsculpting.com/2e2e/root/.ssh/id_rsa?_=ul28mbhu&v=ggys3',404,'GET',NULL,'195.178.110.102'),(153772,'2026-06-29 07:11:11','//.aws/credentials?_=uwul9usn&v=0wyy8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','http://solsculpting.com/2e2e/.aws/credentials?_=bz3b30bt&v=pet30',404,'GET',NULL,'195.178.110.102'),(153773,'2026-06-29 07:11:12','//.env?_=30sds8j9&v=79qlc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://t.co/jaq17keu7z',404,'GET',NULL,'195.178.110.102'),(153774,'2026-06-29 07:11:14','//proc/version?_=8bwawksd&v=7ije2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/xmzaru5b24',404,'GET',NULL,'195.178.110.102'),(153775,'2026-06-29 07:11:16','//var/www/html/.env?_=vuh2cqsl&v=fqsnl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=2ligfh',404,'GET',NULL,'195.178.110.102'),(153776,'2026-06-29 07:11:18','//var/www/.env?_=a63ctazo&v=qnlyo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153777,'2026-06-29 07:11:24','//app/.env?_=1coq0u2m&v=aqpnr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153778,'2026-06-29 07:11:26','//srv/.env?_=5e01vwcq&v=x6aou','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153779,'2026-06-29 07:11:28','//home/.env?_=aiiua4wu&v=0xx42','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153780,'2026-06-29 07:11:30','//var/log/nginx/access.log?_=fnkjk9mm&v=o3b4l','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.bing.com/search?q=igbnuz',404,'GET',NULL,'195.178.110.102'),(153781,'2026-06-29 07:11:32','//var/log/apache2/access.log?_=scfj1ylb&v=bkacc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.102'),(153782,'2026-06-29 07:11:34','//proc/self/cmdline?_=kyhd3mtj&v=d6i6y','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153783,'2026-06-29 07:11:37','//proc/net/tcp?_=n7hhwtck&v=1m4h5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153784,'2026-06-29 07:11:39','//root/.bash_history?_=e5sw872t&v=85ec9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153785,'2026-06-29 07:11:41','//root/.mysql_history?_=rtci4zp2&v=jnk4j','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153786,'2026-06-29 07:11:43','//etc/nginx/nginx.conf?_=5qt1pux9&v=qihxk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153787,'2026-06-29 07:11:45','//etc/apache2/apache2.conf?_=xi6fzewo&v=lx5p3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153788,'2026-06-29 07:11:47','//var/www/html/.git/config?_=wtq7n9rg&v=2iggz','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153789,'2026-06-29 07:11:48','//var/www/.git/config?_=zz0ojty2&v=xzvx5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'195.178.110.102'),(153790,'2026-06-29 07:11:50','/.env?_=9j1hyxdi&v=k4l23','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.102'),(153791,'2026-06-29 07:11:52','/.env.local?_=q2b6lk01&v=rjyrq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153792,'2026-06-29 07:11:54','/.env.production?_=wmkrytjp&v=qmt6v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153793,'2026-06-29 07:11:56','/.aws/credentials?_=l5djtkl6&v=p0fnz','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.google.com/search?q=d7scm4',404,'GET',NULL,'195.178.110.102'),(153794,'2026-06-29 07:12:01','/.git/config?_=8rajskqc&v=u7nbn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://duckduckgo.com/?q=j5l0u',404,'GET',NULL,'195.178.110.102'),(153795,'2026-06-29 07:12:04','/config.json?_=09blrbjk&v=zo5fd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'195.178.110.102'),(153796,'2026-06-29 07:12:06','/.env?_=357k08yt&v=qw1oy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.google.com/search?q=txogr9',404,'GET',NULL,'195.178.110.102'),(153797,'2026-06-29 07:12:10','/.env?_=siesajq6&v=9cvf5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153798,'2026-06-29 07:12:12','/.env?_=5saqoptf&v=nuqzt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=szm6ry',404,'GET',NULL,'195.178.110.102'),(153799,'2026-06-29 07:12:14','/.env?_=bmf39n4q&v=bdxe5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://duckduckgo.com/?q=zw3co',404,'GET',NULL,'195.178.110.102'),(153800,'2026-06-29 07:12:16','/.env??=&_=vm4s7fxx&v=hoaty','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','http://solsculpting.com/.env?=&_=q5wkklgh&v=r54o5',404,'GET',NULL,'195.178.110.102'),(153801,'2026-06-29 07:12:19','/.env?_=rfg9i0ab&v=z8ft0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=bc4wt',404,'GET',NULL,'195.178.110.102'),(153802,'2026-06-29 07:12:21','/.env ?_=a4rp5u1h&v=f65if','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=so2ine',404,'GET',NULL,'195.178.110.102'),(153803,'2026-06-29 07:12:23','/.env ?_=pyid5e34&v=iautj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=cetgq6',404,'GET',NULL,'195.178.110.102'),(153804,'2026-06-29 07:12:25','/.env ?_=df6cg6gs&v=ihx1h','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://twitter.com/',404,'GET',NULL,'195.178.110.102'),(153805,'2026-06-29 07:12:27','/.env/?_=0nhm4j74&v=8e1nw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://duckduckgo.com/?q=90hgw',404,'GET',NULL,'195.178.110.102'),(153806,'2026-06-29 07:12:30','/.env/?_=um6zsf4b&v=bp0sj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153807,'2026-06-29 07:12:37','///etc/passwd?_=7q71ljfp&v=izlbe','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/2e2e/2e2e/etc/passwd?_=n8rkikuk&v=umobw',404,'GET',NULL,'195.178.110.102'),(153808,'2026-06-29 07:12:39','///.env?_=wwmrc45l&v=rn23x','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.facebook.com/',404,'GET',NULL,'195.178.110.102'),(153809,'2026-06-29 10:04:01','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.22.129'),(153810,'2026-06-29 10:04:11','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.22.129'),(153811,'2026-06-29 10:04:12','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.22.129'),(153812,'2026-06-29 10:04:18','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.22.129'),(153813,'2026-06-29 11:41:39','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'176.65.139.235'),(153814,'2026-06-29 15:06:38','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.89.44.65'),(153815,'2026-06-29 17:32:44','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.70 Safari/537.36 Vivaldi/6.7.3200.25','http://solsculpting.com/new/',404,'GET',NULL,'34.11.73.107'),(153816,'2026-06-29 17:32:46','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.11.73.107'),(153817,'2026-06-29 17:32:47','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.11.73.107'),(153818,'2026-06-29 17:32:48','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.11.73.107'),(153819,'2026-06-29 17:32:49','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.11.73.107'),(153820,'2026-06-29 17:32:50','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.11.73.107'),(153821,'2026-06-29 20:05:44','/.env?_=dalwqwwj&v=44cgm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','http://solsculpting.com/.env?_=8uja58ku&v=q6usw',404,'GET',NULL,'103.153.183.69'),(153822,'2026-06-29 20:05:50','/.env.local?_=38zbmvv3&v=6482w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153823,'2026-06-29 20:06:04','/.env.staging?_=epkdyqsi&v=cvnhs','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153824,'2026-06-29 20:06:14','/.env.bak?_=mojq9jw8&v=60cok','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/search?q=3i2u4y',404,'GET',NULL,'103.153.183.69'),(153825,'2026-06-29 20:06:24','/.env.example?_=o76dr93g&v=4dww0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153826,'2026-06-29 20:06:31','/.env?_=cla9xb8b&v=p8wz4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/oz3uajheco',404,'GET',NULL,'103.153.183.69'),(153827,'2026-06-29 20:06:37','/..env?_=l8aygnb5&v=kywmb','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153828,'2026-06-29 20:07:03','/.env?_=lsak20ww&v=xc8os','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://solsculpting.com/.env..?_=21o94qlz&v=zyie9',404,'GET',NULL,'103.153.183.69'),(153829,'2026-06-29 20:07:09','/.env?_=1jry0fpi&v=nji8d','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://duckduckgo.com/?q=2zrpa',404,'GET',NULL,'103.153.183.69'),(153830,'2026-06-29 20:07:18','/env?_=883ib594&v=rq6nv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.bing.com/search?q=ifus3i',404,'GET',NULL,'103.153.183.69'),(153831,'2026-06-29 20:07:24','/env?_=n4lmj2h8&v=otlne','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153832,'2026-06-29 20:07:30','/./.env?_=zx7hz90b&v=23h3f','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=xmto6b',404,'GET',NULL,'103.153.183.69'),(153833,'2026-06-29 20:07:38','/.env?_=lop8wk9u&v=mxono','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.google.com/search?q=0gqwcl',404,'GET',NULL,'103.153.183.69'),(153834,'2026-06-29 20:07:44','/.env?_=g0ddqd7o&v=pry1s','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=acu4n',404,'GET',NULL,'103.153.183.69'),(153835,'2026-06-29 20:07:50','/api/.env?_=403ru1ab&v=uin2x','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','http://solsculpting.com/api/.env?_=4h8a4xea&v=hq0jp',404,'GET',NULL,'103.153.183.69'),(153836,'2026-06-29 20:07:56','/.env?_=6d6so6hq&v=4mj2q','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153837,'2026-06-29 20:08:11','/home/.env?_=yj0tfud4&v=2p4ez','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://t.co/q1hgvgfcjk',404,'GET',NULL,'103.153.183.69'),(153838,'2026-06-29 20:08:17','/var/.env?_=90aojw5o&v=vub5k','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=euvw5',404,'GET',NULL,'103.153.183.69'),(153839,'2026-06-29 20:08:24','/app/.env?_=o73o6pxc&v=xbzpa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://duckduckgo.com/?q=r9642',404,'GET',NULL,'103.153.183.69'),(153840,'2026-06-29 20:08:32','/tmp/.env?_=9c9m2jgj&v=luvjw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153841,'2026-06-29 20:08:38','/.env?_=jvvw0st1&v=znpgj&x=1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153842,'2026-06-29 20:08:51','/.aws/config?_=hwuh9zcv&v=1w9bq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153843,'2026-06-29 20:09:21','/wp-config.php.bak?_=f6jlnq1x&v=xk7uz','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=fanpj',404,'GET',NULL,'103.153.183.69'),(153844,'2026-06-29 20:09:33','/wp-config.php.old?_=9qdqjjv5&v=2l9bn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','http://solsculpting.com/wp-config.php.old?_=r25p5ecz&v=h1o3m',404,'GET',NULL,'103.153.183.69'),(153845,'2026-06-29 20:09:38','/wp-config.php.save?_=athv6nvz&v=q0q7w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/wp-config.php.save?_=3syw2dsb&v=nrb53',404,'GET',NULL,'103.153.183.69'),(153846,'2026-06-29 20:09:45','/wp-config.php.txt?_=j6k53lg5&v=ll6u8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=27qan',404,'GET',NULL,'103.153.183.69'),(153847,'2026-06-29 20:09:53','/wp-config.php~?_=14twup6j&v=jcnt3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=myi0uw',404,'GET',NULL,'103.153.183.69'),(153848,'2026-06-29 20:10:31','/wp-content/backups/?_=xlffiazd&v=1rgrn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153849,'2026-06-29 20:10:49','/.git/HEAD?_=2sf68swq&v=xxtbu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/.git/HEAD?_=3lizrx38&v=oj1nd',404,'GET',NULL,'103.153.183.69'),(153850,'2026-06-29 20:11:03','/serverless.yml?_=uzdrdy8n&v=4xiz4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153851,'2026-06-29 20:11:09','/docker-compose.yml?_=csl2a7e8&v=2xx9r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','http://solsculpting.com/docker-compose.yml?_=a4atom2c&v=9yuyo',404,'GET',NULL,'103.153.183.69'),(153852,'2026-06-29 20:11:17','/.docker.env?_=wdqkm3ij&v=8fvwi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/.docker.env?_=3iwteb8g&v=1fjgq',404,'GET',NULL,'103.153.183.69'),(153853,'2026-06-29 20:11:22','/proc/self/environ?_=4jp8v11b&v=vk3wy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153854,'2026-06-29 20:11:42','/settings.py?_=r4pbve12&v=han4a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','http://solsculpting.com/settings.py?_=6r6olubl&v=hm4rd',404,'GET',NULL,'103.153.183.69'),(153855,'2026-06-29 20:11:57','/config.yml?_=3v6xtvzx&v=vgg8i','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','http://solsculpting.com/config.yml?_=2y1fbput&v=0epgs',404,'GET',NULL,'103.153.183.69'),(153856,'2026-06-29 20:12:03','/config.yaml?_=a7yz729w&v=kembi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153857,'2026-06-29 20:12:09','/application.yml?_=dkq79yl6&v=5fl5a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153858,'2026-06-29 20:12:14','/application.properties?_=8luvbk79&v=q7hh7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://duckduckgo.com/?q=nsj0k',404,'GET',NULL,'103.153.183.69'),(153859,'2026-06-29 20:12:41','/composer.json?_=lcanua52&v=dpq7w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153860,'2026-06-29 20:12:51','/actuator/configprops?_=wi7lcb7q&v=vf47t','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153861,'2026-06-29 20:13:11','/env?_=l3ysifup&v=vltkv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://duckduckgo.com/?q=2nbfs',404,'GET',NULL,'103.153.183.69'),(153862,'2026-06-29 20:13:16','/configprops?_=kmw76xx0&v=82apa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://t.co/ilaj09wxu5',404,'GET',NULL,'103.153.183.69'),(153863,'2026-06-29 20:13:26','/telescope/api/mail?_=x0kwskk4&v=opl62','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=phczg',404,'GET',NULL,'103.153.183.69'),(153864,'2026-06-29 20:13:37','/telescope?_=s77kqrzo&v=9klyv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153865,'2026-06-29 20:13:42','/api/telescope/requests?_=35x5gnhk&v=ravjo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=kouss',404,'GET',NULL,'103.153.183.69'),(153866,'2026-06-29 20:14:27','/etc/passwd?_=lht8wopo&v=5l1mh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153867,'2026-06-29 20:14:31','/etc/shadow?_=mlwfatcj&v=x549l','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=7cynuo',404,'GET',NULL,'103.153.183.69'),(153868,'2026-06-29 20:14:36','/etc/hosts?_=7qtxnr9w&v=cgfb7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153869,'2026-06-29 20:14:40','/proc/self/environ?_=dyqkqoro&v=nv30l','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153870,'2026-06-29 20:14:44','/root/.ssh/id_rsa?_=f4xbdhqn&v=sevqp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://t.co/abk2glnbro',404,'GET',NULL,'103.153.183.69'),(153871,'2026-06-29 20:14:50','/.aws/credentials?_=m9wkkjur&v=brjqu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153872,'2026-06-29 20:14:54','/.env?_=y5tv9o6i&v=sv6kl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/x2rmk612cp',404,'GET',NULL,'103.153.183.69'),(153873,'2026-06-29 20:14:57','/proc/version?_=vl7dv0vl&v=0go3p','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','http://solsculpting.com/../proc/version?_=kxekih5s&v=0tqm5',404,'GET',NULL,'103.153.183.69'),(153874,'2026-06-29 20:15:18','/var/log/nginx/access.log?_=hgeta5hx&v=nn922','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153875,'2026-06-29 20:15:23','/var/log/apache2/access.log?_=9g1ky8go&v=otppi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=10u5g9',404,'GET',NULL,'103.153.183.69'),(153876,'2026-06-29 20:15:30','/proc/net/tcp?_=i83qyn3c&v=67m40','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.google.com/search?q=qxntjr',404,'GET',NULL,'103.153.183.69'),(153877,'2026-06-29 20:15:35','/root/.bash_history?_=kks3j5ym&v=m9evc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=gxy7z0',404,'GET',NULL,'103.153.183.69'),(153878,'2026-06-29 20:15:39','/root/.mysql_history?_=of19sti5&v=kstlk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153879,'2026-06-29 20:15:49','/var/www/html/.git/config?_=efp3f54f&v=s0ft0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://duckduckgo.com/?q=50q0w',404,'GET',NULL,'103.153.183.69'),(153880,'2026-06-29 20:15:52','/var/www/.git/config?_=nxsfouq1&v=atame','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/748puyueiw',404,'GET',NULL,'103.153.183.69'),(153881,'2026-06-29 20:15:58','/etc/passwd?_=e3whj27n&v=r52cg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.bing.com/search?q=8t0p2x',404,'GET',NULL,'103.153.183.69'),(153882,'2026-06-29 20:16:03','/etc/shadow?_=087kmnbz&v=uwcdy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','http://solsculpting.com/../../etc/shadow?_=qw8a1fra&v=7fryn',404,'GET',NULL,'103.153.183.69'),(153883,'2026-06-29 20:16:06','/etc/hosts?_=x1wq6phq&v=0q5au','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153884,'2026-06-29 20:16:12','/root/.ssh/id_rsa?_=zoxebq4d&v=dwtwr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153885,'2026-06-29 20:16:20','/proc/version?_=tem3l51h&v=xrtob','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153886,'2026-06-29 20:16:26','/var/www/.env?_=egocdr6q&v=h1z9i','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153887,'2026-06-29 20:16:39','/app/.env?_=86n6yvoy&v=35uel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153888,'2026-06-29 20:16:48','/home/.env?_=d7ve3e9t&v=q6ejb','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153889,'2026-06-29 20:16:53','/var/log/nginx/access.log?_=9cup3i0v&v=jdjen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=p23wfb',404,'GET',NULL,'103.153.183.69'),(153890,'2026-06-29 20:17:05','/proc/net/tcp?_=eyf62n0d&v=85d6v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=u5fnd',404,'GET',NULL,'103.153.183.69'),(153891,'2026-06-29 20:17:11','/root/.mysql_history?_=cn74kjg9&v=5gfpc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://duckduckgo.com/?q=9tg2q',404,'GET',NULL,'103.153.183.69'),(153892,'2026-06-29 20:17:19','/var/www/html/.git/config?_=soxyg6zd&v=351rl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','http://solsculpting.com/../../var/www/html/.git/config?_=owr95os7&v=og8fe',404,'GET',NULL,'103.153.183.69'),(153893,'2026-06-29 20:17:25','/etc/passwd?_=qvvivj53&v=jgw1f','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=6s0n9r',404,'GET',NULL,'103.153.183.69'),(153894,'2026-06-29 20:17:31','/etc/hosts?_=3rldam3o&v=m8lyh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=x1k82f',404,'GET',NULL,'103.153.183.69'),(153895,'2026-06-29 20:17:38','/root/.ssh/id_rsa?_=dqihk1b8&v=55q48','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/../../../root/.ssh/id_rsa?_=8wyt90dg&v=yu8y4',404,'GET',NULL,'103.153.183.69'),(153896,'2026-06-29 20:17:42','/.aws/credentials?_=teqocpsj&v=3ntup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.bing.com/search?q=m1ib1g',404,'GET',NULL,'103.153.183.69'),(153897,'2026-06-29 20:17:46','/.env?_=sxpft4lu&v=8csb0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153898,'2026-06-29 20:17:56','/var/www/html/.env?_=yk3h3kff&v=kbaed','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=94xhfz',404,'GET',NULL,'103.153.183.69'),(153899,'2026-06-29 20:17:59','/var/www/.env?_=0mewqeqk&v=9a9fd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153900,'2026-06-29 20:18:23','/home/.env?_=t9w1nobr&v=e7tiq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153901,'2026-06-29 20:18:28','/var/log/nginx/access.log?_=fjsfttkl&v=sz2x5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=qzefua',404,'GET',NULL,'103.153.183.69'),(153902,'2026-06-29 20:18:31','/var/log/apache2/access.log?_=k0n0z8bv&v=tvcgg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153903,'2026-06-29 20:18:38','/proc/self/cmdline?_=uub0zpqe&v=2lmvm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153904,'2026-06-29 20:18:43','/root/.bash_history?_=s27whmcm&v=6mw7m','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/8kxqjjfuuq',404,'GET',NULL,'103.153.183.69'),(153905,'2026-06-29 20:18:49','/root/.mysql_history?_=68zx68a5&v=giyp8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','http://solsculpting.com/../../../root/.mysql_history?_=pfv1yscz&v=k2d5z',404,'GET',NULL,'103.153.183.69'),(153906,'2026-06-29 20:18:54','/etc/nginx/nginx.conf?_=qfqesonx&v=35c01','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153907,'2026-06-29 20:18:58','/etc/apache2/apache2.conf?_=s6hzb5a5&v=81094','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153908,'2026-06-29 20:19:03','/var/www/.git/config?_=j1p5cgeo&v=4rjh6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','http://solsculpting.com/../../../var/www/.git/config?_=86xuly1b&v=kz8w6',404,'GET',NULL,'103.153.183.69'),(153909,'2026-06-29 20:21:54','//etc/passwd?_=02gdf9dq&v=rdjjx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153910,'2026-06-29 20:21:58','//etc/shadow?_=yjlxorak&v=rccfw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','http://solsculpting.com/2e2e/etc/shadow?_=dezheptu&v=dfap8',404,'GET',NULL,'103.153.183.69'),(153911,'2026-06-29 20:22:03','//etc/hosts?_=2hjr548m&v=bo8h3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153912,'2026-06-29 20:22:07','//proc/self/environ?_=30u1v0pi&v=qbx21','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153913,'2026-06-29 20:22:10','//root/.ssh/id_rsa?_=jvcf7qck&v=agdyg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153914,'2026-06-29 20:22:14','//.aws/credentials?_=4uvqgk8h&v=yyjjk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/3vzdvj75u4',404,'GET',NULL,'103.153.183.69'),(153915,'2026-06-29 20:22:20','//proc/version?_=3k07kojq&v=6lrgc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','http://solsculpting.com/2e2e/proc/version?_=nx4lumz5&v=mqgy5',404,'GET',NULL,'103.153.183.69'),(153916,'2026-06-29 20:22:26','//var/www/.env?_=5pvv1lc9&v=zidue','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://duckduckgo.com/?q=dn03x',404,'GET',NULL,'103.153.183.69'),(153917,'2026-06-29 20:22:47','//srv/.env?_=zp4ofwrv&v=rklo5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153918,'2026-06-29 20:22:51','//home/.env?_=vmvgzlem&v=wp956','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153919,'2026-06-29 20:23:02','//proc/self/cmdline?_=chz0hmdy&v=ur6ux','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.google.com/search?q=ia5nd8',404,'GET',NULL,'103.153.183.69'),(153920,'2026-06-29 20:23:10','//proc/net/tcp?_=6q04jrv0&v=b0cgg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/2e2e/proc/net/tcp?_=lsh259r0&v=htdjw',404,'GET',NULL,'103.153.183.69'),(153921,'2026-06-29 20:23:15','//root/.bash_history?_=ojo6ayy5&v=nq7xc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153922,'2026-06-29 20:23:18','//root/.mysql_history?_=sfc2c0jj&v=v3bgq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=v2j7wl',404,'GET',NULL,'103.153.183.69'),(153923,'2026-06-29 20:23:28','//var/www/.git/config?_=8yaplg33&v=vrk1h','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.google.com/search?q=9i6rxa',404,'GET',NULL,'103.153.183.69'),(153924,'2026-06-29 20:23:36','/.env.production?_=8dtitamc&v=jth24','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153925,'2026-06-29 20:23:49','/config.json?_=a9imrbkc&v=9qzta','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://duckduckgo.com/?q=u9ibs',404,'GET',NULL,'103.153.183.69'),(153926,'2026-06-29 20:24:00','/.env?_=vzrfr19s&v=swden','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://solsculpting.com/.env;?_=vod45smm&v=rbmj9',404,'GET',NULL,'103.153.183.69'),(153927,'2026-06-29 20:24:06','/.env??=&_=hq7yklz2&v=cigdl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153928,'2026-06-29 20:24:12','/.env ?_=sch0lvlu&v=7youn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153929,'2026-06-29 20:24:19','/.env ?_=if0xz4y8&v=5csa6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153930,'2026-06-29 20:24:26','/.env/?_=hjehnsjc&v=54o4k','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153931,'2026-06-29 20:24:51','///etc/passwd?_=c88omhx1&v=omk8b','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153932,'2026-06-29 20:24:56','///.env?_=dkgw3lp8&v=ohpvn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153933,'2026-06-29 20:25:02','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153934,'2026-06-29 20:25:07','/..\\..\\..\\etc\\passwd?_=kqqxqcp5&v=411e7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','http://solsculpting.com/......etcpasswd?_=dfb1t3if&v=nsg87',404,'GET',NULL,'103.153.183.69'),(153935,'2026-06-29 20:25:11','/..\\..\\..\\etc\\passwd?_=8is2g4xy&v=lbuch','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'103.153.183.69'),(153936,'2026-06-29 20:25:16','/..\\/..\\/etc/passwd?_=ybmo9fqf&v=osdas','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','http://solsculpting.com///etc/passwd?_=q1nzwuw9&v=e8wi2',404,'GET',NULL,'103.153.183.69'),(153937,'2026-06-29 20:25:23','/actuator/loggers?_=yyq6tryl&v=84gnu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153938,'2026-06-29 20:25:29','/actuator/heapdump?_=j8knnwh7&v=1k749','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/actuator/heapdump?_=ef6xf7mh&v=tm868',404,'GET',NULL,'103.153.183.69'),(153939,'2026-06-29 20:25:36','/__nextjs_original-stack-frame?_=py8bpzz3&v=m0j03','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','http://solsculpting.com/__nextjs_original-stack-frame?_=kfkhc92r&v=7ej5n',404,'GET',NULL,'103.153.183.69'),(153940,'2026-06-29 20:25:41','/admin/debug?_=2nap88en&v=hr339','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/admin/debug?_=2ohvvccg&v=cqsgc',404,'GET',NULL,'103.153.183.69'),(153941,'2026-06-29 20:25:55','/.env ?_=c60rp79d&v=mqaha','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153942,'2026-06-29 20:26:01','/static../.env?_=yhvk5zgi&v=e9fzt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=2s722',404,'GET',NULL,'103.153.183.69'),(153943,'2026-06-29 20:26:08','/files../.env?_=k7ajrxxx&v=nhq0l','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','http://solsculpting.com/files../.env?_=lq1dh8hj&v=sdttf',404,'GET',NULL,'103.153.183.69'),(153944,'2026-06-29 20:26:13','/assets../etc/passwd?_=dhdz2of6&v=awqqp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.bing.com/search?q=nwgegt',404,'GET',NULL,'103.153.183.69'),(153945,'2026-06-29 20:26:18','/uploads../.env?_=ehzprkem&v=k210w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/search?q=v265m7',404,'GET',NULL,'103.153.183.69'),(153946,'2026-06-29 20:26:24','/media../.env?_=pbnaj9za&v=sh5lq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'103.153.183.69'),(153947,'2026-06-29 20:26:28','/cdn../.env?_=pxuoy1km&v=ezgw8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153948,'2026-06-29 20:26:34','/resources../.env?_=cznx757z&v=2zxiy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=lebrs2',404,'GET',NULL,'103.153.183.69'),(153949,'2026-06-29 20:26:37','/etc/passwd?_=arp3azd3&v=sdbpf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://duckduckgo.com/?q=iztex',404,'GET',NULL,'103.153.183.69'),(153950,'2026-06-29 20:26:42','/etc/passwd?_=je0geb5i&v=z5mlg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153951,'2026-06-29 20:26:45','/.env?_=nr9b8dzf&v=tjtra','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/s6k3m4urro',404,'GET',NULL,'103.153.183.69'),(153952,'2026-06-29 20:26:50','/.env?_=d7uvxicc&v=tgc32','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/../../.env?_=sv7clgp6&v=kdhsg',404,'GET',NULL,'103.153.183.69'),(153953,'2026-06-29 20:27:01','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153954,'2026-06-29 20:27:05','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153955,'2026-06-29 20:27:10','/;/WEB-INF/web.xml?_=azxdrmj9&v=hw4v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153956,'2026-06-29 20:27:16','/..;/WEB-INF/web.xml?_=wmgerixp&v=ij87a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153957,'2026-06-29 20:27:20','/;/WEB-INF/classes/application.properties?_=7nrtgu3d&v=3xlid','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.google.com/search?q=9kc1ma',404,'GET',NULL,'103.153.183.69'),(153958,'2026-06-29 20:27:23','/;/WEB-INF/classes/application.yml?_=w9fq7kd1&v=kcprm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','http://solsculpting.com/;/WEB-INF/classes/application.yml?_=u1g1gy58&v=7qq7z',404,'GET',NULL,'103.153.183.69'),(153959,'2026-06-29 20:27:28','/.;/WEB-INF/classes/application.properties?_=2p57prqa&v=z089b','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.bing.com/search?q=gojl52',404,'GET',NULL,'103.153.183.69'),(153960,'2026-06-29 20:27:33','/manager/html;jsessionid=x?_=o2tx2878&v=ooyt0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=4kod8',404,'GET',NULL,'103.153.183.69'),(153961,'2026-06-29 20:27:39','/host-manager/html;jsessionid=x?_=2hvsqsdt&v=endbn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153962,'2026-06-29 20:27:43','/;/META-INF/MANIFEST.MF?_=5dnmukl8&v=6l0lh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.bing.com/search?q=wqa4ow',404,'GET',NULL,'103.153.183.69'),(153963,'2026-06-29 20:28:22','/livewire/message?_=s6cme39y&v=xqh3c','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','http://solsculpting.com/livewire/message',404,'GET',NULL,'103.153.183.69'),(153964,'2026-06-29 20:28:24','/_next?_=otgcm8ax&v=npjmc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://t.co/2u0m2802f9',404,'POST',NULL,'103.153.183.69'),(153965,'2026-06-29 20:28:25','/livewire/message?_=hoza4wck&v=kdz46','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://duckduckgo.com/?q=ygsna',404,'GET',NULL,'103.153.183.69'),(153966,'2026-06-29 20:28:28','/admin/login?_=kdjqttn9&v=bakvj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://twitter.com/',404,'POST',NULL,'103.153.183.69'),(153967,'2026-06-29 20:28:30','/livewire/update?_=w4iebalh&v=j0qan','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'103.153.183.69'),(153968,'2026-06-29 20:28:31','/login?_=hgxf9p6f&v=qp0r5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.reddit.com/',404,'POST',NULL,'103.153.183.69'),(153969,'2026-06-29 20:28:35','/livewire/update?_=8gthhqmh&v=s92iu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,'103.153.183.69'),(153970,'2026-06-29 20:29:14','/wordpress/wp-json/gravitysmtp/v1/connectors?_=zlvp5qs6&page=gravitysmtp-connectors&v=svlz7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/63jgaxgwyg',404,'GET',NULL,'103.153.183.69'),(153971,'2026-06-29 20:29:55','/wp/wp-json/gravitysmtp/v1/connectors?_=g08r9h50&page=gravitysmtp-connectors&v=nezwk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'103.153.183.69'),(153972,'2026-06-29 20:30:00','/wp/wp-json/gravitysmtp/v1/tests/mock-data?_=9kslf9ec&page=gravitysmtp-settings&v=y2ii9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=eie43m',404,'GET',NULL,'103.153.183.69'),(153973,'2026-06-29 20:30:05','/wp/wp-json/gravitysmtp/v1/stats?_=s3tb30sd&page=gravitysmtp-system-report&v=wwwgp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=rpda0r',404,'GET',NULL,'103.153.183.69'),(153974,'2026-06-29 20:46:01','/sitemap.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'40.77.167.132'),(153975,'2026-06-29 21:37:04','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.155'),(153976,'2026-06-29 21:37:05','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.155'),(153977,'2026-06-29 21:37:06','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.155'),(153978,'2026-06-29 21:37:07','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.155'),(153979,'2026-06-29 21:54:37','/sitemap.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'40.77.167.63'),(153980,'2026-06-29 23:08:50','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.193.98.138'),(153981,'2026-06-29 23:08:52','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.193.98.138'),(153982,'2026-06-29 23:11:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.56'),(153983,'2026-06-29 23:11:38','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.17'),(153984,'2026-06-29 23:11:49','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.152'),(153985,'2026-06-29 23:11:55','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.19'),(153986,'2026-06-29 23:12:00','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(153987,'2026-06-29 23:12:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.98'),(153988,'2026-06-29 23:12:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.65'),(153989,'2026-06-29 23:12:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.99'),(153990,'2026-06-29 23:12:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.16'),(153991,'2026-06-29 23:12:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.15'),(153992,'2026-06-29 23:12:38','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.157'),(153993,'2026-06-29 23:12:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.21'),(153994,'2026-06-29 23:12:51','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.98'),(153995,'2026-06-29 23:12:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.153'),(153996,'2026-06-29 23:13:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.21'),(153997,'2026-06-29 23:13:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.155'),(153998,'2026-06-29 23:13:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.15'),(153999,'2026-06-29 23:13:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.52'),(154000,'2026-06-29 23:13:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.9'),(154001,'2026-06-29 23:13:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.52'),(154002,'2026-06-29 23:13:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.17'),(154003,'2026-06-29 23:13:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.155'),(154004,'2026-06-29 23:13:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.53'),(154005,'2026-06-29 23:14:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.151'),(154006,'2026-06-29 23:14:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.97'),(154007,'2026-06-29 23:14:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(154008,'2026-06-29 23:14:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.63'),(154009,'2026-06-29 23:14:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.150'),(154010,'2026-06-29 23:14:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.19'),(154011,'2026-06-29 23:14:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.5'),(154012,'2026-06-29 23:14:47','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.7'),(154013,'2026-06-29 23:14:53','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.59'),(154014,'2026-06-29 23:14:59','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.65'),(154015,'2026-06-29 23:15:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.154'),(154016,'2026-06-29 23:15:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.101'),(154017,'2026-06-29 23:15:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.147'),(154018,'2026-06-29 23:15:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.20'),(154019,'2026-06-29 23:15:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.57'),(154020,'2026-06-29 23:15:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.149'),(154021,'2026-06-29 23:15:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.59'),(154022,'2026-06-29 23:15:53','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.152'),(154023,'2026-06-29 23:15:57','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.16'),(154024,'2026-06-29 23:16:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.53'),(154025,'2026-06-29 23:16:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.21'),(154026,'2026-06-29 23:16:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.9'),(154027,'2026-06-29 23:16:24','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.15'),(154028,'2026-06-29 23:16:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.101'),(154029,'2026-06-29 23:16:37','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.15'),(154030,'2026-06-29 23:16:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.54'),(154031,'2026-06-29 23:16:51','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.98'),(154032,'2026-06-29 23:16:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.5'),(154033,'2026-06-29 23:17:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.56'),(154034,'2026-06-29 23:17:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(154035,'2026-06-29 23:17:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.156'),(154036,'2026-06-29 23:17:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.150'),(154037,'2026-06-29 23:17:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.149'),(154038,'2026-06-29 23:17:37','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.58'),(154039,'2026-06-29 23:17:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.52'),(154040,'2026-06-29 23:17:48','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(154041,'2026-06-29 23:17:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.62'),(154042,'2026-06-29 23:18:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.54'),(154043,'2026-06-29 23:18:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.97'),(154044,'2026-06-29 23:18:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.19'),(154045,'2026-06-29 23:18:23','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.16'),(154046,'2026-06-29 23:18:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.150'),(154047,'2026-06-29 23:18:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.97'),(154048,'2026-06-29 23:18:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.159'),(154049,'2026-06-29 23:18:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154050,'2026-06-29 23:18:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.57'),(154051,'2026-06-29 23:19:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.154'),(154052,'2026-06-29 23:19:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.99'),(154053,'2026-06-29 23:19:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(154054,'2026-06-29 23:19:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.61'),(154055,'2026-06-29 23:19:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.54'),(154056,'2026-06-29 23:19:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.158'),(154057,'2026-06-29 23:19:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.63'),(154058,'2026-06-29 23:19:49','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.21'),(154059,'2026-06-29 23:19:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154060,'2026-06-29 23:20:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.153'),(154061,'2026-06-29 23:20:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.15'),(154062,'2026-06-29 23:20:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154063,'2026-06-29 23:20:17','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154064,'2026-06-29 23:20:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.9'),(154065,'2026-06-29 23:20:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.151'),(154066,'2026-06-29 23:20:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.53'),(154067,'2026-06-29 23:20:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.150'),(154068,'2026-06-29 23:20:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.159'),(154069,'2026-06-29 23:20:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.51'),(154070,'2026-06-29 23:20:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.51'),(154071,'2026-06-29 23:21:03','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.20'),(154072,'2026-06-29 23:21:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.53'),(154073,'2026-06-29 23:21:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.153'),(154074,'2026-06-29 23:21:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154075,'2026-06-29 23:21:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(154076,'2026-06-29 23:21:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.54'),(154077,'2026-06-29 23:21:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.17'),(154078,'2026-06-29 23:21:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.52'),(154079,'2026-06-29 23:21:48','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.158'),(154080,'2026-06-29 23:21:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.51'),(154081,'2026-06-29 23:22:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.146'),(154082,'2026-06-29 23:22:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.59'),(154083,'2026-06-29 23:22:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.9'),(154084,'2026-06-29 23:22:16','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.159'),(154085,'2026-06-29 23:22:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.9'),(154086,'2026-06-29 23:22:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.65'),(154087,'2026-06-29 23:22:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.98'),(154088,'2026-06-29 23:22:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.97'),(154089,'2026-06-29 23:22:49','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.60'),(154090,'2026-06-29 23:23:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154091,'2026-06-29 23:23:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.147'),(154092,'2026-06-29 23:23:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.15'),(154093,'2026-06-29 23:23:23','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.61'),(154094,'2026-06-29 23:23:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.152'),(154095,'2026-06-29 23:23:37','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.20'),(154096,'2026-06-29 23:23:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.54'),(154097,'2026-06-29 23:23:51','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.99'),(154098,'2026-06-29 23:23:57','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.152'),(154099,'2026-06-29 23:24:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.59'),(154100,'2026-06-29 23:24:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'181.215.65.148'),(154101,'2026-06-29 23:24:17','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.100'),(154102,'2026-06-29 23:24:21','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.19'),(154103,'2026-06-29 23:24:28','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.10'),(154104,'2026-06-29 23:24:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.14'),(154105,'2026-06-29 23:24:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.53'),(154106,'2026-06-29 23:24:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.19'),(154107,'2026-06-29 23:25:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.59'),(154108,'2026-06-29 23:25:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.99'),(154109,'2026-06-29 23:25:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.5'),(154110,'2026-06-29 23:25:16','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.53'),(154111,'2026-06-29 23:25:23','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.99'),(154112,'2026-06-29 23:25:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.59'),(154113,'2026-06-29 23:25:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'104.234.32.10'),(154114,'2026-06-30 03:21:00','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154115,'2026-06-30 03:21:03','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154116,'2026-06-30 03:21:03','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154117,'2026-06-30 03:21:04','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154118,'2026-06-30 04:03:45','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.24'),(154119,'2026-06-30 04:03:45','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.24'),(154120,'2026-06-30 04:03:47','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.24'),(154121,'2026-06-30 04:03:48','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.24'),(154122,'2026-06-30 04:03:50','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.24'),(154123,'2026-06-30 04:03:50','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.24'),(154124,'2026-06-30 04:03:51','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.24'),(154125,'2026-06-30 04:03:51','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.24'),(154126,'2026-06-30 04:03:51','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.24'),(154127,'2026-06-30 04:03:51','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.24'),(154128,'2026-06-30 04:03:51','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_7_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Safari/605.1.15',NULL,404,'GET',NULL,'31.58.51.24'),(154129,'2026-06-30 04:41:04','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154130,'2026-06-30 04:41:04','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154131,'2026-06-30 04:41:04','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154132,'2026-06-30 04:41:04','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154133,'2026-06-30 04:41:04','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154134,'2026-06-30 04:41:04','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154135,'2026-06-30 04:41:05','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154136,'2026-06-30 04:41:05','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154137,'2026-06-30 04:41:05','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154138,'2026-06-30 04:41:05','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154139,'2026-06-30 04:41:06','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154140,'2026-06-30 05:19:56','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 8.1.0; Redmi Note 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.89 Mobile Safari/537.36',NULL,404,'GET',NULL,'45.148.10.120'),(154141,'2026-06-30 06:58:19','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'158.158.47.67'),(154142,'2026-06-30 08:30:26','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154143,'2026-06-30 08:30:26','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154144,'2026-06-30 08:30:26','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154145,'2026-06-30 08:30:26','/member/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154146,'2026-06-30 08:30:27','/bank/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154147,'2026-06-30 08:30:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154148,'2026-06-30 08:30:28','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154149,'2026-06-30 08:30:28','/new/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154150,'2026-06-30 08:30:28','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(154151,'2026-06-30 10:20:14','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.121'),(154152,'2026-06-30 10:20:19','/aspera/faspex/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.122'),(154153,'2026-06-30 10:20:21','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.123'),(154154,'2026-06-30 10:20:25','/login.do','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.124'),(154155,'2026-06-30 10:20:31','/api/session/properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.124'),(154156,'2026-06-30 10:20:36','/cgi-bin/authLogin.cgi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.124'),(154157,'2026-06-30 10:20:40','/sitecore/shell/sitecore.version.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.122'),(154158,'2026-06-30 10:20:44','/sugar_version.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.123'),(154159,'2026-06-30 10:20:57','/solr/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.123'),(154160,'2026-06-30 10:21:04','/WebInterface/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.122'),(154161,'2026-06-30 10:21:08','/Telerik.Web.UI.WebResource.axd?type=rau','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.121'),(154162,'2026-06-30 10:22:04','/owa/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.123'),(154163,'2026-06-30 10:22:06','/showLogin.cc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.122'),(154164,'2026-06-30 10:22:09','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.122'),(154165,'2026-06-30 10:22:15','/index.jsp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.121'),(154166,'2026-06-30 10:22:19','/identity','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.123'),(154167,'2026-06-30 11:21:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'181.41.206.232'),(154168,'2026-06-30 13:29:12','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/3.0 (compatible; NetPositive/2.1.1; BeOS)',NULL,404,'GET',NULL,'45.148.10.120'),(154169,'2026-06-30 13:29:12','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; U; PPC Mac OS X 10.5; en-US; rv:1.9.0.3) Gecko/2008092414 Firefox/3.0.3',NULL,404,'GET',NULL,'45.148.10.120'),(154170,'2026-06-30 13:36:33','/.well-known/traffic-advice','https://solsculpting.us7.cdn-alpha.com','Chrome Privacy Preserving Prefetch Proxy',NULL,404,'GET',NULL,'142.250.32.36'),(154171,'2026-06-30 13:52:27','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(154172,'2026-06-30 13:52:30','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(154173,'2026-06-30 15:11:36','/wp-remote-api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.68.179.234'),(154174,'2026-06-30 15:33:11','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'116.212.148.86'),(154175,'2026-06-30 15:33:15','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'116.212.148.86'),(154176,'2026-06-30 18:06:42','/.well-known','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.46.179.93'),(154177,'2026-06-30 18:06:53','/.tmb','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.46.179.93'),(154178,'2026-06-30 18:06:54','/.well-known/acme-challenge','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.46.179.93'),(154179,'2026-06-30 18:07:58','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154180,'2026-06-30 18:07:58','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154181,'2026-06-30 18:07:59','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154182,'2026-06-30 18:08:00','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154183,'2026-06-30 18:08:01','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154184,'2026-06-30 18:08:02','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154185,'2026-06-30 18:08:03','/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154186,'2026-06-30 18:08:04','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154187,'2026-06-30 18:08:05','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154188,'2026-06-30 18:08:06','/.env.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154189,'2026-06-30 18:08:07','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(154190,'2026-06-30 18:08:08','/.env.tmp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154191,'2026-06-30 18:08:09','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154192,'2026-06-30 18:08:11','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154193,'2026-06-30 18:08:11','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154194,'2026-06-30 18:08:12','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(154195,'2026-06-30 18:08:13','/config.json.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154196,'2026-06-30 18:08:14','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154197,'2026-06-30 18:08:15','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154198,'2026-06-30 18:08:16','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154199,'2026-06-30 18:08:18','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(154200,'2026-06-30 18:31:42','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (CentOS; Linux i686) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'195.178.110.241'),(154201,'2026-06-30 18:36:08','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154202,'2026-06-30 18:36:10','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154203,'2026-06-30 18:36:12','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154204,'2026-06-30 18:36:15','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154205,'2026-06-30 18:36:17','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154206,'2026-06-30 18:36:19','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154207,'2026-06-30 18:36:21','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154208,'2026-06-30 18:36:22','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154209,'2026-06-30 18:36:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154210,'2026-06-30 18:36:25','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154211,'2026-06-30 18:36:28','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.241.25'),(154212,'2026-06-30 18:36:29','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.130.75'),(154213,'2026-06-30 18:36:30','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.7'),(154214,'2026-06-30 18:36:33','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.130.75'),(154215,'2026-06-30 18:36:34','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.130.75'),(154216,'2026-06-30 18:36:36','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.7'),(154217,'2026-06-30 18:36:37','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154218,'2026-06-30 18:36:39','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154219,'2026-06-30 18:36:40','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154220,'2026-06-30 18:36:43','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154221,'2026-06-30 18:36:45','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.214.6'),(154222,'2026-06-30 18:36:47','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154223,'2026-06-30 18:36:49','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.241.25'),(154224,'2026-06-30 18:36:51','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154225,'2026-06-30 18:36:56','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(154226,'2026-06-30 20:26:47','/assets','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.46.179.93'),(154227,'2026-06-30 20:26:57','/wp-content/languages','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.46.179.93'),(154228,'2026-06-30 20:38:54','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.87 Chrome/76.0.3809.87 Safari/537.36',NULL,404,'GET',NULL,'45.139.104.160'),(154229,'2026-06-30 21:01:30','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','http://solsculpting.com/backup/',404,'GET',NULL,'34.174.144.41'),(154230,'2026-06-30 21:01:32','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.6534.42 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.174.144.41'),(154231,'2026-06-30 21:01:33','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; RMX3842) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.44 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.174.144.41'),(154232,'2026-06-30 21:01:34','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.174.144.41'),(154233,'2026-06-30 21:01:35','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; RMX3842) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.44 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.174.144.41'),(154234,'2026-06-30 21:01:36','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/new/',404,'GET',NULL,'34.174.144.41'),(154235,'2026-07-01 01:08:29','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'64.23.142.130'),(154236,'2026-07-01 01:17:41','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'134.199.157.223'),(154237,'2026-07-01 01:30:50','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(154238,'2026-07-01 01:30:59','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(154239,'2026-07-01 01:31:00','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(154240,'2026-07-01 01:31:01','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(154241,'2026-07-01 01:31:05','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.8.12'),(154242,'2026-07-01 02:11:28','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'165.227.40.8'),(154243,'2026-07-01 03:41:58','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'146.190.209.157'),(154244,'2026-07-01 04:37:07','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'78.142.18.172'),(154245,'2026-07-01 04:37:09','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'78.142.18.172'),(154246,'2026-07-01 06:30:35','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154247,'2026-07-01 06:30:38','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154248,'2026-07-01 06:30:40','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154249,'2026-07-01 06:30:41','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154250,'2026-07-01 06:36:58','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(154251,'2026-07-01 06:37:00','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(154252,'2026-07-01 08:18:03','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'116.212.148.86'),(154253,'2026-07-01 08:18:06','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'116.212.148.86'),(154254,'2026-07-01 10:15:50','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'GET',NULL,'146.190.209.157'),(154255,'2026-07-01 10:53:42','/magento_version','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.81.62.168'),(154256,'2026-07-01 10:53:43','/RELEASE_NOTES.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'23.81.62.168'),(154257,'2026-07-01 10:54:54','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154258,'2026-07-01 10:54:54','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154259,'2026-07-01 10:54:54','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154260,'2026-07-01 10:54:54','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154261,'2026-07-01 10:54:54','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154262,'2026-07-01 10:54:54','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154263,'2026-07-01 10:54:54','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154264,'2026-07-01 10:54:54','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154265,'2026-07-01 10:54:54','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154266,'2026-07-01 10:54:55','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154267,'2026-07-01 10:54:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'217.160.255.92'),(154268,'2026-07-01 11:44:37','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(154269,'2026-07-01 11:44:40','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(154270,'2026-07-01 11:44:55','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.173'),(154271,'2026-07-01 11:44:56','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.173'),(154272,'2026-07-01 11:44:57','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.173'),(154273,'2026-07-01 11:44:57','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.173'),(154274,'2026-07-01 11:49:43','/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-1024x578.jpg201024w,20https:/solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-300x169.jpg20300w,20https:/solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-768x434.jpg20768w,20https:/solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-705x398.jpg20705w,20https:/solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-600x339.jpg20600w,20https:/solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp.jpg201084w?nonwebp=1&edge=solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.5112.81 Safari/537.36','https://solsculpting.com/',404,'GET',NULL,'143.14.6.87'),(154275,'2026-07-01 18:55:28','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.215.148.107'),(154276,'2026-07-01 18:56:01','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.215.148.107'),(154277,'2026-07-01 20:46:12','/sitemaps.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'40.77.167.123'),(154278,'2026-07-01 21:03:53','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/new/',404,'GET',NULL,'34.182.230.221'),(154279,'2026-07-01 21:03:54','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/wp/',404,'GET',NULL,'34.182.230.221'),(154280,'2026-07-01 21:03:55','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/old/',404,'GET',NULL,'34.182.230.221'),(154281,'2026-07-01 21:03:56','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.182.230.221'),(154282,'2026-07-01 21:03:58','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.182.230.221'),(154283,'2026-07-01 21:03:59','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 10; en-US; CPH2015) AppleWebKit/537.36 (KHTML, like Gecko) UCBrowser/13.5.8.1311 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.182.230.221'),(154284,'2026-07-01 21:11:51','/wordpress','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154285,'2026-07-01 21:11:53','/wp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154286,'2026-07-01 21:11:55','/blog','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154287,'2026-07-01 21:11:56','/new','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154288,'2026-07-01 21:11:58','/old','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154289,'2026-07-01 21:11:59','/newsite','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154290,'2026-07-01 21:12:04','/main','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154291,'2026-07-01 21:12:06','/testing','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154292,'2026-07-01 21:12:09','/site','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154293,'2026-07-01 21:12:11','/backup','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154294,'2026-07-01 21:12:15','/demo','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154295,'2026-07-01 21:12:17','/home','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154296,'2026-07-01 21:12:19','/tmp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154297,'2026-07-01 21:12:22','/dev','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154298,'2026-07-01 21:12:24','/cms','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154299,'2026-07-01 21:12:26','/portal','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154300,'2026-07-01 21:12:28','/web','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154301,'2026-07-01 21:31:42','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_7_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Safari/605.1.15',NULL,404,'GET',NULL,'31.58.51.37'),(154302,'2026-07-01 21:31:44','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154303,'2026-07-01 21:31:45','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154304,'2026-07-01 21:31:47','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154305,'2026-07-01 21:31:47','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154306,'2026-07-01 21:31:47','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.37'),(154307,'2026-07-01 21:31:50','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154308,'2026-07-01 21:31:50','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154309,'2026-07-01 21:31:50','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'31.58.51.37'),(154310,'2026-07-01 21:31:50','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'31.58.51.37'),(154311,'2026-07-01 21:31:51','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'31.58.51.37'),(154312,'2026-07-01 21:58:58','/sitemaps.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'52.167.144.139'),(154313,'2026-07-01 22:47:46','/wordpress','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.152.113'),(154314,'2026-07-01 22:47:50','/wp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.152.113'),(154315,'2026-07-01 22:47:52','/blog','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.152.113'),(154316,'2026-07-01 22:47:53','/new','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.152.113'),(154317,'2026-07-01 22:47:55','/old','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.152.113'),(154318,'2026-07-01 22:47:56','/newsite','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.152.113'),(154319,'2026-07-01 23:22:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env',404,'GET',NULL,'45.148.10.62'),(154320,'2026-07-01 23:22:53','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/.env.bak',404,'GET',NULL,'45.148.10.62'),(154321,'2026-07-01 23:22:57','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.save',404,'GET',NULL,'45.148.10.62'),(154322,'2026-07-01 23:23:02','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/.env.local',404,'GET',NULL,'45.148.10.62'),(154323,'2026-07-01 23:23:22','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/admin-panel/.env',404,'GET',NULL,'45.148.10.62'),(154324,'2026-07-01 23:23:26','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/backend/.env',404,'GET',NULL,'45.148.10.62'),(154325,'2026-07-01 23:23:47','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.backup',404,'GET',NULL,'45.148.10.62'),(154326,'2026-07-01 23:23:49','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.staging',404,'GET',NULL,'45.148.10.62'),(154327,'2026-07-01 23:23:55','/.env.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.orig',404,'GET',NULL,'45.148.10.62'),(154328,'2026-07-01 23:24:05','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.old',404,'GET',NULL,'45.148.10.62'),(154329,'2026-07-01 23:24:21','/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/credentials',404,'GET',NULL,'45.148.10.62'),(154330,'2026-07-01 23:24:26','/.env.tmp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.tmp',404,'GET',NULL,'45.148.10.62'),(154331,'2026-07-01 23:24:38','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.php.bak',404,'GET',NULL,'45.148.10.62'),(154332,'2026-07-01 23:24:47','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.txt',404,'GET',NULL,'45.148.10.62'),(154333,'2026-07-01 23:24:50','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.prod',404,'GET',NULL,'45.148.10.62'),(154334,'2026-07-01 23:25:00','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.dev',404,'GET',NULL,'45.148.10.62'),(154335,'2026-07-01 23:25:02','/config.json.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/config.json.save',404,'GET',NULL,'45.148.10.62'),(154336,'2026-07-01 23:25:07','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/admin/.env',404,'GET',NULL,'45.148.10.62'),(154337,'2026-07-01 23:25:11','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.git/config',404,'GET',NULL,'45.148.10.62'),(154338,'2026-07-01 23:25:17','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/wp-config.php.old',404,'GET',NULL,'45.148.10.62'),(154339,'2026-07-01 23:25:21','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/config.php.bak',404,'GET',NULL,'45.148.10.62'),(154340,'2026-07-02 02:31:32','/wp-content/plugins/erinyani/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.107.204.22'),(154341,'2026-07-02 02:44:03','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.232.174.42'),(154342,'2026-07-02 02:44:17','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.232.174.42'),(154343,'2026-07-02 03:49:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env',404,'GET',NULL,'45.148.10.62'),(154344,'2026-07-02 03:49:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/env',404,'GET',NULL,'45.148.10.62'),(154345,'2026-07-02 03:49:04','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/env',404,'GET',NULL,'45.148.10.62'),(154346,'2026-07-02 03:49:37','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/.env.bak',404,'GET',NULL,'45.148.10.62'),(154347,'2026-07-02 03:49:39','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/backend/.env',404,'GET',NULL,'45.148.10.62'),(154348,'2026-07-02 03:49:52','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.local',404,'GET',NULL,'45.148.10.62'),(154349,'2026-07-02 03:50:01','/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/credentials',404,'GET',NULL,'45.148.10.62'),(154350,'2026-07-02 03:50:10','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.staging',404,'GET',NULL,'45.148.10.62'),(154351,'2026-07-02 03:50:14','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.backup',404,'GET',NULL,'45.148.10.62'),(154352,'2026-07-02 03:50:23','/.env.orig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.orig',404,'GET',NULL,'45.148.10.62'),(154353,'2026-07-02 03:50:32','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.old',404,'GET',NULL,'45.148.10.62'),(154354,'2026-07-02 03:50:35','/.env.tmp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/.env.tmp',404,'GET',NULL,'45.148.10.62'),(154355,'2026-07-02 03:50:41','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.php.bak',404,'GET',NULL,'45.148.10.62'),(154356,'2026-07-02 03:50:44','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.txt',404,'GET',NULL,'45.148.10.62'),(154357,'2026-07-02 03:50:44','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.save',404,'GET',NULL,'45.148.10.62'),(154358,'2026-07-02 03:50:49','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/admin-panel/.env',404,'GET',NULL,'45.148.10.62'),(154359,'2026-07-02 03:50:53','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.prod',404,'GET',NULL,'45.148.10.62'),(154360,'2026-07-02 03:50:56','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/.env.dev',404,'GET',NULL,'45.148.10.62'),(154361,'2026-07-02 03:51:04','/config.json.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/config.json.save',404,'GET',NULL,'45.148.10.62'),(154362,'2026-07-02 03:51:06','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/admin/.env',404,'GET',NULL,'45.148.10.62'),(154363,'2026-07-02 03:51:10','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','https://www.solsculpting.com/.git/config',404,'GET',NULL,'45.148.10.62'),(154364,'2026-07-02 03:51:13','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/wp-config.php.old',404,'GET',NULL,'45.148.10.62'),(154365,'2026-07-02 03:51:16','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/config.php.bak',404,'GET',NULL,'45.148.10.62'),(154366,'2026-07-02 03:54:00','/plesk-stat/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:140.0) Gecko/20100101 Firefox/140.4',NULL,404,'GET',NULL,'84.247.178.219'),(154367,'2026-07-02 04:06:38','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.188.224.124'),(154368,'2026-07-02 04:06:45','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.188.224.124'),(154369,'2026-07-02 04:06:52','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.188.224.124'),(154370,'2026-07-02 04:07:23','/zup.php73','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.188.224.124'),(154371,'2026-07-02 04:07:27','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.188.224.124'),(154372,'2026-07-02 04:42:44','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154373,'2026-07-02 04:42:55','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154374,'2026-07-02 04:42:56','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154375,'2026-07-02 04:42:57','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154376,'2026-07-02 04:43:02','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154377,'2026-07-02 07:18:23','/webmail','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'46.183.223.45'),(154378,'2026-07-02 08:15:08','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/127.0 Safari/537.36',NULL,404,'GET',NULL,'104.23.221.97'),(154379,'2026-07-02 09:32:48','/.well-known/tdmrep.json','https://solsculpting.us7.cdn-alpha.com','NVBot',NULL,404,'GET',NULL,'32.197.221.54'),(154380,'2026-07-02 09:32:52','/.well-known/tdmrep.json','https://solsculpting.us7.cdn-alpha.com','NVBot',NULL,404,'GET',NULL,'32.197.221.54'),(154381,'2026-07-02 17:34:53','/request-pricing/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'50.112.43.190'),(154382,'2026-07-02 19:50:37','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'34.90.66.174'),(154383,'2026-07-02 20:14:48','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; RMX2195) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.210 Mobile Safari/537.36 OPR/75.2.3995.72468','http://solsculpting.com/wp/',404,'GET',NULL,'136.112.180.148'),(154384,'2026-07-02 20:14:50','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'136.112.180.148'),(154385,'2026-07-02 20:14:51','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/backup/',404,'GET',NULL,'136.112.180.148'),(154386,'2026-07-02 20:14:53','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'136.112.180.148'),(154387,'2026-07-02 20:14:54','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; TECNO CK6n) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.50 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'136.112.180.148'),(154388,'2026-07-02 20:14:55','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','http://solsculpting.com/blog/',404,'GET',NULL,'136.112.180.148'),(154389,'2026-07-02 21:01:09','/hp,php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.140.124.94'),(154390,'2026-07-02 21:02:16','/BDKR28.PHP','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.140.124.94'),(154391,'2026-07-02 21:02:19','/wp-admin/js/widget/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.140.124.94'),(154392,'2026-07-02 21:02:28','/firewall.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.140.124.94'),(154393,'2026-07-02 21:02:37','/wp-content/plugins/erinyani/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.140.124.94'),(154394,'2026-07-02 23:07:53','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154395,'2026-07-02 23:08:04','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154396,'2026-07-02 23:08:05','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154397,'2026-07-02 23:08:06','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154398,'2026-07-02 23:08:11','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'40.115.140.72'),(154399,'2026-07-03 01:29:58','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154400,'2026-07-03 01:29:59','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154401,'2026-07-03 01:30:00','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154402,'2026-07-03 01:30:01','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154403,'2026-07-03 01:37:09','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154404,'2026-07-03 01:37:10','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154405,'2026-07-03 01:37:12','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.214.6'),(154406,'2026-07-03 01:37:14','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154407,'2026-07-03 01:37:18','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.241.24'),(154408,'2026-07-03 01:37:19','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154409,'2026-07-03 01:37:21','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154410,'2026-07-03 01:37:22','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154411,'2026-07-03 01:37:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154412,'2026-07-03 01:37:25','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.214.6'),(154413,'2026-07-03 01:37:27','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154414,'2026-07-03 01:37:28','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.130.74'),(154415,'2026-07-03 01:37:29','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.7'),(154416,'2026-07-03 01:37:30','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.7'),(154417,'2026-07-03 01:37:31','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.7'),(154418,'2026-07-03 01:37:34','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.7'),(154419,'2026-07-03 01:37:35','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154420,'2026-07-03 01:37:36','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154421,'2026-07-03 01:37:37','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154422,'2026-07-03 01:37:40','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154423,'2026-07-03 01:37:41','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154424,'2026-07-03 01:37:42','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154425,'2026-07-03 01:37:43','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(154426,'2026-07-03 01:37:44','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154427,'2026-07-03 01:37:48','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.7'),(154428,'2026-07-03 02:57:32','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.227.68'),(154429,'2026-07-03 02:57:35','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.227.68'),(154430,'2026-07-03 02:57:52','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.68'),(154431,'2026-07-03 02:57:55','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.68'),(154432,'2026-07-03 02:58:05','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.68'),(154433,'2026-07-03 03:45:55','/plugins/editors/jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/121.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'8.215.80.205'),(154434,'2026-07-03 03:45:57','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 Chrome/121.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'8.215.80.205'),(154435,'2026-07-03 05:55:59','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.155'),(154436,'2026-07-03 05:56:00','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.155'),(154437,'2026-07-03 05:56:01','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.155'),(154438,'2026-07-03 05:56:01','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.155'),(154439,'2026-07-03 06:30:04','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(154440,'2026-07-03 06:30:05','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(154441,'2026-07-03 06:30:08','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(154442,'2026-07-03 06:30:08','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(154443,'2026-07-03 07:27:30','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'20.16.180.61'),(154444,'2026-07-03 10:25:36','/wordpress','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/wordpress',404,'GET',NULL,'5.100.255.168'),(154445,'2026-07-03 10:30:10','/Wordpress','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Wordpress',404,'GET',NULL,'5.100.255.168'),(154446,'2026-07-03 10:32:26','/WORDPRESS','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WORDPRESS',404,'GET',NULL,'5.100.255.168'),(154447,'2026-07-03 10:35:11','/WordPress','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WordPress',404,'GET',NULL,'5.100.255.168'),(154448,'2026-07-03 10:38:20','/wp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/wp',404,'GET',NULL,'5.100.255.168'),(154449,'2026-07-03 10:39:49','/Wp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Wp',404,'GET',NULL,'5.100.255.168'),(154450,'2026-07-03 10:42:58','/WP','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WP',404,'GET',NULL,'5.100.255.168'),(154451,'2026-07-03 10:44:04','/old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/old',404,'GET',NULL,'5.100.255.168'),(154452,'2026-07-03 10:46:46','/Old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Old',404,'GET',NULL,'5.100.255.168'),(154453,'2026-07-03 10:49:12','/OLD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/OLD',404,'GET',NULL,'5.100.255.168'),(154454,'2026-07-03 10:51:03','/oldsite','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/oldsite',404,'GET',NULL,'5.100.255.168'),(154455,'2026-07-03 10:53:42','/new','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/new',404,'GET',NULL,'5.100.255.168'),(154456,'2026-07-03 10:55:06','/New','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/New',404,'GET',NULL,'5.100.255.168'),(154457,'2026-07-03 10:58:45','/NEW','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/NEW',404,'GET',NULL,'5.100.255.168'),(154458,'2026-07-03 10:59:10','/wp-old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/wp-old',404,'GET',NULL,'5.100.255.168'),(154459,'2026-07-03 11:02:42','/2022','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2022',404,'GET',NULL,'5.100.255.168'),(154460,'2026-07-03 11:07:34','/2024','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2024',404,'GET',NULL,'5.100.255.168'),(154461,'2026-07-03 11:08:28','/2017','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2017',404,'GET',NULL,'5.100.255.168'),(154462,'2026-07-03 11:12:08','/2020','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2020',404,'GET',NULL,'5.100.255.168'),(154463,'2026-07-03 11:13:41','/2019','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2019',404,'GET',NULL,'5.100.255.168'),(154464,'2026-07-03 11:14:32','/2018','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2018',404,'GET',NULL,'5.100.255.168'),(154465,'2026-07-03 11:18:28','/backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/backup',404,'GET',NULL,'5.100.255.168'),(154466,'2026-07-03 11:26:08','/demo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/demo',404,'GET',NULL,'5.100.255.168'),(154467,'2026-07-03 11:28:27','/bc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bc',404,'GET',NULL,'5.100.255.168'),(154468,'2026-07-03 11:31:08','/www','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/www',404,'GET',NULL,'5.100.255.168'),(154469,'2026-07-03 11:32:54','/WWW','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WWW',404,'GET',NULL,'5.100.255.168'),(154470,'2026-07-03 11:34:34','/Www','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Www',404,'GET',NULL,'5.100.255.168'),(154471,'2026-07-03 11:37:32','/2021','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2021',404,'GET',NULL,'5.100.255.168'),(154472,'2026-07-03 11:39:29','/main','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/main',404,'GET',NULL,'5.100.255.168'),(154473,'2026-07-03 11:42:31','/old-site','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/old-site',404,'GET',NULL,'5.100.255.168'),(154474,'2026-07-03 11:43:37','/bk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bk',404,'GET',NULL,'5.100.255.168'),(154475,'2026-07-03 11:47:03','/Backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Backup',404,'GET',NULL,'5.100.255.168'),(154476,'2026-07-03 11:48:15','/BACKUP','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/BACKUP',404,'GET',NULL,'5.100.255.168'),(154477,'2026-07-03 11:51:16','/SHOP','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/SHOP',404,'GET',NULL,'5.100.255.168'),(154478,'2026-07-03 11:53:09','/Shop','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Shop',404,'GET',NULL,'5.100.255.168'),(154479,'2026-07-03 11:54:28','/shop','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/shop',404,'GET',NULL,'5.100.255.168'),(154480,'2026-07-03 11:57:34','/bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bak',404,'GET',NULL,'5.100.255.168'),(154481,'2026-07-03 11:59:44','/sitio','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/sitio',404,'GET',NULL,'5.100.255.168'),(154482,'2026-07-03 12:00:53','/bac','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bac',404,'GET',NULL,'5.100.255.168'),(154483,'2026-07-03 12:03:32','/sito','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/sito',404,'GET',NULL,'5.100.255.168'),(154484,'2026-07-03 12:05:20','/site','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/site',404,'GET',NULL,'5.100.255.168'),(154485,'2026-07-03 12:07:16','/Site','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Site',404,'GET',NULL,'5.100.255.168'),(154486,'2026-07-03 12:09:19','/SITE','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/SITE',404,'GET',NULL,'5.100.255.168'),(154487,'2026-07-03 12:12:40','/blog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/blog',404,'GET',NULL,'5.100.255.168'),(154488,'2026-07-03 12:14:56','/BLOG','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/BLOG',404,'GET',NULL,'5.100.255.168'),(154489,'2026-07-03 12:16:31','/Blog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Blog',404,'GET',NULL,'5.100.255.168'),(154490,'2026-07-03 13:41:55','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154491,'2026-07-03 13:41:59','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'45.45.237.206'),(154492,'2026-07-03 13:41:59','/firebase.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'45.45.237.206'),(154493,'2026-07-03 13:41:59','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'45.45.237.206'),(154494,'2026-07-03 13:41:59','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'45.45.237.206'),(154495,'2026-07-03 13:41:59','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154496,'2026-07-03 13:41:59','/.env.bak','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'45.45.237.206'),(154497,'2026-07-03 13:42:00','/account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; DeepSeekBot/1.0; +https://www.deepseek.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154498,'2026-07-03 13:42:00','/credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; xAI-SearchBot/1.0; +https://x.ai)',NULL,404,'GET',NULL,'45.45.237.206'),(154499,'2026-07-03 13:42:00','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; ClaudeBot/1.0; +claudebot@anthropic.com)',NULL,404,'GET',NULL,'45.45.237.206'),(154500,'2026-07-03 13:42:00','/wp-content/plugins/elementor-pro/assets/lib/smartmenus/jquery.smartmenus.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; xAI-SearchBot/1.0; +https://x.ai)',NULL,404,'GET',NULL,'45.45.237.206'),(154501,'2026-07-03 13:42:00','/firebase-adminsdk.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154502,'2026-07-03 13:42:00','/secrets.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'45.45.237.206'),(154503,'2026-07-03 13:42:00','/api/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; xAI-SearchBot/1.0; +https://x.ai)',NULL,404,'GET',NULL,'45.45.237.206'),(154504,'2026-07-03 13:42:00','/keyfile.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'45.45.237.206'),(154505,'2026-07-03 13:42:00','/wp-content/uploads/essential-addons-elementor/eael-3644.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'45.45.237.206'),(154506,'2026-07-03 13:42:00','/gcp-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154507,'2026-07-03 13:42:00','/wp-content/plugins/elementor-pro/assets/js/webpack-pro.runtime.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'45.45.237.206'),(154508,'2026-07-03 13:42:00','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154509,'2026-07-03 13:42:00','/wp-content/themes/hello-elementor/assets/js/hello-frontend.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'45.45.237.206'),(154510,'2026-07-03 13:42:00','/wp-content/plugins/elementor/assets/js/webpack.runtime.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154511,'2026-07-03 13:42:00','/wp-content/plugins/elementor/assets/js/frontend.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154512,'2026-07-03 13:42:00','/wp-content/plugins/essential-addons-for-elementor-lite/assets/front-end/js/view/general.min.js.map','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'45.45.237.206'),(154513,'2026-07-03 13:42:00','/wp-content/plugins/elementor/assets/js/frontend-modules.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154514,'2026-07-03 13:42:01','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'45.45.237.206'),(154515,'2026-07-03 13:42:01','/wp-content/plugins/elementor-pro/assets/js/elements-handlers.min.js.map','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'45.45.237.206'),(154516,'2026-07-03 13:42:01','/wp-includes/js/dist/hooks.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'45.45.237.206'),(154517,'2026-07-03 13:42:01','/key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154518,'2026-07-03 13:42:01','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'45.45.237.206'),(154519,'2026-07-03 13:42:02','/wp-content/plugins/elementor-pro/assets/js/frontend.min.js.map','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'45.45.237.206'),(154520,'2026-07-03 14:43:59','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154521,'2026-07-03 14:44:01','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154522,'2026-07-03 14:44:03','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.168'),(154523,'2026-07-03 14:44:03','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.168'),(154524,'2026-07-03 14:56:24','/x86.php64','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'191.237.255.150'),(154525,'2026-07-03 15:31:27','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(154526,'2026-07-03 15:31:27','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(154527,'2026-07-03 15:31:29','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(154528,'2026-07-03 15:31:32','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(154529,'2026-07-03 16:04:22','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154530,'2026-07-03 16:05:21','/alfanew2.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154531,'2026-07-03 16:07:51','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154532,'2026-07-03 16:07:53','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154533,'2026-07-03 16:08:08','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154534,'2026-07-03 16:08:18','/images','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154535,'2026-07-03 16:08:21','/ALFA_DATA','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154536,'2026-07-03 16:34:56','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.78'),(154537,'2026-07-03 16:35:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.167'),(154538,'2026-07-03 16:35:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.79'),(154539,'2026-07-03 16:35:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.167'),(154540,'2026-07-03 16:35:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.78'),(154541,'2026-07-03 16:35:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.168'),(154542,'2026-07-03 16:35:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.179'),(154543,'2026-07-03 16:35:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.160'),(154544,'2026-07-03 16:35:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.170'),(154545,'2026-07-03 16:35:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.82'),(154546,'2026-07-03 16:35:38','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.175'),(154547,'2026-07-03 16:35:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.175'),(154548,'2026-07-03 16:35:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.159'),(154549,'2026-07-03 16:35:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.80'),(154550,'2026-07-03 16:35:55','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.182'),(154551,'2026-07-03 16:35:59','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.88'),(154552,'2026-07-03 16:36:03','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.90'),(154553,'2026-07-03 16:36:07','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.170'),(154554,'2026-07-03 16:36:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.95'),(154555,'2026-07-03 16:36:16','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.183'),(154556,'2026-07-03 16:36:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.184'),(154557,'2026-07-03 16:36:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.185'),(154558,'2026-07-03 16:36:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.181'),(154559,'2026-07-03 16:36:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.88'),(154560,'2026-07-03 16:36:43','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.84'),(154561,'2026-07-03 16:36:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.180'),(154562,'2026-07-03 16:36:55','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.160'),(154563,'2026-07-03 16:37:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.165'),(154564,'2026-07-03 16:37:07','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.78'),(154565,'2026-07-03 16:37:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.169'),(154566,'2026-07-03 16:37:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.94'),(154567,'2026-07-03 16:37:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.93'),(154568,'2026-07-03 16:37:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.176'),(154569,'2026-07-03 16:37:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.172'),(154570,'2026-07-03 16:37:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.87'),(154571,'2026-07-03 16:37:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.80'),(154572,'2026-07-03 16:37:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.181'),(154573,'2026-07-03 16:37:57','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.179'),(154574,'2026-07-03 16:38:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.96'),(154575,'2026-07-03 16:38:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.178'),(154576,'2026-07-03 16:38:16','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.94'),(154577,'2026-07-03 16:38:21','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.79'),(154578,'2026-07-03 16:38:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.83'),(154579,'2026-07-03 16:38:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.92'),(154580,'2026-07-03 16:38:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.88'),(154581,'2026-07-03 16:38:38','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.90'),(154582,'2026-07-03 16:38:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.173'),(154583,'2026-07-03 16:38:47','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.93'),(154584,'2026-07-03 16:38:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.97'),(154585,'2026-07-03 16:38:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.96'),(154586,'2026-07-03 16:39:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.92'),(154587,'2026-07-03 16:39:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.92'),(154588,'2026-07-03 16:39:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.160'),(154589,'2026-07-03 16:39:24','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.165'),(154590,'2026-07-03 16:39:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.87'),(154591,'2026-07-03 16:39:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.167'),(154592,'2026-07-03 16:39:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.178'),(154593,'2026-07-03 16:39:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.180'),(154594,'2026-07-03 16:39:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.89'),(154595,'2026-07-03 16:39:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.97'),(154596,'2026-07-03 16:39:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.169'),(154597,'2026-07-03 16:40:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.177'),(154598,'2026-07-03 16:40:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.87'),(154599,'2026-07-03 16:40:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.179'),(154600,'2026-07-03 16:40:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.90'),(154601,'2026-07-03 16:40:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.179'),(154602,'2026-07-03 16:40:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.159'),(154603,'2026-07-03 16:40:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.91'),(154604,'2026-07-03 16:40:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.161'),(154605,'2026-07-03 16:40:37','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.84'),(154606,'2026-07-03 16:40:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.95'),(154607,'2026-07-03 16:40:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.87'),(154608,'2026-07-03 16:40:51','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.97'),(154609,'2026-07-03 16:40:56','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.182'),(154610,'2026-07-03 16:41:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.163'),(154611,'2026-07-03 16:41:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.165'),(154612,'2026-07-03 16:41:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.185'),(154613,'2026-07-03 16:41:14','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.78'),(154614,'2026-07-03 16:41:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.88'),(154615,'2026-07-03 16:41:24','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.168'),(154616,'2026-07-03 16:41:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.81'),(154617,'2026-07-03 16:41:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.168'),(154618,'2026-07-03 16:41:42','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.180'),(154619,'2026-07-03 16:41:47','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.80'),(154620,'2026-07-03 16:41:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.165'),(154621,'2026-07-03 16:41:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.184'),(154622,'2026-07-03 16:42:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.91'),(154623,'2026-07-03 16:42:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.81'),(154624,'2026-07-03 16:42:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.178'),(154625,'2026-07-03 16:42:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.160'),(154626,'2026-07-03 16:42:17','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.163'),(154627,'2026-07-03 16:42:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.162'),(154628,'2026-07-03 16:42:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.90'),(154629,'2026-07-03 16:42:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.90'),(154630,'2026-07-03 16:42:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.77'),(154631,'2026-07-03 16:42:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.175'),(154632,'2026-07-03 16:42:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.97'),(154633,'2026-07-03 16:42:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.167'),(154634,'2026-07-03 16:42:56','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.93'),(154635,'2026-07-03 16:43:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.89'),(154636,'2026-07-03 16:43:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.97'),(154637,'2026-07-03 16:43:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.93'),(154638,'2026-07-03 16:43:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.159'),(154639,'2026-07-03 16:43:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.183'),(154640,'2026-07-03 16:43:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.82'),(154641,'2026-07-03 16:43:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.172'),(154642,'2026-07-03 16:43:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.159'),(154643,'2026-07-03 16:43:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.165'),(154644,'2026-07-03 16:43:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.160'),(154645,'2026-07-03 16:44:00','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(154646,'2026-07-03 16:44:03','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(154647,'2026-07-03 16:44:04','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(154648,'2026-07-03 16:44:06','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(154649,'2026-07-03 16:44:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.87'),(154650,'2026-07-03 16:44:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.175'),(154651,'2026-07-03 16:44:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.176'),(154652,'2026-07-03 16:44:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.78'),(154653,'2026-07-03 16:44:41','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.84'),(154654,'2026-07-03 16:44:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.172'),(154655,'2026-07-03 16:44:51','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.97'),(154656,'2026-07-03 16:44:56','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.187'),(154657,'2026-07-03 16:45:01','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.94'),(154658,'2026-07-03 16:45:07','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.82'),(154659,'2026-07-03 16:45:14','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.167'),(154660,'2026-07-03 16:45:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.181'),(154661,'2026-07-03 16:45:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.174'),(154662,'2026-07-03 16:45:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.183'),(154663,'2026-07-03 16:45:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.163'),(154664,'2026-07-03 16:45:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.78'),(154665,'2026-07-03 16:45:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.159'),(154666,'2026-07-03 16:45:59','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'173.239.211.95'),(154667,'2026-07-03 16:46:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.182'),(154668,'2026-07-03 16:46:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.172'),(154669,'2026-07-03 16:46:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.167'),(154670,'2026-07-03 16:46:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.161'),(154671,'2026-07-03 16:46:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'63.135.161.168'),(154672,'2026-07-03 17:29:02','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'136.66.222.229'),(154673,'2026-07-03 17:29:04','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.70 Safari/537.36 Vivaldi/6.7.3200.25','http://solsculpting.com/wordpress/',404,'GET',NULL,'136.66.222.229'),(154674,'2026-07-03 17:29:05','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'136.66.222.229'),(154675,'2026-07-03 17:29:06','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/blog/',404,'GET',NULL,'136.66.222.229'),(154676,'2026-07-03 17:29:08','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'136.66.222.229'),(154677,'2026-07-03 17:29:09','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'136.66.222.229'),(154678,'2026-07-03 20:04:54','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.193.152.113'),(154679,'2026-07-03 20:04:55','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.193.152.113'),(154680,'2026-07-04 00:00:43','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(154681,'2026-07-04 00:00:44','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(154682,'2026-07-04 00:00:45','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(154683,'2026-07-04 00:00:45','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(154684,'2026-07-04 01:27:50','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.60.101'),(154685,'2026-07-04 01:27:52','/administrator/components/com_sppagebuilder/sppagebuilder.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.60.101'),(154686,'2026-07-04 01:27:53','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.60.101'),(154687,'2026-07-04 01:27:55','/administrator/components/com_pagebuilderck/pagebuilderck.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.60.101'),(154688,'2026-07-04 01:28:01','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.60.101'),(154689,'2026-07-04 02:05:50','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0',NULL,404,'GET',NULL,'206.189.147.170'),(154690,'2026-07-04 02:05:54','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:129.0) Gecko/20100101 Firefox/129.0',NULL,404,'GET',NULL,'206.189.147.170'),(154691,'2026-07-04 03:51:26','/fun.asp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/fun.asp',404,'GET',NULL,'203.91.78.176'),(154692,'2026-07-04 03:51:30','/fun.aspx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/fun.aspx',404,'GET',NULL,'203.91.78.176'),(154693,'2026-07-04 03:51:36','/wuti.asp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/wuti.asp',404,'GET',NULL,'203.91.78.176'),(154694,'2026-07-04 03:51:39','/wuti.aspx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/wuti.aspx',404,'GET',NULL,'203.91.78.176'),(154695,'2026-07-04 03:52:11','/dd.asp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/dd.asp',404,'GET',NULL,'203.91.78.176'),(154696,'2026-07-04 03:52:13','/dd.aspx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/dd.aspx',404,'GET',NULL,'203.91.78.176'),(154697,'2026-07-04 03:52:19','/newfile.asp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/newfile.asp',404,'GET',NULL,'203.91.78.176'),(154698,'2026-07-04 03:52:23','/newfile.aspx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/newfile.aspx',404,'GET',NULL,'203.91.78.176'),(154699,'2026-07-04 03:52:40','/okok.cer','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','http://solsculpting.com/okok.cer',404,'GET',NULL,'203.91.78.176'),(154700,'2026-07-04 07:54:34','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154701,'2026-07-04 08:54:21','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154702,'2026-07-04 08:54:22','/.well-known/acme-challenge/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154703,'2026-07-04 08:54:23','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154704,'2026-07-04 08:54:37','/admin/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154705,'2026-07-04 09:51:06','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154706,'2026-07-04 09:51:09','/wp-content/mu-plugins-old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154707,'2026-07-04 09:51:11','/assets/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154708,'2026-07-04 09:56:15','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'103.59.161.168'),(154709,'2026-07-04 10:49:59','/modules/mod_simplefileuploadv1.3/elements/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154710,'2026-07-04 10:50:05','/wp-content/themes/twentythirteen/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154711,'2026-07-04 10:50:07','/wp-includes/SimplePie/Content/Type','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154712,'2026-07-04 10:50:13','/.well-known/acme-challenge/block-supports/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154713,'2026-07-04 11:06:35','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.193.152.113'),(154714,'2026-07-04 11:06:36','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.193.152.113'),(154715,'2026-07-04 11:49:45','/upload/image/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154716,'2026-07-04 11:49:55','/wp-includes/Requests/Exception/HTTP/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154717,'2026-07-04 11:49:58','/wp-includes/images/wlw/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154718,'2026-07-04 12:39:12','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'POST',NULL,'64.23.142.130'),(154719,'2026-07-04 12:39:14','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'POST',NULL,'64.23.142.130'),(154720,'2026-07-04 12:47:10','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; POT-LX1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.101 Mobile Safari/537.36',NULL,404,'GET',NULL,'104.192.3.106'),(154721,'2026-07-04 13:14:56','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Z10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','https://solsculpting.com/Form',404,'POST',NULL,'109.70.100.13'),(154722,'2026-07-04 13:15:19','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Z10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','https://solsculpting.com/Form',404,'POST',NULL,'185.220.101.134'),(154723,'2026-07-04 13:15:30','/Form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 9; Z10) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36','https://solsculpting.com/Form',404,'POST',NULL,'192.227.183.149'),(154724,'2026-07-04 13:22:24','/wp-content/plugins/cidaas-pro-master/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'51.68.171.141'),(154725,'2026-07-04 13:22:28','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.68.171.141'),(154726,'2026-07-04 16:07:45','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'159.195.13.46'),(154727,'2026-07-04 16:07:47','/administrator/components/com_sppagebuilder/sppagebuilder.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'159.195.13.46'),(154728,'2026-07-04 16:07:48','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'159.195.13.46'),(154729,'2026-07-04 16:07:50','/administrator/components/com_pagebuilderck/pagebuilderck.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'159.195.13.46'),(154730,'2026-07-04 16:07:59','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'159.195.13.46'),(154731,'2026-07-04 16:41:05','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154732,'2026-07-04 16:41:08','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154733,'2026-07-04 16:41:12','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154734,'2026-07-04 16:41:26','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154735,'2026-07-04 16:41:28','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154736,'2026-07-04 17:14:04','/sobre-nosotros','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154737,'2026-07-04 17:14:04','/aboutus','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154738,'2026-07-04 17:14:04','/nous-contacter','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154739,'2026-07-04 17:14:05','/contactus','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154740,'2026-07-04 17:14:05','/contatti','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154741,'2026-07-04 17:14:05','/contato','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154742,'2026-07-04 17:14:05','/kontakt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154743,'2026-07-04 17:14:05','/contacto','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154744,'2026-07-04 17:14:05','/quienes-somos','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154745,'2026-07-04 17:14:05','/a-propos','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154746,'2026-07-04 17:14:05','/ueber-uns','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154747,'2026-07-04 17:14:05','/contact-us','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154748,'2026-07-04 17:14:06','/fale-conosco','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154749,'2026-07-04 17:14:06','/about-us','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0 Safari/537.36',NULL,404,'GET',NULL,'34.86.13.171'),(154750,'2026-07-04 17:41:09','/wp-content/cache/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'13.70.27.113'),(154751,'2026-07-04 17:43:00','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'13.70.27.113'),(154752,'2026-07-04 17:43:23','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'13.70.27.113'),(154753,'2026-07-04 18:26:26','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154754,'2026-07-04 18:26:39','/wp-includes/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154755,'2026-07-04 18:26:44','/.bod/.ll/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154756,'2026-07-04 18:42:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154757,'2026-07-04 18:42:15','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154758,'2026-07-04 18:42:28','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154759,'2026-07-04 18:42:29','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154760,'2026-07-04 18:42:31','/wp-config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154761,'2026-07-04 18:42:32','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154762,'2026-07-04 18:42:34','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154763,'2026-07-04 18:42:35','/telescope/api/requests?type=request&limit=50','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154764,'2026-07-04 18:42:36','/api/v1/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154765,'2026-07-04 18:42:38','/wp-content/debug.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154766,'2026-07-04 18:42:39','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154767,'2026-07-04 18:42:40','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'193.32.162.60'),(154768,'2026-07-04 19:51:42','/wordpress','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154769,'2026-07-04 19:51:45','/wp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154770,'2026-07-04 19:51:46','/blog','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154771,'2026-07-04 19:51:48','/new','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154772,'2026-07-04 19:51:49','/old','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154773,'2026-07-04 19:51:50','/newsite','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154774,'2026-07-04 19:51:54','/main','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154775,'2026-07-04 19:51:55','/testing','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154776,'2026-07-04 19:51:57','/site','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154777,'2026-07-04 19:51:59','/backup','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154778,'2026-07-04 19:52:00','/demo','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154779,'2026-07-04 19:52:01','/home','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154780,'2026-07-04 19:52:03','/tmp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154781,'2026-07-04 19:52:05','/dev','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154782,'2026-07-04 19:52:06','/cms','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154783,'2026-07-04 19:52:07','/portal','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154784,'2026-07-04 19:52:09','/web','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154785,'2026-07-04 20:35:13','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'193.56.116.60'),(154786,'2026-07-04 22:35:54','/ta salash','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.175.1'),(154787,'2026-07-04 22:40:25','/wp-admin/js/widget/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.175.1'),(154788,'2026-07-04 22:40:48','/firewall.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.175.1'),(154789,'2026-07-04 22:41:08','/wp-content/plugins/erinyani/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.175.1'),(154790,'2026-07-04 23:14:05','/ads.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko; compatible; BuiltWith/1.4; rb.gy/xprgqj) Chrome/124.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'34.1.169.230'),(154791,'2026-07-04 23:31:33','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/76.0.3809.81 Mobile/15E148 Safari/605.1',NULL,404,'GET',NULL,'104.192.3.106'),(154792,'2026-07-05 02:11:42','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154793,'2026-07-05 02:13:33','/alfanew2.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154794,'2026-07-05 02:18:28','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154795,'2026-07-05 02:18:30','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154796,'2026-07-05 02:18:53','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154797,'2026-07-05 02:19:10','/images','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154798,'2026-07-05 02:19:13','/ALFA_DATA','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154799,'2026-07-05 06:37:10','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'POST',NULL,'64.23.142.130'),(154800,'2026-07-05 06:37:21','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,404,'POST',NULL,'64.23.142.130'),(154801,'2026-07-05 08:16:39','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154802,'2026-07-05 08:16:43','/x86.php64','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.48.255.163'),(154803,'2026-07-05 08:16:53','/wp-includes/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154804,'2026-07-05 08:16:58','/.bod/.ll/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154805,'2026-07-05 09:59:35','/index.php/feed/atom/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154806,'2026-07-05 09:59:47','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154807,'2026-07-05 09:59:49','/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154808,'2026-07-05 09:59:56','/wp/wp-admin/includes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154809,'2026-07-05 11:39:44','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154810,'2026-07-05 11:39:48','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154811,'2026-07-05 11:39:52','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154812,'2026-07-05 11:40:06','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154813,'2026-07-05 11:40:07','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154814,'2026-07-05 12:00:52','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.100 Safari/537.36',NULL,404,'GET',NULL,'104.192.3.106'),(154815,'2026-07-05 12:47:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.188'),(154816,'2026-07-05 12:47:29','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.188'),(154817,'2026-07-05 12:47:32','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.188'),(154818,'2026-07-05 12:47:34','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.188'),(154819,'2026-07-05 13:10:13','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'82.39.212.220'),(154820,'2026-07-05 13:10:14','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'82.39.212.220'),(154821,'2026-07-05 13:10:15','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'82.39.212.220'),(154822,'2026-07-05 13:10:15','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'82.39.212.220'),(154823,'2026-07-05 13:10:15','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'82.39.212.220'),(154824,'2026-07-05 13:10:16','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'82.39.212.220'),(154825,'2026-07-05 13:10:16','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'82.39.212.220'),(154826,'2026-07-05 13:10:16','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'82.39.212.220'),(154827,'2026-07-05 13:10:17','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'82.39.212.220'),(154828,'2026-07-05 13:10:17','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'82.39.212.220'),(154829,'2026-07-05 13:10:18','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'82.39.212.220'),(154830,'2026-07-05 13:20:07','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.24.86.64'),(154831,'2026-07-05 13:20:29','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.24.86.64'),(154832,'2026-07-05 14:04:42','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)','https://www.solsculpting.com/.git/config',404,'GET',NULL,'144.172.106.171'),(154833,'2026-07-05 14:29:20','/wp-content/cache/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.24.86.64'),(154834,'2026-07-05 14:30:07','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.24.86.64'),(154835,'2026-07-05 14:30:34','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.24.86.64'),(154836,'2026-07-05 14:42:21','/wp-includes/blocks/audi/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.225.63'),(154837,'2026-07-05 16:20:34','/phpinfo.php2','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'191.237.255.150'),(154838,'2026-07-05 17:09:23','/wp-','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154839,'2026-07-05 17:09:38','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154840,'2026-07-05 17:09:40','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154841,'2026-07-05 17:10:01','/admin/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154842,'2026-07-05 17:10:02','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154843,'2026-07-05 17:10:03','/shop/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154844,'2026-07-05 17:10:08','/wp-content/mu-plugins-old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154845,'2026-07-05 17:10:11','/wp-includes/Requests/Cookie/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154846,'2026-07-05 17:10:13','/wp-includes/Requests/Response/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154847,'2026-07-05 17:10:45','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(154848,'2026-07-05 17:10:46','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(154849,'2026-07-05 17:10:48','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(154850,'2026-07-05 17:10:49','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(154851,'2026-07-05 17:47:23','/configuration/info.xml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.63.208.190'),(154852,'2026-07-05 19:02:07','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(154853,'2026-07-05 19:02:08','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(154854,'2026-07-05 19:02:09','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(154855,'2026-07-05 19:02:10','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(154856,'2026-07-05 19:16:36','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154857,'2026-07-05 19:16:48','/wp-includes/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154858,'2026-07-05 19:16:53','/.bod/.ll/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154859,'2026-07-05 21:00:26','/index.php/feed/atom/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154860,'2026-07-05 21:00:40','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154861,'2026-07-05 21:00:42','/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154862,'2026-07-05 21:00:50','/wp/wp-admin/includes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154863,'2026-07-05 21:17:17','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 10; en-US; CPH2015) AppleWebKit/537.36 (KHTML, like Gecko) UCBrowser/13.5.8.1311 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'35.199.147.122'),(154864,'2026-07-05 21:17:19','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'35.199.147.122'),(154865,'2026-07-05 21:17:21','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'35.199.147.122'),(154866,'2026-07-05 21:17:22','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'35.199.147.122'),(154867,'2026-07-05 21:17:24','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'35.199.147.122'),(154868,'2026-07-05 21:17:27','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.90 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'35.199.147.122'),(154869,'2026-07-05 21:58:28','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'146.70.117.179'),(154870,'2026-07-05 21:58:31','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'146.70.117.179'),(154871,'2026-07-05 21:58:32','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'146.70.117.179'),(154872,'2026-07-05 21:58:35','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'146.70.117.179'),(154873,'2026-07-05 22:45:44','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154874,'2026-07-05 22:45:48','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154875,'2026-07-05 22:45:52','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154876,'2026-07-05 22:46:06','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154877,'2026-07-05 22:46:07','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154878,'2026-07-05 23:21:18','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.61.42'),(154879,'2026-07-05 23:21:27','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.61.42'),(154880,'2026-07-05 23:21:35','/administrator/components/com_sppagebuilder/sppagebuilder.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.61.42'),(154881,'2026-07-05 23:21:39','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.61.42'),(154882,'2026-07-05 23:21:41','/administrator/components/com_pagebuilderck/pagebuilderck.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.61.42'),(154883,'2026-07-05 23:21:43','/plugins/system/astroid/astroid.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.61.42'),(154884,'2026-07-05 23:21:46','/plugins/system/nrframework/nrframework.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.61.42'),(154885,'2026-07-05 23:22:06','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.61.42'),(154886,'2026-07-05 23:31:26','/configuration/info.xml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.63.208.190'),(154887,'2026-07-06 01:50:41','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154888,'2026-07-06 01:50:44','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154889,'2026-07-06 01:50:47','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154890,'2026-07-06 01:50:59','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154891,'2026-07-06 01:51:00','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154892,'2026-07-06 02:17:19','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.57.196'),(154893,'2026-07-06 02:17:29','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.57.196'),(154894,'2026-07-06 02:17:31','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.57.196'),(154895,'2026-07-06 02:17:32','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.57.196'),(154896,'2026-07-06 02:17:38','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.57.196'),(154897,'2026-07-06 03:32:02','/my-account/lost-password/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 Chrome/125.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'182.8.66.35'),(154898,'2026-07-06 04:43:31','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.129'),(154899,'2026-07-06 04:43:32','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.129'),(154900,'2026-07-06 04:43:33','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.26.192.129'),(154901,'2026-07-06 04:43:33','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.26.192.129'),(154902,'2026-07-06 06:48:27','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36 Assetnote/1.0.0',NULL,404,'GET',NULL,'51.103.46.9'),(154903,'2026-07-06 06:56:08','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154904,'2026-07-06 08:25:44','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154905,'2026-07-06 08:25:56','/wp-includes/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154906,'2026-07-06 08:26:01','/.bod/.ll/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154907,'2026-07-06 10:13:41','/index.php/feed/atom/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154908,'2026-07-06 10:13:53','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154909,'2026-07-06 10:13:55','/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154910,'2026-07-06 10:14:02','/wp/wp-admin/includes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154911,'2026-07-06 11:23:22','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(154912,'2026-07-06 11:23:24','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(154913,'2026-07-06 11:23:25','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(154914,'2026-07-06 11:23:25','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(154915,'2026-07-06 11:37:30','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.215.85.88'),(154916,'2026-07-06 11:52:10','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154917,'2026-07-06 11:52:13','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154918,'2026-07-06 11:52:17','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154919,'2026-07-06 11:52:31','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154920,'2026-07-06 11:52:33','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.89.233.37'),(154921,'2026-07-06 12:26:11','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'102.129.234.198'),(154922,'2026-07-06 12:37:42','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.18.31.88'),(154923,'2026-07-06 12:38:03','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.18.31.88'),(154924,'2026-07-06 13:33:26','/plugins/editors/jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.19'),(154925,'2026-07-06 13:33:28','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.19'),(154926,'2026-07-06 17:20:07','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'34.138.207.210'),(154927,'2026-07-06 17:20:08','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.70 Safari/537.36 Vivaldi/6.7.3200.25','http://solsculpting.com/new/',404,'GET',NULL,'34.138.207.210'),(154928,'2026-07-06 17:20:09','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/old/',404,'GET',NULL,'34.138.207.210'),(154929,'2026-07-06 17:20:10','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; TECNO CK6n) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.50 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.138.207.210'),(154930,'2026-07-06 17:20:11','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.138.207.210'),(154931,'2026-07-06 17:20:12','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.138.207.210'),(154932,'2026-07-06 19:09:56','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154933,'2026-07-06 19:10:40','/alfanew2.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154934,'2026-07-06 19:14:02','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154935,'2026-07-06 19:14:10','/images','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154936,'2026-07-06 19:14:13','/ALFA_DATA','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'4.193.171.159'),(154937,'2026-07-06 19:45:38','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.61.138'),(154938,'2026-07-06 19:45:42','/administrator/components/com_sppagebuilder/sppagebuilder.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.61.138'),(154939,'2026-07-06 19:45:44','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.61.138'),(154940,'2026-07-06 19:45:47','/administrator/components/com_pagebuilderck/pagebuilderck.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.61.138'),(154941,'2026-07-06 19:45:49','/plugins/system/astroid/astroid.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.61.138'),(154942,'2026-07-06 19:45:52','/plugins/system/nrframework/nrframework.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.61.138'),(154943,'2026-07-06 21:05:21','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64; rv:120.0) Gecko/20100101 Firefox/120.0','https://t.co/',404,'GET',NULL,'216.73.160.31'),(154944,'2026-07-06 21:05:22','/?author=9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64; rv:119.0) Gecko/20100101 Firefox/119.0','https://wordpress.org/',404,'GET',NULL,'216.73.160.31'),(154945,'2026-07-06 23:41:47','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.23'),(154946,'2026-07-06 23:41:48','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.23'),(154947,'2026-07-06 23:41:49','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.23'),(154948,'2026-07-06 23:41:49','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.23'),(154949,'2026-07-07 00:15:42','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(154950,'2026-07-07 00:15:45','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(154951,'2026-07-07 00:15:48','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(154952,'2026-07-07 00:15:49','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(154953,'2026-07-07 03:58:24','/x86.php64','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'191.237.255.150'),(154954,'2026-07-07 04:10:29','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'152.53.54.209'),(154955,'2026-07-07 04:10:32','/administrator/components/com_sppagebuilder/sppagebuilder.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'152.53.54.209'),(154956,'2026-07-07 04:10:35','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'152.53.54.209'),(154957,'2026-07-07 04:10:38','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'152.53.54.209'),(154958,'2026-07-07 04:10:45','/administrator/components/com_pagebuilderck/pagebuilderck.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'152.53.54.209'),(154959,'2026-07-07 04:10:48','/plugins/system/astroid/astroid.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'152.53.54.209'),(154960,'2026-07-07 04:11:09','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'152.53.54.209'),(154961,'2026-07-07 06:47:17','/sugar_version.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/sugar_version.json',404,'GET',NULL,'45.156.128.101'),(154962,'2026-07-07 06:47:53','/identity','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/identity',404,'GET',NULL,'45.156.128.103'),(154963,'2026-07-07 06:47:57','/cgi-bin/authLogin.cgi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/cgi-bin/authLogin.cgi',404,'GET',NULL,'45.156.128.101'),(154964,'2026-07-07 06:48:00','/sitecore/shell/sitecore.version.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/sitecore/shell/sitecore.version.xml',404,'GET',NULL,'45.156.128.101'),(154965,'2026-07-07 06:48:09','/solr/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/solr/#/',404,'GET',NULL,'45.156.128.103'),(154966,'2026-07-07 06:48:12','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/console',404,'GET',NULL,'45.156.128.101'),(154967,'2026-07-07 06:48:16','/login.do','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/login.do',404,'GET',NULL,'45.156.128.101'),(154968,'2026-07-07 06:48:24','/Telerik.Web.UI.WebResource.axd?type=rau','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/Telerik.Web.UI.WebResource.axd?type=rau',404,'GET',NULL,'45.156.128.102'),(154969,'2026-07-07 06:48:28','/showLogin.cc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/showLogin.cc',404,'GET',NULL,'45.156.128.103'),(154970,'2026-07-07 06:48:31','/index.jsp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/index.jsp',404,'GET',NULL,'45.156.128.102'),(154971,'2026-07-07 06:48:35','/WebInterface/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/WebInterface/',404,'GET',NULL,'45.156.128.102'),(154972,'2026-07-07 06:48:39','/api/session/properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36','http://solsculpting.com/api/session/properties',404,'GET',NULL,'45.156.128.102'),(154973,'2026-07-07 07:58:47','/contact-us','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; mypagesbot/1.0; +https://mypages.com/bot)',NULL,404,'GET',NULL,'40.160.57.129'),(154974,'2026-07-07 07:58:50','/location','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; mypagesbot/1.0; +https://mypages.com/bot)',NULL,404,'GET',NULL,'40.160.57.129'),(154975,'2026-07-07 08:20:50','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154976,'2026-07-07 08:20:53','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154977,'2026-07-07 08:20:57','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154978,'2026-07-07 08:21:09','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154979,'2026-07-07 08:21:11','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.87.152'),(154980,'2026-07-07 08:58:30','/wordpress','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154981,'2026-07-07 08:58:32','/wp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154982,'2026-07-07 08:58:34','/blog','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154983,'2026-07-07 08:58:35','/new','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154984,'2026-07-07 08:58:36','/old','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154985,'2026-07-07 08:58:38','/newsite','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154986,'2026-07-07 08:58:41','/main','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154987,'2026-07-07 08:58:43','/testing','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154988,'2026-07-07 08:58:44','/site','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154989,'2026-07-07 08:58:46','/backup','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154990,'2026-07-07 08:58:47','/demo','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154991,'2026-07-07 08:58:48','/home','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154992,'2026-07-07 08:58:50','/tmp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154993,'2026-07-07 08:58:52','/dev','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154994,'2026-07-07 08:58:54','/cms','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154995,'2026-07-07 08:58:56','/portal','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154996,'2026-07-07 08:58:57','/web','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'40.115.140.72'),(154997,'2026-07-07 10:10:36','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.179'),(154998,'2026-07-07 10:35:21','/?page_id=2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Safari/605.1.15',NULL,404,'GET',NULL,'185.24.11.139'),(154999,'2026-07-07 10:35:21','/?p=1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0',NULL,404,'GET',NULL,'185.24.11.139'),(155000,'2026-07-07 15:29:54','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.232.174.42'),(155001,'2026-07-07 15:30:09','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.232.174.42'),(155002,'2026-07-07 15:40:20','/wp-includes/blocks/audi/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.89.242.68'),(155003,'2026-07-07 19:16:33','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'136.117.154.72'),(155004,'2026-07-07 19:16:36','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'136.117.154.72'),(155005,'2026-07-07 19:16:37','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; RMX3842) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.44 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'136.117.154.72'),(155006,'2026-07-07 19:16:38','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'136.117.154.72'),(155007,'2026-07-07 19:16:39','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','http://solsculpting.com/wp/',404,'GET',NULL,'136.117.154.72'),(155008,'2026-07-07 19:16:40','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'136.117.154.72'),(155009,'2026-07-07 19:18:19','/administrator/components/com_sppagebuilder/config.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) Firefox/117.0',NULL,404,'GET',NULL,'34.21.143.151'),(155010,'2026-07-07 19:34:40','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.232.174.42'),(155011,'2026-07-07 19:34:54','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.232.174.42'),(155012,'2026-07-07 20:59:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.188'),(155013,'2026-07-07 22:20:10','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(155014,'2026-07-07 22:20:12','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(155015,'2026-07-07 22:20:14','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(155016,'2026-07-07 22:20:15','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(155017,'2026-07-07 23:32:41','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155018,'2026-07-07 23:52:29','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:109.0) Gecko/20100101 Firefox/115.0',NULL,404,'GET',NULL,'188.166.99.91'),(155019,'2026-07-08 00:21:59','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(155020,'2026-07-08 00:21:59','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(155021,'2026-07-08 00:22:00','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(155022,'2026-07-08 00:22:00','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(155023,'2026-07-08 00:22:01','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(155024,'2026-07-08 00:22:01','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.34'),(155025,'2026-07-08 00:22:01','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.34'),(155026,'2026-07-08 01:12:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.173'),(155027,'2026-07-08 01:12:27','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.173'),(155028,'2026-07-08 01:12:28','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.173'),(155029,'2026-07-08 01:12:29','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.173'),(155030,'2026-07-08 07:58:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155031,'2026-07-08 11:52:01','/406','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155032,'2026-07-08 14:10:13','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.203'),(155033,'2026-07-08 14:10:22','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.203'),(155034,'2026-07-08 15:23:15','/.git/config','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'34.41.198.178'),(155035,'2026-07-08 15:25:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.150'),(155036,'2026-07-08 15:25:28','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.150'),(155037,'2026-07-08 15:25:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.150'),(155038,'2026-07-08 15:25:41','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.150'),(155039,'2026-07-08 17:07:52','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/old/',404,'GET',NULL,'34.61.135.0'),(155040,'2026-07-08 17:07:53','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.61.135.0'),(155041,'2026-07-08 17:07:54','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/wp/',404,'GET',NULL,'34.61.135.0'),(155042,'2026-07-08 17:07:55','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.61.135.0'),(155043,'2026-07-08 17:07:56','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','http://solsculpting.com/new/',404,'GET',NULL,'34.61.135.0'),(155044,'2026-07-08 17:07:58','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.61.135.0'),(155045,'2026-07-08 19:21:29','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'91.193.232.36'),(155046,'2026-07-08 20:57:31','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(155047,'2026-07-08 20:57:32','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(155048,'2026-07-08 20:57:34','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(155049,'2026-07-08 20:57:35','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(155050,'2026-07-08 22:34:10','/406','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155051,'2026-07-09 05:15:45','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(155052,'2026-07-09 05:15:47','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(155053,'2026-07-09 05:15:48','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155054,'2026-07-09 05:15:51','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(155055,'2026-07-09 05:15:54','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155056,'2026-07-09 05:15:56','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155057,'2026-07-09 05:15:57','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(155058,'2026-07-09 05:15:58','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155059,'2026-07-09 05:16:00','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.214.6'),(155060,'2026-07-09 05:16:02','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.242.49'),(155061,'2026-07-09 05:16:05','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.242.49'),(155062,'2026-07-09 05:16:06','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(155063,'2026-07-09 05:16:08','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(155064,'2026-07-09 05:16:10','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(155065,'2026-07-09 05:16:12','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(155066,'2026-07-09 05:16:14','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'108.162.242.49'),(155067,'2026-07-09 05:16:15','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155068,'2026-07-09 05:16:17','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155069,'2026-07-09 05:16:18','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.242.49'),(155070,'2026-07-09 05:16:21','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155071,'2026-07-09 05:16:22','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(155072,'2026-07-09 05:16:23','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155073,'2026-07-09 05:16:25','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155074,'2026-07-09 05:16:26','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.74'),(155075,'2026-07-09 05:16:29','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(155076,'2026-07-09 08:53:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 (Silvy X Ran)',NULL,404,'GET',NULL,'118.194.253.208'),(155077,'2026-07-09 08:53:03','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36 (Silvy X Ran)',NULL,404,'GET',NULL,'152.42.235.126'),(155078,'2026-07-09 10:38:26','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.185'),(155079,'2026-07-09 10:46:00','/plugins/editors/jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.19'),(155080,'2026-07-09 10:46:02','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.19'),(155081,'2026-07-09 11:32:47','/w1php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.48.255.163'),(155082,'2026-07-09 11:32:49','/w2php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.48.255.163'),(155083,'2026-07-09 11:32:50','/w3php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.48.255.163'),(155084,'2026-07-09 12:36:57','/.env?_=8l3a1t8z&v=h8p80','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/09ya9q6ept',404,'GET',NULL,'195.178.110.101'),(155085,'2026-07-09 12:37:00','/.env.local?_=xvono08j&v=gsh9v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.101'),(155086,'2026-07-09 12:37:03','/.env.production?_=dxkrvdnt&v=bzfbu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.101'),(155087,'2026-07-09 12:37:07','/.env.development?_=p2pck4mr&v=5u9ly','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.bing.com/search?q=h1ef5c',404,'GET',NULL,'195.178.110.101'),(155088,'2026-07-09 12:37:10','/.env.staging?_=dtbli5pm&v=s5b2h','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.101'),(155089,'2026-07-09 12:37:13','/.env.backup?_=ykx6lzo8&v=mfui7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.google.com/search?q=lxlee6',404,'GET',NULL,'195.178.110.101'),(155090,'2026-07-09 12:37:16','/.env.bak?_=sef9v3py&v=29u65','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/search?q=mmbn30',404,'GET',NULL,'195.178.110.101'),(155091,'2026-07-09 12:37:18','/.env.old?_=hmzt1ugz&v=16c00','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'195.178.110.101'),(155092,'2026-07-09 12:37:21','/.env.example?_=rf8n99sz&v=bftso','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://t.co/4al6g577g7',404,'GET',NULL,'195.178.110.101'),(155093,'2026-07-09 12:37:24','/.env?_=ls6vdgyh&v=9nxlt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://t.co/99zozw0vwt',404,'GET',NULL,'195.178.110.101'),(155094,'2026-07-09 12:37:26','/..env?_=gaz5vipk&v=ior3l','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=s5uok',404,'GET',NULL,'195.178.110.101'),(155095,'2026-07-09 12:37:30','/.env?_=tjvcx3gx&v=j4kjw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=m3puuo',404,'GET',NULL,'195.178.110.101'),(155096,'2026-07-09 12:37:33','/.env ?_=2op8xkmo&v=m98w5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/search?q=odmem6',404,'GET',NULL,'195.178.110.101'),(155097,'2026-07-09 12:37:37','/.env?_=uvi0xq8p&v=y554e','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://twitter.com/',404,'GET',NULL,'195.178.110.101'),(155098,'2026-07-09 12:37:41','/.env?_=v457e89j&v=d2d3i','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'195.178.110.101'),(155099,'2026-07-09 12:37:44','/.env?_=ga35somp&v=g87ux','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.101'),(155100,'2026-07-09 12:37:47','//.env?_=e8k3qe21&v=9xm0r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.google.com/search?q=ap1jn7',404,'GET',NULL,'195.178.110.101'),(155101,'2026-07-09 12:37:50','/env?_=ly6kjwas&v=1dr8v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=bfr7k1',404,'GET',NULL,'195.178.110.101'),(155102,'2026-07-09 12:37:53','/env?_=xfazj70f&v=ovmxt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.google.com/',404,'GET',NULL,'195.178.110.101'),(155103,'2026-07-09 12:37:55','/./.env?_=xdah4c7n&v=iqf6n','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'195.178.110.101'),(155104,'2026-07-09 12:37:59','/static/../.env?_=vxpyj0sj&v=igqb7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.101'),(155105,'2026-07-09 12:38:02','/storage/../.env?_=qahkqt4m&v=yjoz9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://duckduckgo.com/?q=je2yx',404,'GET',NULL,'195.178.110.101'),(155106,'2026-07-09 12:38:05','/api/.env?_=is830isd&v=fe548','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'195.178.110.101'),(155107,'2026-07-09 12:38:08','/public/../.env?_=8msc5of7&v=a4fy3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=oz2dg',404,'GET',NULL,'195.178.110.101'),(155108,'2026-07-09 12:38:11','/dev/.env?_=0ca815ui&v=k3sd0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'195.178.110.101'),(155109,'2026-07-09 12:38:14','/srv/.env?_=4fyuu573&v=0yl95','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.reddit.com/',404,'GET',NULL,'195.178.110.101'),(155110,'2026-07-09 12:38:16','/home/.env?_=mhh1e3kj&v=t5jx2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://duckduckgo.com/?q=nloyb',404,'GET',NULL,'195.178.110.101'),(155111,'2026-07-09 12:38:19','/var/.env?_=m4abxg9i&v=w42uc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'195.178.110.101'),(155112,'2026-07-09 12:38:22','/app/.env?_=b4oo5ij1&v=byk9i','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://duckduckgo.com/?q=wh6id',404,'GET',NULL,'195.178.110.101'),(155113,'2026-07-09 12:38:24','/tmp/.env?_=rc7zjusv&v=s5qcn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/ybajf2wjyd',404,'GET',NULL,'195.178.110.101'),(155114,'2026-07-09 12:38:27','/.env?_=dk4v3jhj&v=c3l5d&x=1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=jt6uv3',404,'GET',NULL,'195.178.110.101'),(155115,'2026-07-09 12:38:30','/.aws/credentials?_=mxjcn1o3&v=mt4vc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://t.co/q4cm0yctzh',404,'GET',NULL,'195.178.110.101'),(155116,'2026-07-09 12:38:33','/.aws/config?_=1zmxi9cw&v=xa7h7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/ypc8ohkmr1',404,'GET',NULL,'195.178.110.101'),(155117,'2026-07-09 12:38:38','/./.aws/credentials?_=1uf0xf5y&v=9lus6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.bing.com/search?q=n2k3fn',404,'GET',NULL,'195.178.110.101'),(155118,'2026-07-09 12:39:09','/wp-config.php/?_=075hehzp&v=ce4d4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=quxyny',404,'GET',NULL,'195.178.110.101'),(155119,'2026-07-09 15:55:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155120,'2026-07-09 17:44:04','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.76 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'35.237.216.110'),(155121,'2026-07-09 17:44:05','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edg/128.0.2790.25 Chrome/128.0.6540.22 Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'35.237.216.110'),(155122,'2026-07-09 17:44:05','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/blog/',404,'GET',NULL,'35.237.216.110'),(155123,'2026-07-09 17:44:06','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/backup/',404,'GET',NULL,'35.237.216.110'),(155124,'2026-07-09 17:44:07','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'35.237.216.110'),(155125,'2026-07-09 17:44:08','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/new/',404,'GET',NULL,'35.237.216.110'),(155126,'2026-07-09 19:47:05','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(155127,'2026-07-09 19:47:06','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(155128,'2026-07-09 19:47:07','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.187'),(155129,'2026-07-09 19:47:08','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.187'),(155130,'2026-07-09 19:57:42','/magento_version','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'107.166.15.153'),(155131,'2026-07-09 19:57:43','/RELEASE_NOTES.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'107.166.15.153'),(155132,'2026-07-09 20:10:30','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(155133,'2026-07-09 20:10:32','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(155134,'2026-07-09 21:33:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.177'),(155135,'2026-07-09 22:37:05','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(155136,'2026-07-09 22:37:06','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(155137,'2026-07-09 22:37:09','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(155138,'2026-07-09 22:37:09','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(155139,'2026-07-09 22:55:27','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'45.156.129.80'),(155140,'2026-07-09 22:55:28','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'45.156.129.80'),(155141,'2026-07-10 00:04:06','/admin.php1','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.48.255.163'),(155142,'2026-07-10 04:33:01','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155143,'2026-07-10 07:35:06','/.git/config','https://solsculpting.us7.cdn-alpha.com','SonyEricssonT68/R201A',NULL,404,'GET',NULL,'45.148.10.120'),(155144,'2026-07-10 09:06:53','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'82.39.212.238'),(155145,'2026-07-10 09:06:57','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_7_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Safari/605.1.15',NULL,404,'GET',NULL,'82.39.212.238'),(155146,'2026-07-10 09:07:01','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'82.39.212.238'),(155147,'2026-07-10 11:04:33','/backend/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155148,'2026-07-10 11:04:33','/*','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155149,'2026-07-10 11:04:33','/*/[id]','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155150,'2026-07-10 11:04:33','/.amplifyrc','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155151,'2026-07-10 11:04:33','//.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155152,'2026-07-10 11:04:33','/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155153,'2026-07-10 11:04:33','/.boto','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155154,'2026-07-10 11:04:33','/*update.cgi*','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155155,'2026-07-10 11:04:34','/.aws/config','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155156,'2026-07-10 11:04:34','/*/[slug]','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155157,'2026-07-10 11:04:34','//backend/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155158,'2026-07-10 11:04:34','//.aws/credentials','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155159,'2026-07-10 11:04:34','/..\\..\\..\\..\\..\\..\\var/log/apache2/access.log','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155160,'2026-07-10 11:04:34','/.git/config','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155161,'2026-07-10 11:04:34','/.cache','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155162,'2026-07-10 11:04:34','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155163,'2026-07-10 11:04:34','/.docker/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155164,'2026-07-10 11:04:35','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155165,'2026-07-10 11:04:35','/.docker/secrets.json','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155166,'2026-07-10 11:04:35','/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155167,'2026-07-10 11:04:35','/.dockerignore','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155168,'2026-07-10 11:04:35','/.docker/laravel/app/.env','https://solsculpting.us7.cdn-alpha.com','TLM-Audit-Scanner/1.0',NULL,404,'GET',NULL,'45.148.10.67'),(155169,'2026-07-10 16:35:56','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155170,'2026-07-10 16:35:56','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155171,'2026-07-10 16:35:57','//.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155172,'2026-07-10 16:35:59','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155173,'2026-07-10 16:36:00','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155174,'2026-07-10 16:36:02','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155175,'2026-07-10 16:36:03','/aws-ses.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(155176,'2026-07-10 16:36:04','/.stripe/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155177,'2026-07-10 16:36:05','/stripe/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155178,'2026-07-10 16:36:06','/.env.aws','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155179,'2026-07-10 16:36:07','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155180,'2026-07-10 16:36:08','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155181,'2026-07-10 16:36:09','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155182,'2026-07-10 16:36:10','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155183,'2026-07-10 16:36:11','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155184,'2026-07-10 16:36:12','/.env.tmp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155185,'2026-07-10 16:36:13','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155186,'2026-07-10 16:36:14','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155187,'2026-07-10 16:36:16','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'45.148.10.62'),(155188,'2026-07-10 16:36:17','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155189,'2026-07-10 16:36:18','/config.json.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155190,'2026-07-10 16:36:19','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155191,'2026-07-10 16:36:21','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155192,'2026-07-10 16:36:22','/config.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.148.10.62'),(155193,'2026-07-10 17:21:57','/templates/shaper_helix3/templateDetails.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,'91.224.92.19'),(155194,'2026-07-10 17:21:57','/templates/shaper_helix3/templateDetails.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,'91.224.92.19'),(155195,'2026-07-10 17:36:36','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Symbian/3; Series60/5.2 NokiaN8-00/014.002; Profile/MIDP-2.1 Configuration/CLDC-1.1; en-us) AppleWebKit/525 (KHTML, like Gecko) Version/3.0 BrowserNG/7.2.6.4 3gpp-gba',NULL,404,'GET',NULL,'154.54.100.177'),(155196,'2026-07-10 20:24:53','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; RMX2195) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.210 Mobile Safari/537.36 OPR/75.2.3995.72468','http://solsculpting.com/old/',404,'GET',NULL,'34.75.13.7'),(155197,'2026-07-10 20:24:55','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; TECNO CK6n) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.50 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.75.13.7'),(155198,'2026-07-10 20:24:56','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/wp/',404,'GET',NULL,'34.75.13.7'),(155199,'2026-07-10 20:24:57','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 10; en-US; CPH2015) AppleWebKit/537.36 (KHTML, like Gecko) UCBrowser/13.5.8.1311 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.75.13.7'),(155200,'2026-07-10 20:24:58','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; TECNO CK6n) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.50 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.75.13.7'),(155201,'2026-07-10 20:24:59','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.75.13.7'),(155202,'2026-07-10 20:57:26','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(155203,'2026-07-10 20:57:28','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(155204,'2026-07-10 20:57:28','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.167'),(155205,'2026-07-10 20:57:30','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.167'),(155206,'2026-07-10 21:40:43','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'57.129.124.27'),(155207,'2026-07-10 23:42:20','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155208,'2026-07-10 23:42:22','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155209,'2026-07-10 23:42:24','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155210,'2026-07-10 23:42:28','/img/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155211,'2026-07-10 23:42:32','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155212,'2026-07-10 23:42:44','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155213,'2026-07-10 23:42:46','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155214,'2026-07-10 23:42:48','/upload/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155215,'2026-07-10 23:42:50','/home/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155216,'2026-07-10 23:42:51','/files/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155217,'2026-07-10 23:43:01','/_wp-admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155218,'2026-07-10 23:43:03','/_wp-includes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155219,'2026-07-10 23:43:05','/_wp-content/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155220,'2026-07-10 23:43:09','/promo/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155221,'2026-07-10 23:43:11','/admin/controller/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155222,'2026-07-10 23:43:14','/sites/default/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155223,'2026-07-10 23:43:16','/sites/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155224,'2026-07-10 23:43:18','/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155225,'2026-07-10 23:43:20','/_inc/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155226,'2026-07-10 23:43:22','/stripe/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155227,'2026-07-10 23:43:25','/testing/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155228,'2026-07-10 23:43:27','/git/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155229,'2026-07-10 23:43:29','/teacher/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155230,'2026-07-10 23:43:31','/streamhub/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155231,'2026-07-10 23:43:33','/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155232,'2026-07-10 23:43:36','/gst_system/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155233,'2026-07-10 23:43:38','/ticket/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155234,'2026-07-10 23:43:40','/administrator/templates/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155235,'2026-07-10 23:43:42','/lab/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155236,'2026-07-10 23:43:44','/wszool/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155237,'2026-07-10 23:43:46','/stockapi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155238,'2026-07-10 23:43:48','/labs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155239,'2026-07-10 23:43:51','/www/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155240,'2026-07-10 23:43:53','/xipada/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155241,'2026-07-10 23:43:55','/live/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155242,'2026-07-10 23:43:57','/straighttalk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155243,'2026-07-10 23:43:59','/yiiold/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155244,'2026-07-10 23:44:01','/sonvuhong/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155245,'2026-07-10 23:44:03','/socios/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155246,'2026-07-10 23:44:05','/spartacus/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155247,'2026-07-10 23:44:07','/spd/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155248,'2026-07-10 23:44:08','/splurbAPI/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155249,'2026-07-10 23:44:10','/soporte/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155250,'2026-07-10 23:44:12','/soporte_18/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155251,'2026-07-10 23:44:15','/mantis/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155252,'2026-07-10 23:44:16','/snippets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155253,'2026-07-10 23:44:18','/mantisbt/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155254,'2026-07-10 23:44:20','/skinning-api/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155255,'2026-07-10 23:44:22','/marketing/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155256,'2026-07-10 23:44:25','/market_place/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155257,'2026-07-10 23:44:26','/Matrimony/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155258,'2026-07-10 23:44:29','/sitemaps/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155259,'2026-07-10 23:44:32','/skck_sidoarjo_code/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155260,'2026-07-10 23:44:34','/mbdlms/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155261,'2026-07-10 23:44:35','/med-decision/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155262,'2026-07-10 23:44:37','/gst/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155263,'2026-07-10 23:44:39','/messages/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155264,'2026-07-10 23:44:41','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155265,'2026-07-10 23:44:44','/helpdesk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155266,'2026-07-10 23:44:46','/hammad/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155267,'2026-07-10 23:44:48','/id/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155268,'2026-07-10 23:44:50','/mmdi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155269,'2026-07-10 23:44:52','/inf513/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155270,'2026-07-10 23:44:53','/Khvorost/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155271,'2026-07-10 23:44:56','/school/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155272,'2026-07-10 23:44:58','/html2pdf-master/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155273,'2026-07-10 23:45:00','/iscent/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155274,'2026-07-10 23:45:02','/khabir/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155275,'2026-07-10 23:45:03','/jistadx-x/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155276,'2026-07-10 23:45:06','/jenkins/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155277,'2026-07-10 23:45:08','/jobs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155278,'2026-07-10 23:45:10','/kemenhub/app','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155279,'2026-07-10 23:45:12','/kemenhub/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155280,'2026-07-10 23:45:14','/japanese_school_website/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155281,'2026-07-10 23:45:16','/jendelaku.new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155282,'2026-07-10 23:45:18','/ibfv1/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155283,'2026-07-10 23:45:20','/ih2/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155284,'2026-07-10 23:45:22','/geral/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155285,'2026-07-10 23:45:24','/ifrc-laravel/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155286,'2026-07-10 23:45:26','/html/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155287,'2026-07-10 23:45:28','/housingbook/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155288,'2026-07-10 23:45:30','/htaccess/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155289,'2026-07-10 23:45:33','/help/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155290,'2026-07-10 23:45:35','/game/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155291,'2026-07-10 23:45:37','/gdpr/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155292,'2026-07-10 23:45:39','/cron/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155293,'2026-07-10 23:45:41','/_staff/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155294,'2026-07-10 23:45:43','/~champiot/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155295,'2026-07-10 23:45:45','/tuto_laravel/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155296,'2026-07-10 23:45:47','/1board/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155297,'2026-07-10 23:45:49','/4walls/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155298,'2026-07-10 23:45:51','/6p6/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155299,'2026-07-10 23:45:53','/172410101040/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155300,'2026-07-10 23:45:55','/20170811125232/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155301,'2026-07-10 23:45:56','/admin/ckeditor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155302,'2026-07-10 23:45:58','/advanced/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155303,'2026-07-10 23:46:00','/advDesenvolvimento-1003/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155304,'2026-07-10 23:46:02','/proment/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155305,'2026-07-10 23:46:04','/psnlink/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155306,'2026-07-10 23:46:06','/afasio/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155307,'2026-07-10 23:46:08','/production/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155308,'2026-07-10 23:46:10','/agc_app/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155309,'2026-07-10 23:46:12','/albraj/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155310,'2026-07-10 23:46:14','/quotation/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155311,'2026-07-10 23:46:16','/all/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155312,'2026-07-10 23:46:18','/aliceapi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155313,'2026-07-10 23:46:20','/AlkatreszProject/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155314,'2026-07-10 23:46:22','/admin/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155315,'2026-07-10 23:46:24','/ads_qu_merge/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155316,'2026-07-10 23:46:25','/adv/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155317,'2026-07-10 23:46:28','/adv2/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155318,'2026-07-10 23:46:30','/adv3/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155319,'2026-07-10 23:46:32','/academy2019/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155320,'2026-07-10 23:46:34','/academy2020/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155321,'2026-07-10 23:46:36','/academy2021/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155322,'2026-07-10 23:46:38','/academy2022/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155323,'2026-07-10 23:46:40','/academy2023/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155324,'2026-07-10 23:46:43','/academy2024/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155325,'2026-07-10 23:46:45','/acellemail/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155326,'2026-07-10 23:46:47','/stripe-php/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155327,'2026-07-10 23:46:49','/lib/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155328,'2026-07-10 23:46:51','/symfony/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155329,'2026-07-10 23:46:53','/profiles/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155330,'2026-07-10 23:46:54','/img/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155331,'2026-07-10 23:46:56','/includes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155332,'2026-07-10 23:47:00','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155333,'2026-07-10 23:47:02','/UserFiles/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155334,'2026-07-10 23:47:04','/js_dash/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155335,'2026-07-10 23:47:07','/usersfiles/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155336,'2026-07-10 23:47:10','/server/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155337,'2026-07-10 23:47:11','/jscript/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155338,'2026-07-10 23:47:14','/files/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155339,'2026-07-10 23:47:16','/__static/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155340,'2026-07-10 23:47:18','/builder/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155341,'2026-07-10 23:47:19','/criteria/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155342,'2026-07-10 23:47:23','/include/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155343,'2026-07-10 23:47:25','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155344,'2026-07-10 23:47:27','/medias/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155345,'2026-07-10 23:47:30','/download/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155346,'2026-07-10 23:47:32','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155347,'2026-07-10 23:47:34','/admin/modules/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155348,'2026-07-10 23:47:36','/bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155349,'2026-07-10 23:47:38','/upload/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155350,'2026-07-10 23:47:40','/cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155351,'2026-07-10 23:47:42','/tmp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155352,'2026-07-10 23:47:43','/file/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155353,'2026-07-10 23:47:46','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155354,'2026-07-10 23:47:48','/file_uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155355,'2026-07-10 23:47:50','/file_upload/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155356,'2026-07-10 23:47:52','/common/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155357,'2026-07-10 23:47:54','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155358,'2026-07-10 23:47:55','/ALFA_DATA/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155359,'2026-07-10 23:47:57','/filedokumen/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155360,'2026-07-10 23:47:59','/dokumen/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155361,'2026-07-10 23:48:01','/.well-knownold/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155362,'2026-07-10 23:48:03','/upload/image/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155363,'2026-07-10 23:48:05','/cgialfa/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155364,'2026-07-10 23:48:07','/image/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155365,'2026-07-10 23:48:09','/alfacgiapi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155366,'2026-07-10 23:48:11','/imgs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155367,'2026-07-10 23:48:13','/catalog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155368,'2026-07-10 23:48:16','/Public/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155369,'2026-07-10 23:48:18','/notweb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155370,'2026-07-10 23:48:20','/newsite/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155371,'2026-07-10 23:48:22','/npteOld/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155372,'2026-07-10 23:48:24','/nvagencies/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155373,'2026-07-10 23:48:26','/passtastic/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155374,'2026-07-10 23:48:28','/panel/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155375,'2026-07-10 23:48:31','/oauth/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155376,'2026-07-10 23:48:33','/newsop/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155377,'2026-07-10 23:48:35','/local/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155378,'2026-07-10 23:48:37','/Site/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155379,'2026-07-10 23:48:39','/system/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155380,'2026-07-10 23:48:41','/myfiles/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155381,'2026-07-10 23:48:43','/my/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155382,'2026-07-10 23:48:45','/shop/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155383,'2026-07-10 23:48:47','/web/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155384,'2026-07-10 23:48:50','/notes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155385,'2026-07-10 23:48:52','/question/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155386,'2026-07-10 23:48:53','/rating/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155387,'2026-07-10 23:48:56','/e-kinerja/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155388,'2026-07-10 23:48:58','/pix/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155389,'2026-07-10 23:49:00','/plagiarism/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155390,'2026-07-10 23:49:02','/templates/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155391,'2026-07-10 23:49:03','/cfind/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155392,'2026-07-10 23:49:05','/portfolio/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155393,'2026-07-10 23:49:07','/up/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155394,'2026-07-10 23:49:09','/phpmailer/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155395,'2026-07-10 23:49:11','/pid/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155396,'2026-07-10 23:49:13','/portal/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155397,'2026-07-10 23:49:15','/portalmejora/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155398,'2026-07-10 23:49:17','/pkm/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155399,'2026-07-10 23:49:19','/phpexcel/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155400,'2026-07-10 23:49:21','/admin/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155401,'2026-07-10 23:49:23','/platform/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155402,'2026-07-10 23:49:26','/privacy/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155403,'2026-07-10 23:49:28','/payment/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155404,'2026-07-10 23:49:30','/main/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155405,'2026-07-10 23:49:33','/pms/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155406,'2026-07-10 23:49:34','/plugins/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155407,'2026-07-10 23:49:37','/admin/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155408,'2026-07-10 23:49:38','/admin/upload/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155409,'2026-07-10 23:49:40','/mtosapp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155410,'2026-07-10 23:49:43','/log-mama/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155411,'2026-07-10 23:49:45','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155412,'2026-07-10 23:49:46','/ALFA_DATA/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155413,'2026-07-10 23:49:48','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155414,'2026-07-10 23:49:50','/modules/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155415,'2026-07-10 23:49:52','/admin/fckeditor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155416,'2026-07-10 23:49:54','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155417,'2026-07-10 23:49:57','/optimized/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155418,'2026-07-10 23:49:59','/invoice/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155419,'2026-07-10 23:50:01','/prive/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155420,'2026-07-10 23:50:03','/video/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155421,'2026-07-10 23:50:05','/private/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155422,'2026-07-10 23:50:07','/admin/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155423,'2026-07-10 23:50:09','/php/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155424,'2026-07-10 23:50:11','/assets2/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155425,'2026-07-10 23:50:13','/nc_assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155426,'2026-07-10 23:50:15','/news/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155427,'2026-07-10 23:50:17','/perangkat/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155428,'2026-07-10 23:50:19','/alumni/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155429,'2026-07-10 23:50:21','/aps/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155430,'2026-07-10 23:50:23','/perpustakaan/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155431,'2026-07-10 23:50:25','/debian/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155432,'2026-07-10 23:50:27','/public/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155433,'2026-07-10 23:50:29','/asset/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155434,'2026-07-10 23:50:31','/pdf/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155435,'2026-07-10 23:50:34','/ovisuper/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155436,'2026-07-10 23:50:35','/opensid/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155437,'2026-07-10 23:50:37','/brosur/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155438,'2026-07-10 23:50:39','/laporan/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155439,'2026-07-10 23:50:41','/journals/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155440,'2026-07-10 23:50:43','/journal/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155441,'2026-07-10 23:50:45','/pengumuman/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155442,'2026-07-10 23:50:47','/perdata/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155443,'2026-07-10 23:50:49','/module/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155444,'2026-07-10 23:50:51','/home/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155445,'2026-07-10 23:50:53','/jdih/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155446,'2026-07-10 23:50:55','/documenter/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155447,'2026-07-10 23:50:57','/jurnal/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155448,'2026-07-10 23:50:59','/jurnal/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155449,'2026-07-10 23:51:01','/crm/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155450,'2026-07-10 23:51:03','/csbank/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155451,'2026-07-10 23:51:05','/Moderna/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155452,'2026-07-10 23:51:07','/curso-styde/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155453,'2026-07-10 23:51:09','/ctevt/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155454,'2026-07-10 23:51:11','/cronlab/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155455,'2026-07-10 23:51:13','/core/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155456,'2026-07-10 23:51:15','/content-upload/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155457,'2026-07-10 23:51:17','/app/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155458,'2026-07-10 23:51:19','/mydoc/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155459,'2026-07-10 23:51:21','/bootstrap/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155460,'2026-07-10 23:51:23','/foto_galeri/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155461,'2026-07-10 23:51:25','/ckfinder/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155462,'2026-07-10 23:51:27','/ckeditor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155463,'2026-07-10 23:51:29','/resources/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155464,'2026-07-10 23:51:31','/highslide/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155465,'2026-07-10 23:51:34','/storage/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155466,'2026-07-10 23:51:36','/routes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155467,'2026-07-10 23:51:37','/themes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155468,'2026-07-10 23:51:39','/fckimage/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155469,'2026-07-10 23:51:41','/cdn-cgi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155470,'2026-07-10 23:51:43','/ocs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155471,'2026-07-10 23:51:45','/fonts/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155472,'2026-07-10 23:51:47','/read/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155473,'2026-07-10 23:51:49','/Guru/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155474,'2026-07-10 23:51:52','/views/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155475,'2026-07-10 23:51:54','/Murid/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155476,'2026-07-10 23:51:56','/font/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155477,'2026-07-10 23:51:58','/examples/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155478,'2026-07-10 23:52:00','/Modules/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155479,'2026-07-10 23:52:02','/style/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155480,'2026-07-10 23:52:03','/dev-test/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155481,'2026-07-10 23:52:05','/styles/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155482,'2026-07-10 23:52:07','/js/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155483,'2026-07-10 23:52:10','/media/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155484,'2026-07-10 23:52:12','/Connections/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155485,'2026-07-10 23:52:14','/libraries/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155486,'2026-07-10 23:52:15','/fpdf/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155487,'2026-07-10 23:52:17','/file_lama/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155488,'2026-07-10 23:52:19','/pubs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155489,'2026-07-10 23:52:21','/Code/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155490,'2026-07-10 23:52:23','/belajar/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155491,'2026-07-10 23:52:25','/compareip/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155492,'2026-07-10 23:52:28','/concrete/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155493,'2026-07-10 23:52:31','/cms/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155494,'2026-07-10 23:52:33','/consulation/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155495,'2026-07-10 23:52:35','/cmscontrib/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155496,'2026-07-10 23:52:37','/cmsranking/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155497,'2026-07-10 23:52:39','/demos/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155498,'2026-07-10 23:52:41','/framework/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155499,'2026-07-10 23:52:43','/futbol_sys/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155500,'2026-07-10 23:52:45','/esurat/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155501,'2026-07-10 23:52:47','/freelandadm/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155502,'2026-07-10 23:52:49','/ferramentas/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155503,'2026-07-10 23:52:51','/fashion_club/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155504,'2026-07-10 23:52:53','/fcma/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155505,'2026-07-10 23:52:55','/datagen/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155506,'2026-07-10 23:52:57','/entmain/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155507,'2026-07-10 23:52:59','/facturacion/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155508,'2026-07-10 23:53:01','/experts-api/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155509,'2026-07-10 23:53:03','/exapi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155510,'2026-07-10 23:53:05','/enventa/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155511,'2026-07-10 23:53:07','/epayco-php/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155512,'2026-07-10 23:53:09','/epayco/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155513,'2026-07-10 23:53:11','/epos/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155514,'2026-07-10 23:53:13','/espanadigital/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155515,'2026-07-10 23:53:14','/denuncias/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155516,'2026-07-10 23:53:17','/drupal/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155517,'2026-07-10 23:53:19','/e_detector/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155518,'2026-07-10 23:53:21','/ec/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155519,'2026-07-10 23:53:23','/emrDataGenerator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155520,'2026-07-10 23:53:25','/ecc/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155521,'2026-07-10 23:53:27','/deportes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155522,'2026-07-10 23:53:29','/elections/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155523,'2026-07-10 23:53:30','/dev_grupo_total/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155524,'2026-07-10 23:53:33','/develop/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155525,'2026-07-10 23:53:35','/dev_zarrel/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155526,'2026-07-10 23:53:38','/cmstaskenv/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155527,'2026-07-10 23:53:40','/config/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155528,'2026-07-10 23:53:42','/database/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155529,'2026-07-10 23:53:44','/composer-master/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155530,'2026-07-10 23:53:46','/userfiles/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155531,'2026-07-10 23:53:48','/apps/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155532,'2026-07-10 23:53:50','/absen/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155533,'2026-07-10 23:53:52','/ebook/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155534,'2026-07-10 23:53:54','/elfinder/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155535,'2026-07-10 23:53:57','/db/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155536,'2026-07-10 23:53:59','/kumpulan_api/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155537,'2026-07-10 23:54:02','/filemanager/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155538,'2026-07-10 23:54:05','/kcfinder/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155539,'2026-07-10 23:54:08','/descarga/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155540,'2026-07-10 23:54:10','/gambar/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155541,'2026-07-10 23:54:12','/.quarantine/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155542,'2026-07-10 23:54:14','/shopify/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155543,'2026-07-10 23:54:16','/avastar/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155544,'2026-07-10 23:54:18','/catalogo/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155545,'2026-07-10 23:54:21','/php/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155546,'2026-07-10 23:54:24','/foto/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155547,'2026-07-10 23:54:26','/etc/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155548,'2026-07-10 23:54:29','/aset/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155549,'2026-07-10 23:54:31','/application/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155550,'2026-07-10 23:54:33','/user_guide/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155551,'2026-07-10 23:54:36','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155552,'2026-07-10 23:54:39','/docs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155553,'2026-07-10 23:54:41','/pages/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155554,'2026-07-10 23:54:44','/keluarga/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155555,'2026-07-10 23:54:46','/aplikasi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155556,'2026-07-10 23:54:49','/index_files/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155557,'2026-07-10 23:54:51','/staff/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155558,'2026-07-10 23:54:53','/scripts/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155559,'2026-07-10 23:54:56','/script/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155560,'2026-07-10 23:54:59','/css/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155561,'2026-07-10 23:55:01','/node_modules/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155562,'2026-07-10 23:55:03','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155563,'2026-07-10 23:55:06','/uploadfile/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155564,'2026-07-10 23:55:08','/slider/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155565,'2026-07-10 23:55:10','/documents/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155566,'2026-07-10 23:55:12','/main_file/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155567,'2026-07-10 23:55:15','/settings/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155568,'2026-07-10 23:55:17','/admin/img/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155569,'2026-07-10 23:55:20','/dashboard/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155570,'2026-07-10 23:55:24','/layouts/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155571,'2026-07-10 23:55:26','/adminweb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155572,'2026-07-10 23:55:28','/dist/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155573,'2026-07-10 23:55:30','/Winrar/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155574,'2026-07-10 23:55:33','/pas/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155575,'2026-07-10 23:55:36','/2017/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155576,'2026-07-10 23:55:38','/2018/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155577,'2026-07-10 23:55:40','/2019/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155578,'2026-07-10 23:55:43','/2020/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155579,'2026-07-10 23:55:44','/2021/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155580,'2026-07-10 23:55:47','/2022/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155581,'2026-07-10 23:55:51','/2024/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155582,'2026-07-10 23:55:53','/2025/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155583,'2026-07-10 23:55:55','/logo/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155584,'2026-07-10 23:55:57','/ppdb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155585,'2026-07-10 23:55:59','/services/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155586,'2026-07-10 23:56:00','/basil/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155587,'2026-07-10 23:56:03','/brand/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155588,'2026-07-10 23:56:04','/csr/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155589,'2026-07-10 23:56:06','/media_library/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155590,'2026-07-10 23:56:09','/favicon/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155591,'2026-07-10 23:56:11','/footer/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155592,'2026-07-10 23:56:13','/filter/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155593,'2026-07-10 23:56:15','/pattern/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155594,'2026-07-10 23:56:17','/grade/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155595,'2026-07-10 23:56:19','/home-pages/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155596,'2026-07-10 23:56:20','/projects/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155597,'2026-07-10 23:56:22','/sidebar/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155598,'2026-07-10 23:56:24','/slides/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155599,'2026-07-10 23:56:26','/favourites/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155600,'2026-07-10 23:56:31','/bank/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155601,'2026-07-10 23:56:34','/batin24/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155602,'2026-07-10 23:56:37','/beatricce/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155603,'2026-07-10 23:56:39','/buddha/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155604,'2026-07-10 23:56:42','/byroernne/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155605,'2026-07-10 23:56:44','/clinicasoftware/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155606,'2026-07-10 23:56:46','/casadosvidros/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155607,'2026-07-10 23:56:48','/careers/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155608,'2026-07-10 23:56:50','/campuslag/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155609,'2026-07-10 23:56:53','/bowenpayments/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155610,'2026-07-10 23:56:55','/client_billing/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155611,'2026-07-10 23:56:58','/dists/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155612,'2026-07-10 23:57:00','/bugtracker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155613,'2026-07-10 23:57:02','/error/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155614,'2026-07-10 23:57:05','/bots/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155615,'2026-07-10 23:57:08','/enrol/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155616,'2026-07-10 23:57:11','/contentbank/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155617,'2026-07-10 23:57:16','/customfield/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155618,'2026-07-10 23:57:18','/dataformat/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155619,'2026-07-10 23:57:20','/course/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155620,'2026-07-10 23:57:22','/badges/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155621,'2026-07-10 23:57:24','/sbp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155622,'2026-07-10 23:57:26','/competency/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155623,'2026-07-10 23:57:28','/sandbox/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155624,'2026-07-10 23:57:30','/scholarship/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155625,'2026-07-10 23:57:33','/myAdmin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155626,'2026-07-10 23:57:34','/saml/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155627,'2026-07-10 23:57:36','/data/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155628,'2026-07-10 23:57:38','/extlib/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155629,'2026-07-10 23:57:40','/simplesamlphp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155630,'2026-07-10 23:57:43','/completion/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155631,'2026-07-10 23:57:44','/raphaelfonseca/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155632,'2026-07-10 23:57:46','/comment/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155633,'2026-07-10 23:57:49','/calendar/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155634,'2026-07-10 23:57:51','/order/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155635,'2026-07-10 23:57:53','/sirim/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155636,'2026-07-10 23:57:55','/cohort/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155637,'2026-07-10 23:57:57','/sistema/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155638,'2026-07-10 23:57:59','/siswas/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155639,'2026-07-10 23:58:01','/install/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155640,'2026-07-10 23:58:03','/atasem/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155641,'2026-07-10 23:58:05','/blocks/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155642,'2026-07-10 23:58:07','/lang/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155643,'2026-07-10 23:58:09','/auth/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155644,'2026-07-10 23:58:11','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155645,'2026-07-10 23:58:13','/availability/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155646,'2026-07-10 23:58:15','/css_dash/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155647,'2026-07-10 23:58:17','/group/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155648,'2026-07-10 23:58:19','/h5p/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155649,'2026-07-10 23:58:20','/message/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155650,'2026-07-10 23:58:22','/mod/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155651,'2026-07-10 23:58:24','/mnet/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155652,'2026-07-10 23:58:26','/report/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155653,'2026-07-10 23:58:28','/reportbuilder/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155654,'2026-07-10 23:58:30','/backend/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155655,'2026-07-10 23:58:32','/back/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155656,'2026-07-10 23:58:35','/repository/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155657,'2026-07-10 23:58:39','/search/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155658,'2026-07-10 23:58:41','/tag/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155659,'2026-07-10 23:58:43','/_errorpages/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155660,'2026-07-10 23:58:45','/gallery/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155661,'2026-07-10 23:58:47','/parent/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155662,'2026-07-10 23:58:49','/upload-calender/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155663,'2026-07-10 23:58:51','/upload-datesheet/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155664,'2026-07-10 23:58:53','/upload-gallery/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155665,'2026-07-10 23:58:55','/upload-helpdesk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155666,'2026-07-10 23:58:57','/upload-homework/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155667,'2026-07-10 23:58:59','/upload-result/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155668,'2026-07-10 23:59:01','/upload_about/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155669,'2026-07-10 23:59:03','/upload_files/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155670,'2026-07-10 23:59:05','/upload_slider/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155671,'2026-07-10 23:59:07','/uploadacademic/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155672,'2026-07-10 23:59:09','/uploadactivities/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155673,'2026-07-10 23:59:11','/uploaddocumentrequired/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155674,'2026-07-10 23:59:12','/uploadfacilities/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155675,'2026-07-10 23:59:14','/uploadfaculty/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155676,'2026-07-10 23:59:16','/uploadfeestructure/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155677,'2026-07-10 23:59:18','/uploadnotice/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155678,'2026-07-10 23:59:21','/uploadpdf/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155679,'2026-07-10 23:59:23','/ppid/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155680,'2026-07-10 23:59:25','/uploadvideo/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155681,'2026-07-10 23:59:27','/uploadvideothumbnail/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155682,'2026-07-10 23:59:29','/content/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155683,'2026-07-10 23:59:32','/composer/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155684,'2026-07-10 23:59:34','/pos/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155685,'2026-07-10 23:59:36','/menu/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155686,'2026-07-10 23:59:38','/release/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155687,'2026-07-10 23:59:40','/reports/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155688,'2026-07-10 23:59:42','/en/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155689,'2026-07-10 23:59:45','/wp-2019/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155690,'2026-07-10 23:59:46','/revisao/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155691,'2026-07-10 23:59:48','/runtime/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155692,'2026-07-10 23:59:50','/saas/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155693,'2026-07-10 23:59:52','/sacv/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155694,'2026-07-10 23:59:54','/sai/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155695,'2026-07-10 23:59:56','/royalerumble/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155696,'2026-07-10 23:59:58','/runapi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155697,'2026-07-11 00:00:00','/registration/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155698,'2026-07-11 00:00:03','/wp-2020/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155699,'2026-07-11 00:00:05','/wp-2021/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155700,'2026-07-11 00:00:07','/firebase/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155701,'2026-07-11 00:00:09','/webservice/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155702,'2026-07-11 00:00:11','/api_source/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155703,'2026-07-11 00:00:13','/wp-2022/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155704,'2026-07-11 00:00:15','/wp-2023/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155705,'2026-07-11 00:00:17','/AboutUs/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155706,'2026-07-11 00:00:19','/api_muvin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155707,'2026-07-11 00:00:21','/register/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155708,'2026-07-11 00:00:23','/music/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155709,'2026-07-11 00:00:25','/api1/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155710,'2026-07-11 00:00:27','/api2/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155711,'2026-07-11 00:00:29','/apimotor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155712,'2026-07-11 00:00:32','/secure/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155713,'2026-07-11 00:00:34','/api3/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155714,'2026-07-11 00:00:36','/api4/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155715,'2026-07-11 00:00:38','/api5/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155716,'2026-07-11 00:00:40','/library_web/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155717,'2026-07-11 00:00:42','/b2b/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155718,'2026-07-11 00:00:44','/b2bapi/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155719,'2026-07-11 00:00:47','/b2c/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155720,'2026-07-11 00:00:48','/alquimialaravel/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155721,'2026-07-11 00:00:50','/spotbills/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155722,'2026-07-11 00:00:52','/alpha/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155723,'2026-07-11 00:00:54','/alpha.u2start.com/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155724,'2026-07-11 00:00:56','/apitotsurvey/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155725,'2026-07-11 00:00:58','/autoupgrade/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155726,'2026-07-11 00:01:00','/authenticate/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155727,'2026-07-11 00:01:02','/as/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155728,'2026-07-11 00:01:04','/index/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155729,'2026-07-11 00:01:06','/mah/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'172.236.148.240'),(155730,'2026-07-11 01:18:04','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'216.126.237.248'),(155731,'2026-07-11 05:50:46','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.64'),(155732,'2026-07-11 05:50:47','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.64'),(155733,'2026-07-11 05:50:48','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.64'),(155734,'2026-07-11 05:50:49','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.64'),(155735,'2026-07-11 14:49:51','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(155736,'2026-07-11 14:49:52','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(155737,'2026-07-11 14:49:54','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(155738,'2026-07-11 14:49:55','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(155739,'2026-07-11 16:20:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.188'),(155740,'2026-07-11 17:42:15','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.112'),(155741,'2026-07-11 17:42:17','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.112'),(155742,'2026-07-11 17:42:18','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.112'),(155743,'2026-07-11 17:42:18','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.112'),(155744,'2026-07-12 02:40:33','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.183'),(155745,'2026-07-12 03:34:38','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(155746,'2026-07-12 03:34:41','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(155747,'2026-07-12 03:34:48','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(155748,'2026-07-12 03:34:51','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(155749,'2026-07-12 07:37:31','/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.28.251.193'),(155750,'2026-07-12 07:37:31','/serviceAccountKey.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.28.251.193'),(155751,'2026-07-12 07:37:33','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.28.251.193'),(155752,'2026-07-12 07:37:33','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.28.251.193'),(155753,'2026-07-12 07:37:34','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'104.28.251.193'),(155754,'2026-07-12 08:55:34','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(155755,'2026-07-12 08:55:35','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(155756,'2026-07-12 08:55:36','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'46.151.182.58'),(155757,'2026-07-12 08:55:37','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'46.151.182.58'),(155758,'2026-07-12 09:17:41','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GitFinder/1.0)',NULL,404,'GET',NULL,'185.93.89.147'),(155759,'2026-07-12 09:17:42','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GitFinder/1.0)','http://solsculpting.com/.git/config',404,'GET',NULL,'185.93.89.147'),(155760,'2026-07-12 10:17:29','/6999DJjf?utm_creative=1&utm_campaign=KNUR&utm_source=escobar&utm_placement=Instagram_Feed&campaign_id=120243826115170417&adset_id=120243826115180417&ad_id=120243826115160417&adset_name=VALERA&p=3452341611582961&int={int}&lock=1lb56&bid=18&utm_medium=paid&utm_id=120243826115170417&utm_content=120243826115160417&utm_term=120243826115180417&fbclid=PAYm9jbAR6dwFleHRuA2FlbQEwAGFkaWQBqzEfzpwLsXNydGMGYXBwX2lkDzEyNDAyNDU3NDI4NzQxNAABp71syldLxZX6UqiEyCbHpsccNeVUgbfR7rpe2KQ_i--phhwRhlKyFGQYHbC6_aem_Us0lwYhZZRxevDS-0L6P1A','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'178.121.49.196'),(155761,'2026-07-12 10:54:54','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155762,'2026-07-12 10:54:56','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155763,'2026-07-12 10:54:57','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155764,'2026-07-12 10:54:58','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155765,'2026-07-12 10:54:59','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155766,'2026-07-12 10:55:00','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155767,'2026-07-12 10:55:01','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155768,'2026-07-12 10:55:02','/.env.remote','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155769,'2026-07-12 10:55:03','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155770,'2026-07-12 10:55:04','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155771,'2026-07-12 10:55:05','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155772,'2026-07-12 10:55:07','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155773,'2026-07-12 10:55:08','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155774,'2026-07-12 10:55:09','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155775,'2026-07-12 10:55:10','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155776,'2026-07-12 10:55:11','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155777,'2026-07-12 10:55:12','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155778,'2026-07-12 10:55:13','/.env.ci','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155779,'2026-07-12 10:55:14','/.env.docker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155780,'2026-07-12 10:55:15','/.env.live','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155781,'2026-07-12 10:55:16','/.env.preprod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155782,'2026-07-12 10:55:17','/.env.uat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155783,'2026-07-12 10:55:17','/.env.dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155784,'2026-07-12 10:55:18','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155785,'2026-07-12 10:55:19','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155786,'2026-07-12 10:55:20','/.env1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155787,'2026-07-12 10:55:21','/.env2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155788,'2026-07-12 10:55:22','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155789,'2026-07-12 10:55:23','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155790,'2026-07-12 10:55:24','/.env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155791,'2026-07-12 10:55:25','/.env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155792,'2026-07-12 10:55:26','/.env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155793,'2026-07-12 10:55:27','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155794,'2026-07-12 10:55:28','/apps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155795,'2026-07-12 10:55:29','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155796,'2026-07-12 10:55:29','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155797,'2026-07-12 10:55:30','/site/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155798,'2026-07-12 10:55:31','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155799,'2026-07-12 10:55:32','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155800,'2026-07-12 10:55:33','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155801,'2026-07-12 10:55:34','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155802,'2026-07-12 10:55:35','/frontend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155803,'2026-07-12 10:55:36','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155804,'2026-07-12 10:55:37','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155805,'2026-07-12 10:55:37','/core/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155806,'2026-07-12 10:55:38','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155807,'2026-07-12 10:55:39','/private/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155808,'2026-07-12 10:55:40','/application/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155809,'2026-07-12 10:55:41','/bootstrap/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155810,'2026-07-12 10:55:42','/database/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155811,'2026-07-12 10:55:43','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155812,'2026-07-12 10:55:44','/var/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155813,'2026-07-12 10:55:45','/var/www/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155814,'2026-07-12 10:55:46','/current/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155815,'2026-07-12 10:55:46','/release/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155816,'2026-07-12 10:55:47','/releases/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155817,'2026-07-12 10:55:48','/shared/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155818,'2026-07-12 10:55:49','/deploy/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155819,'2026-07-12 10:55:50','/build/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155820,'2026-07-12 10:55:52','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155821,'2026-07-12 10:55:52','/public_html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155822,'2026-07-12 10:55:53','/htdocs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155823,'2026-07-12 10:55:54','/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155824,'2026-07-12 10:55:55','/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155825,'2026-07-12 10:55:56','/live/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155826,'2026-07-12 10:55:57','/prod/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155827,'2026-07-12 10:55:58','/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155828,'2026-07-12 10:55:59','/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155829,'2026-07-12 10:56:00','/opt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155830,'2026-07-12 10:56:01','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155831,'2026-07-12 10:56:02','/symfony/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155832,'2026-07-12 10:56:03','/wordpress/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155833,'2026-07-12 10:56:03','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155834,'2026-07-12 10:56:05','/cms/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155835,'2026-07-12 10:56:05','/drupal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155836,'2026-07-12 10:56:06','/joomla/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155837,'2026-07-12 10:56:07','/magento/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155838,'2026-07-12 10:56:08','/shopify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155839,'2026-07-12 10:56:09','/prestashop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155840,'2026-07-12 10:56:10','/codeigniter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155841,'2026-07-12 10:56:11','/cakephp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155842,'2026-07-12 10:56:12','/zend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155843,'2026-07-12 10:56:13','/yii/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155844,'2026-07-12 10:56:14','/laravel5/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155845,'2026-07-12 10:56:15','/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155846,'2026-07-12 10:56:16','/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155847,'2026-07-12 10:56:17','/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155848,'2026-07-12 10:56:17','/api/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155849,'2026-07-12 10:56:18','/api/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155850,'2026-07-12 10:56:19','/rest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155851,'2026-07-12 10:56:20','/graphql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155852,'2026-07-12 10:56:21','/gateway/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155853,'2026-07-12 10:56:22','/microservice/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155854,'2026-07-12 10:56:23','/service/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155855,'2026-07-12 10:56:24','/api/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155856,'2026-07-12 10:56:25','/api/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155857,'2026-07-12 10:56:26','/api/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155858,'2026-07-12 10:56:27','/vendor/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155859,'2026-07-12 10:56:27','/lib/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155860,'2026-07-12 10:56:28','/resources/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155861,'2026-07-12 10:56:29','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155862,'2026-07-12 10:56:30','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155863,'2026-07-12 10:56:31','/internal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155864,'2026-07-12 10:56:32','/tools/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155865,'2026-07-12 10:56:33','/scripts/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155866,'2026-07-12 10:56:34','/bin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155867,'2026-07-12 10:56:35','/sbin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155868,'2026-07-12 10:56:36','/local/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155869,'2026-07-12 10:56:37','/portal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155870,'2026-07-12 10:56:38','/dashboard/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155871,'2026-07-12 10:56:39','/panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155872,'2026-07-12 10:56:40','/crm/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155873,'2026-07-12 10:56:40','/erp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155874,'2026-07-12 10:56:41','/shop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155875,'2026-07-12 10:56:42','/store/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155876,'2026-07-12 10:56:43','/saas/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155877,'2026-07-12 10:56:44','/client/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155878,'2026-07-12 10:56:45','/project/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155879,'2026-07-12 10:56:46','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155880,'2026-07-12 10:56:47','/control-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155881,'2026-07-12 10:56:48','/user-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155882,'2026-07-12 10:56:49','/node/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155883,'2026-07-12 10:56:50','/express/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155884,'2026-07-12 10:56:51','/next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155885,'2026-07-12 10:56:52','/nuxt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155886,'2026-07-12 10:56:53','/nest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155887,'2026-07-12 10:56:54','/react/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155888,'2026-07-12 10:56:55','/vue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155889,'2026-07-12 10:56:56','/angular/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155890,'2026-07-12 10:56:57','/svelte/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155891,'2026-07-12 10:56:57','/vite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155892,'2026-07-12 10:56:58','/backup/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155893,'2026-07-12 10:56:59','/backups/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155894,'2026-07-12 10:57:00','/old/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155895,'2026-07-12 10:57:01','/tmp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155896,'2026-07-12 10:57:02','/temp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155897,'2026-07-12 10:57:03','/lab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155898,'2026-07-12 10:57:04','/cronlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155899,'2026-07-12 10:57:05','/cron/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155900,'2026-07-12 10:57:06','/en/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155901,'2026-07-12 10:57:06','/administrator/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155902,'2026-07-12 10:57:07','/psnlink/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155903,'2026-07-12 10:57:09','/exapi/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155904,'2026-07-12 10:57:09','/sitemaps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155905,'2026-07-12 10:57:10','/.env.backup1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155906,'2026-07-12 10:57:11','/.env.backup2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155907,'2026-07-12 10:57:12','/logs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155908,'2026-07-12 10:57:13','/cache/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155909,'2026-07-12 10:57:14','/mailer/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155910,'2026-07-12 10:57:15','/mail/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155911,'2026-07-12 10:57:16','/email/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155912,'2026-07-12 10:57:17','/smtp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155913,'2026-07-12 10:57:17','/mailing/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155914,'2026-07-12 10:57:18','/notifications/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155915,'2026-07-12 10:57:19','/notify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155916,'2026-07-12 10:57:20','/sender/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155917,'2026-07-12 10:57:21','/campaign/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155918,'2026-07-12 10:57:22','/newsletter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155919,'2026-07-12 10:57:23','/ses/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155920,'2026-07-12 10:57:24','/sendgrid/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155921,'2026-07-12 10:57:24','/sparkpost/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155922,'2026-07-12 10:57:25','/postmark/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155923,'2026-07-12 10:57:26','/mailgun/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155924,'2026-07-12 10:57:27','/mandrill/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155925,'2026-07-12 10:57:28','/mailjet/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155926,'2026-07-12 10:57:29','/brevo/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155927,'2026-07-12 10:57:30','/transactional/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155928,'2026-07-12 10:57:31','/bulk/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155929,'2026-07-12 10:57:32','/aws/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155930,'2026-07-12 10:57:33','/azure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155931,'2026-07-12 10:57:34','/gcp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155932,'2026-07-12 10:57:35','/cloud/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155933,'2026-07-12 10:57:36','/infrastructure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155934,'2026-07-12 10:57:37','/docker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155935,'2026-07-12 10:57:38','/k8s/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155936,'2026-07-12 10:57:39','/kubernetes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155937,'2026-07-12 10:57:40','/terraform/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155938,'2026-07-12 10:57:40','/ansible/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155939,'2026-07-12 10:57:41','/.git/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155940,'2026-07-12 10:57:42','/ci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155941,'2026-07-12 10:57:43','/cd/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155942,'2026-07-12 10:57:44','/jenkins/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155943,'2026-07-12 10:57:45','/gitlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155944,'2026-07-12 10:57:46','/github/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155945,'2026-07-12 10:57:47','/actions/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155946,'2026-07-12 10:57:48','/circleci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155947,'2026-07-12 10:57:49','/travis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155948,'2026-07-12 10:57:49','/buildkite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155949,'2026-07-12 10:57:50','/mysql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155950,'2026-07-12 10:57:51','/postgres/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155951,'2026-07-12 10:57:53','/mongodb/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155952,'2026-07-12 10:57:54','/redis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155953,'2026-07-12 10:57:55','/elasticsearch/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155954,'2026-07-12 10:57:56','/rabbitmq/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155955,'2026-07-12 10:57:57','/kafka/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155956,'2026-07-12 10:57:58','/queue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155957,'2026-07-12 10:57:59','/worker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155958,'2026-07-12 10:58:00','/job/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155959,'2026-07-12 10:58:00','/test/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155960,'2026-07-12 10:58:01','/qa/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155961,'2026-07-12 10:58:02','/preview/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155962,'2026-07-12 10:58:03','/beta/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155963,'2026-07-12 10:58:04','/uat/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155964,'2026-07-12 10:58:05','/stage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155965,'2026-07-12 10:58:06','/development/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155966,'2026-07-12 10:58:07','/production/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155967,'2026-07-12 10:58:07','/config/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155968,'2026-07-12 10:58:10','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155969,'2026-07-12 10:58:13','/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155970,'2026-07-12 10:58:16','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155971,'2026-07-12 10:58:17','/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155972,'2026-07-12 10:58:19','/webroot/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155973,'2026-07-12 10:58:22','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155974,'2026-07-12 10:58:22','/phpinfo.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155975,'2026-07-12 10:58:23','/phpinfo.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155976,'2026-07-12 10:58:24','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155977,'2026-07-12 10:58:25','/phpinfo.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'54.176.48.144'),(155978,'2026-07-12 13:16:49','/administrator/components/com_jce/jce.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.60.222'),(155979,'2026-07-12 13:16:52','/administrator/components/com_sppagebuilder/sppagebuilder.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'185.16.60.222'),(155980,'2026-07-12 13:16:54','/plugins/system/helix3/helix3.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.60.222'),(155981,'2026-07-12 13:16:57','/administrator/components/com_pagebuilderck/pagebuilderck.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:136.0) Gecko/20100101 Firefox/136.0',NULL,404,'GET',NULL,'185.16.60.222'),(155982,'2026-07-12 13:16:59','/plugins/system/astroid/astroid.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.60.222'),(155983,'2026-07-12 13:17:14','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.3 Safari/605.1.15',NULL,404,'GET',NULL,'185.16.60.222'),(155984,'2026-07-12 14:11:27','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(155985,'2026-07-12 14:11:29','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(155986,'2026-07-12 14:11:53','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(155987,'2026-07-12 14:11:55','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'141.98.11.134'),(155988,'2026-07-12 14:59:17','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity',NULL,404,'GET',NULL,'147.185.132.207'),(155989,'2026-07-12 19:42:07','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.150.241.255'),(155990,'2026-07-12 19:42:08','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.150.241.255'),(155991,'2026-07-12 19:42:09','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 10; vivo 1904) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.60 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.150.241.255'),(155992,'2026-07-12 19:42:10','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.150.241.255'),(155993,'2026-07-12 19:42:11','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'34.150.241.255'),(155994,'2026-07-12 19:42:11','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.150.241.255'),(155995,'2026-07-12 19:43:56','/ai.txt','https://solsculpting.us7.cdn-alpha.com','PipericBot/1.0 (+https://piperic.com/bot)',NULL,404,'GET',NULL,'159.69.248.113'),(155996,'2026-07-12 19:43:56','/llms.txt','https://solsculpting.us7.cdn-alpha.com','PipericBot/1.0 (+https://piperic.com/bot)',NULL,404,'GET',NULL,'159.69.248.113'),(155997,'2026-07-12 19:43:56','/humans.txt','https://solsculpting.us7.cdn-alpha.com','PipericBot/1.0 (+https://piperic.com/bot)',NULL,404,'GET',NULL,'159.69.248.113'),(155998,'2026-07-12 21:46:58','/showLogin.cc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.104'),(155999,'2026-07-12 21:46:59','/sugar_version.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.102'),(156000,'2026-07-12 21:47:01','/login.do','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.101'),(156001,'2026-07-12 21:47:03','/aspera/faspex/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.101'),(156002,'2026-07-12 21:47:05','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.102'),(156003,'2026-07-12 21:47:07','/identity','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.104'),(156004,'2026-07-12 21:47:36','/sitecore/shell/sitecore.version.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.101'),(156005,'2026-07-12 21:47:38','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.102'),(156006,'2026-07-12 21:47:38','/cgi-bin/authLogin.cgi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.104'),(156007,'2026-07-12 21:47:40','/WebInterface/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.102'),(156008,'2026-07-12 21:47:42','/index.jsp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.103'),(156009,'2026-07-12 21:47:46','/api/session/properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.104'),(156010,'2026-07-12 21:47:50','/Telerik.Web.UI.WebResource.axd?type=rau','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.103'),(156011,'2026-07-12 21:47:53','/owa/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.101'),(156012,'2026-07-12 21:47:54','/solr/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.101'),(156013,'2026-07-12 21:47:55','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.86 Safari/537.36',NULL,404,'GET',NULL,'45.156.128.102'),(156014,'2026-07-13 00:08:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.25'),(156015,'2026-07-13 00:08:17','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.21'),(156016,'2026-07-13 00:08:24','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.247'),(156017,'2026-07-13 00:08:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.35'),(156018,'2026-07-13 00:08:46','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.241'),(156019,'2026-07-13 00:08:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.30'),(156020,'2026-07-13 00:09:00','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.243'),(156021,'2026-07-13 00:09:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'37.140.223.2'),(156022,'2026-07-13 00:09:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.76'),(156023,'2026-07-13 00:09:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.53'),(156024,'2026-07-13 00:09:37','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.38'),(156025,'2026-07-13 00:09:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.39'),(156026,'2026-07-13 00:10:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.2'),(156027,'2026-07-13 00:10:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.76'),(156028,'2026-07-13 00:10:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.3'),(156029,'2026-07-13 00:10:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.247'),(156030,'2026-07-13 00:10:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.77'),(156031,'2026-07-13 00:10:47','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.26'),(156032,'2026-07-13 00:10:55','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.38'),(156033,'2026-07-13 00:11:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.240'),(156034,'2026-07-13 00:11:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.15'),(156035,'2026-07-13 00:11:16','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.33'),(156036,'2026-07-13 00:11:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.15'),(156037,'2026-07-13 00:11:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.49'),(156038,'2026-07-13 00:11:40','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.240'),(156039,'2026-07-13 00:11:50','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.251'),(156040,'2026-07-13 00:11:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.25'),(156041,'2026-07-13 00:12:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.21'),(156042,'2026-07-13 00:12:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.52'),(156043,'2026-07-13 00:12:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.77'),(156044,'2026-07-13 00:12:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.247'),(156045,'2026-07-13 00:12:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.40'),(156046,'2026-07-13 00:12:55','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.76'),(156047,'2026-07-13 00:13:05','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.31'),(156048,'2026-07-13 00:13:11','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.171'),(156049,'2026-07-13 00:13:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.208'),(156050,'2026-07-13 00:13:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.235'),(156051,'2026-07-13 00:13:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.53'),(156052,'2026-07-13 00:13:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.242'),(156053,'2026-07-13 00:14:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.251'),(156054,'2026-07-13 00:14:22','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.2'),(156055,'2026-07-13 00:14:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.77'),(156056,'2026-07-13 00:14:43','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.236'),(156057,'2026-07-13 00:14:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.28'),(156058,'2026-07-13 00:15:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.199'),(156059,'2026-07-13 00:15:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.240'),(156060,'2026-07-13 00:15:18','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.4'),(156061,'2026-07-13 00:15:37','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.14'),(156062,'2026-07-13 00:15:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.31'),(156063,'2026-07-13 00:15:54','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.15'),(156064,'2026-07-13 00:16:04','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.235'),(156065,'2026-07-13 00:16:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.51'),(156066,'2026-07-13 00:16:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.76'),(156067,'2026-07-13 00:16:38','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.53'),(156068,'2026-07-13 00:16:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.235'),(156069,'2026-07-13 00:16:52','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.51'),(156070,'2026-07-13 00:17:00','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.53'),(156071,'2026-07-13 00:17:08','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.14'),(156072,'2026-07-13 00:17:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.246'),(156073,'2026-07-13 00:17:35','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.36'),(156074,'2026-07-13 00:17:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.36'),(156075,'2026-07-13 00:17:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.234'),(156076,'2026-07-13 00:18:07','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.36'),(156077,'2026-07-13 00:18:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.208'),(156078,'2026-07-13 00:18:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.27'),(156079,'2026-07-13 00:18:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.28'),(156080,'2026-07-13 00:18:48','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.23'),(156081,'2026-07-13 00:18:53','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.1'),(156082,'2026-07-13 00:19:00','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.251'),(156083,'2026-07-13 00:19:09','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.241'),(156084,'2026-07-13 00:19:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.51'),(156085,'2026-07-13 00:19:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.171'),(156086,'2026-07-13 00:19:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.247'),(156087,'2026-07-13 00:19:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.14'),(156088,'2026-07-13 00:20:00','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.3'),(156089,'2026-07-13 00:20:12','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.53'),(156090,'2026-07-13 00:20:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.171'),(156091,'2026-07-13 00:20:25','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.37'),(156092,'2026-07-13 00:20:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.35'),(156093,'2026-07-13 00:20:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.242'),(156094,'2026-07-13 00:20:53','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.30'),(156095,'2026-07-13 00:20:57','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.235'),(156096,'2026-07-13 00:21:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.2'),(156097,'2026-07-13 00:21:28','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.171'),(156098,'2026-07-13 00:21:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.33'),(156099,'2026-07-13 00:21:48','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.35'),(156100,'2026-07-13 00:21:55','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.35'),(156101,'2026-07-13 00:22:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.38'),(156102,'2026-07-13 00:22:13','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.25'),(156103,'2026-07-13 00:22:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.77'),(156104,'2026-07-13 00:22:26','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.49'),(156105,'2026-07-13 00:22:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'37.140.223.2'),(156106,'2026-07-13 00:22:38','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.77'),(156107,'2026-07-13 00:22:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.234'),(156108,'2026-07-13 00:22:56','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.15'),(156109,'2026-07-13 00:23:06','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.87'),(156110,'2026-07-13 00:23:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.240'),(156111,'2026-07-13 00:23:23','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.23'),(156112,'2026-07-13 00:23:29','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.227.202'),(156113,'2026-07-13 00:23:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.39'),(156114,'2026-07-13 00:23:30','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.202'),(156115,'2026-07-13 00:23:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.202'),(156116,'2026-07-13 00:23:39','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.241'),(156117,'2026-07-13 00:23:39','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.202'),(156118,'2026-07-13 00:23:47','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.87'),(156119,'2026-07-13 00:23:58','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.37'),(156120,'2026-07-13 00:24:14','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.4'),(156121,'2026-07-13 00:24:20','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'172.245.102.4'),(156122,'2026-07-13 00:24:29','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.199'),(156123,'2026-07-13 00:24:34','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.199'),(156124,'2026-07-13 00:24:48','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.40'),(156125,'2026-07-13 00:24:57','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.246'),(156126,'2026-07-13 00:25:15','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.53'),(156127,'2026-07-13 00:25:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.29'),(156128,'2026-07-13 00:25:31','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.26'),(156129,'2026-07-13 00:25:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'37.140.223.2'),(156130,'2026-07-13 00:25:53','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.240'),(156131,'2026-07-13 00:26:02','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.26'),(156132,'2026-07-13 00:26:08','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.26'),(156133,'2026-07-13 00:26:23','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.251'),(156134,'2026-07-13 00:26:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.52'),(156135,'2026-07-13 00:26:33','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.246'),(156136,'2026-07-13 00:26:48','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.234'),(156137,'2026-07-13 00:27:00','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.28'),(156138,'2026-07-13 00:27:07','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.199'),(156139,'2026-07-13 00:27:21','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.87'),(156140,'2026-07-13 00:27:23','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.227.202'),(156141,'2026-07-13 00:27:28','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.251'),(156142,'2026-07-13 00:27:36','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.30'),(156143,'2026-07-13 00:27:45','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.30'),(156144,'2026-07-13 00:28:03','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.235'),(156145,'2026-07-13 00:28:10','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.240'),(156146,'2026-07-13 00:28:19','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'136.144.33.208'),(156147,'2026-07-13 00:28:27','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.29'),(156148,'2026-07-13 00:28:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.33'),(156149,'2026-07-13 00:28:44','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.236'),(156150,'2026-07-13 00:28:57','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36','https://solsculpting.com/wp-admin/',404,'POST',NULL,'193.36.225.30'),(156151,'2026-07-13 01:55:32','/templates/shaper_helix3/templateDetails.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,'91.224.92.82'),(156152,'2026-07-13 01:55:32','/templates/shaper_helix3/templateDetails.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64)',NULL,404,'GET',NULL,'91.224.92.82'),(156153,'2026-07-13 04:37:35','/.hocaZxO5duro','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534.24 (KHTML, like Gecko) Chrome/12.0.702.0 Safari/534.24',NULL,404,'GET',NULL,'207.180.200.79'),(156154,'2026-07-13 11:01:45','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'157.245.205.168'),(156155,'2026-07-13 11:01:58','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'157.245.205.168'),(156156,'2026-07-13 11:45:41','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'45.156.129.75'),(156157,'2026-07-13 11:45:42','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'45.156.129.75'),(156158,'2026-07-13 12:33:18','/admin/controller/extension/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.5.71'),(156159,'2026-07-13 12:33:20','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.5.71'),(156160,'2026-07-13 12:33:34','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.5.71'),(156161,'2026-07-13 13:26:03','/.hocaZxO5duro','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2.6) Gecko/20100628 Ubuntu/10.04 (lucid) Firefox/3.6.6 GTB7.0',NULL,404,'GET',NULL,'169.58.9.104'),(156162,'2026-07-13 15:28:19','/w1php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'191.237.250.106'),(156163,'2026-07-13 15:28:21','/w2php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'191.237.250.106'),(156164,'2026-07-13 15:28:23','/w3php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'191.237.250.106'),(156165,'2026-07-13 17:23:21','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.174.145.213'),(156166,'2026-07-13 17:23:23','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/wp/',404,'GET',NULL,'34.174.145.213'),(156167,'2026-07-13 17:23:24','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.174.145.213'),(156168,'2026-07-13 17:23:25','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 10; vivo 1904) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.60 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.174.145.213'),(156169,'2026-07-13 17:23:26','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.76 Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.174.145.213'),(156170,'2026-07-13 17:23:27','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.6534.42 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.174.145.213'),(156171,'2026-07-13 18:21:40','/new/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156172,'2026-07-13 18:21:40','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156173,'2026-07-13 18:21:40','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156174,'2026-07-13 18:21:41','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156175,'2026-07-13 18:21:41','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156176,'2026-07-13 18:21:41','/bank/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156177,'2026-07-13 18:21:42','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156178,'2026-07-13 18:21:42','/member/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156179,'2026-07-13 18:21:42','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156180,'2026-07-13 18:32:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.179'),(156181,'2026-07-13 19:53:37','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(156182,'2026-07-13 19:53:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(156183,'2026-07-13 19:53:39','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(156184,'2026-07-13 19:53:41','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(156185,'2026-07-13 20:45:41','/sitemap.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'52.167.144.184'),(156186,'2026-07-13 21:56:37','/sitemap.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'40.77.167.121'),(156187,'2026-07-13 23:27:08','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.173'),(156188,'2026-07-13 23:27:09','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.173'),(156189,'2026-07-13 23:27:09','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'2.58.56.173'),(156190,'2026-07-13 23:27:10','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'2.58.56.173'),(156191,'2026-07-13 23:57:49','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.195.39.148'),(156192,'2026-07-13 23:57:51','/wp-content/plugins/cidaas-pro-master/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.195.39.148'),(156193,'2026-07-14 03:21:55','/wp-includes/blocks/audi/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.48.236.161'),(156194,'2026-07-14 04:52:40','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.187'),(156195,'2026-07-14 06:24:23','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156196,'2026-07-14 07:19:50','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/147.0.6917.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'62.60.131.232'),(156197,'2026-07-14 07:29:02','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/143.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156198,'2026-07-14 07:38:40','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156199,'2026-07-14 08:10:45','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 26_4_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/148.0.7778.47 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'62.60.131.232'),(156200,'2026-07-14 08:27:32','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156201,'2026-07-14 08:34:13','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/146.0.6917.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'62.60.131.232'),(156202,'2026-07-14 09:13:25','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.48.233.63'),(156203,'2026-07-14 09:13:26','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.48.233.63'),(156204,'2026-07-14 09:13:27','/.well-known/acme-challenge/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.48.233.63'),(156205,'2026-07-14 09:24:42','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156206,'2026-07-14 09:33:26','/.hocaZxO5duro','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.10) Gecko/20100504 Firefox/3.5.11 (.NET CLR 3.5.30729)',NULL,404,'GET',NULL,'169.58.9.104'),(156207,'2026-07-14 09:36:21','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 18_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) CriOS/145.0.6917.0 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'62.60.131.232'),(156208,'2026-07-14 09:55:25','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156209,'2026-07-14 10:52:37','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:133.0) Gecko/20100101 Firefox/133.0',NULL,404,'GET',NULL,'62.60.131.232'),(156210,'2026-07-14 10:58:33','/wp-login.php/wp-json/wp/v2/users/me','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.131.232'),(156211,'2026-07-14 10:59:37','/3929d2ca1a59022a66bdcb.flv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:152.0) Gecko/20100101 Firefox/152.0',NULL,404,'GET',NULL,'24.0.118.32'),(156212,'2026-07-14 17:31:10','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; RMX3842) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.44 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.24.148.183'),(156213,'2026-07-14 17:31:11','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'34.24.148.183'),(156214,'2026-07-14 17:31:12','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/new/',404,'GET',NULL,'34.24.148.183'),(156215,'2026-07-14 17:31:13','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','http://solsculpting.com/old/',404,'GET',NULL,'34.24.148.183'),(156216,'2026-07-14 17:31:14','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.76 Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.24.148.183'),(156217,'2026-07-14 17:31:14','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.24.148.183'),(156218,'2026-07-14 22:54:10','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:138.0) Gecko/20100101 Firefox/138.0',NULL,404,'GET',NULL,'188.166.99.91'),(156219,'2026-07-15 00:29:39','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156220,'2026-07-15 00:29:41','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156221,'2026-07-15 00:29:43','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156222,'2026-07-15 00:29:43','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156223,'2026-07-15 01:25:25','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; U; Linux i686; en-US) AppleWebKit/532.4 (KHTML, like Gecko) Chrome/4.0.237.0 Safari/532.4 Debian',NULL,404,'GET',NULL,'62.4.29.74'),(156224,'2026-07-15 03:20:13','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'144.172.105.190'),(156225,'2026-07-15 04:09:18','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156226,'2026-07-15 04:09:19','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156227,'2026-07-15 04:09:20','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156228,'2026-07-15 04:09:20','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156229,'2026-07-15 07:31:39','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'104.28.159.128'),(156230,'2026-07-15 08:22:26','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_6_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.2 Safari/605.1.15','https://wordpress.org/',404,'GET',NULL,'45.131.195.160'),(156231,'2026-07-15 08:22:27','/?author=9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/121.0.0.0 Safari/537.36','https://wordpress.org/',404,'GET',NULL,'45.131.195.160'),(156232,'2026-07-15 09:33:38','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'180.93.42.23'),(156233,'2026-07-15 10:21:20','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.234'),(156234,'2026-07-15 10:21:21','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.234'),(156235,'2026-07-15 10:21:22','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.234'),(156236,'2026-07-15 10:21:22','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.234'),(156237,'2026-07-15 12:48:51','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.197'),(156238,'2026-07-15 12:48:53','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.197'),(156239,'2026-07-15 12:49:06','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.197'),(156240,'2026-07-15 12:49:08','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.197'),(156241,'2026-07-15 13:17:06','/administrator/components/com_sppagebuilder/config.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) Chrome/120.0 Safari/537.36',NULL,404,'GET',NULL,'34.126.181.205'),(156242,'2026-07-15 18:37:52','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(156243,'2026-07-15 18:37:53','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(156244,'2026-07-15 18:37:54','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.162.198'),(156245,'2026-07-15 18:37:55','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.162.198'),(156246,'2026-07-15 20:26:39','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.189'),(156247,'2026-07-15 20:26:44','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.189'),(156248,'2026-07-15 20:26:50','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.189'),(156249,'2026-07-15 20:26:51','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.189'),(156250,'2026-07-15 21:08:41','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.141 Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'35.237.226.191'),(156251,'2026-07-15 21:08:43','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/backup/',404,'GET',NULL,'35.237.226.191'),(156252,'2026-07-15 21:08:45','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 10; vivo 1904) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.5938.60 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'35.237.226.191'),(156253,'2026-07-15 21:08:46','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; Redmi Note 11) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/123.0.6312.112 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'35.237.226.191'),(156254,'2026-07-15 21:08:47','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/new/',404,'GET',NULL,'35.237.226.191'),(156255,'2026-07-15 21:08:47','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'35.237.226.191'),(156256,'2026-07-15 21:15:49','/sitemaps.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'207.46.13.6'),(156257,'2026-07-15 22:04:19','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/136.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.101.250.169'),(156258,'2026-07-15 22:04:21','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'165.101.250.169'),(156259,'2026-07-15 22:05:16','/sitemaps.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm) Chrome/116.0.1938.76 Safari/537.36',NULL,404,'GET',NULL,'207.46.13.170'),(156260,'2026-07-15 23:45:06','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.61.150.163'),(156261,'2026-07-15 23:52:21','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'66.187.5.228'),(156262,'2026-07-15 23:52:22','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +https://developers.google.com/search/)',NULL,404,'GET',NULL,'66.187.5.228'),(156263,'2026-07-15 23:52:22','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'66.187.5.228'),(156264,'2026-07-15 23:52:23','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +https://developers.google.com/search/)',NULL,404,'GET',NULL,'66.187.5.228'),(156265,'2026-07-15 23:52:23','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'66.187.5.228'),(156266,'2026-07-15 23:52:24','/api/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'66.187.5.228'),(156267,'2026-07-15 23:52:24','/api/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'66.187.5.228'),(156268,'2026-07-15 23:52:25','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'66.187.5.228'),(156269,'2026-07-15 23:52:28','/public/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'66.187.5.228'),(156270,'2026-07-15 23:52:29','/backend/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'66.187.5.228'),(156271,'2026-07-15 23:52:55','/wp-content/plugins/elementor/assets/js/{e.src','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','https://solsculpting.com/wp-content/plugins/elementor/assets/js/$e.src',404,'GET',NULL,'66.187.5.228'),(156272,'2026-07-16 02:26:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.186'),(156273,'2026-07-16 02:48:42','/admin/controller/extension/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.100.92'),(156274,'2026-07-16 02:48:44','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.100.92'),(156275,'2026-07-16 02:48:57','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.100.92'),(156276,'2026-07-16 04:15:27','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.82'),(156277,'2026-07-16 04:15:29','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.82'),(156278,'2026-07-16 04:15:38','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.82'),(156279,'2026-07-16 04:15:39','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.224.92.82'),(156280,'2026-07-16 04:27:58','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.164.44'),(156281,'2026-07-16 04:27:59','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.95.97'),(156282,'2026-07-16 04:28:01','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.144.112'),(156283,'2026-07-16 04:28:05','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.148.29'),(156284,'2026-07-16 04:28:08','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.87.124'),(156285,'2026-07-16 04:28:10','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.240.79'),(156286,'2026-07-16 04:28:12','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.240.79'),(156287,'2026-07-16 04:28:14','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.144.112'),(156288,'2026-07-16 04:28:17','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.144.112'),(156289,'2026-07-16 04:28:19','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.144.112'),(156290,'2026-07-16 04:28:23','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.164.44'),(156291,'2026-07-16 04:28:25','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.248.17'),(156292,'2026-07-16 04:28:27','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.71.172.7'),(156293,'2026-07-16 04:28:29','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'162.158.87.124'),(156294,'2026-07-16 04:28:32','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.23.239.57'),(156295,'2026-07-16 04:28:34','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.71.144.112'),(156296,'2026-07-16 04:28:35','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.240.79'),(156297,'2026-07-16 04:28:37','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.164.44'),(156298,'2026-07-16 04:28:38','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.144.112'),(156299,'2026-07-16 04:28:42','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.240.79'),(156300,'2026-07-16 04:28:44','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.95.97'),(156301,'2026-07-16 04:28:45','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.23.239.57'),(156302,'2026-07-16 04:28:47','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.144.112'),(156303,'2026-07-16 04:28:49','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.151.201'),(156304,'2026-07-16 04:28:53','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.240.79'),(156305,'2026-07-16 05:58:49','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156306,'2026-07-16 05:58:50','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156307,'2026-07-16 05:58:51','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156308,'2026-07-16 05:58:52','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156309,'2026-07-16 09:42:10','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.61.150.163'),(156310,'2026-07-16 10:49:30','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'51.195.39.149'),(156311,'2026-07-16 11:49:28','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.61.150.163'),(156312,'2026-07-16 12:37:52','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.229'),(156313,'2026-07-16 18:14:24','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.64'),(156314,'2026-07-16 18:14:25','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.64'),(156315,'2026-07-16 18:14:26','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.64'),(156316,'2026-07-16 18:14:26','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.64'),(156317,'2026-07-16 18:26:16','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'212.30.33.64'),(156318,'2026-07-16 22:12:37','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'144.172.101.168'),(156319,'2026-07-16 22:30:11','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.244'),(156320,'2026-07-16 22:30:14','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.244'),(156321,'2026-07-16 22:30:14','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_7_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.244'),(156322,'2026-07-16 22:30:14','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.244'),(156323,'2026-07-16 22:30:14','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'65.110.40.244'),(156324,'2026-07-16 22:30:14','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.244'),(156325,'2026-07-16 22:30:14','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36 Edg/146.0.3856.109',NULL,404,'GET',NULL,'65.110.40.244'),(156326,'2026-07-16 22:30:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'65.110.40.244'),(156327,'2026-07-16 22:30:14','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.244'),(156328,'2026-07-16 22:30:15','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15.7; rv:149.0) Gecko/20100101 Firefox/149.0',NULL,404,'GET',NULL,'65.110.40.244'),(156329,'2026-07-16 22:30:15','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 15_7_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.0 Safari/605.1.15',NULL,404,'GET',NULL,'65.110.40.244'),(156330,'2026-07-16 22:46:15','/config.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.46.252.52'),(156331,'2026-07-16 22:47:01','/X7ROOT.PHP','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.46.252.52'),(156332,'2026-07-16 22:47:04','/BDKR28.PHP','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.46.252.52'),(156333,'2026-07-17 00:01:10','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.5.49.103'),(156334,'2026-07-17 00:01:11','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.5.49.103'),(156335,'2026-07-17 00:01:12','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'194.5.49.103'),(156336,'2026-07-17 00:01:12','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'194.5.49.103'),(156337,'2026-07-17 01:00:41','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156338,'2026-07-17 01:00:43','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156339,'2026-07-17 01:00:44','/.well-known/acme-challenge/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156340,'2026-07-17 03:01:49','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156341,'2026-07-17 03:01:51','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156342,'2026-07-17 03:01:52','/.well-known/acme-challenge/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156343,'2026-07-17 03:13:40','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(156344,'2026-07-17 03:13:41','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(156345,'2026-07-17 03:13:42','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(156346,'2026-07-17 03:13:43','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(156347,'2026-07-17 03:33:22','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/old/',404,'GET',NULL,'34.123.234.253'),(156348,'2026-07-17 03:33:24','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/new/',404,'GET',NULL,'34.123.234.253'),(156349,'2026-07-17 03:33:25','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.123.234.253'),(156350,'2026-07-17 03:33:27','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.6534.42 Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.123.234.253'),(156351,'2026-07-17 03:33:28','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.123.234.253'),(156352,'2026-07-17 03:33:29','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.123.234.253'),(156353,'2026-07-17 09:02:14','/wp-includes/blocks/audi/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.96.117'),(156354,'2026-07-17 11:27:33','/wp-content/languages/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156355,'2026-07-17 11:27:34','/wp-content/IXR/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156356,'2026-07-17 11:27:39','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156357,'2026-07-17 11:27:40','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156358,'2026-07-17 11:27:42','/files/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156359,'2026-07-17 11:27:43','/file/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156360,'2026-07-17 11:27:45','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156361,'2026-07-17 11:27:47','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156362,'2026-07-17 11:27:50','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156363,'2026-07-17 11:27:52','/.tmb/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'158.94.210.72'),(156364,'2026-07-17 13:14:07','/wp-includes/.cache_key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.195.39.149'),(156365,'2026-07-17 13:50:21','/contactos','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; ScalinthBot/1.0; +https://scalinth.com/bot)',NULL,404,'GET',NULL,'51.178.135.250'),(156366,'2026-07-17 13:50:22','/contacto','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; ScalinthBot/1.0; +https://scalinth.com/bot)',NULL,404,'GET',NULL,'51.178.135.250'),(156367,'2026-07-17 13:50:25','/contact-us','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; ScalinthBot/1.0; +https://scalinth.com/bot)',NULL,404,'GET',NULL,'51.178.135.250'),(156368,'2026-07-17 14:04:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'181.41.206.227'),(156369,'2026-07-17 14:20:14','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156370,'2026-07-17 14:20:14','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156371,'2026-07-17 14:20:16','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156372,'2026-07-17 14:20:17','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156373,'2026-07-17 15:42:43','/member/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156374,'2026-07-17 15:42:44','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156375,'2026-07-17 15:42:44','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156376,'2026-07-17 15:42:44','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156377,'2026-07-17 15:42:45','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156378,'2026-07-17 15:42:46','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156379,'2026-07-17 15:42:46','/new/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156380,'2026-07-17 15:42:46','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156381,'2026-07-17 15:42:46','/bank/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36',NULL,404,'GET',NULL,'103.221.220.62'),(156382,'2026-07-17 16:51:29','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.173.179.110'),(156383,'2026-07-17 16:52:06','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.173.179.110'),(156384,'2026-07-17 18:31:09','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.241.208.244'),(156385,'2026-07-17 18:31:10','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.241.208.244'),(156386,'2026-07-17 18:31:10','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.241.208.244'),(156387,'2026-07-17 18:31:11','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.241.208.244'),(156388,'2026-07-17 19:30:18','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'172.213.24.173'),(156389,'2026-07-17 19:30:20','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'172.213.24.173'),(156390,'2026-07-17 19:30:20','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'172.213.24.173'),(156391,'2026-07-17 19:30:22','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'172.213.24.173'),(156392,'2026-07-17 20:13:27','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'4.223.126.210'),(156393,'2026-07-17 20:13:29','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'4.223.126.210'),(156394,'2026-07-17 20:13:29','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.223.126.210'),(156395,'2026-07-17 20:13:30','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'4.223.126.210'),(156396,'2026-07-17 20:13:30','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'4.223.126.210'),(156397,'2026-07-17 21:16:33','/magento_version','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.241.187.206'),(156398,'2026-07-17 21:16:34','/RELEASE_NOTES.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.241.187.206'),(156399,'2026-07-17 21:40:20','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'172.213.24.173'),(156400,'2026-07-17 21:40:22','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'172.213.24.173'),(156401,'2026-07-17 21:40:23','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'172.213.24.173'),(156402,'2026-07-17 21:40:24','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'172.213.24.173'),(156403,'2026-07-17 21:43:46','/admin/controller/extension/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'132.196.30.22'),(156404,'2026-07-17 21:43:49','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'132.196.30.22'),(156405,'2026-07-17 21:44:02','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'132.196.30.22'),(156406,'2026-07-17 22:19:17','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; moto g31) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.6261.96 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.182.211.74'),(156407,'2026-07-17 22:19:19','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; TECNO CK6n) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.50 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.182.211.74'),(156408,'2026-07-17 22:19:20','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/blog/',404,'GET',NULL,'34.182.211.74'),(156409,'2026-07-17 22:19:21','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/new/',404,'GET',NULL,'34.182.211.74'),(156410,'2026-07-17 22:19:22','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.182.211.74'),(156411,'2026-07-17 22:19:24','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/old/',404,'GET',NULL,'34.182.211.74'),(156412,'2026-07-17 22:22:40','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.177'),(156413,'2026-07-17 22:44:25','/about-us','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; StackyEnrich/1.0)',NULL,404,'GET',NULL,'158.101.104.151'),(156414,'2026-07-17 22:44:25','/company','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; StackyEnrich/1.0)',NULL,404,'GET',NULL,'158.101.104.151'),(156415,'2026-07-17 22:44:25','/our-company','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; StackyEnrich/1.0)',NULL,404,'GET',NULL,'158.101.104.151'),(156416,'2026-07-18 02:57:30','/wp-content/plugins/miniorange-saml-20-single-sign-on/changelog.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'91.202.233.61'),(156417,'2026-07-18 08:47:42','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.183'),(156418,'2026-07-18 09:31:04','/modules/mod_simplefileuploadv1.3/elements/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156419,'2026-07-18 09:31:07','/neshe','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156420,'2026-07-18 09:48:12','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'45.156.129.70'),(156421,'2026-07-18 09:48:13','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'45.156.129.70'),(156422,'2026-07-18 12:32:55','/nYzOfhqomhlW','https://solsculpting.us7.cdn-alpha.com','Turaco Labs ThreatView Security Auditor (threatview.app)',NULL,404,'GET',NULL,'109.169.10.5'),(156423,'2026-07-18 12:34:38','/wp-includes/blocks/audi/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.96.117'),(156424,'2026-07-18 13:13:28','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(156425,'2026-07-18 13:13:29','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(156426,'2026-07-18 13:13:30','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(156427,'2026-07-18 13:13:30','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(156428,'2026-07-18 20:01:57','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156429,'2026-07-18 20:01:58','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156430,'2026-07-18 20:01:59','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(156431,'2026-07-18 20:02:00','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(156432,'2026-07-19 04:30:01','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Hello from Palo Alto Networks, find out more about our scans in https://docs-cortex.paloaltonetworks.com/r/1/Cortex-Xpanse/Scanning-activity',NULL,404,'GET',NULL,'198.235.24.145'),(156433,'2026-07-19 04:39:29','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'103.177.150.66'),(156434,'2026-07-19 05:43:19','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'91.224.92.183'),(156435,'2026-07-19 07:28:16','/wp-content/cache/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.225.23'),(156436,'2026-07-19 07:28:41','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.225.23'),(156437,'2026-07-19 07:28:56','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.151.225.23'),(156438,'2026-07-19 07:41:38','/2023/01/25','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 5.0; SM-G900P Build/LRX21T) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/46.0.7594.1155 Mobile Safari/537.36',NULL,404,'GET',NULL,'188.215.94.68'),(156439,'2026-07-19 07:49:39','/2023/01/25','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.7023.1317 Mobile Safari/537.36',NULL,404,'GET',NULL,'103.110.162.196'),(156440,'2026-07-19 07:49:47','/webpack-stats.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 YaBrowser/26.6.0.0 Safari/537.36',NULL,404,'GET',NULL,'34.131.101.221'),(156441,'2026-07-19 07:49:47','/rclone.conf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156442,'2026-07-19 07:49:47','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156443,'2026-07-19 07:49:47','/z9x8c7v6b5-debug-trigger-solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156444,'2026-07-19 07:49:47','/.gitconfig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156445,'2026-07-19 07:49:47','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'34.131.101.221'),(156446,'2026-07-19 07:49:47','/.git-credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156447,'2026-07-19 07:49:47','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156448,'2026-07-19 07:49:47','/.env','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156449,'2026-07-19 07:49:47','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156450,'2026-07-19 07:49:48','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156451,'2026-07-19 07:49:49','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156452,'2026-07-19 07:49:49','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156453,'2026-07-19 07:49:49','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156454,'2026-07-19 07:49:49','/secrets.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156455,'2026-07-19 07:49:49','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156456,'2026-07-19 07:49:49','/config/.env','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156457,'2026-07-19 07:49:50','/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156458,'2026-07-19 07:49:50','/serviceAccountKey.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156459,'2026-07-19 07:49:50','/.docker/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'34.131.101.221'),(156460,'2026-07-19 07:49:51','/.svn/entries','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156461,'2026-07-19 07:49:51','/.htpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156462,'2026-07-19 07:49:51','/secrets.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156463,'2026-07-19 07:49:51','/.s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156464,'2026-07-19 07:49:51','/terraform.tfstate','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'34.131.101.221'),(156465,'2026-07-19 07:49:51','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156466,'2026-07-19 07:49:52','/.vscode/launch.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156467,'2026-07-19 07:49:52','/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156468,'2026-07-19 07:49:52','/.ssh/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'34.131.101.221'),(156469,'2026-07-19 07:49:52','/.ssh/id_ecdsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156470,'2026-07-19 07:49:52','/.ssh/authorized_keys','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156471,'2026-07-19 07:49:52','/.ssh/id_dsa','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156472,'2026-07-19 07:49:53','/.ssh/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156473,'2026-07-19 07:49:53','/.ssh/known_hosts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156474,'2026-07-19 07:49:53','/id_ed25519','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156475,'2026-07-19 07:49:53','/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156476,'2026-07-19 07:49:54','/key.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156477,'2026-07-19 07:49:54','/host.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156478,'2026-07-19 07:49:54','/private-key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156479,'2026-07-19 07:49:55','/.hermes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156480,'2026-07-19 07:49:55','/ssl/localhost.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156481,'2026-07-19 07:49:55','/.aider.conf.yml','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156482,'2026-07-19 07:49:55','/.codex/config.toml','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156483,'2026-07-19 07:49:55','/.continue/config.json','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156484,'2026-07-19 07:49:55','/.openclaw/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156485,'2026-07-19 07:49:55','/.hermes/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156486,'2026-07-19 07:49:55','/.hermes/auth.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156487,'2026-07-19 07:49:55','/.config/anthropic/credentials/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156488,'2026-07-19 07:58:15','/.gitconfig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156489,'2026-07-19 07:58:15','/.github/workflows/deploy.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156490,'2026-07-19 07:58:15','/z9x8c7v6b5-debug-trigger-solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156491,'2026-07-19 07:58:15','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156492,'2026-07-19 07:58:15','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156493,'2026-07-19 07:58:15','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156494,'2026-07-19 07:58:16','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156495,'2026-07-19 07:58:16','/.git-credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'34.131.101.221'),(156496,'2026-07-19 07:58:16','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156497,'2026-07-19 07:58:16','/webpack-stats.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36 Vivaldi/7.2.3620.30',NULL,404,'GET',NULL,'34.131.101.221'),(156498,'2026-07-19 07:58:16','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156499,'2026-07-19 07:58:16','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156500,'2026-07-19 07:58:16','/api/.env','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156501,'2026-07-19 07:58:17','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156502,'2026-07-19 07:58:17','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156503,'2026-07-19 07:58:17','/secrets.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156504,'2026-07-19 07:58:17','/service-account.json','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156505,'2026-07-19 07:58:17','/serviceAccountKey.json','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156506,'2026-07-19 07:58:17','/firebase-adminsdk.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156507,'2026-07-19 07:58:17','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156508,'2026-07-19 07:58:18','/.boto','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156509,'2026-07-19 07:58:18','/id_ecdsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156510,'2026-07-19 07:58:18','/key.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156511,'2026-07-19 07:58:18','/server.key','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156512,'2026-07-19 07:58:19','/privatekey.key','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156513,'2026-07-19 07:58:19','/host.key','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156514,'2026-07-19 07:58:19','/.openclaw/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156515,'2026-07-19 07:58:19','/ssl/server.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156516,'2026-07-19 07:58:19','/.continue/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156517,'2026-07-19 07:58:19','/.codex/config.toml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156518,'2026-07-19 07:58:19','/.aider.conf.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156519,'2026-07-19 07:58:20','/.hermes/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156520,'2026-07-19 07:58:20','/.hermes/auth.json','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156521,'2026-07-19 07:58:20','/.config/anthropic/credentials/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156522,'2026-07-19 07:58:20','/.claude/settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156523,'2026-07-19 07:58:20','/.claude.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156524,'2026-07-19 07:58:20','/.mcp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'34.131.101.221'),(156525,'2026-07-19 07:58:21','/.bashrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156526,'2026-07-19 07:58:21','/.bash_profile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156527,'2026-07-19 07:58:21','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156528,'2026-07-19 07:58:21','/wp-config.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156529,'2026-07-19 07:58:21','/core/.env','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156530,'2026-07-19 07:58:22','/.env.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156531,'2026-07-19 07:58:22','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156532,'2026-07-19 07:58:22','/auth.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156533,'2026-07-19 07:58:22','/.env.swp','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156534,'2026-07-19 07:58:22','/values.yaml','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156535,'2026-07-19 07:58:22','/__/firebase/init.json','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'34.131.101.221'),(156536,'2026-07-19 07:58:22','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156537,'2026-07-19 07:58:23','/configuration.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156538,'2026-07-19 07:58:23','/api/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156539,'2026-07-19 07:58:23','/config.json','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156540,'2026-07-19 07:58:24','/env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156541,'2026-07-19 07:58:24','/.svn/entries','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156542,'2026-07-19 07:58:24','/.well-known/jwks.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'34.131.101.221'),(156543,'2026-07-19 07:58:24','/api/v2/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156544,'2026-07-19 07:58:24','/api/v1/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156545,'2026-07-19 07:58:24','/api/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'34.131.101.221'),(156546,'2026-07-19 07:58:25','/manifest.webmanifest','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156547,'2026-07-19 07:58:25','/api/v2/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156548,'2026-07-19 07:58:25','/openapi.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'34.131.101.221'),(156549,'2026-07-19 07:58:25','/api/health','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156550,'2026-07-19 07:58:25','/api/openapi.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156551,'2026-07-19 07:58:25','/firebase-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156552,'2026-07-19 07:58:25','/api/account','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'34.131.101.221'),(156553,'2026-07-19 07:58:25','/app-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'34.131.101.221'),(156554,'2026-07-19 07:58:27','/graphql/console','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'34.131.101.221'),(156555,'2026-07-19 07:58:27','/ngsw.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'34.131.101.221'),(156556,'2026-07-19 07:58:27','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'34.131.101.221'),(156557,'2026-07-19 07:58:27','/swagger.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'34.131.101.221'),(156558,'2026-07-19 07:58:32','/app','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'34.131.101.221'),(156559,'2026-07-19 07:58:32','/settings','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Brave Chrome/150.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'34.131.101.221'),(156560,'2026-07-19 07:58:32','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36 Edg/150.0.0.0',NULL,404,'GET',NULL,'34.131.101.221'),(156561,'2026-07-19 07:58:32','/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'34.131.101.221'),(156562,'2026-07-19 07:58:32','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 26_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/26.5 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'34.131.101.221'),(156563,'2026-07-19 07:58:33','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:152.0) Gecko/20100101 Firefox/152.0',NULL,404,'GET',NULL,'34.131.101.221'),(156564,'2026-07-19 08:06:55','/plugins/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156565,'2026-07-19 08:06:58','/randkeyword.php7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156566,'2026-07-19 08:07:02','/shop/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156567,'2026-07-19 08:18:18','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.80'),(156568,'2026-07-19 08:18:19','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.80'),(156569,'2026-07-19 08:18:19','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.80'),(156570,'2026-07-19 08:18:20','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.80'),(156571,'2026-07-19 10:41:13','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.150.0.221'),(156572,'2026-07-19 10:41:17','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.150.0.221'),(156573,'2026-07-19 15:09:25','/admin/controller/extension/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.225.23'),(156574,'2026-07-19 15:09:27','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.225.23'),(156575,'2026-07-19 15:09:41','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.225.23'),(156576,'2026-07-19 15:13:37','/_next/webpack-hmr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156577,'2026-07-19 15:13:37','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156578,'2026-07-19 15:13:37','/_next/static/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156579,'2026-07-19 15:13:37','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156580,'2026-07-19 15:13:37','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156581,'2026-07-19 15:13:37','/_ignition/health-check','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156582,'2026-07-19 15:13:37','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.232.172.202'),(156583,'2026-07-19 17:09:11','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.195.39.149'),(156584,'2026-07-19 17:31:25','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(156585,'2026-07-19 17:31:28','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(156586,'2026-07-19 17:31:28','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(156587,'2026-07-19 17:31:29','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(156588,'2026-07-19 18:12:54','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'103.177.150.66'),(156589,'2026-07-19 18:30:21','/_next/webpack-hmr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.233.44.91'),(156590,'2026-07-19 18:30:23','/_ignition/health-check','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.233.44.91'),(156591,'2026-07-19 18:30:23','/_next/static/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.233.44.91'),(156592,'2026-07-19 18:30:23','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.233.44.91'),(156593,'2026-07-19 18:30:23','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.233.44.91'),(156594,'2026-07-19 18:30:23','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'172.233.44.91'),(156595,'2026-07-19 20:05:22','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:12.0) Gecko/20100101 Firefox/12.0',NULL,404,'GET',NULL,'45.148.10.95'),(156596,'2026-07-19 20:14:20','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4 Mobile/15E148 Safari/604.1','http://solsculpting.com/blog/',404,'GET',NULL,'34.186.117.109'),(156597,'2026-07-19 20:14:23','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Xiaomi 14 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.33 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.186.117.109'),(156598,'2026-07-19 20:14:24','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/new/',404,'GET',NULL,'34.186.117.109'),(156599,'2026-07-19 20:14:25','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/old/',404,'GET',NULL,'34.186.117.109'),(156600,'2026-07-19 20:14:26','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/wp/',404,'GET',NULL,'34.186.117.109'),(156601,'2026-07-19 20:14:27','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.186.117.109'),(156602,'2026-07-19 21:01:56','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64)',NULL,404,'GET',NULL,'8.235.114.162'),(156603,'2026-07-19 21:46:24','/admin/controller/extension/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.225.23'),(156604,'2026-07-19 21:46:27','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.225.23'),(156605,'2026-07-19 21:46:40','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.151.225.23'),(156606,'2026-07-19 21:50:37','/.github/workflows/deploy.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156607,'2026-07-19 21:50:37','/.git-credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'35.245.65.174'),(156608,'2026-07-19 21:50:37','/.gitconfig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156609,'2026-07-19 21:50:37','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156610,'2026-07-19 21:50:37','/z9x8c7v6b5-debug-trigger-solsculpting.com','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156611,'2026-07-19 21:50:37','/.aws/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156612,'2026-07-19 21:50:37','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156613,'2026-07-19 21:50:38','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Perplexity-User/1.0; +https://perplexity.ai/perplexity-user',NULL,404,'GET',NULL,'35.245.65.174'),(156614,'2026-07-19 21:50:38','/api/.env','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'35.245.65.174'),(156615,'2026-07-19 21:50:38','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156616,'2026-07-19 21:50:38','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156617,'2026-07-19 21:50:38','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156618,'2026-07-19 21:50:38','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'35.245.65.174'),(156619,'2026-07-19 21:50:39','/secrets.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156620,'2026-07-19 21:50:39','/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156621,'2026-07-19 21:50:40','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'35.245.65.174'),(156622,'2026-07-19 21:50:40','/firebase-adminsdk.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156623,'2026-07-19 21:50:40','/.htpasswd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'35.245.65.174'),(156624,'2026-07-19 21:50:40','/.s3cfg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'35.245.65.174'),(156625,'2026-07-19 21:50:40','/.svn/entries','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'35.245.65.174'),(156626,'2026-07-19 21:50:40','/serviceAccountKey.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156627,'2026-07-19 21:50:41','/docker-compose.yaml','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'35.245.65.174'),(156628,'2026-07-19 21:50:41','/.ssh/id_ed25519','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156629,'2026-07-19 21:50:41','/.ssh/id_ecdsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156630,'2026-07-19 21:50:41','/.vscode/launch.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156631,'2026-07-19 21:50:42','/.ssh/authorized_keys','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156632,'2026-07-19 21:50:42','/id_ecdsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156633,'2026-07-19 21:50:42','/privatekey.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156634,'2026-07-19 21:50:42','/server.key','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'35.245.65.174'),(156635,'2026-07-19 21:50:43','/id_rsa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156636,'2026-07-19 21:50:43','/.ssh/known_hosts','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-SearchBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156637,'2026-07-19 21:50:43','/key.pem','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'35.245.65.174'),(156638,'2026-07-19 21:50:44','/.codex/config.toml','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'35.245.65.174'),(156639,'2026-07-19 21:50:44','/.hermes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'35.245.65.174'),(156640,'2026-07-19 21:50:44','/.hermes/auth.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156641,'2026-07-19 21:50:44','/.hermes/config.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156642,'2026-07-19 21:50:45','/.openclaw/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'35.245.65.174'),(156643,'2026-07-19 21:50:46','/.config/anthropic/credentials/default.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; Claude-User/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156644,'2026-07-19 21:50:46','/host.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156645,'2026-07-19 21:50:46','/localhost.key','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156646,'2026-07-19 21:50:46','/.claude.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156647,'2026-07-19 21:50:46','/.bash_profile','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'35.245.65.174'),(156648,'2026-07-19 21:50:46','/.zshrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156649,'2026-07-19 21:50:46','/.claude/settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156650,'2026-07-19 21:50:47','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156651,'2026-07-19 21:50:47','/storage/logs/laravel.log','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156652,'2026-07-19 21:50:48','/.env.swp','https://solsculpting.us7.cdn-alpha.com','anthropic-ai',NULL,404,'GET',NULL,'35.245.65.174'),(156653,'2026-07-19 21:50:48','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ChatGPT-User/1.0; +https://openai.com/bot',NULL,404,'GET',NULL,'35.245.65.174'),(156654,'2026-07-19 21:50:48','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; OAI-SearchBot/1.0; +https://openai.com/searchbot',NULL,404,'GET',NULL,'35.245.65.174'),(156655,'2026-07-19 21:50:48','/configuration.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156656,'2026-07-19 21:50:48','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156657,'2026-07-19 21:50:48','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'35.245.65.174'),(156658,'2026-07-19 21:50:48','/config/secrets.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; MistralAI-User/1.0',NULL,404,'GET',NULL,'35.245.65.174'),(156659,'2026-07-19 21:50:49','/bootstrap.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GoogleOther; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'35.245.65.174'),(156660,'2026-07-19 21:50:49','/.gradle/gradle.properties','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'35.245.65.174'),(156661,'2026-07-19 21:50:49','/.env.prod.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; ClaudeBot/1.0; +mailto:support@anthropic.com',NULL,404,'GET',NULL,'35.245.65.174'),(156662,'2026-07-19 21:50:49','/settings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; cohere-ai/1.0; +https://cohere.com)',NULL,404,'GET',NULL,'35.245.65.174'),(156663,'2026-07-19 21:50:49','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'35.245.65.174'),(156664,'2026-07-19 21:50:49','/app-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko); compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot',NULL,404,'GET',NULL,'35.245.65.174'),(156665,'2026-07-19 21:50:50','/__/firebase/init.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'35.245.65.174'),(156666,'2026-07-19 23:37:28','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.178'),(156667,'2026-07-20 00:07:08','/_next/webpack-hmr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156668,'2026-07-20 00:07:09','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156669,'2026-07-20 00:07:09','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156670,'2026-07-20 00:07:10','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156671,'2026-07-20 00:07:10','/_ignition/health-check','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156672,'2026-07-20 00:07:10','/_next/static/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156673,'2026-07-20 00:07:10','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'173.255.206.73'),(156674,'2026-07-20 00:56:14','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.214.177'),(156675,'2026-07-20 00:56:17','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.214.177'),(156676,'2026-07-20 00:56:20','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.214.177'),(156677,'2026-07-20 00:56:31','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.214.177'),(156678,'2026-07-20 00:56:33','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.12.214.177'),(156679,'2026-07-20 04:57:06','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'45.156.129.85'),(156680,'2026-07-20 04:57:07','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'45.156.129.85'),(156681,'2026-07-20 05:00:48','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.223'),(156682,'2026-07-20 05:00:53','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.223'),(156683,'2026-07-20 05:47:24','/.env?_=7foyj4hd&v=frdwk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=8pr1a0',404,'GET',NULL,'93.123.109.163'),(156684,'2026-07-20 05:50:42','/api/.env?_=ncdc64w2&v=i2739','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156685,'2026-07-20 05:53:06','/aws.env?_=3fotl7sg&v=jsivs','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=gk4xdr',404,'GET',NULL,'93.123.109.163'),(156686,'2026-07-20 05:56:58','/assets/config.json?_=j5c5hia0&v=ql19m','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156687,'2026-07-20 06:17:11','/backup.sql.txt?_=dxyjxcww&v=v4nm8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.bing.com/search?q=878226',404,'GET',NULL,'93.123.109.163'),(156688,'2026-07-20 06:18:05','/actuator/configprops?_=qww0702k&v=v0ibg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156689,'2026-07-20 06:19:15','/telescope/api/mail?_=hptdxl6t&v=3ma78','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156690,'2026-07-20 06:50:40','//etc/passwd?_=holh4pbd&v=g39w7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156691,'2026-07-20 06:50:43','//etc/shadow?_=byn5rr5j&v=nf1am','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156692,'2026-07-20 06:50:44','//etc/hosts?_=bs9dcjli&v=30ab4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/6qwuhfax1q',404,'GET',NULL,'93.123.109.163'),(156693,'2026-07-20 06:50:45','//proc/self/environ?_=4ll2fdwc&v=y0ggt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=x15f9z',404,'GET',NULL,'93.123.109.163'),(156694,'2026-07-20 06:50:56','//proc/version?_=liqgt360&v=dx59m','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156695,'2026-07-20 06:51:02','//.aws/credentials?_=28l8gsda&v=nu7en','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.bing.com/search?q=rosvb7',404,'GET',NULL,'93.123.109.163'),(156696,'2026-07-20 06:51:04','//.env?_=b6y8dpjm&v=552z2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://t.co/fze2w7cdtt',404,'GET',NULL,'93.123.109.163'),(156697,'2026-07-20 06:51:06','//var/www/html/.env?_=kvpq7t8t&v=4cey7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://t.co/fdkm7j1105',404,'GET',NULL,'93.123.109.163'),(156698,'2026-07-20 06:51:14','//var/www/.env?_=fj2b29k3&v=35dlc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/search?q=50aaon',404,'GET',NULL,'93.123.109.163'),(156699,'2026-07-20 06:51:46','//app/.env?_=e486lhyf&v=s561u','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156700,'2026-07-20 06:51:57','//srv/.env?_=czkp4yhk&v=dg7cx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156701,'2026-07-20 06:52:03','//home/.env?_=5a8n0stw&v=m9ich','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=504mal',404,'GET',NULL,'93.123.109.163'),(156702,'2026-07-20 06:52:09','//var/log/nginx/access.log?_=zlri51z9&v=la80p','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156703,'2026-07-20 06:52:18','//var/log/apache2/access.log?_=lbb93n4e&v=k1yaq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=mwskty',404,'GET',NULL,'93.123.109.163'),(156704,'2026-07-20 06:52:19','//var/log/auth.log?_=hs6w495n&v=1y72s','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/search?q=srzygk',404,'GET',NULL,'93.123.109.163'),(156705,'2026-07-20 06:52:26','//var/log/secure?_=ki9avbpg&v=6qudg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156706,'2026-07-20 06:52:27','//proc/self/cmdline?_=zoy7xdtg&v=190bi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156707,'2026-07-20 06:52:33','//proc/net/tcp?_=tnlxrktr&v=7cueg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=flqjf',404,'GET',NULL,'93.123.109.163'),(156708,'2026-07-20 06:52:47','//root/.bash_history?_=6x2juce5&v=sgwmj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/bakxhevieo',404,'GET',NULL,'93.123.109.163'),(156709,'2026-07-20 06:52:57','//root/.mysql_history?_=dn3kf29g&v=ymf0v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156710,'2026-07-20 06:53:03','//etc/nginx/nginx.conf?_=4t1bcnoc&v=umdxi','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156711,'2026-07-20 06:53:04','//etc/apache2/apache2.conf?_=mj4kb3fl&v=762gy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=ht53f',404,'GET',NULL,'93.123.109.163'),(156712,'2026-07-20 06:53:06','//var/www/html/.git/config?_=xh2gp2s9&v=x6qse','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=1hxyoh',404,'GET',NULL,'93.123.109.163'),(156713,'2026-07-20 06:53:08','//var/www/.git/config?_=pkeptru8&v=0m4r4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156714,'2026-07-20 06:53:19','//etc/ssh/sshd_config?_=gf32oeq0&v=qbrhn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156715,'2026-07-20 06:53:20','//root/.ssh/id_rsa?_=g9oqy820&v=utbtd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156716,'2026-07-20 06:53:22','//root/.ssh/id_ed25519?_=2c2pxs6x&v=hdch2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=mdwe1s',404,'GET',NULL,'93.123.109.163'),(156717,'2026-07-20 06:53:29','//home/ubuntu/.ssh/id_rsa?_=9cbkdoeo&v=a2mbj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.google.com/search?q=0hess2',404,'GET',NULL,'93.123.109.163'),(156718,'2026-07-20 06:53:31','//home/ubuntu/.ssh/id_ed25519?_=da5ilc0l&v=rnva2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156719,'2026-07-20 06:53:32','//home/deploy/.ssh/id_rsa?_=nhuq3k2o&v=u203v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156720,'2026-07-20 06:53:40','//home/ec2-user/.ssh/id_rsa?_=5w7fgxv4&v=5r84t','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.bing.com/search?q=oqmdg3',404,'GET',NULL,'93.123.109.163'),(156721,'2026-07-20 06:53:59','//home/www-data/.ssh/id_rsa?_=i8r9s0n9&v=7coui','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156722,'2026-07-20 06:54:00','//home/git/.ssh/id_rsa?_=6h26kbno&v=1yxmg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156723,'2026-07-20 06:54:15','//home/admin/.ssh/id_rsa?_=pkwygw14&v=srxb8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156724,'2026-07-20 06:54:26','///etc/passwd?_=6tdzzmdy&v=zxc5y','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=2zv00v',404,'GET',NULL,'93.123.109.163'),(156725,'2026-07-20 06:54:28','///etc/shadow?_=azjk3pkm&v=d0cok','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156726,'2026-07-20 06:54:29','///etc/hosts?_=2vr4wksz&v=8fkf9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.google.com/search?q=hlrxwm',404,'GET',NULL,'93.123.109.163'),(156727,'2026-07-20 06:55:00','///proc/self/environ?_=pay691r2&v=c1r2r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/search?q=kq8e4h',404,'GET',NULL,'93.123.109.163'),(156728,'2026-07-20 06:55:17','///proc/version?_=vco9a2ju&v=56vn9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156729,'2026-07-20 06:55:18','///.aws/credentials?_=q1kw5zvn&v=h9p3l','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156730,'2026-07-20 06:55:20','///.env?_=vsztlrax&v=uidl3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/6eghhvhhx3',404,'GET',NULL,'93.123.109.163'),(156731,'2026-07-20 06:55:21','///var/www/html/.env?_=y0f3nvs7&v=vpr7v','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156732,'2026-07-20 06:55:22','///var/www/.env?_=geqbijwt&v=i0ciq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156733,'2026-07-20 06:55:39','///app/.env?_=a6exhg7l&v=s18g6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156734,'2026-07-20 06:55:54','///srv/.env?_=21bvnzb9&v=e94h9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://duckduckgo.com/?q=3uv72',404,'GET',NULL,'93.123.109.163'),(156735,'2026-07-20 06:55:56','///home/.env?_=v5a2bqfe&v=pzlz2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156736,'2026-07-20 06:56:03','///var/log/nginx/access.log?_=gthzqbj5&v=28mqr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=0ctis',404,'GET',NULL,'93.123.109.163'),(156737,'2026-07-20 06:56:06','///var/log/apache2/access.log?_=pehi73cp&v=h2j2r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=rz1cd',404,'GET',NULL,'93.123.109.163'),(156738,'2026-07-20 06:56:07','///var/log/auth.log?_=dz8vrx34&v=ub80r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://duckduckgo.com/?q=gzw9d',404,'GET',NULL,'93.123.109.163'),(156739,'2026-07-20 06:56:09','///var/log/secure?_=5hoqk8r1&v=och67','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=g196br',404,'GET',NULL,'93.123.109.163'),(156740,'2026-07-20 06:56:14','///proc/self/cmdline?_=sbugery9&v=t9c8a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=v028r',404,'GET',NULL,'93.123.109.163'),(156741,'2026-07-20 06:56:15','///proc/net/tcp?_=z9tdv2w9&v=9ephr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156742,'2026-07-20 06:56:17','///root/.bash_history?_=0se5x9wu&v=4xfh4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/ouq91o5ugg',404,'GET',NULL,'93.123.109.163'),(156743,'2026-07-20 06:56:26','///root/.mysql_history?_=opx2lh3d&v=evszn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156744,'2026-07-20 06:56:35','///etc/nginx/nginx.conf?_=cmc5gg7v&v=3jt24','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156745,'2026-07-20 06:56:46','///etc/apache2/apache2.conf?_=rucb5cq1&v=5v505','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156746,'2026-07-20 06:56:47','///var/www/html/.git/config?_=zdv0klm0&v=jj75f','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://duckduckgo.com/?q=dc5gw',404,'GET',NULL,'93.123.109.163'),(156747,'2026-07-20 06:56:50','///var/www/.git/config?_=vf354sgx&v=cquzr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156748,'2026-07-20 06:56:51','///etc/ssh/sshd_config?_=0eenmb9b&v=1yf86','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156749,'2026-07-20 06:56:54','///root/.ssh/id_rsa?_=c8ng9pzd&v=h5rdx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156750,'2026-07-20 06:56:55','///root/.ssh/id_ed25519?_=ovby4lrv&v=og6ql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156751,'2026-07-20 06:56:56','///home/ubuntu/.ssh/id_rsa?_=jcs32pr3&v=mume2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156752,'2026-07-20 06:57:06','///home/ubuntu/.ssh/id_ed25519?_=75gac43k&v=umf4q','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156753,'2026-07-20 06:57:12','///home/deploy/.ssh/id_rsa?_=ybfotnra&v=j16d5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://duckduckgo.com/?q=kz906',404,'GET',NULL,'93.123.109.163'),(156754,'2026-07-20 06:57:13','///home/ec2-user/.ssh/id_rsa?_=d9r159u5&v=h6fl7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=dcvgpy',404,'GET',NULL,'93.123.109.163'),(156755,'2026-07-20 07:31:09','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156756,'2026-07-20 07:31:11','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/nqppcto02e',404,'GET',NULL,'93.123.109.163'),(156757,'2026-07-20 07:31:17','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/search?q=hkevx4',404,'GET',NULL,'93.123.109.163'),(156758,'2026-07-20 07:31:18','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156759,'2026-07-20 07:31:19','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156760,'2026-07-20 07:31:20','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156761,'2026-07-20 07:31:23','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156762,'2026-07-20 07:31:23','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/search?q=laonw9',404,'GET',NULL,'93.123.109.163'),(156763,'2026-07-20 07:31:24','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=w54cl',404,'GET',NULL,'93.123.109.163'),(156764,'2026-07-20 07:31:55','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=9sn0vn',404,'GET',NULL,'93.123.109.163'),(156765,'2026-07-20 07:32:07','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156766,'2026-07-20 07:32:10','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=l6k6r2',404,'GET',NULL,'93.123.109.163'),(156767,'2026-07-20 07:32:12','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156768,'2026-07-20 07:32:32','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://duckduckgo.com/?q=xoqft',404,'GET',NULL,'93.123.109.163'),(156769,'2026-07-20 07:32:36','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.bing.com/search?q=ga6a0h',404,'GET',NULL,'93.123.109.163'),(156770,'2026-07-20 07:32:37','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156771,'2026-07-20 07:32:39','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156772,'2026-07-20 07:33:00','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156773,'2026-07-20 07:33:01','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://duckduckgo.com/?q=34tuq',404,'GET',NULL,'93.123.109.163'),(156774,'2026-07-20 07:33:03','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156775,'2026-07-20 07:33:04','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156776,'2026-07-20 07:33:08','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/dd12h5ik9i',404,'GET',NULL,'93.123.109.163'),(156777,'2026-07-20 07:33:09','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.google.com/search?q=jsm8d7',404,'GET',NULL,'93.123.109.163'),(156778,'2026-07-20 07:33:13','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=mxeaoo',404,'GET',NULL,'93.123.109.163'),(156779,'2026-07-20 07:33:20','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=hdvdml',404,'GET',NULL,'93.123.109.163'),(156780,'2026-07-20 07:33:21','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://duckduckgo.com/?q=jgqa8',404,'GET',NULL,'93.123.109.163'),(156781,'2026-07-20 07:33:22','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156782,'2026-07-20 07:33:25','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156783,'2026-07-20 07:33:26','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/7fcj1jyef2',404,'GET',NULL,'93.123.109.163'),(156784,'2026-07-20 07:33:27','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156785,'2026-07-20 07:33:28','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156786,'2026-07-20 07:33:38','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156787,'2026-07-20 07:33:41','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://t.co/2x0h3hzbu4',404,'GET',NULL,'93.123.109.163'),(156788,'2026-07-20 07:33:47','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156789,'2026-07-20 07:33:58','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156790,'2026-07-20 07:33:59','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156791,'2026-07-20 07:34:19','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156792,'2026-07-20 07:34:21','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://t.co/nnm3s66jh6',404,'GET',NULL,'93.123.109.163'),(156793,'2026-07-20 07:34:24','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156794,'2026-07-20 07:34:34','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156795,'2026-07-20 07:34:45','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.bing.com/search?q=1al87o',404,'GET',NULL,'93.123.109.163'),(156796,'2026-07-20 07:34:50','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=isilty',404,'GET',NULL,'93.123.109.163'),(156797,'2026-07-20 07:35:06','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156798,'2026-07-20 07:35:49','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://duckduckgo.com/?q=0e5jr',404,'GET',NULL,'93.123.109.163'),(156799,'2026-07-20 07:35:54','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=y6dx6o',404,'GET',NULL,'93.123.109.163'),(156800,'2026-07-20 07:35:55','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.bing.com/search?q=w9zjq5',404,'GET',NULL,'93.123.109.163'),(156801,'2026-07-20 07:35:56','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156802,'2026-07-20 07:35:57','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156803,'2026-07-20 07:36:25','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156804,'2026-07-20 07:36:26','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156805,'2026-07-20 07:36:28','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156806,'2026-07-20 07:36:29','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156807,'2026-07-20 07:36:30','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.bing.com/search?q=9dgoii',404,'GET',NULL,'93.123.109.163'),(156808,'2026-07-20 07:36:36','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=o53g5',404,'GET',NULL,'93.123.109.163'),(156809,'2026-07-20 07:36:44','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156810,'2026-07-20 07:36:57','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156811,'2026-07-20 07:36:59','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156812,'2026-07-20 07:37:07','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=xfokv',404,'GET',NULL,'93.123.109.163'),(156813,'2026-07-20 07:37:09','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=c5emwt',404,'GET',NULL,'93.123.109.163'),(156814,'2026-07-20 07:37:12','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156815,'2026-07-20 07:37:20','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156816,'2026-07-20 07:37:43','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156817,'2026-07-20 07:37:44','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=6ioz1i',404,'GET',NULL,'93.123.109.163'),(156818,'2026-07-20 07:37:46','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://duckduckgo.com/?q=73db5',404,'GET',NULL,'93.123.109.163'),(156819,'2026-07-20 07:37:49','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156820,'2026-07-20 07:37:52','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.234'),(156821,'2026-07-20 07:37:54','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.234'),(156822,'2026-07-20 07:37:54','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.234'),(156823,'2026-07-20 07:37:55','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.234'),(156824,'2026-07-20 07:37:58','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156825,'2026-07-20 07:38:00','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/search?q=dcrksa',404,'GET',NULL,'93.123.109.163'),(156826,'2026-07-20 07:38:01','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156827,'2026-07-20 07:38:08','/../etc/passwd?_=mc07wcx6&v=14d6w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156828,'2026-07-20 07:38:15','/../etc/shadow?_=ckdcynii&v=60s1z','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156829,'2026-07-20 07:38:19','/../etc/hosts?_=vhhspdog&v=u0alm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156830,'2026-07-20 07:38:24','/../proc/self/environ?_=aq862iuw&v=a89ln','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156831,'2026-07-20 07:38:25','/../proc/version?_=y99ed8gb&v=r9ufs','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156832,'2026-07-20 07:38:30','/../.aws/credentials?_=i0a11ht3&v=lg9md','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156833,'2026-07-20 07:38:38','/../.env?_=o28yym4t&v=o0gnx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156834,'2026-07-20 07:38:52','/../var/www/html/.env?_=9ipmd1li&v=fr4aa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156835,'2026-07-20 07:38:55','/../var/www/.env?_=nqigtp5x&v=3bcq9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156836,'2026-07-20 07:39:33','/../app/.env?_=51u6mckt&v=nm0up','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://duckduckgo.com/?q=gijct',404,'GET',NULL,'93.123.109.163'),(156837,'2026-07-20 07:39:34','/../srv/.env?_=mx3at9ox&v=dphgu','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156838,'2026-07-20 07:39:35','/../home/.env?_=cff2wiy4&v=wzfwn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=zdr2ws',404,'GET',NULL,'93.123.109.163'),(156839,'2026-07-20 07:39:53','/../var/log/nginx/access.log?_=ynmkjush&v=4oa1h','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156840,'2026-07-20 07:40:00','/../var/log/apache2/access.log?_=cjih9c3p&v=yl525','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156841,'2026-07-20 07:40:04','/../var/log/auth.log?_=hxs9p67a&v=t4anh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://t.co/qh0gd6swwm',404,'GET',NULL,'93.123.109.163'),(156842,'2026-07-20 07:40:10','/../var/log/secure?_=vvydolh2&v=trmk3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://t.co/sne5nlxo7k',404,'GET',NULL,'93.123.109.163'),(156843,'2026-07-20 07:40:12','/../proc/self/cmdline?_=rowrff3t&v=6i52c','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://duckduckgo.com/?q=ivxzb',404,'GET',NULL,'93.123.109.163'),(156844,'2026-07-20 07:40:16','/../proc/net/tcp?_=8tt74j62&v=zrsuf','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156845,'2026-07-20 07:40:17','/../root/.bash_history?_=vm83r22y&v=x7i6w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156846,'2026-07-20 07:40:32','/../root/.mysql_history?_=k174ci0z&v=15pgr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://t.co/wghl5lqbyn',404,'GET',NULL,'93.123.109.163'),(156847,'2026-07-20 07:40:35','/../etc/nginx/nginx.conf?_=7z3ultt1&v=6gu05','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156848,'2026-07-20 07:40:39','/../etc/apache2/apache2.conf?_=rr8ha6gt&v=ucz2k','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://duckduckgo.com/?q=qqon0',404,'GET',NULL,'93.123.109.163'),(156849,'2026-07-20 07:40:50','/../var/www/html/.git/config?_=v74v4t48&v=sh258','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156850,'2026-07-20 07:41:03','/../var/www/.git/config?_=0jy9g9t9&v=fap0o','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://t.co/b1x8uq46a3',404,'GET',NULL,'93.123.109.163'),(156851,'2026-07-20 07:41:04','/../etc/ssh/sshd_config?_=cxcgky5x&v=ehhkj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156852,'2026-07-20 07:41:05','/../root/.ssh/id_rsa?_=g7mrna23&v=1rrmd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.bing.com/search?q=kt4okn',404,'GET',NULL,'93.123.109.163'),(156853,'2026-07-20 07:41:16','/../root/.ssh/id_ed25519?_=sk82263m&v=3iv0p','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156854,'2026-07-20 07:41:17','/../home/ubuntu/.ssh/id_rsa?_=ck2xi8iu&v=v09w0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156855,'2026-07-20 07:41:32','/../home/ubuntu/.ssh/id_ed25519?_=eyyw7fv9&v=mwnca','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156856,'2026-07-20 07:41:44','/../home/deploy/.ssh/id_rsa?_=vch938zu&v=cr3i5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://duckduckgo.com/?q=bni15',404,'GET',NULL,'93.123.109.163'),(156857,'2026-07-20 07:41:48','/../home/ec2-user/.ssh/id_rsa?_=us38amm5&v=kid73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156858,'2026-07-20 07:41:57','/../home/www-data/.ssh/id_rsa?_=9f5efgq5&v=af9n6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156859,'2026-07-20 07:41:57','/../home/git/.ssh/id_rsa?_=50s7g9dm&v=9duos','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://www.bing.com/search?q=sq5kad',404,'GET',NULL,'93.123.109.163'),(156860,'2026-07-20 07:41:58','/../home/admin/.ssh/id_rsa?_=ti0vfbjo&v=vddcg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156861,'2026-07-20 07:42:12','/../../etc/passwd?_=v2do2soz&v=u0rrs','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/mdbvyic7pt',404,'GET',NULL,'93.123.109.163'),(156862,'2026-07-20 07:42:20','/../../etc/shadow?_=bpukfkw2&v=uzscv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156863,'2026-07-20 07:42:27','/../../etc/hosts?_=rr5fcglh&v=n2zc5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://t.co/vdte04e2wi',404,'GET',NULL,'93.123.109.163'),(156864,'2026-07-20 07:42:28','/../../proc/self/environ?_=vj4t4vnf&v=f2vgc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156865,'2026-07-20 07:42:37','/../../proc/version?_=nwa6ndjs&v=jdghv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156866,'2026-07-20 07:42:44','/../../.aws/credentials?_=cws52quz&v=6n96e','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156867,'2026-07-20 07:43:01','/../../.env?_=ru97ltmb&v=n2l1r','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156868,'2026-07-20 07:43:02','/../../var/www/html/.env?_=ngk0ro1d&v=cdovh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.bing.com/search?q=fb4hx9',404,'GET',NULL,'93.123.109.163'),(156869,'2026-07-20 07:43:02','/../../var/www/.env?_=fll939w2&v=zi2s0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156870,'2026-07-20 07:43:37','/../../app/.env?_=3einja1l&v=hllu5','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://duckduckgo.com/?q=l2ssw',404,'GET',NULL,'93.123.109.163'),(156871,'2026-07-20 07:43:49','/plugins/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156872,'2026-07-20 07:43:52','/randkeyword.php7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156873,'2026-07-20 07:43:55','/../../srv/.env?_=30r37gmi&v=ukxm2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156874,'2026-07-20 07:43:55','/shop/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'4.194.24.143'),(156875,'2026-07-20 07:43:56','/../../home/.env?_=a7bsqm3h&v=ce47a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://t.co/stakkty8ol',404,'GET',NULL,'93.123.109.163'),(156876,'2026-07-20 07:44:04','/../../var/log/nginx/access.log?_=j4czg19v&v=m4iqm','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156877,'2026-07-20 07:44:05','/../../var/log/apache2/access.log?_=3z1tgx8s&v=p90ik','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156878,'2026-07-20 07:44:06','/../../var/log/auth.log?_=s29k3epx&v=kmoxr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156879,'2026-07-20 07:44:09','/../../var/log/secure?_=qjneeu6b&v=c0u61','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156880,'2026-07-20 07:44:10','/../../proc/self/cmdline?_=3ldpa2a0&v=1p14p','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.google.com/search?q=ewl30a',404,'GET',NULL,'93.123.109.163'),(156881,'2026-07-20 07:44:18','/../../proc/net/tcp?_=xnj0609g&v=n4i0o','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156882,'2026-07-20 07:44:19','/../../root/.bash_history?_=iezx8hmp&v=7jqny','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156883,'2026-07-20 07:44:20','/../../root/.mysql_history?_=oyyaas3o&v=9kzc6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156884,'2026-07-20 07:44:21','/../../etc/nginx/nginx.conf?_=ltfsjbup&v=hl982','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156885,'2026-07-20 07:44:22','/../../etc/apache2/apache2.conf?_=tw1giyqf&v=m4t7z','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.bing.com/search?q=2nzamg',404,'GET',NULL,'93.123.109.163'),(156886,'2026-07-20 07:44:28','/../../var/www/html/.git/config?_=c9dnw0my&v=kzjxa','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://t.co/xrt7hvwugn',404,'GET',NULL,'93.123.109.163'),(156887,'2026-07-20 07:44:36','/../../var/www/.git/config?_=gpkptpo1&v=98g4s','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156888,'2026-07-20 07:44:44','/../../etc/ssh/sshd_config?_=qxa6l2v5&v=kkish','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/search?q=tj95mm',404,'GET',NULL,'93.123.109.163'),(156889,'2026-07-20 07:44:46','/../../root/.ssh/id_rsa?_=kqhekbq3&v=m5jx8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.google.com/search?q=qykpnb',404,'GET',NULL,'93.123.109.163'),(156890,'2026-07-20 07:44:49','/../../root/.ssh/id_ed25519?_=1mirs9yn&v=zb731','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156891,'2026-07-20 07:44:51','/../../home/ubuntu/.ssh/id_rsa?_=nodl3e8c&v=j345k','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156892,'2026-07-20 07:45:01','/../../home/ubuntu/.ssh/id_ed25519?_=kh1v6wnm&v=v54s0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.bing.com/search?q=zhncqs',404,'GET',NULL,'93.123.109.163'),(156893,'2026-07-20 07:45:10','/../../home/deploy/.ssh/id_rsa?_=7s134qsr&v=g9em7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Safari/605.1.15','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156894,'2026-07-20 07:45:13','/../../home/ec2-user/.ssh/id_rsa?_=b2ipo5rv&v=q6dtw','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156895,'2026-07-20 07:45:14','/../../home/www-data/.ssh/id_rsa?_=abi1duzi&v=wps55','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156896,'2026-07-20 07:45:32','/../../home/git/.ssh/id_rsa?_=ectp1s64&v=2xxwk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156897,'2026-07-20 07:45:33','/../../home/admin/.ssh/id_rsa?_=59gwv9w9&v=albt9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156898,'2026-07-20 07:45:35','/..../etc/passwd?_=xxvz4an3&v=o0i78','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156899,'2026-07-20 07:45:39','/..../etc/shadow?_=t841ty70&v=uzwhz','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156900,'2026-07-20 07:45:43','/..../etc/hosts?_=jp0snjcx&v=11u19','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156901,'2026-07-20 07:45:45','/..../proc/self/environ?_=bjmdpocs&v=kt6go','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=vbg6vi',404,'GET',NULL,'93.123.109.163'),(156902,'2026-07-20 07:46:01','/..../proc/version?_=l0xlzu2m&v=cmcbl','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://duckduckgo.com/?q=grqa6',404,'GET',NULL,'93.123.109.163'),(156903,'2026-07-20 07:50:21','/..../root/.ssh/id_ed25519?_=rxtmi1zb&v=su6e0','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156904,'2026-07-20 07:52:45','/..../..../app/.env?_=ia3cpswr&v=kmggn','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156905,'2026-07-20 07:52:49','/..../..../srv/.env?_=dxqwlgt6&v=rmmsh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156906,'2026-07-20 07:53:18','/..../..../var/log/nginx/access.log?_=16bizsu1&v=o56dq','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156907,'2026-07-20 07:53:38','/..../..../var/log/apache2/access.log?_=df0w26gh&v=vdsab','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156908,'2026-07-20 08:22:10','/\\..\\..\\etc\\passwd?_=7b1mj5cg&v=ujcii','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156909,'2026-07-20 08:22:18','/..\\..\\..\\etc\\passwd?_=tmqodcjn&v=9ok7w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://t.co/a3r55u83ct',404,'GET',NULL,'93.123.109.163'),(156910,'2026-07-20 08:22:21','/..\\..\\..\\etc\\passwd?_=z784oa87&v=ur1ex','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://duckduckgo.com/?q=neglk',404,'GET',NULL,'93.123.109.163'),(156911,'2026-07-20 08:22:47','/..\\/..\\/etc/passwd?_=t8nk14qg&v=ikiei','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156912,'2026-07-20 08:22:53','/actuator/gateway/routes?_=5t6te1lf&v=1l296','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 OPR/110.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156913,'2026-07-20 08:22:56','/actuator/loggers?_=tb9me0e9&v=1rgf6','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156914,'2026-07-20 08:23:06','/actuator/heapdump?_=ss8mzcta&v=9qm8t','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156915,'2026-07-20 08:23:33','/_next/data/build.json?_=aaxvul3y&v=fkozo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/1jrtyea9wb',404,'GET',NULL,'93.123.109.163'),(156916,'2026-07-20 08:23:52','/__nextjs_original-stack-frame?_=enqf4tr7&v=9ast3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36 Edg/126.0.0.0','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156917,'2026-07-20 08:24:03','/console?_=kekpx9sx&v=srkln','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://duckduckgo.com/?q=lka5j',404,'GET',NULL,'93.123.109.163'),(156918,'2026-07-20 08:24:13','/admin/debug?_=8lm9emzq&v=3phew','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=lez3x6',404,'GET',NULL,'93.123.109.163'),(156919,'2026-07-20 08:24:37','/aspnet_client~1?_=wtif0q0s&v=jlf4y','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156920,'2026-07-20 08:24:53','/.env ?_=uq6pt705&v=jjd52','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://duckduckgo.com/?q=pc4g0',404,'GET',NULL,'93.123.109.163'),(156921,'2026-07-20 08:25:04','/static../etc/passwd?_=y6159mk1&v=r944w','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156922,'2026-07-20 08:25:32','/static../.env?_=q6ugdni3&v=tqcys','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/search?q=ees86s',404,'GET',NULL,'93.123.109.163'),(156923,'2026-07-20 08:25:39','/files../etc/passwd?_=sx0p6r3z&v=92fy7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/drwg9ckwev',404,'GET',NULL,'93.123.109.163'),(156924,'2026-07-20 08:25:42','/files../.env?_=kf24ioxp&v=qnn7a','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=tsr361',404,'GET',NULL,'93.123.109.163'),(156925,'2026-07-20 08:26:00','/assets../etc/passwd?_=1uxmc76m&v=i3gok','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=z86p25',404,'GET',NULL,'93.123.109.163'),(156926,'2026-07-20 08:26:17','/assets../.env?_=k59aurib&v=qmgdk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156927,'2026-07-20 08:26:25','/uploads../.env?_=w6b0u3f7&v=4ojff','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156928,'2026-07-20 08:26:28','/media../.env?_=iubnt7lc&v=4geuo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156929,'2026-07-20 08:26:30','/cdn../.env?_=wage0v8z&v=nxfdk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156930,'2026-07-20 08:26:31','/public../.env?_=twgaoe9y&v=ot8jy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S918B Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/121.0.0.0 Mobile Safari/537.36','https://www.reddit.com/',404,'GET',NULL,'93.123.109.163'),(156931,'2026-07-20 08:26:32','/resources../.env?_=gcz2ki2e&v=qa26t','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_4_1) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.4.1 Safari/605.1.15','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156932,'2026-07-20 08:26:33','/static../../etc/passwd?_=kh6muh8g&v=57pxg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156933,'2026-07-20 08:26:35','/static../../.env?_=a3e9uhv8&v=azj42','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-S928B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.165 Mobile Safari/537.36','https://news.ycombinator.com/',404,'GET',NULL,'93.123.109.163'),(156934,'2026-07-20 08:26:36','/files../../etc/passwd?_=dy0vpx8n&v=u7pin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14.5; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156935,'2026-07-20 08:27:05','/files../../.env?_=jk8s2mz6&v=sc32c','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/n7ufwf4rw0',404,'GET',NULL,'93.123.109.163'),(156936,'2026-07-20 08:27:06','/assets../../etc/passwd?_=zqhdrte7&v=wehw4','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36 Vivaldi/6.7.3329.35','https://duckduckgo.com/?q=bby1p',404,'GET',NULL,'93.123.109.163'),(156937,'2026-07-20 08:27:07','/assets../../.env?_=bw0mv3at&v=b6jo7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156938,'2026-07-20 08:27:08','/uploads../../.env?_=vno3ao7v&v=8m823','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://www.google.com/',404,'GET',NULL,'93.123.109.163'),(156939,'2026-07-20 08:27:10','/media../../.env?_=vw33bmz2&v=2i5kg','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.facebook.com/',404,'GET',NULL,'93.123.109.163'),(156940,'2026-07-20 08:27:31','//etc/passwd?_=zlzitkle&v=3a6xv','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','https://t.co/jubkupyncz',404,'GET',NULL,'93.123.109.163'),(156941,'2026-07-20 08:27:34','//.env?_=6u90bmmd&v=4rb4u','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36','https://www.google.com/search?q=23i51y',404,'GET',NULL,'93.123.109.163'),(156942,'2026-07-20 08:27:35','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8 Pro) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Mobile Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156943,'2026-07-20 08:27:37','/../../etc/passwd?_=myczqtx3&v=pyyhz','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 14; en-US; Redmi Note 13 Pro Build/UP1A.231005.007) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 UCBrowser/13.4.0.1306 Mobile Safari/537.36','https://twitter.com/',404,'GET',NULL,'93.123.109.163'),(156944,'2026-07-20 08:28:33','/etcpasswd?_=bmkaoqo8&v=w8gcs','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:127.0) Gecko/20100101 Firefox/127.0','https://duckduckgo.com/?q=4au13',404,'GET',NULL,'93.123.109.163'),(156945,'2026-07-20 08:28:44','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPad; CPU OS 17_5_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','https://www.google.com/search?q=g71xxf',404,'GET',NULL,'93.123.109.163'),(156946,'2026-07-20 08:28:49','','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:126.0) Gecko/20100101 Firefox/126.0','https://www.bing.com/search?q=nntq1r',404,'GET',NULL,'93.123.109.163'),(156947,'2026-07-20 08:29:57','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:1.9.5.20) Gecko/ Firefox/3.6.8',NULL,404,'GET',NULL,'45.148.10.95'),(156948,'2026-07-20 08:46:14','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'23.161.169.55'),(156949,'2026-07-20 08:46:16','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156950,'2026-07-20 08:46:16','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'23.161.169.55'),(156951,'2026-07-20 08:46:16','/.env.local','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156952,'2026-07-20 08:46:17','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156953,'2026-07-20 08:46:18','/.git/HEAD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156954,'2026-07-20 08:46:18','/instance/config.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156955,'2026-07-20 08:46:18','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156956,'2026-07-20 08:46:19','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156957,'2026-07-20 08:46:19','/amplifyconfiguration.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; DeepSeekBot/1.0; +https://www.deepseek.com/bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156958,'2026-07-20 08:46:21','/serverless.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156959,'2026-07-20 08:46:21','/vercel.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156960,'2026-07-20 08:46:21','/api/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156961,'2026-07-20 08:46:21','/awsconfiguration.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(156962,'2026-07-20 08:46:21','/service-account.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156963,'2026-07-20 08:46:21','/debug/vars','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'23.161.169.55'),(156964,'2026-07-20 08:46:22','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'23.161.169.55'),(156965,'2026-07-20 08:46:22','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'23.161.169.55'),(156966,'2026-07-20 08:46:22','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(156967,'2026-07-20 08:46:22','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; DeepSeekBot/1.0; +https://www.deepseek.com/bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156968,'2026-07-20 08:46:22','/terraform.tfstate','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'23.161.169.55'),(156969,'2026-07-20 08:46:22','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'23.161.169.55'),(156970,'2026-07-20 08:46:23','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'23.161.169.55'),(156971,'2026-07-20 08:46:23','/gcp-credentials.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156972,'2026-07-20 08:46:23','/application.yml','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156973,'2026-07-20 08:46:23','/swagger.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'23.161.169.55'),(156974,'2026-07-20 08:46:24','/.netrc','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156975,'2026-07-20 08:46:24','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156976,'2026-07-20 08:46:24','/keys.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; ClaudeBot/1.0; +claudebot@anthropic.com)',NULL,404,'GET',NULL,'23.161.169.55'),(156977,'2026-07-20 08:46:24','/.npmrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156978,'2026-07-20 08:46:24','/netlify.toml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156979,'2026-07-20 08:46:24','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156980,'2026-07-20 08:46:24','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(156981,'2026-07-20 08:46:24','/terraform.tfvars','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156982,'2026-07-20 08:46:24','/firebase-adminsdk.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(156983,'2026-07-20 08:46:24','/openapi.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; xAI-SearchBot/1.0; +https://x.ai)',NULL,404,'GET',NULL,'23.161.169.55'),(156984,'2026-07-20 08:46:24','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(156985,'2026-07-20 08:46:24','/config.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156986,'2026-07-20 08:46:24','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; ClaudeBot/1.0; +claudebot@anthropic.com)',NULL,404,'GET',NULL,'23.161.169.55'),(156987,'2026-07-20 08:46:24','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(156988,'2026-07-20 08:46:24','/service_account.json','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156989,'2026-07-20 08:46:25','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'23.161.169.55'),(156990,'2026-07-20 08:46:25','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156991,'2026-07-20 08:46:25','/serviceAccountKey.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ChatGPT-User/1.0; +https://openai.com/bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156992,'2026-07-20 08:46:25','/local_settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; Google-CloudVertexBot; +https://cloud.google.com/vertex-ai-bot)',NULL,404,'GET',NULL,'23.161.169.55'),(156993,'2026-07-20 08:46:25','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156994,'2026-07-20 08:46:25','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; xAI-SearchBot/1.0; +https://x.ai)',NULL,404,'POST',NULL,'23.161.169.55'),(156995,'2026-07-20 08:46:25','/.env.backup','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156996,'2026-07-20 08:46:25','/application.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; xAI-SearchBot/1.0; +https://x.ai)',NULL,404,'GET',NULL,'23.161.169.55'),(156997,'2026-07-20 08:46:25','/secrets.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(156998,'2026-07-20 08:46:25','/.aws/config','https://solsculpting.us7.cdn-alpha.com','CCBot/2.0 (https://commoncrawl.org/faq/)',NULL,404,'GET',NULL,'23.161.169.55'),(156999,'2026-07-20 08:46:26','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(157000,'2026-07-20 08:46:26','/key.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.3; +https://openai.com/gptbot)',NULL,404,'GET',NULL,'23.161.169.55'),(157001,'2026-07-20 08:46:26','/actuator/configprops','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; PerplexityBot/1.0; +https://perplexity.ai/perplexitybot)',NULL,404,'GET',NULL,'23.161.169.55'),(157002,'2026-07-20 08:46:26','/.github/workflows/deploy.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; OAI-SearchBot/1.3; +https://openai.com/searchbot)',NULL,404,'GET',NULL,'23.161.169.55'),(157003,'2026-07-20 08:46:27','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'23.161.169.55'),(157004,'2026-07-20 09:29:58','/setup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/setup/',404,'GET',NULL,'130.12.180.39'),(157005,'2026-07-20 09:30:00','/api/user/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://www.solsculpting.com/api/user/',404,'GET',NULL,'130.12.180.39'),(157006,'2026-07-20 09:37:06','/_rNd9xZ7kL3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.6422.113 Mobile Safari/537.36','https://www.google.com/search?q=www.solsculpting.com',404,'GET',NULL,'104.22.24.214'),(157007,'2026-07-20 09:58:09','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.177'),(157008,'2026-07-20 10:50:23','/.env','https://solsculpting.us7.cdn-alpha.com',NULL,'https://www.solsculpting.com/.env',404,'GET',NULL,'196.74.175.225'),(157009,'2026-07-20 12:00:46','/file-manager/initialize','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',NULL,404,'GET',NULL,'213.35.102.249'),(157010,'2026-07-20 12:00:48','/filemanager/initialize','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',NULL,404,'GET',NULL,'213.35.102.249'),(157011,'2026-07-20 12:00:49','/laravel-file-manager/initialize','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',NULL,404,'GET',NULL,'213.35.102.249'),(157012,'2026-07-20 12:00:51','/laravel-filemanager/initialize','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36',NULL,404,'GET',NULL,'213.35.102.249'),(157013,'2026-07-20 16:33:55','/blog-verify','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'51.195.39.149'),(157014,'2026-07-20 18:30:30','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157015,'2026-07-20 18:30:32','/alfanew.PHP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157016,'2026-07-20 18:30:33','/cgi-bin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157017,'2026-07-20 18:30:35','/.well-known/pki-validation','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157018,'2026-07-20 20:34:31','/.tmb','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157019,'2026-07-20 20:34:32','/.well-known','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157020,'2026-07-20 20:34:36','/index.php/feed/atom','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157021,'2026-07-20 21:12:16','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.168.225.253'),(157022,'2026-07-20 21:12:18','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.168.225.253'),(157023,'2026-07-20 21:12:19','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 12; TECNO CK6n) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.50 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'34.168.225.253'),(157024,'2026-07-20 21:12:20','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; RMX2195) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.210 Mobile Safari/537.36 OPR/75.2.3995.72468','http://solsculpting.com/wp/',404,'GET',NULL,'34.168.225.253'),(157025,'2026-07-20 21:12:21','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.168.225.253'),(157026,'2026-07-20 21:12:22','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; SM-A146P) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/25.0 Chrome/123.0.6312.120 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.168.225.253'),(157027,'2026-07-20 21:18:33','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(157028,'2026-07-20 21:18:34','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(157029,'2026-07-20 21:18:35','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(157030,'2026-07-20 21:18:36','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(157031,'2026-07-20 21:38:21','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'212.32.69.198'),(157032,'2026-07-20 22:00:35','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157033,'2026-07-20 22:00:37','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157034,'2026-07-20 22:00:39','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.17.121'),(157035,'2026-07-20 22:00:41','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157036,'2026-07-20 22:00:45','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.167.133'),(157037,'2026-07-20 22:00:47','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.159.41'),(157038,'2026-07-20 22:00:48','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157039,'2026-07-20 22:00:50','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'162.158.167.133'),(157040,'2026-07-20 22:00:50','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.17.121'),(157041,'2026-07-20 22:00:52','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.17.121'),(157042,'2026-07-20 22:00:55','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157043,'2026-07-20 22:00:56','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.22.17.121'),(157044,'2026-07-20 22:00:57','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.22.17.121'),(157045,'2026-07-20 22:00:58','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'104.22.20.104'),(157046,'2026-07-20 22:00:59','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'162.158.167.133'),(157047,'2026-07-20 22:01:00','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.71.159.41'),(157048,'2026-07-20 22:01:02','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.155.12'),(157049,'2026-07-20 22:01:03','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157050,'2026-07-20 22:01:04','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.159.41'),(157051,'2026-07-20 22:01:06','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.17.121'),(157052,'2026-07-20 22:01:07','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157053,'2026-07-20 22:01:09','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'104.22.20.104'),(157054,'2026-07-20 22:01:10','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.71.159.41'),(157055,'2026-07-20 22:01:19','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.23.52'),(157056,'2026-07-20 22:32:57','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/phpinfo',404,'GET',NULL,'93.152.221.13'),(157057,'2026-07-20 22:33:00','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/_profiler/phpinfo',404,'GET',NULL,'93.152.221.13'),(157058,'2026-07-20 22:33:06','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'93.152.221.13'),(157059,'2026-07-20 22:33:07','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'93.152.221.13'),(157060,'2026-07-20 22:33:08','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.example',404,'GET',NULL,'93.152.221.13'),(157061,'2026-07-20 22:33:09','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'93.152.221.13'),(157062,'2026-07-20 22:33:10','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.backup',404,'GET',NULL,'93.152.221.13'),(157063,'2026-07-20 22:33:11','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/config/.env',404,'GET',NULL,'93.152.221.13'),(157064,'2026-07-20 22:35:24','/wp-content/et-cache/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.202.30.101'),(157065,'2026-07-20 22:35:41','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.202.30.101'),(157066,'2026-07-20 22:46:41','/assets/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157067,'2026-07-20 22:46:50','/wp-includes/bk/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157068,'2026-07-20 22:46:54','/.bod/.ll/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157069,'2026-07-21 00:52:31','/wordpress','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/wordpress',404,'GET',NULL,'14.225.17.146'),(157070,'2026-07-21 00:56:10','/Wordpress','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Wordpress',404,'GET',NULL,'14.225.17.146'),(157071,'2026-07-21 00:59:21','/WORDPRESS','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WORDPRESS',404,'GET',NULL,'14.225.17.146'),(157072,'2026-07-21 01:02:08','/WordPress','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WordPress',404,'GET',NULL,'14.225.17.146'),(157073,'2026-07-21 01:03:42','/wp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/wp',404,'GET',NULL,'14.225.17.146'),(157074,'2026-07-21 01:05:57','/Wp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Wp',404,'GET',NULL,'14.225.17.146'),(157075,'2026-07-21 01:09:12','/WP','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WP',404,'GET',NULL,'14.225.17.146'),(157076,'2026-07-21 01:11:45','/old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/old',404,'GET',NULL,'14.225.17.146'),(157077,'2026-07-21 01:14:09','/Old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Old',404,'GET',NULL,'14.225.17.146'),(157078,'2026-07-21 01:17:25','/OLD','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/OLD',404,'GET',NULL,'14.225.17.146'),(157079,'2026-07-21 01:19:27','/oldsite','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/oldsite',404,'GET',NULL,'14.225.17.146'),(157080,'2026-07-21 01:21:13','/new','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/new',404,'GET',NULL,'14.225.17.146'),(157081,'2026-07-21 01:23:45','/New','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/New',404,'GET',NULL,'14.225.17.146'),(157082,'2026-07-21 01:25:09','/NEW','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/NEW',404,'GET',NULL,'14.225.17.146'),(157083,'2026-07-21 01:29:09','/wp-old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/wp-old',404,'GET',NULL,'14.225.17.146'),(157084,'2026-07-21 01:30:45','/2022','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2022',404,'GET',NULL,'14.225.17.146'),(157085,'2026-07-21 01:32:06','/2025','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2025',404,'GET',NULL,'14.225.17.146'),(157086,'2026-07-21 01:35:35','/2026','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2026',404,'GET',NULL,'14.225.17.146'),(157087,'2026-07-21 01:38:42','/2024','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2024',404,'GET',NULL,'14.225.17.146'),(157088,'2026-07-21 01:41:16','/2017','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2017',404,'GET',NULL,'14.225.17.146'),(157089,'2026-07-21 01:44:08','/2020','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2020',404,'GET',NULL,'14.225.17.146'),(157090,'2026-07-21 01:45:47','/2019','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2019',404,'GET',NULL,'14.225.17.146'),(157091,'2026-07-21 01:46:24','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.244.114'),(157092,'2026-07-21 01:46:25','/administrator/manifests/files/joomla.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.244.114'),(157093,'2026-07-21 01:46:26','/language/en-GB/en-GB.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.244.114'),(157094,'2026-07-21 01:47:42','/2018','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2018',404,'GET',NULL,'14.225.17.146'),(157095,'2026-07-21 01:48:43','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157096,'2026-07-21 01:48:47','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157097,'2026-07-21 01:48:51','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157098,'2026-07-21 01:49:03','/zup.php73','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157099,'2026-07-21 01:49:04','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157100,'2026-07-21 01:49:39','/backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/backup',404,'GET',NULL,'14.225.17.146'),(157101,'2026-07-21 01:58:43','/demo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/demo',404,'GET',NULL,'14.225.17.146'),(157102,'2026-07-21 02:00:52','/bc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bc',404,'GET',NULL,'14.225.17.146'),(157103,'2026-07-21 02:01:28','/www','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/www',404,'GET',NULL,'14.225.17.146'),(157104,'2026-07-21 02:04:41','/WWW','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/WWW',404,'GET',NULL,'14.225.17.146'),(157105,'2026-07-21 02:06:27','/Www','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Www',404,'GET',NULL,'14.225.17.146'),(157106,'2026-07-21 02:07:15','/2021','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/2021',404,'GET',NULL,'14.225.17.146'),(157107,'2026-07-21 02:09:37','/main','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/main',404,'GET',NULL,'14.225.17.146'),(157108,'2026-07-21 02:11:10','/old-site','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/old-site',404,'GET',NULL,'14.225.17.146'),(157109,'2026-07-21 02:13:19','/bk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bk',404,'GET',NULL,'14.225.17.146'),(157110,'2026-07-21 02:16:07','/Backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Backup',404,'GET',NULL,'14.225.17.146'),(157111,'2026-07-21 02:17:42','/BACKUP','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/BACKUP',404,'GET',NULL,'14.225.17.146'),(157112,'2026-07-21 02:18:04','/wp-content/css/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157113,'2026-07-21 02:18:06','/.well-known/acme-challenge/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157114,'2026-07-21 02:18:14','/wp-content/upgrade/alfanew.php7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157115,'2026-07-21 02:20:32','/SHOP','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/SHOP',404,'GET',NULL,'14.225.17.146'),(157116,'2026-07-21 02:21:16','/Shop','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Shop',404,'GET',NULL,'14.225.17.146'),(157117,'2026-07-21 02:23:33','/shop','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/shop',404,'GET',NULL,'14.225.17.146'),(157118,'2026-07-21 02:25:48','/bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bak',404,'GET',NULL,'14.225.17.146'),(157119,'2026-07-21 02:26:34','/sitio','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/sitio',404,'GET',NULL,'14.225.17.146'),(157120,'2026-07-21 02:28:56','/bac','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/bac',404,'GET',NULL,'14.225.17.146'),(157121,'2026-07-21 02:30:48','/sito','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/sito',404,'GET',NULL,'14.225.17.146'),(157122,'2026-07-21 02:32:56','/site','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/site',404,'GET',NULL,'14.225.17.146'),(157123,'2026-07-21 02:34:15','/Site','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Site',404,'GET',NULL,'14.225.17.146'),(157124,'2026-07-21 02:36:41','/SITE','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/SITE',404,'GET',NULL,'14.225.17.146'),(157125,'2026-07-21 02:37:40','/blog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/blog',404,'GET',NULL,'14.225.17.146'),(157126,'2026-07-21 02:39:49','/BLOG','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/BLOG',404,'GET',NULL,'14.225.17.146'),(157127,'2026-07-21 02:40:50','/Blog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.45 Safari/537.36','http://solsculpting.com/Blog',404,'GET',NULL,'14.225.17.146'),(157128,'2026-07-21 04:49:35','/index.php/feed/atom/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157129,'2026-07-21 04:49:45','/images/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157130,'2026-07-21 04:49:46','/vendor/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157131,'2026-07-21 04:49:51','/wp/wp-admin/includes/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'52.165.250.117'),(157132,'2026-07-21 04:54:52','/wp-includes/blocks/audi/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.104.96.117'),(157133,'2026-07-21 06:10:44','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'64.227.36.161'),(157134,'2026-07-21 07:04:05','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'143.198.149.171'),(157135,'2026-07-21 07:20:37','/news-sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'209.50.169.101'),(157136,'2026-07-21 07:20:37','/news-sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'209.50.176.37'),(157137,'2026-07-21 07:21:08','/news-sitemap.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'209.50.165.50'),(157138,'2026-07-21 08:18:25','/1tm0okoeum5vg1do0riid61xz3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/1tm0okoeum5vg1do0riid61xz3',404,'GET',NULL,'45.148.10.244'),(157139,'2026-07-21 08:18:27','/ohps1juwvb7z7yf1j2bgv8d6.html','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/ohps1juwvb7z7yf1j2bgv8d6.html',404,'GET',NULL,'45.148.10.244'),(157140,'2026-07-21 08:18:30','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/backend/.env',404,'GET',NULL,'45.148.10.244'),(157141,'2026-07-21 08:18:30','/WEB-INF/web.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/WEB-INF/web.xml',404,'GET',NULL,'45.148.10.244'),(157142,'2026-07-21 08:18:30','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env',404,'GET',NULL,'45.148.10.244'),(157143,'2026-07-21 08:18:33','/deploy.sh','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/deploy.sh',404,'GET',NULL,'45.148.10.244'),(157144,'2026-07-21 08:18:33','/.gitlab-ci.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.gitlab-ci.yml',404,'GET',NULL,'45.148.10.244'),(157145,'2026-07-21 08:18:36','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.production',404,'GET',NULL,'45.148.10.244'),(157146,'2026-07-21 08:18:37','/source/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/source/.env',404,'GET',NULL,'45.148.10.244'),(157147,'2026-07-21 08:18:37','/config.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/config.env',404,'GET',NULL,'45.148.10.244'),(157148,'2026-07-21 08:18:38','/framework/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/framework/.env',404,'GET',NULL,'45.148.10.244'),(157149,'2026-07-21 08:18:38','/ikiwiki/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/ikiwiki/.env',404,'GET',NULL,'45.148.10.244'),(157150,'2026-07-21 08:18:39','/system/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/system/.env',404,'GET',NULL,'45.148.10.244'),(157151,'2026-07-21 08:18:39','/wp-config.php.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/wp-config.php.backup',404,'GET',NULL,'45.148.10.244'),(157152,'2026-07-21 08:18:41','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.sample',404,'GET',NULL,'45.148.10.244'),(157153,'2026-07-21 08:18:42','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.dev',404,'GET',NULL,'45.148.10.244'),(157154,'2026-07-21 08:18:44','/app_dev.php/_profiler/open?file=app/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/app_dev.php/_profiler/open?file=app/config/parameters.yml',404,'GET',NULL,'45.148.10.244'),(157155,'2026-07-21 08:18:44','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.example',404,'GET',NULL,'45.148.10.244'),(157156,'2026-07-21 08:18:45','/.env.dev.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.dev.local',404,'GET',NULL,'45.148.10.244'),(157157,'2026-07-21 08:18:46','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.prod',404,'GET',NULL,'45.148.10.244'),(157158,'2026-07-21 08:18:48','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/info.php.bak',404,'GET',NULL,'45.148.10.244'),(157159,'2026-07-21 08:18:48','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env.stage',404,'GET',NULL,'45.148.10.244'),(157160,'2026-07-21 08:18:48','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/phpinfo.php.bak',404,'GET',NULL,'45.148.10.244'),(157161,'2026-07-21 08:18:52','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.aws/credentials',404,'GET',NULL,'45.148.10.244'),(157162,'2026-07-21 08:18:52','/env/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/env/.env',404,'GET',NULL,'45.148.10.244'),(157163,'2026-07-21 08:18:52','/info.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/info.txt',404,'GET',NULL,'45.148.10.244'),(157164,'2026-07-21 08:18:54','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/src/.env',404,'GET',NULL,'45.148.10.244'),(157165,'2026-07-21 08:18:54','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.env_copy',404,'GET',NULL,'45.148.10.244'),(157166,'2026-07-21 08:18:54','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/config.json',404,'GET',NULL,'45.148.10.244'),(157167,'2026-07-21 08:18:56','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/web/.env',404,'GET',NULL,'45.148.10.244'),(157168,'2026-07-21 08:18:56','/env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/env.example',404,'GET',NULL,'45.148.10.244'),(157169,'2026-07-21 08:18:57','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/core/.env',404,'GET',NULL,'45.148.10.244'),(157170,'2026-07-21 08:18:57','/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/env',404,'GET',NULL,'45.148.10.244'),(157171,'2026-07-21 08:18:57','/phpinfo.php3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/phpinfo.php3',404,'GET',NULL,'45.148.10.244'),(157172,'2026-07-21 08:19:00','/.bashrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.bashrc',404,'GET',NULL,'45.148.10.244'),(157173,'2026-07-21 08:19:00','/.envrc','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; pathscan/1.0)','https://www.solsculpting.com/.envrc',404,'GET',NULL,'45.148.10.244'),(157174,'2026-07-21 08:57:39','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.244.114'),(157175,'2026-07-21 08:57:40','/administrator/manifests/files/joomla.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.244.114'),(157176,'2026-07-21 08:57:41','/language/en-GB/en-GB.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.236.244.114'),(157177,'2026-07-21 10:21:57','/wp-login.php/wp-json/batch/v1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'62.60.130.235'),(157178,'2026-07-21 10:33:51','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157179,'2026-07-21 10:33:53','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157180,'2026-07-21 10:33:54','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157181,'2026-07-21 10:33:55','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157182,'2026-07-21 10:33:56','/.env.staging','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157183,'2026-07-21 10:33:57','/.env.development','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157184,'2026-07-21 10:33:59','/.env.test','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157185,'2026-07-21 10:34:00','/.env.remote','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157186,'2026-07-21 10:34:01','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157187,'2026-07-21 10:34:02','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157188,'2026-07-21 10:34:03','/.env.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157189,'2026-07-21 10:34:03','/.env.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157190,'2026-07-21 10:34:04','/.env.sample','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157191,'2026-07-21 10:34:05','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157192,'2026-07-21 10:34:06','/.env.dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157193,'2026-07-21 10:34:07','/.env.prod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157194,'2026-07-21 10:34:08','/.env.stage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157195,'2026-07-21 10:34:09','/.env.ci','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157196,'2026-07-21 10:34:10','/.env.docker','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157197,'2026-07-21 10:34:11','/.env.live','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157198,'2026-07-21 10:34:12','/.env.preprod','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157199,'2026-07-21 10:34:13','/.env.uat','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157200,'2026-07-21 10:34:14','/.env.dist','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157201,'2026-07-21 10:34:15','/.env.swp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157202,'2026-07-21 10:34:16','/.env~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157203,'2026-07-21 10:34:18','/.env1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157204,'2026-07-21 10:34:19','/.env2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157205,'2026-07-21 10:34:21','/.env_copy','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157206,'2026-07-21 10:34:22','/.env.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157207,'2026-07-21 10:34:23','/.env.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157208,'2026-07-21 10:34:24','/.env.yaml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157209,'2026-07-21 10:34:25','/.env.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157210,'2026-07-21 10:34:26','/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157211,'2026-07-21 10:34:27','/apps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157212,'2026-07-21 10:34:28','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157213,'2026-07-21 10:34:29','/web/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157214,'2026-07-21 10:34:30','/site/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157215,'2026-07-21 10:34:31','/public/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157216,'2026-07-21 10:34:32','/admin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157217,'2026-07-21 10:34:33','/backend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157218,'2026-07-21 10:34:34','/server/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157219,'2026-07-21 10:34:35','/frontend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157220,'2026-07-21 10:34:36','/src/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157221,'2026-07-21 10:34:37','/core/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157222,'2026-07-21 10:34:38','/core/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157223,'2026-07-21 10:34:39','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157224,'2026-07-21 10:34:40','/private/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157225,'2026-07-21 10:34:41','/application/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157226,'2026-07-21 10:34:42','/bootstrap/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157227,'2026-07-21 10:34:43','/database/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157228,'2026-07-21 10:34:44','/storage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157229,'2026-07-21 10:34:45','/var/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157230,'2026-07-21 10:34:46','/var/www/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157231,'2026-07-21 10:34:47','/current/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157232,'2026-07-21 10:34:48','/release/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157233,'2026-07-21 10:34:49','/releases/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157234,'2026-07-21 10:34:50','/shared/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157235,'2026-07-21 10:34:51','/deploy/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157236,'2026-07-21 10:34:53','/build/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157237,'2026-07-21 10:34:54','/dist/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157238,'2026-07-21 10:34:55','/public_html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157239,'2026-07-21 10:34:56','/htdocs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157240,'2026-07-21 10:34:57','/www/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157241,'2026-07-21 10:34:58','/html/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157242,'2026-07-21 10:34:59','/live/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157243,'2026-07-21 10:35:00','/prod/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157244,'2026-07-21 10:35:01','/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157245,'2026-07-21 10:35:02','/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157246,'2026-07-21 10:35:04','/opt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157247,'2026-07-21 10:35:05','/laravel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157248,'2026-07-21 10:35:06','/symfony/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157249,'2026-07-21 10:35:07','/wordpress/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157250,'2026-07-21 10:35:08','/wp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157251,'2026-07-21 10:35:09','/cms/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157252,'2026-07-21 10:35:10','/drupal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157253,'2026-07-21 10:35:11','/joomla/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157254,'2026-07-21 10:35:12','/magento/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157255,'2026-07-21 10:35:13','/shopify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157256,'2026-07-21 10:35:14','/prestashop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157257,'2026-07-21 10:35:15','/codeigniter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157258,'2026-07-21 10:35:17','/cakephp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157259,'2026-07-21 10:35:18','/zend/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157260,'2026-07-21 10:35:19','/yii/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157261,'2026-07-21 10:35:20','/laravel5/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157262,'2026-07-21 10:35:21','/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157263,'2026-07-21 10:35:22','/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157264,'2026-07-21 10:35:23','/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157265,'2026-07-21 10:35:24','/api/v1/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157266,'2026-07-21 10:35:25','/api/v2/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157267,'2026-07-21 10:35:26','/rest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157268,'2026-07-21 10:35:28','/graphql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157269,'2026-07-21 10:35:29','/gateway/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157270,'2026-07-21 10:35:30','/microservice/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157271,'2026-07-21 10:35:31','/service/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157272,'2026-07-21 10:35:32','/api/v3/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157273,'2026-07-21 10:35:33','/api/dev/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157274,'2026-07-21 10:35:34','/api/staging/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157275,'2026-07-21 10:35:35','/vendor/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157276,'2026-07-21 10:35:36','/lib/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157277,'2026-07-21 10:35:37','/resources/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157278,'2026-07-21 10:35:38','/assets/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157279,'2026-07-21 10:35:39','/uploads/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157280,'2026-07-21 10:35:40','/internal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157281,'2026-07-21 10:35:41','/tools/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157282,'2026-07-21 10:35:42','/scripts/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157283,'2026-07-21 10:35:43','/bin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157284,'2026-07-21 10:35:44','/sbin/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157285,'2026-07-21 10:35:45','/local/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157286,'2026-07-21 10:35:46','/portal/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157287,'2026-07-21 10:35:47','/dashboard/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157288,'2026-07-21 10:35:48','/panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157289,'2026-07-21 10:35:49','/crm/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157290,'2026-07-21 10:35:50','/erp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157291,'2026-07-21 10:35:51','/shop/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157292,'2026-07-21 10:35:52','/store/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157293,'2026-07-21 10:35:54','/saas/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157294,'2026-07-21 10:35:55','/client/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157295,'2026-07-21 10:35:56','/project/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157296,'2026-07-21 10:35:57','/admin-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157297,'2026-07-21 10:35:58','/control-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157298,'2026-07-21 10:35:59','/user-panel/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157299,'2026-07-21 10:36:00','/node/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157300,'2026-07-21 10:36:01','/express/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157301,'2026-07-21 10:36:02','/next/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157302,'2026-07-21 10:36:03','/nuxt/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157303,'2026-07-21 10:36:04','/nest/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157304,'2026-07-21 10:36:05','/react/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157305,'2026-07-21 10:36:06','/vue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157306,'2026-07-21 10:36:07','/angular/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157307,'2026-07-21 10:36:08','/svelte/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157308,'2026-07-21 10:36:09','/vite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157309,'2026-07-21 10:36:10','/backup/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157310,'2026-07-21 10:36:11','/backups/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157311,'2026-07-21 10:36:12','/old/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157312,'2026-07-21 10:36:13','/tmp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157313,'2026-07-21 10:36:14','/temp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157314,'2026-07-21 10:36:15','/lab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157315,'2026-07-21 10:36:16','/cronlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157316,'2026-07-21 10:36:17','/cron/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157317,'2026-07-21 10:36:18','/en/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157318,'2026-07-21 10:36:19','/administrator/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157319,'2026-07-21 10:36:20','/psnlink/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157320,'2026-07-21 10:36:21','/exapi/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157321,'2026-07-21 10:36:22','/sitemaps/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157322,'2026-07-21 10:36:23','/.env.backup1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157323,'2026-07-21 10:36:24','/.env.backup2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157324,'2026-07-21 10:36:25','/logs/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157325,'2026-07-21 10:36:26','/cache/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157326,'2026-07-21 10:36:27','/mailer/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157327,'2026-07-21 10:36:28','/mail/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157328,'2026-07-21 10:36:29','/email/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157329,'2026-07-21 10:36:30','/smtp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157330,'2026-07-21 10:36:31','/mailing/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157331,'2026-07-21 10:36:32','/notifications/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157332,'2026-07-21 10:36:33','/notify/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157333,'2026-07-21 10:36:34','/sender/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157334,'2026-07-21 10:36:35','/campaign/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157335,'2026-07-21 10:36:36','/newsletter/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157336,'2026-07-21 10:36:37','/ses/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157337,'2026-07-21 10:36:38','/sendgrid/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157338,'2026-07-21 10:36:39','/sparkpost/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157339,'2026-07-21 10:36:40','/postmark/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157340,'2026-07-21 10:36:41','/mailgun/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157341,'2026-07-21 10:36:42','/mandrill/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157342,'2026-07-21 10:36:43','/mailjet/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157343,'2026-07-21 10:36:44','/brevo/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157344,'2026-07-21 10:36:45','/transactional/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157345,'2026-07-21 10:36:46','/bulk/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157346,'2026-07-21 10:36:47','/aws/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157347,'2026-07-21 10:36:48','/azure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157348,'2026-07-21 10:36:49','/gcp/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157349,'2026-07-21 10:36:50','/cloud/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157350,'2026-07-21 10:36:51','/infrastructure/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157351,'2026-07-21 10:36:52','/docker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157352,'2026-07-21 10:36:54','/k8s/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157353,'2026-07-21 10:36:55','/kubernetes/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157354,'2026-07-21 10:36:56','/terraform/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157355,'2026-07-21 10:36:57','/ansible/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157356,'2026-07-21 10:36:58','/.git/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157357,'2026-07-21 10:36:59','/ci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157358,'2026-07-21 10:37:00','/cd/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157359,'2026-07-21 10:37:01','/jenkins/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157360,'2026-07-21 10:37:02','/gitlab/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157361,'2026-07-21 10:37:03','/github/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157362,'2026-07-21 10:37:04','/actions/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157363,'2026-07-21 10:37:05','/circleci/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157364,'2026-07-21 10:37:06','/travis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157365,'2026-07-21 10:37:07','/buildkite/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157366,'2026-07-21 10:37:08','/mysql/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157367,'2026-07-21 10:37:09','/postgres/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157368,'2026-07-21 10:37:10','/mongodb/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157369,'2026-07-21 10:37:11','/redis/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157370,'2026-07-21 10:37:12','/elasticsearch/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157371,'2026-07-21 10:37:13','/rabbitmq/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157372,'2026-07-21 10:37:14','/kafka/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157373,'2026-07-21 10:37:15','/queue/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157374,'2026-07-21 10:37:16','/worker/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157375,'2026-07-21 10:37:17','/job/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157376,'2026-07-21 10:37:18','/test/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157377,'2026-07-21 10:37:19','/qa/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157378,'2026-07-21 10:37:20','/preview/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157379,'2026-07-21 10:37:21','/beta/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157380,'2026-07-21 10:37:22','/uat/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157381,'2026-07-21 10:37:23','/stage/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157382,'2026-07-21 10:37:24','/development/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157383,'2026-07-21 10:37:25','/production/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157384,'2026-07-21 10:37:26','/config/app/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157385,'2026-07-21 10:37:29','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157386,'2026-07-21 10:37:32','/info','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157387,'2026-07-21 10:37:35','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157388,'2026-07-21 10:37:36','/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157389,'2026-07-21 10:37:38','/webroot/_environment','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157390,'2026-07-21 10:37:40','/phpinfo.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157391,'2026-07-21 10:37:41','/phpinfo.php.old','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157392,'2026-07-21 10:37:42','/phpinfo.php~','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157393,'2026-07-21 10:37:43','/info.php.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157394,'2026-07-21 10:37:44','/phpinfo.php.save','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'3.75.237.19'),(157395,'2026-07-21 11:30:06','/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/phpinfo',404,'GET',NULL,'45.153.34.182'),(157396,'2026-07-21 11:30:09','/_profiler/phpinfo','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/_profiler/phpinfo',404,'GET',NULL,'45.153.34.182'),(157397,'2026-07-21 11:30:13','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'45.153.34.182'),(157398,'2026-07-21 11:30:14','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'45.153.34.182'),(157399,'2026-07-21 11:30:15','/.env.example','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.example',404,'GET',NULL,'45.153.34.182'),(157400,'2026-07-21 11:30:16','/.env.local','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.local',404,'GET',NULL,'45.153.34.182'),(157401,'2026-07-21 11:30:17','/.env.backup','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/.env.backup',404,'GET',NULL,'45.153.34.182'),(157402,'2026-07-21 11:30:19','/config/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36','http://solsculpting.com/config/.env',404,'GET',NULL,'45.153.34.182'),(157403,'2026-07-21 11:48:35','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.148'),(157404,'2026-07-21 11:48:37','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.148'),(157405,'2026-07-21 11:48:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.148'),(157406,'2026-07-21 11:48:39','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.148'),(157407,'2026-07-21 13:33:11','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.150.0.57'),(157408,'2026-07-21 13:33:14','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.150.0.57'),(157409,'2026-07-21 13:33:18','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.150.0.57'),(157410,'2026-07-21 13:33:21','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.150.0.57'),(157411,'2026-07-21 14:08:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.0 Safari/605.1.15',NULL,404,'GET',NULL,'162.243.80.244'),(157412,'2026-07-21 14:34:30','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'5.252.52.249'),(157413,'2026-07-21 14:34:36','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'193.70.112.205'),(157414,'2026-07-21 14:35:11','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/133.0.0.0 Safari/537.36',NULL,404,'POST',NULL,'72.167.132.114'),(157415,'2026-07-21 17:31:45','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(157416,'2026-07-21 17:31:46','/.env.production','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(157417,'2026-07-21 17:31:48','/api/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(157418,'2026-07-21 17:31:49','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'91.92.241.196'),(157419,'2026-07-21 19:04:57','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(157420,'2026-07-21 19:05:00','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(157421,'2026-07-21 19:05:00','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(157422,'2026-07-21 19:05:01','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(157423,'2026-07-21 19:40:45','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.97.227.207'),(157424,'2026-07-21 19:40:48','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.97.227.207'),(157425,'2026-07-21 19:40:49','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.97.227.207'),(157426,'2026-07-21 19:40:50','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.97.227.207'),(157427,'2026-07-21 19:42:25','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'136.109.18.171'),(157428,'2026-07-21 19:42:27','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/wp/',404,'GET',NULL,'136.109.18.171'),(157429,'2026-07-21 19:42:28','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'136.109.18.171'),(157430,'2026-07-21 19:42:31','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Fedora; Linux x86_64; rv:125.0) Gecko/20100101 Firefox/125.0','http://solsculpting.com/wordpress/',404,'GET',NULL,'136.109.18.171'),(157431,'2026-07-21 19:42:33','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; U; Android 10; en-US; CPH2015) AppleWebKit/537.36 (KHTML, like Gecko) UCBrowser/13.5.8.1311 Mobile Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'136.109.18.171'),(157432,'2026-07-21 19:42:34','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'136.109.18.171'),(157433,'2026-07-21 22:50:22','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.97.227.207'),(157434,'2026-07-21 22:50:24','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.97.227.207'),(157435,'2026-07-21 22:50:24','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.97.227.207'),(157436,'2026-07-21 22:50:26','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.97.227.207'),(157437,'2026-07-21 22:50:27','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.97.227.207'),(157438,'2026-07-22 05:55:50','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.179'),(157439,'2026-07-22 06:06:46','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.117'),(157440,'2026-07-22 06:06:49','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.209.117'),(157441,'2026-07-22 06:06:50','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.117'),(157442,'2026-07-22 06:06:52','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.209.117'),(157443,'2026-07-22 06:59:42','/mcp','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'POST',NULL,'185.180.141.42'),(157444,'2026-07-22 06:59:43','/sse','https://solsculpting.us7.cdn-alpha.com','python-httpx/0.28.1',NULL,404,'GET',NULL,'185.180.141.42'),(157445,'2026-07-22 07:39:33','/wp-content/plugins/gybdxbe/phprs.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157446,'2026-07-22 07:45:36','/wp-content/plugins/gybdxbe/siters.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157447,'2026-07-22 08:08:03','/wp-content/plugins/cgrgneb/phprs.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157448,'2026-07-22 08:16:53','/wp-content/plugins/cgrgneb/siters.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157449,'2026-07-22 08:48:02','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.86.113.218'),(157450,'2026-07-22 09:00:53','/wp-content/plugins/tznagfb/phprs.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157451,'2026-07-22 09:37:07','/wp-content/plugins/tznagfb/siters.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157452,'2026-07-22 09:50:42','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.94.31.117'),(157453,'2026-07-22 09:50:44','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.94.31.117'),(157454,'2026-07-22 09:50:44','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.94.31.117'),(157455,'2026-07-22 09:50:45','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.94.31.117'),(157456,'2026-07-22 10:11:41','/wp-content/plugins/mumcacf/phprs.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157457,'2026-07-22 10:52:37','/wp-content/plugins/mumcacf/siters.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.90 Safari/537.36','http://www.google.com.hk',404,'GET',NULL,'45.61.188.240'),(157458,'2026-07-22 14:06:05','/giris','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:120.0) Gecko/20100101 Firefox/120.0',NULL,404,'GET',NULL,'185.243.218.230'),(157459,'2026-07-22 14:06:07','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:120.0) Gecko/20100101 Firefox/120.0',NULL,404,'GET',NULL,'185.243.218.230'),(157460,'2026-07-22 16:22:25','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.178'),(157461,'2026-07-22 17:49:49','/images/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157462,'2026-07-22 17:50:47','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157463,'2026-07-22 17:56:09','/alfa-rex.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157464,'2026-07-22 17:56:12','/alfanew.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157465,'2026-07-22 17:56:15','/atomlib.php.suspected','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157466,'2026-07-22 18:05:01','/mini.php5','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157467,'2026-07-22 18:05:48','/var/log/error.log','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157468,'2026-07-22 18:06:26','/shell.asp','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157469,'2026-07-22 18:07:55','/.well-known','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157470,'2026-07-22 18:09:10','/wp-room.ph','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157471,'2026-07-22 18:09:14','/wp-blogs','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157472,'2026-07-22 18:09:21','/wp-god.Php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157473,'2026-07-22 18:09:27','/veno.ph','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157474,'2026-07-22 18:10:40','/mek.ph','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157475,'2026-07-22 18:10:51','/duck php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157476,'2026-07-22 18:11:45','/lloh.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157477,'2026-07-22 18:11:48','/anu.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157478,'2026-07-22 18:12:11','/highda php','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157479,'2026-07-22 18:12:39','/fk.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157480,'2026-07-22 18:13:12','/rr.PHP56','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157481,'2026-07-22 18:14:51','/pas.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157482,'2026-07-22 18:15:05','/up.php5','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157483,'2026-07-22 18:15:07','/shell.php5','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157484,'2026-07-22 18:15:17','/perlcgi.pl','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157485,'2026-07-22 18:15:22','/php.ini','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157486,'2026-07-22 18:16:19','/1.aspx','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157487,'2026-07-22 18:16:22','/shell.aspx','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157488,'2026-07-22 18:16:24','/a.aspx','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157489,'2026-07-22 18:16:34','/login.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157490,'2026-07-22 18:19:45','/gank.php.PhP','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157491,'2026-07-22 18:20:41','/utchiha.phP','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.165.63.205'),(157492,'2026-07-22 19:53:44','/sh648234978109','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:150.0) Gecko/20100101 Firefox/150.0',NULL,404,'GET',NULL,'51.195.39.149'),(157493,'2026-07-22 21:37:07','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36','https://www.solsculpting.com/.env',404,'GET',NULL,'103.76.88.36'),(157494,'2026-07-22 23:03:35','/_rNd9xZ7kL3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 14_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/18.4 Safari/605.1.15','https://frosty-dew-3161.49h0jmoz.workers.dev/proxy?modify&proxyUrl=httpswww.solsculpting.com_rNd9xZ7kL3',404,'GET',NULL,'34.87.144.238'),(157495,'2026-07-23 04:05:05','/sh012268706','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/148.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'51.195.39.149'),(157496,'2026-07-23 07:17:46','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.166'),(157497,'2026-07-23 07:17:51','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.166'),(157498,'2026-07-23 07:17:53','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.166'),(157499,'2026-07-23 07:18:19','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.166'),(157500,'2026-07-23 07:37:53','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.184'),(157501,'2026-07-23 07:37:57','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.184'),(157502,'2026-07-23 07:37:58','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.184'),(157503,'2026-07-23 07:38:00','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.184'),(157504,'2026-07-23 09:23:01','/vendor','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157505,'2026-07-23 09:23:02','/.well-known','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157506,'2026-07-23 09:23:35','/php.ini','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157507,'2026-07-23 12:25:19','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.80.81.78'),(157508,'2026-07-23 12:25:23','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.80.81.78'),(157509,'2026-07-23 12:25:23','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.80.81.78'),(157510,'2026-07-23 12:25:25','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.80.81.78'),(157511,'2026-07-23 13:03:27','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.80.81.78'),(157512,'2026-07-23 13:03:28','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.80.81.78'),(157513,'2026-07-23 13:03:29','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.80.81.78'),(157514,'2026-07-23 13:03:30','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.80.81.78'),(157515,'2026-07-23 13:20:40','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157516,'2026-07-23 13:20:40','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157517,'2026-07-23 13:20:40','/_next/webpack-hmr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157518,'2026-07-23 13:20:40','/_next/static/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157519,'2026-07-23 13:20:41','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157520,'2026-07-23 13:20:41','/_ignition/health-check','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157521,'2026-07-23 13:20:42','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'45.56.121.40'),(157522,'2026-07-23 13:41:23','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(157523,'2026-07-23 13:41:26','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(157524,'2026-07-23 13:41:27','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(157525,'2026-07-23 13:41:28','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(157526,'2026-07-23 14:16:54','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.184'),(157527,'2026-07-23 14:16:58','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.184'),(157528,'2026-07-23 14:38:24','/vendor','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157529,'2026-07-23 14:38:31','/.well-known','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157530,'2026-07-23 16:17:10','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(157531,'2026-07-23 16:17:23','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.25'),(157532,'2026-07-23 16:17:38','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(157533,'2026-07-23 16:17:40','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.25'),(157534,'2026-07-23 16:51:14','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.80.81.78'),(157535,'2026-07-23 16:51:17','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.80.81.78'),(157536,'2026-07-23 16:51:18','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'20.80.81.78'),(157537,'2026-07-23 16:51:18','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'20.80.81.78'),(157538,'2026-07-23 17:41:45','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/login/',404,'GET',NULL,'216.67.230.98'),(157539,'2026-07-23 17:41:47','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/login/',404,'POST',NULL,'216.67.230.98'),(157540,'2026-07-23 17:41:50','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/admin/',404,'GET',NULL,'216.67.230.98'),(157541,'2026-07-23 17:41:55','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/admin/',404,'POST',NULL,'216.67.230.98'),(157542,'2026-07-23 17:41:58','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/signin/',404,'GET',NULL,'216.67.230.98'),(157543,'2026-07-23 17:42:00','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/signin/',404,'POST',NULL,'216.67.230.98'),(157544,'2026-07-23 17:42:03','/my-account/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/my-account/',404,'GET',NULL,'216.67.230.98'),(157545,'2026-07-23 17:42:04','/my-account/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','http://solsculpting.com/my-account/',404,'POST',NULL,'216.67.230.98'),(157546,'2026-07-23 17:42:29','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','https://solsculpting.com/login/',404,'POST',NULL,'216.67.230.98'),(157547,'2026-07-23 17:42:33','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','https://solsculpting.com/admin/',404,'POST',NULL,'216.67.230.98'),(157548,'2026-07-23 17:42:36','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','https://solsculpting.com/signin/',404,'GET',NULL,'216.67.230.98'),(157549,'2026-07-23 17:42:38','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','https://solsculpting.com/signin/',404,'POST',NULL,'216.67.230.98'),(157550,'2026-07-23 17:42:40','/my-account/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','https://solsculpting.com/my-account/',404,'GET',NULL,'216.67.230.98'),(157551,'2026-07-23 17:42:43','/my-account/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36 OPR/116.0.0.0','https://solsculpting.com/my-account/',404,'POST',NULL,'216.67.230.98'),(157552,'2026-07-23 18:00:07','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'103.177.150.66'),(157553,'2026-07-23 18:37:46','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.184'),(157554,'2026-07-23 18:37:48','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.184'),(157555,'2026-07-23 18:37:49','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.184'),(157556,'2026-07-23 18:37:51','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.184'),(157557,'2026-07-23 19:50:18','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'173.255.249.74'),(157558,'2026-07-23 19:50:19','/administrator/manifests/files/joomla.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'173.255.249.74'),(157559,'2026-07-23 19:50:20','/language/en-GB/en-GB.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'173.255.249.74'),(157560,'2026-07-23 20:04:57','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64; rv:121.0) Gecko/20100101 Firefox/121.0','https://duckduckgo.com/',404,'GET',NULL,'158.94.208.248'),(157561,'2026-07-23 20:04:58','/?author=9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.0 Safari/605.1.15','https://www.bing.com/',404,'GET',NULL,'158.94.208.248'),(157562,'2026-07-23 20:40:09','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'136.66.29.222'),(157563,'2026-07-23 20:40:13','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Infinix X688B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.48 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'136.66.29.222'),(157564,'2026-07-23 20:40:14','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'136.66.29.222'),(157565,'2026-07-23 20:40:16','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Pixel 7a) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.6367.82 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'136.66.29.222'),(157566,'2026-07-23 20:40:18','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.6534.42 Safari/537.36','http://solsculpting.com/backup/',404,'GET',NULL,'136.66.29.222'),(157567,'2026-07-23 20:40:20','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/new/',404,'GET',NULL,'136.66.29.222'),(157568,'2026-07-23 21:03:32','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.148'),(157569,'2026-07-23 21:03:34','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.148'),(157570,'2026-07-23 21:03:35','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.148'),(157571,'2026-07-23 21:03:37','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.148'),(157572,'2026-07-23 21:18:42','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.61.150.163'),(157573,'2026-07-24 00:07:03','/vendor','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157574,'2026-07-24 00:07:08','/.well-known','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157575,'2026-07-24 00:12:19','/php.ini','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'52.242.193.144'),(157576,'2026-07-24 00:19:38','/console/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157577,'2026-07-24 00:19:40','/server','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157578,'2026-07-24 00:19:43','/server-status','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157579,'2026-07-24 00:19:47','/login.action','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157580,'2026-07-24 00:19:51','/___proxy_subdomain_whm/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157581,'2026-07-24 00:19:53','/___proxy_subdomain_cpanel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157582,'2026-07-24 00:19:57','/v2/_catalog','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157583,'2026-07-24 00:19:58','/.DS_Store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157584,'2026-07-24 00:20:01','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.214.6'),(157585,'2026-07-24 00:20:03','/ecp/Current/exporttool/microsoft.exchange.ediscovery.exporttool.application','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.241.24'),(157586,'2026-07-24 00:20:07','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.214.6'),(157587,'2026-07-24 00:20:08','/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(157588,'2026-07-24 00:20:10','/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(157589,'2026-07-24 00:20:12','/api/graphql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.70.50.6'),(157590,'2026-07-24 00:20:13','/graphql/api','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.130.75'),(157591,'2026-07-24 00:20:15','/api/gql','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'POST',NULL,'172.69.130.75'),(157592,'2026-07-24 00:20:17','/s/230323e29353e21323e2430313/_/;/META-INF/maven/com.atlassian.jira/jira-webapp-dist/pom.properties','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157593,'2026-07-24 00:20:18','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157594,'2026-07-24 00:20:20','/telescope/requests','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157595,'2026-07-24 00:20:23','/.well-known/security.txt','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157596,'2026-07-24 00:20:24','/actuator/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.70.50.6'),(157597,'2026-07-24 00:20:26','/trace.axd','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157598,'2026-07-24 00:20:27','/@vite/env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'108.162.241.24'),(157599,'2026-07-24 00:20:30','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157600,'2026-07-24 00:20:38','/debug/default/view?panel=config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (l9scan/2.0.230323e29353e21323e2430313; +https://leakix.net)',NULL,404,'GET',NULL,'172.69.130.75'),(157601,'2026-07-24 00:36:10','/vendor','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'74.249.245.134'),(157602,'2026-07-24 00:36:15','/.well-known','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'74.249.245.134'),(157603,'2026-07-24 00:38:16','/php.ini','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'74.249.245.134'),(157604,'2026-07-24 04:56:55','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.179'),(157605,'2026-07-24 08:01:50','/vendor','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'74.249.245.134'),(157606,'2026-07-24 08:01:57','/.well-known','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'74.249.245.134'),(157607,'2026-07-24 08:06:03','/php.ini','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'74.249.245.134'),(157608,'2026-07-24 09:26:58','/_next/webpack-hmr','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157609,'2026-07-24 09:26:58','/components/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157610,'2026-07-24 09:26:58','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157611,'2026-07-24 09:26:59','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157612,'2026-07-24 09:26:59','/_next/static/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157613,'2026-07-24 09:26:59','/_ignition/health-check','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157614,'2026-07-24 09:26:59','/register','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 CMS-Detector/1.0',NULL,404,'GET',NULL,'159.65.230.74'),(157615,'2026-07-24 10:56:23','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.61.148.157'),(157616,'2026-07-24 12:32:07','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36','http://solsculpting.com/.git/config',404,'GET',NULL,'91.92.47.81'),(157617,'2026-07-24 12:32:07','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/.env',404,'GET',NULL,'91.92.47.81'),(157618,'2026-07-24 12:32:10','/appsettings.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/appsettings.json',404,'GET',NULL,'91.92.47.81'),(157619,'2026-07-24 12:34:04','/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36','http://solsculpting.com/application.yml',404,'GET',NULL,'91.92.47.81'),(157620,'2026-07-24 12:34:04','/composer.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/composer.json',404,'GET',NULL,'91.92.47.81'),(157621,'2026-07-24 12:34:04','/.gitconfig','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/.gitconfig',404,'GET',NULL,'91.92.47.81'),(157622,'2026-07-24 12:34:04','/docker-compose.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','http://solsculpting.com/docker-compose.yml',404,'GET',NULL,'91.92.47.81'),(157623,'2026-07-24 12:34:04','/web.config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Pixel 8) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Mobile Safari/537.36','http://solsculpting.com/web.config',404,'GET',NULL,'91.92.47.81'),(157624,'2026-07-24 12:34:04','/.env.bak','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/.env.bak',404,'GET',NULL,'91.92.47.81'),(157625,'2026-07-24 12:35:06','/config/application.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/config/application.yml',404,'GET',NULL,'91.92.47.81'),(157626,'2026-07-24 12:35:06','/.aws/credentials','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36','http://solsculpting.com/.aws/credentials',404,'GET',NULL,'91.92.47.81'),(157627,'2026-07-24 12:35:06','/app/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/app/config/parameters.yml',404,'GET',NULL,'91.92.47.81'),(157628,'2026-07-24 12:35:06','/config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36 Edg/131.0.0.0','http://solsculpting.com/config.json',404,'GET',NULL,'91.92.47.81'),(157629,'2026-07-24 12:35:06','/settings.py','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','http://solsculpting.com/settings.py',404,'GET',NULL,'91.92.47.81'),(157630,'2026-07-24 12:35:06','/config/parameters.yml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:133.0) Gecko/20100101 Firefox/133.0','http://solsculpting.com/config/parameters.yml',404,'GET',NULL,'91.92.47.81'),(157631,'2026-07-24 15:20:19','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.186'),(157632,'2026-07-24 16:12:19','/blog/','https://solsculpting.us7.cdn-alpha.com','wp2shell',NULL,404,'GET',NULL,'182.253.194.220'),(157633,'2026-07-24 16:34:00','/shop','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'194.59.31.200'),(157634,'2026-07-24 16:34:02','/products','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'194.59.31.200'),(157635,'2026-07-24 16:34:04','/cart','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'194.59.31.200'),(157636,'2026-07-24 16:34:06','/checkout','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'194.59.31.200'),(157637,'2026-07-24 16:34:08','/store','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'194.59.31.200'),(157638,'2026-07-24 18:28:12','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.107.70.126'),(157639,'2026-07-24 18:28:35','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.107.70.126'),(157640,'2026-07-24 18:28:49','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.107.70.126'),(157641,'2026-07-24 18:30:06','/zup.php73','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.107.70.126'),(157642,'2026-07-24 18:30:14','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.107.70.126'),(157643,'2026-07-24 19:09:14','/mini','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157644,'2026-07-24 19:58:27','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.6540.18 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'34.144.188.104'),(157645,'2026-07-24 19:58:29','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Samsung SM-A546B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.14 Mobile Safari/537.36','http://solsculpting.com/old/',404,'GET',NULL,'34.144.188.104'),(157646,'2026-07-24 19:58:31','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edg/128.0.2790.25 Chrome/128.0.6540.22 Safari/537.36','http://solsculpting.com/wp/',404,'GET',NULL,'34.144.188.104'),(157647,'2026-07-24 19:58:32','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 14; Samsung SM-A546B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.14 Mobile Safari/537.36','http://solsculpting.com/wordpress/',404,'GET',NULL,'34.144.188.104'),(157648,'2026-07-24 19:58:33','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 13; Nokia G42 5G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.6478.41 Mobile Safari/537.36','http://solsculpting.com/blog/',404,'GET',NULL,'34.144.188.104'),(157649,'2026-07-24 19:58:35','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64; rv:127.0) Gecko/20100101 Firefox/127.0','http://solsculpting.com/backup/',404,'GET',NULL,'34.144.188.104'),(157650,'2026-07-24 21:53:12','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.239.128.137'),(157651,'2026-07-24 21:53:13','/administrator/manifests/files/joomla.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.239.128.137'),(157652,'2026-07-24 21:53:13','/language/en-GB/en-GB.xml','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.239.128.137'),(157653,'2026-07-24 23:10:31','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.52.179.56'),(157654,'2026-07-24 23:10:39','/admin/controller/extension/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.52.179.56'),(157655,'2026-07-24 23:10:46','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.52.179.56'),(157656,'2026-07-24 23:11:11','/zup.php73','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.52.179.56'),(157657,'2026-07-24 23:11:16','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.52.179.56'),(157658,'2026-07-25 00:02:37','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36',NULL,404,'GET',NULL,'103.76.88.37'),(157659,'2026-07-25 00:25:29','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GitFinder/1.0)',NULL,404,'GET',NULL,'185.93.89.147'),(157660,'2026-07-25 00:25:32','/.git/config','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; GitFinder/1.0)','http://solsculpting.com/.git/config',404,'GET',NULL,'185.93.89.147'),(157661,'2026-07-25 04:24:17','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.150.0.77'),(157662,'2026-07-25 04:24:20','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.150.0.77'),(157663,'2026-07-25 04:24:22','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.150.0.77'),(157664,'2026-07-25 04:24:22','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.150.0.77'),(157665,'2026-07-25 04:36:52','/administrator/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.5993.88 Safari/537.36',NULL,404,'GET',NULL,'146.190.87.74'),(157666,'2026-07-25 07:10:58','/mini','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157667,'2026-07-25 09:38:41','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157668,'2026-07-25 09:38:43','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/login/',404,'POST',NULL,'129.121.121.252'),(157669,'2026-07-25 09:38:44','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157670,'2026-07-25 09:38:46','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/admin/',404,'POST',NULL,'129.121.121.252'),(157671,'2026-07-25 09:38:51','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157672,'2026-07-25 09:38:52','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/user-login/',404,'POST',NULL,'129.121.121.252'),(157673,'2026-07-25 09:38:54','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157674,'2026-07-25 09:38:55','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/signin/',404,'POST',NULL,'129.121.121.252'),(157675,'2026-07-25 09:39:01','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/login/',404,'POST',NULL,'129.121.121.252'),(157676,'2026-07-25 09:39:02','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/admin/',404,'POST',NULL,'129.121.121.252'),(157677,'2026-07-25 09:39:06','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157678,'2026-07-25 09:39:07','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/user-login/',404,'POST',NULL,'129.121.121.252'),(157679,'2026-07-25 09:39:08','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157680,'2026-07-25 09:39:09','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/signin/',404,'POST',NULL,'129.121.121.252'),(157681,'2026-07-25 10:04:26','/wp-content/cache/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.120.70.186'),(157682,'2026-07-25 10:05:17','/.well-known/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.120.70.186'),(157683,'2026-07-25 10:05:37','/vendor/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.120.70.186'),(157684,'2026-07-25 10:11:23','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/login/',404,'POST',NULL,'129.121.121.252'),(157685,'2026-07-25 10:11:26','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/admin/',404,'POST',NULL,'129.121.121.252'),(157686,'2026-07-25 10:11:33','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157687,'2026-07-25 10:11:34','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/user-login/',404,'POST',NULL,'129.121.121.252'),(157688,'2026-07-25 10:11:35','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157689,'2026-07-25 10:11:36','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/signin/',404,'POST',NULL,'129.121.121.252'),(157690,'2026-07-25 10:11:44','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/login/',404,'POST',NULL,'129.121.121.252'),(157691,'2026-07-25 10:11:46','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/admin/',404,'POST',NULL,'129.121.121.252'),(157692,'2026-07-25 10:11:50','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157693,'2026-07-25 10:11:51','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/user-login/',404,'POST',NULL,'129.121.121.252'),(157694,'2026-07-25 10:11:52','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157695,'2026-07-25 10:11:53','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/signin/',404,'POST',NULL,'129.121.121.252'),(157696,'2026-07-25 10:23:41','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(157697,'2026-07-25 10:23:49','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(157698,'2026-07-25 10:23:50','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(157699,'2026-07-25 10:28:02','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/login/',404,'POST',NULL,'129.121.121.252'),(157700,'2026-07-25 10:28:04','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/admin/',404,'POST',NULL,'129.121.121.252'),(157701,'2026-07-25 10:28:08','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157702,'2026-07-25 10:28:09','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/user-login/',404,'POST',NULL,'129.121.121.252'),(157703,'2026-07-25 10:28:10','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157704,'2026-07-25 10:28:11','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/signin/',404,'POST',NULL,'129.121.121.252'),(157705,'2026-07-25 10:28:20','/login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/login/',404,'POST',NULL,'129.121.121.252'),(157706,'2026-07-25 10:28:23','/admin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/admin/',404,'POST',NULL,'129.121.121.252'),(157707,'2026-07-25 10:28:28','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157708,'2026-07-25 10:28:29','/user-login/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/user-login/',404,'POST',NULL,'129.121.121.252'),(157709,'2026-07-25 10:28:30','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'129.121.121.252'),(157710,'2026-07-25 10:28:32','/signin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36','https://solsculpting.com:443/signin/',404,'POST',NULL,'129.121.121.252'),(157711,'2026-07-25 10:30:46','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36','https://www.google.com/',404,'GET',NULL,'62.60.130.239'),(157712,'2026-07-25 10:30:47','/?author=9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'62.60.130.239'),(157713,'2026-07-25 12:08:19','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/137.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'45.61.150.67'),(157714,'2026-07-25 12:45:49','/sa.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.202.26.222'),(157715,'2026-07-25 14:11:20','/php.ini','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.116.233.22'),(157716,'2026-07-25 14:11:30','/wordpress/wp-admin/maint/','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'51.116.233.22'),(157717,'2026-07-25 14:33:06','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'176.56.39.73'),(157718,'2026-07-25 14:58:23','/enhancecp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (compatible; wpbot/1.4; +https://forms.gle/ajBaxygz9jSR8p8G9)',NULL,404,'GET',NULL,'35.95.48.86'),(157719,'2026-07-25 15:26:03','/sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157720,'2026-07-25 15:26:06','/.vscode/sftp.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157721,'2026-07-25 15:26:07','/.vscode/ftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157722,'2026-07-25 15:26:09','/.vscode/ftp-sync.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157723,'2026-07-25 15:26:11','/.sftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157724,'2026-07-25 15:26:12','/ftp-sync.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157725,'2026-07-25 15:26:14','/.ftp-sync.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157726,'2026-07-25 15:26:16','/ftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157727,'2026-07-25 15:26:18','/.ftp-config.json','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,404,'GET',NULL,'172.104.186.140'),(157728,'2026-07-25 16:01:43','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(157729,'2026-07-25 16:01:46','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.75'),(157730,'2026-07-25 16:01:46','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(157731,'2026-07-25 16:01:48','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.75'),(157732,'2026-07-25 18:28:52','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0',NULL,404,'GET',NULL,'128.1.171.200'),(157733,'2026-07-25 19:14:48','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(157734,'2026-07-25 19:14:50','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(157735,'2026-07-25 19:14:50','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(157736,'2026-07-25 19:14:52','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(157737,'2026-07-25 19:24:52','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.148'),(157738,'2026-07-25 19:24:54','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.148'),(157739,'2026-07-25 19:24:55','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.148'),(157740,'2026-07-25 19:24:56','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.148'),(157741,'2026-07-25 20:52:41','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.94.31.117'),(157742,'2026-07-25 20:52:44','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.94.31.117'),(157743,'2026-07-25 20:52:44','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'45.94.31.117'),(157744,'2026-07-25 20:52:45','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'45.94.31.117'),(157745,'2026-07-25 21:07:47','/vjzvvrhr.pdf.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.202.26.222'),(157746,'2026-07-25 21:07:49','/fetwgsoq.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'172.202.26.222'),(157747,'2026-07-25 23:05:51','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.234'),(157748,'2026-07-25 23:05:53','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.234'),(157749,'2026-07-25 23:05:54','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.234'),(157750,'2026-07-25 23:05:55','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.234'),(157751,'2026-07-26 00:31:53','/mini','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.74.228'),(157752,'2026-07-26 02:27:28','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157753,'2026-07-26 02:27:37','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157754,'2026-07-26 02:27:38','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157755,'2026-07-26 02:27:39','/uploads/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157756,'2026-07-26 02:27:44','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157757,'2026-07-26 03:41:07','/mini','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'172.204.17.66'),(157758,'2026-07-26 05:57:19','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.229'),(157759,'2026-07-26 08:05:32','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.192'),(157760,'2026-07-26 08:05:34','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'185.242.3.192'),(157761,'2026-07-26 08:05:35','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.192'),(157762,'2026-07-26 08:05:37','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'185.242.3.192'),(157763,'2026-07-26 10:57:29','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157764,'2026-07-26 10:57:30','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157765,'2026-07-26 10:57:31','/signin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157766,'2026-07-26 10:57:32','/sign-in','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157767,'2026-07-26 10:57:33','/my-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157768,'2026-07-26 10:57:34','/secure-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157769,'2026-07-26 10:57:35','/hidden-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157770,'2026-07-26 10:57:36','/secret-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157771,'2026-07-26 10:57:37','/wp-hidden','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157772,'2026-07-26 10:57:38','/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157773,'2026-07-26 10:57:39','/portal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157774,'2026-07-26 10:57:40','/member','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157775,'2026-07-26 10:57:41','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157776,'2026-07-26 10:57:42','/access','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157777,'2026-07-26 10:57:43','/my-account','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157778,'2026-07-26 10:57:44','/account','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157779,'2026-07-26 10:57:45','/members-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157780,'2026-07-26 10:57:46','/user-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157781,'2026-07-26 10:57:47','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157782,'2026-07-26 10:57:48','/entrance','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157783,'2026-07-26 10:57:50','/gate','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157784,'2026-07-26 10:57:51','/control','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157785,'2026-07-26 10:57:52','/cp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157786,'2026-07-26 10:57:53','/panel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157787,'2026-07-26 10:57:54','/backdoor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157788,'2026-07-26 10:57:55','/enter','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157789,'2026-07-26 10:57:56','/secret','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157790,'2026-07-26 10:57:57','/masuk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157791,'2026-07-26 10:57:58','/log-in','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157792,'2026-07-26 10:58:00','/login-page','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157793,'2026-07-26 10:58:01','/wp-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157794,'2026-07-26 10:58:02','/admin-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157795,'2026-07-26 10:58:03','/admins','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157796,'2026-07-26 10:58:04','/administrator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157797,'2026-07-26 10:58:05','/webmaster','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157798,'2026-07-26 10:58:06','/backend','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157799,'2026-07-26 10:58:07','/sso','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157800,'2026-07-26 10:58:08','/connect','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157801,'2026-07-26 10:58:09','/oauth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157802,'2026-07-26 10:58:10','/new-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157803,'2026-07-26 10:58:11','/safe-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157804,'2026-07-26 10:58:12','/my-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157805,'2026-07-26 10:58:13','/cms-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157806,'2026-07-26 10:58:14','/custom-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157807,'2026-07-26 10:58:15','/login-form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157808,'2026-07-26 10:58:16','/user','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157809,'2026-07-26 10:58:17','/users','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157810,'2026-07-26 10:58:18','/دخول','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157811,'2026-07-26 10:58:19','/تسجيل','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157812,'2026-07-26 10:58:20','/admin-panel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157813,'2026-07-26 10:58:21','/lp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157814,'2026-07-26 10:58:22','/wp-admin-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157815,'2026-07-26 10:58:23','/site-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157816,'2026-07-26 10:58:24','/site-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157817,'2026-07-26 10:58:25','/manage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157818,'2026-07-26 10:58:26','/login-area','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157819,'2026-07-26 10:58:27','/secure','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157820,'2026-07-26 10:58:28','/admin-area','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157821,'2026-07-26 10:58:29','/mylogin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157822,'2026-07-26 10:58:31','/staff','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157823,'2026-07-26 10:58:32','/staff-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157824,'2026-07-26 10:58:33','/employee','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157825,'2026-07-26 10:58:34','/employee-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157826,'2026-07-26 10:58:35','/editors','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157827,'2026-07-26 10:58:36','/editor-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157828,'2026-07-26 10:58:37','/writer','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157829,'2026-07-26 10:58:39','/writer-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157830,'2026-07-26 10:58:40','/memberarea','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157831,'2026-07-26 10:58:41','/member-area','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157832,'2026-07-26 10:58:42','/members','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157833,'2026-07-26 10:58:43','/my-dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157834,'2026-07-26 10:58:44','/wp-secure','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157835,'2026-07-26 10:58:45','/wordpress-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157836,'2026-07-26 10:58:46','/wplogin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157837,'2026-07-26 10:58:47','/blog-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157838,'2026-07-26 10:58:48','/customer-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157839,'2026-07-26 10:58:49','/client-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157840,'2026-07-26 10:58:50','/client','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157841,'2026-07-26 10:58:51','/support-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157842,'2026-07-26 10:58:52','/helpdesk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157843,'2026-07-26 10:58:53','/intern','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157844,'2026-07-26 10:58:54','/intern-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157845,'2026-07-26 10:58:55','/superadmin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157846,'2026-07-26 10:58:56','/root','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157847,'2026-07-26 10:58:57','/manager','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157848,'2026-07-26 10:58:58','/manager-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157849,'2026-07-26 10:58:59','/supervisor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157850,'2026-07-26 10:59:01','/logon','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157851,'2026-07-26 10:59:02','/log-on','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157852,'2026-07-26 10:59:03','/logmein','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157853,'2026-07-26 10:59:04','/letmein','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157854,'2026-07-26 10:59:05','/entry','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157855,'2026-07-26 10:59:06','/system','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157856,'2026-07-26 10:59:07','/sys-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157857,'2026-07-26 10:59:08','/sys-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157858,'2026-07-26 10:59:09','/app-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157859,'2026-07-26 10:59:10','/admin2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157860,'2026-07-26 10:59:11','/admin1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157861,'2026-07-26 10:59:12','/admin3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157862,'2026-07-26 10:59:13','/loginx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157863,'2026-07-26 10:59:14','/login2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157864,'2026-07-26 10:59:15','/login1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157865,'2026-07-26 10:59:16','/xlogin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157866,'2026-07-26 10:59:17','/masuk-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157867,'2026-07-26 10:59:18','/halaman-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157868,'2026-07-26 10:59:19','/login-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157869,'2026-07-26 10:59:20','/connexion','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157870,'2026-07-26 10:59:21','/iniciar-sesion','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157871,'2026-07-26 10:59:22','/anmelden','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157872,'2026-07-26 10:59:23','/accesso','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157873,'2026-07-26 10:59:25','/giris','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157874,'2026-07-26 10:59:26','/inloggen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157875,'2026-07-26 10:59:27','/entrar','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157876,'2026-07-26 10:59:28','/prihlasenie','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157877,'2026-07-26 10:59:29','/zaloguj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157878,'2026-07-26 10:59:30','/dev-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157879,'2026-07-26 10:59:32','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157880,'2026-07-26 10:59:33','/staging-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157881,'2026-07-26 10:59:34','/test-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157882,'2026-07-26 10:59:35','/beta','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157883,'2026-07-26 10:59:36','/beta-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157884,'2026-07-26 10:59:37','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157885,'2026-07-26 10:59:38','/console-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0',NULL,404,'GET',NULL,'216.67.230.98'),(157886,'2026-07-26 11:22:10','/about.php525','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.74.228'),(157887,'2026-07-26 12:04:42','/about.php525','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'135.119.74.228'),(157888,'2026-07-26 12:05:15','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.171.55.167'),(157889,'2026-07-26 15:45:16','/login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157890,'2026-07-26 15:45:17','/admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157891,'2026-07-26 15:45:17','/signin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157892,'2026-07-26 15:45:18','/sign-in','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157893,'2026-07-26 15:45:19','/my-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157894,'2026-07-26 15:45:21','/secure-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157895,'2026-07-26 15:45:22','/hidden-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157896,'2026-07-26 15:45:23','/secret-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157897,'2026-07-26 15:45:24','/wp-hidden','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157898,'2026-07-26 15:45:25','/dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157899,'2026-07-26 15:45:26','/portal','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157900,'2026-07-26 15:45:27','/member','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157901,'2026-07-26 15:45:28','/auth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157902,'2026-07-26 15:45:30','/access','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157903,'2026-07-26 15:45:31','/my-account','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157904,'2026-07-26 15:45:32','/account','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157905,'2026-07-26 15:45:34','/members-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157906,'2026-07-26 15:45:35','/user-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157907,'2026-07-26 15:45:37','/private','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157908,'2026-07-26 15:45:38','/entrance','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157909,'2026-07-26 15:45:40','/gate','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157910,'2026-07-26 15:45:41','/control','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157911,'2026-07-26 15:45:42','/cp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157912,'2026-07-26 15:45:43','/panel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157913,'2026-07-26 15:45:44','/backdoor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157914,'2026-07-26 15:45:45','/enter','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157915,'2026-07-26 15:45:46','/secret','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157916,'2026-07-26 15:45:47','/masuk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157917,'2026-07-26 15:45:48','/log-in','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157918,'2026-07-26 15:45:49','/login-page','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157919,'2026-07-26 15:45:51','/wp-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157920,'2026-07-26 15:45:52','/admin-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157921,'2026-07-26 15:45:53','/admins','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157922,'2026-07-26 15:45:54','/administrator','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157923,'2026-07-26 15:45:55','/webmaster','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157924,'2026-07-26 15:45:56','/backend','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157925,'2026-07-26 15:45:57','/sso','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157926,'2026-07-26 15:45:58','/connect','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157927,'2026-07-26 15:45:59','/oauth','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157928,'2026-07-26 15:46:00','/new-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157929,'2026-07-26 15:46:02','/safe-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157930,'2026-07-26 15:46:03','/my-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157931,'2026-07-26 15:46:04','/cms-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157932,'2026-07-26 15:46:05','/custom-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157933,'2026-07-26 15:46:06','/login-form','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157934,'2026-07-26 15:46:07','/user','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157935,'2026-07-26 15:46:09','/users','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157936,'2026-07-26 15:46:10','/دخول','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157937,'2026-07-26 15:46:11','/تسجيل','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157938,'2026-07-26 15:46:12','/admin-panel','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157939,'2026-07-26 15:46:13','/lp','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157940,'2026-07-26 15:46:14','/wp-admin-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157941,'2026-07-26 15:46:15','/site-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157942,'2026-07-26 15:46:16','/site-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157943,'2026-07-26 15:46:18','/manage','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157944,'2026-07-26 15:46:19','/login-area','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157945,'2026-07-26 15:46:20','/secure','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157946,'2026-07-26 15:46:21','/admin-area','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157947,'2026-07-26 15:46:22','/mylogin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157948,'2026-07-26 15:46:23','/staff','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157949,'2026-07-26 15:46:24','/staff-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157950,'2026-07-26 15:46:25','/employee','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157951,'2026-07-26 15:46:26','/employee-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157952,'2026-07-26 15:46:27','/editors','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157953,'2026-07-26 15:46:28','/editor-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157954,'2026-07-26 15:46:30','/writer','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157955,'2026-07-26 15:46:31','/writer-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157956,'2026-07-26 15:46:32','/memberarea','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157957,'2026-07-26 15:46:33','/member-area','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157958,'2026-07-26 15:46:35','/members','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157959,'2026-07-26 15:46:36','/my-dashboard','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157960,'2026-07-26 15:46:37','/wp-secure','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157961,'2026-07-26 15:46:39','/wordpress-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157962,'2026-07-26 15:46:40','/wplogin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157963,'2026-07-26 15:46:41','/blog-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157964,'2026-07-26 15:46:42','/customer-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157965,'2026-07-26 15:46:44','/client-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157966,'2026-07-26 15:46:45','/client','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157967,'2026-07-26 15:46:46','/support-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157968,'2026-07-26 15:46:47','/helpdesk','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157969,'2026-07-26 15:46:48','/intern','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157970,'2026-07-26 15:46:49','/intern-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157971,'2026-07-26 15:46:50','/superadmin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157972,'2026-07-26 15:46:51','/root','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157973,'2026-07-26 15:46:52','/manager','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157974,'2026-07-26 15:46:53','/manager-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157975,'2026-07-26 15:46:55','/supervisor','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157976,'2026-07-26 15:46:56','/logon','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157977,'2026-07-26 15:46:57','/log-on','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157978,'2026-07-26 15:46:58','/logmein','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157979,'2026-07-26 15:46:59','/letmein','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157980,'2026-07-26 15:47:01','/entry','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157981,'2026-07-26 15:47:02','/system','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157982,'2026-07-26 15:47:03','/sys-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157983,'2026-07-26 15:47:04','/sys-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157984,'2026-07-26 15:47:05','/app-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157985,'2026-07-26 15:47:06','/admin2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157986,'2026-07-26 15:47:07','/admin1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157987,'2026-07-26 15:47:08','/admin3','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157988,'2026-07-26 15:47:09','/loginx','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157989,'2026-07-26 15:47:10','/login2','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157990,'2026-07-26 15:47:11','/login1','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157991,'2026-07-26 15:47:13','/xlogin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157992,'2026-07-26 15:47:14','/masuk-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157993,'2026-07-26 15:47:15','/halaman-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157994,'2026-07-26 15:47:16','/login-admin','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157995,'2026-07-26 15:47:17','/connexion','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157996,'2026-07-26 15:47:18','/iniciar-sesion','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157997,'2026-07-26 15:47:19','/anmelden','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157998,'2026-07-26 15:47:21','/accesso','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(157999,'2026-07-26 15:47:22','/giris','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158000,'2026-07-26 15:47:23','/inloggen','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158001,'2026-07-26 15:47:24','/entrar','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158002,'2026-07-26 15:47:25','/prihlasenie','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158003,'2026-07-26 15:47:27','/zaloguj','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158004,'2026-07-26 15:47:28','/dev-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158005,'2026-07-26 15:47:29','/dev','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158006,'2026-07-26 15:47:30','/staging-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158007,'2026-07-26 15:47:31','/test-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158008,'2026-07-26 15:47:32','/beta','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158009,'2026-07-26 15:47:33','/beta-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158010,'2026-07-26 15:47:35','/console','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158011,'2026-07-26 15:47:36','/console-login','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'216.67.230.98'),(158012,'2026-07-26 16:13:13','/.env','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/147.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'94.154.43.188'),(158013,'2026-07-26 16:16:32','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.227.202'),(158014,'2026-07-26 16:16:33','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'147.90.227.202'),(158015,'2026-07-26 16:16:34','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.202'),(158016,'2026-07-26 16:16:35','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'147.90.227.202'),(158017,'2026-07-26 16:56:10','/sa.php7','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.173.28'),(158018,'2026-07-26 16:56:48','/vjzvvrhr.pdf.phtml','https://solsculpting.us7.cdn-alpha.com',NULL,NULL,404,'GET',NULL,'20.100.173.28'),(158019,'2026-07-26 18:51:13','/?author=8','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36','https://www.google.com/search?q=wordpress',404,'GET',NULL,'103.117.148.247'),(158020,'2026-07-26 18:51:14','/?author=9','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64; rv:118.0) Gecko/20100101 Firefox/118.0',NULL,404,'GET',NULL,'103.117.148.247'),(158021,'2026-07-26 19:15:56','/wp/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.6422.112 Safari/537.36 Brave/1.63.120','http://solsculpting.com/wp/',404,'GET',NULL,'136.83.60.146'),(158022,'2026-07-26 19:15:56','/new/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 11.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Edg/128.0.2790.25 Chrome/128.0.6540.22 Safari/537.36','http://solsculpting.com/new/',404,'GET',NULL,'136.83.60.146'),(158023,'2026-07-26 19:15:57','/wordpress/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 16_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.7 Mobile/15E148 Safari/604.1','http://solsculpting.com/wordpress/',404,'GET',NULL,'136.83.60.146'),(158024,'2026-07-26 19:15:58','/backup/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 13_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.5 Safari/605.1.15','http://solsculpting.com/backup/',404,'GET',NULL,'136.83.60.146'),(158025,'2026-07-26 19:15:59','/blog/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Linux; Android 11; RMX2195) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.6099.210 Mobile Safari/537.36 OPR/75.2.3995.72468','http://solsculpting.com/blog/',404,'GET',NULL,'136.83.60.146'),(158026,'2026-07-26 19:15:59','/old/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (iPhone; CPU iPhone OS 17_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/17.5 Mobile/15E148 Safari/604.1','http://solsculpting.com/old/',404,'GET',NULL,'136.83.60.146'),(158027,'2026-07-26 22:30:42','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.166'),(158028,'2026-07-26 22:30:45','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'43.228.157.166'),(158029,'2026-07-26 22:30:45','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.166'),(158030,'2026-07-26 22:30:48','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'43.228.157.166'),(158031,'2026-07-26 23:33:54','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.171.55.167'),(158032,'2026-07-27 00:18:56','/randkeyword.PhP7','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(158033,'2026-07-27 00:19:04','/.well-known/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(158034,'2026-07-27 00:19:05','/cgi-bin/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(158035,'2026-07-27 00:19:09','/wp-content/plugins/WordPressCore/','https://solsculpting.us7.cdn-alpha.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36',NULL,404,'GET',NULL,'20.63.10.215'),(158036,'2026-07-27 00:27:13','/ALFA_DATA/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(158037,'2026-07-27 00:27:15','/alfacgiapi/perl.alfa','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'64.89.163.68'),(158038,'2026-07-27 00:27:16','/wp-content/plugins/apikey/apikey.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'),(158039,'2026-07-27 00:27:17','/plugins/content/apismtp/apismtp.php.suspected?test=hello','https://solsculpting.us7.cdn-alpha.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36',NULL,404,'GET',NULL,'64.89.163.68'); /*!40000 ALTER TABLE `wp_redirection_404` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_redirection_groups` -- DROP TABLE IF EXISTS `wp_redirection_groups`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_redirection_groups` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, `tracking` int(11) NOT NULL DEFAULT 1, `module_id` int(10) unsigned NOT NULL DEFAULT 0, `status` enum('enabled','disabled') NOT NULL DEFAULT 'enabled', `position` int(10) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`id`), KEY `module_id` (`module_id`), KEY `status` (`status`) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_redirection_groups` -- LOCK TABLES `wp_redirection_groups` WRITE; /*!40000 ALTER TABLE `wp_redirection_groups` DISABLE KEYS */; INSERT INTO `wp_redirection_groups` VALUES (1,'Redirections',1,1,'enabled',0),(2,'Modified Posts',1,1,'enabled',1); /*!40000 ALTER TABLE `wp_redirection_groups` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_redirection_items` -- DROP TABLE IF EXISTS `wp_redirection_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_redirection_items` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `url` mediumtext NOT NULL, `match_url` varchar(2000) DEFAULT NULL, `match_data` text DEFAULT NULL, `regex` int(10) unsigned NOT NULL DEFAULT 0, `position` int(10) unsigned NOT NULL DEFAULT 0, `last_count` int(10) unsigned NOT NULL DEFAULT 0, `last_access` datetime NOT NULL DEFAULT '1970-01-01 00:00:00', `group_id` int(11) NOT NULL DEFAULT 0, `status` enum('enabled','disabled') NOT NULL DEFAULT 'enabled', `action_type` varchar(20) NOT NULL, `action_code` int(10) unsigned NOT NULL, `action_data` mediumtext DEFAULT NULL, `match_type` varchar(20) NOT NULL, `title` text DEFAULT NULL, PRIMARY KEY (`id`), KEY `url` (`url`(191)), KEY `status` (`status`), KEY `regex` (`regex`), KEY `group_idpos` (`group_id`,`position`), KEY `group` (`group_id`), KEY `match_url` (`match_url`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_redirection_items` -- LOCK TABLES `wp_redirection_items` WRITE; /*!40000 ALTER TABLE `wp_redirection_items` DISABLE KEYS */; INSERT INTO `wp_redirection_items` VALUES (1,'/videos/','/videos',NULL,0,0,355,'2025-11-22 06:57:21',1,'enabled','url',301,'https://solsculpting.com/','url',NULL),(2,'/home-2/','/home-2',NULL,0,1,335,'2025-06-13 09:02:34',1,'enabled','url',301,'https://solsculpting.com/','url',NULL),(3,'/business-investment/','/business-investment',NULL,0,2,251,'2025-11-06 02:59:10',1,'enabled','url',301,'https://solsculpting.com/','url',NULL),(4,'/tag/portrait/','/tag/portrait',NULL,0,3,311,'2026-07-21 16:50:18',1,'enabled','url',301,'https://solsculpting.com/','url',NULL),(5,'/portfolio-item/ipad-iphone-freebie/','/portfolio-item/ipad-iphone-freebie',NULL,0,4,86,'2026-01-06 14:23:51',1,'enabled','url',301,'https://solsculpting.com/','url',NULL); /*!40000 ALTER TABLE `wp_redirection_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_redirection_logs` -- DROP TABLE IF EXISTS `wp_redirection_logs`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_redirection_logs` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `created` datetime NOT NULL, `url` mediumtext NOT NULL, `domain` varchar(255) DEFAULT NULL, `sent_to` mediumtext DEFAULT NULL, `agent` mediumtext DEFAULT NULL, `referrer` mediumtext DEFAULT NULL, `http_code` int(10) unsigned NOT NULL DEFAULT 0, `request_method` varchar(10) DEFAULT NULL, `request_data` mediumtext DEFAULT NULL, `redirect_by` varchar(50) DEFAULT NULL, `redirection_id` int(10) unsigned DEFAULT NULL, `ip` varchar(45) DEFAULT NULL, PRIMARY KEY (`id`), KEY `created` (`created`), KEY `redirection_id` (`redirection_id`), KEY `ip` (`ip`) ) ENGINE=InnoDB AUTO_INCREMENT=192 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_redirection_logs` -- LOCK TABLES `wp_redirection_logs` WRITE; /*!40000 ALTER TABLE `wp_redirection_logs` DISABLE KEYS */; INSERT INTO `wp_redirection_logs` VALUES (187,'2026-06-17 12:43:52','/tag/portrait/','https://solsculpting.us7.cdn-alpha.com','https://solsculpting.com/','WebScraperBot/0.1 (+domain-check)',NULL,301,'GET',NULL,'redirection',4,'87.199.196.160'),(188,'2026-07-13 22:33:53','/tag/portrait/','https://solsculpting.us7.cdn-alpha.com','https://solsculpting.com/','Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; GPTBot/1.4; +https://openai.com/gptbot)','https://solsculpting.com/post_tag-sitemap.xml',301,'GET',NULL,'redirection',4,'74.7.243.193'),(189,'2026-07-20 14:08:07','/tag/portrait/','https://solsculpting.us7.cdn-alpha.com','https://solsculpting.com/','Mozilla/5.0 (compatible; SERankingBacklinksBot/1.0; +https://seranking.com/backlinks-crawler)',NULL,301,'GET',NULL,'redirection',4,'157.90.94.110'),(190,'2026-07-21 05:46:25','/tag/portrait/','https://solsculpting.us7.cdn-alpha.com','https://solsculpting.com/','Mozilla/5.0 (compatible; SERankingBacklinksBot/1.0; +https://seranking.com/backlinks-crawler)',NULL,301,'GET',NULL,'redirection',4,'157.90.94.110'),(191,'2026-07-21 16:50:18','/tag/portrait/','https://solsculpting.us7.cdn-alpha.com','https://solsculpting.com/','Mozilla/5.0 (compatible; SERankingBacklinksBot/1.0; +https://seranking.com/backlinks-crawler)',NULL,301,'GET',NULL,'redirection',4,'157.90.94.110'); /*!40000 ALTER TABLE `wp_redirection_logs` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_relationships` -- DROP TABLE IF EXISTS `wp_term_relationships`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_relationships` ( `object_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0, `term_order` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`object_id`,`term_taxonomy_id`), KEY `term_taxonomy_id` (`term_taxonomy_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_relationships` -- LOCK TABLES `wp_term_relationships` WRITE; /*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */; INSERT INTO `wp_term_relationships` VALUES (131,6,0),(131,9,0),(131,10,0),(139,7,0),(139,8,0),(139,10,0),(140,9,0),(140,10,0),(142,6,0),(142,7,0),(142,9,0),(142,10,0),(143,6,0),(143,8,0),(143,9,0),(144,8,0),(144,9,0),(145,7,0),(145,8,0),(146,8,0),(150,8,0),(150,9,0),(150,10,0),(152,10,0),(3207,19,0),(3207,33,0),(3222,19,0),(3222,34,0),(3447,19,0),(3447,35,0),(3669,37,0),(3672,38,0),(3674,39,0),(3683,40,0),(3684,40,0),(3685,40,0),(3693,14,0),(3700,40,0),(3701,14,0),(3702,14,0),(3705,14,0),(3720,40,0),(3736,40,0),(3739,38,0),(3746,40,0),(3777,41,0),(3806,42,0),(3807,41,0),(3809,41,0),(3811,41,0),(3814,41,0),(3928,1,0),(3936,1,0),(4008,1,0),(4013,1,0),(4018,1,0),(4044,1,0),(4119,1,0),(4135,1,0),(4141,1,0),(1805255857,1,0),(1806196764,1,0),(1821042113,1,0),(1822495364,1,0),(1842242562,1,0),(1843843192,1,0),(1850495533,1,0),(1860078947,1,0),(1871019288,1,0); /*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_term_taxonomy` -- DROP TABLE IF EXISTS `wp_term_taxonomy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_term_taxonomy` ( `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `taxonomy` varchar(32) NOT NULL DEFAULT '', `description` longtext NOT NULL, `parent` bigint(20) unsigned NOT NULL DEFAULT 0, `count` bigint(20) NOT NULL DEFAULT 0, PRIMARY KEY (`term_taxonomy_id`), UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`), KEY `taxonomy` (`taxonomy`) ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_term_taxonomy` -- LOCK TABLES `wp_term_taxonomy` WRITE; /*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */; INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,9),(2,2,'category','',0,0),(3,3,'category','',0,0),(4,4,'post_tag','',0,0),(5,5,'post_tag','',0,0),(6,6,'post_tag','',0,3),(7,7,'post_tag','',0,3),(8,8,'portfolio_entries','',0,6),(9,9,'portfolio_entries','',0,6),(10,10,'portfolio_entries','',0,6),(12,12,'nav_menu','',0,0),(13,13,'nav_menu','',0,0),(14,14,'nav_menu','',0,4),(15,15,'post_format','',0,0),(16,16,'post_format','',0,0),(17,17,'post_format','',0,0),(18,18,'post_format','',0,0),(19,19,'product_type','',0,3),(20,20,'product_type','',0,0),(21,21,'product_type','',0,0),(22,22,'product_type','',0,0),(23,23,'product_visibility','',0,0),(24,24,'product_visibility','',0,0),(25,25,'product_visibility','',0,0),(26,26,'product_visibility','',0,0),(27,27,'product_visibility','',0,0),(28,28,'product_visibility','',0,0),(29,29,'product_visibility','',0,0),(30,30,'product_visibility','',0,0),(31,31,'product_visibility','',0,0),(32,32,'product_cat','',0,0),(33,33,'product_cat','',0,1),(34,34,'product_cat','',0,1),(35,35,'product_cat','',0,1),(36,36,'nav_menu','',0,0),(37,37,'elementor_library_type','',0,1),(38,38,'elementor_library_type','',0,1),(39,39,'wp_theme','',0,1),(40,40,'elementor_library_type','',0,7),(41,41,'category','',0,5),(42,42,'elementor_library_type','',0,1); /*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_termmeta` -- DROP TABLE IF EXISTS `wp_termmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_termmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `term_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `term_id` (`term_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_termmeta` -- LOCK TABLES `wp_termmeta` WRITE; /*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */; INSERT INTO `wp_termmeta` VALUES (1,33,'order','0'),(2,33,'product_count_product_cat','1'),(3,34,'order','0'),(4,34,'product_count_product_cat','1'),(5,32,'product_count_product_cat','0'),(6,35,'order','0'),(7,35,'product_count_product_cat','1'); /*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_terms` -- DROP TABLE IF EXISTS `wp_terms`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_terms` ( `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', `term_group` bigint(10) NOT NULL DEFAULT 0, PRIMARY KEY (`term_id`), KEY `slug` (`slug`(191)), KEY `name` (`name`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=43 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_terms` -- LOCK TABLES `wp_terms` WRITE; /*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */; INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'News','news',0),(3,'Personal','personal',0),(4,'food','food',0),(5,'fun','fun',0),(6,'landscape','landscape',0),(7,'portrait','portrait',0),(8,'Design','design',0),(9,'Illustration','illustration',0),(10,'Photography','photography',0),(12,'Previously used menu 2','previously-used-menu-2',0),(13,'Footer Menu','footer-menu',0),(14,'Main Menu','main-menu',0),(15,'Link','post-format-link',0),(16,'Gallery','post-format-gallery',0),(17,'Video','post-format-video',0),(18,'Audio','post-format-audio',0),(19,'simple','simple',0),(20,'grouped','grouped',0),(21,'variable','variable',0),(22,'external','external',0),(23,'exclude-from-search','exclude-from-search',0),(24,'exclude-from-catalog','exclude-from-catalog',0),(25,'featured','featured',0),(26,'outofstock','outofstock',0),(27,'rated-1','rated-1',0),(28,'rated-2','rated-2',0),(29,'rated-3','rated-3',0),(30,'rated-4','rated-4',0),(31,'rated-5','rated-5',0),(32,'Uncategorized','uncategorized',0),(33,'Anti-Aging','anti-aging',0),(34,'Self-Care','self-care',0),(35,'Professional System','professional-system',0),(36,'Bright future','bright-future',0),(37,'header','header',0),(38,'footer','footer',0),(39,'hello-elementor','hello-elementor',0),(40,'section','section',0),(41,'Red Light Therapy','red-light-therapy',0),(42,'single-post','single-post',0); /*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_usermeta` -- DROP TABLE IF EXISTS `wp_usermeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_usermeta` ( `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`umeta_id`), KEY `user_id` (`user_id`), KEY `meta_key` (`meta_key`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=1023 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_usermeta` -- LOCK TABLES `wp_usermeta` WRITE; /*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */; INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','solvibrant'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'_yoast_wpseo_profile_updated','1647136603'),(15,1,'dismissed_wp_pointers','builder-button-pointer'),(26,1,'show_welcome_panel','1'),(27,1,'session_tokens','a:5:{s:64:\"beeb7e824aea4585f0b722f03a9e3ce5dbd22c260b7c7f7d2bd2687bbc1ad995\";a:4:{s:10:\"expiration\";i:1785009277;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:17:\"Python-urllib/3.9\";s:5:\"login\";i:1784836477;}s:64:\"930340609ef7228a9a43ce02901b6433d55e618204a57a41dca9adb10c43183b\";a:4:{s:10:\"expiration\";i:1785009277;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:17:\"Python-urllib/3.9\";s:5:\"login\";i:1784836477;}s:64:\"9340926c2897ba49074e37c0a4624d740be8103c3ec8738bb644aac70d5b3839\";a:4:{s:10:\"expiration\";i:1785009287;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1784836487;}s:64:\"77f6e9f8cf5fbebdeae452274b6d1d89cb423c2dbb06f8364242399bdcbe4216\";a:4:{s:10:\"expiration\";i:1785013075;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:17:\"Python-urllib/3.9\";s:5:\"login\";i:1784840275;}s:64:\"0376be8f2c2de96358b619f5d44c62121c17242cfe3d5610021c0c21a164a462\";a:4:{s:10:\"expiration\";i:1785013075;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:17:\"Python-urllib/3.9\";s:5:\"login\";i:1784840275;}}'),(29,1,'wp_dashboard_quick_press_last_post_id','3934'),(30,1,'community-events-location','a:1:{s:2:\"ip\";s:13:\"129.121.121.0\";}'),(31,1,'nav_menu_recently_edited','14'),(32,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(33,1,'metaboxhidden_nav-menus','a:4:{i:0;s:23:\"add-post-type-portfolio\";i:1;s:12:\"add-post_tag\";i:2;s:15:\"add-post_format\";i:3;s:21:\"add-portfolio_entries\";}'),(34,1,'ls-show-support-notice-timestamp','1587528467'),(35,1,'ls-store-last-viewed','2020-05-13'),(36,1,'layerslider_help_wp_pointer','1'),(37,1,'_woocommerce_tracks_anon_id','woo:FjIf6Z+7gZmFc+LjwruRbG6+'),(38,1,'wc_last_active','1589500800'),(39,1,'_order_count','0'),(40,2,'nickname','bblackerby'),(41,2,'first_name','Brice'),(42,2,'last_name','Blackerby'),(43,2,'description',''),(44,2,'rich_editing','true'),(45,2,'syntax_highlighting','true'),(46,2,'comment_shortcuts','false'),(47,2,'admin_color','fresh'),(48,2,'use_ssl','0'),(49,2,'show_admin_bar_front','true'),(50,2,'locale',''),(51,2,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(52,2,'wp_user_level','10'),(53,2,'_yoast_wpseo_profile_updated','1647136603'),(54,2,'dismissed_wp_pointers','text_widget_custom_html,builder-button-pointer,theme_editor_notice'),(65,2,'last_update','1589563870'),(66,2,'session_tokens','a:2:{s:64:\"7e192a2e748ed472ec1292ca94a4d002551a48651ab2e25275837d5ac3273903\";a:4:{s:10:\"expiration\";i:1785614302;s:2:\"ip\";s:14:\"134.255.243.50\";s:2:\"ua\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203\";s:5:\"login\";i:1784404702;}s:64:\"693d169d31466d7e5fdc327fce03fce9077067c3d8dc52f7fd4d5ef424f582ed\";a:4:{s:10:\"expiration\";i:1785617564;s:2:\"ip\";s:12:\"5.157.32.138\";s:2:\"ua\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/115.0.0.0 Safari/537.36 Edg/115.0.1901.203\";s:5:\"login\";i:1784407964;}}'),(67,2,'wc_last_active','1647129600'),(69,2,'_woocommerce_tracks_anon_id','woo:MOH7DwCtv0lbYKkBJ86f/ln8'),(70,2,'wp_dashboard_quick_press_last_post_id','3833'),(72,2,'community-events-location','a:1:{s:2:\"ip\";s:12:\"194.36.188.0\";}'),(73,3,'nickname','SolSculpting'),(74,3,'first_name',''),(75,3,'last_name',''),(76,3,'description',''),(77,3,'rich_editing','true'),(78,3,'syntax_highlighting','true'),(79,3,'comment_shortcuts','false'),(80,3,'admin_color','fresh'),(81,3,'use_ssl','0'),(82,3,'show_admin_bar_front','true'),(83,3,'locale',''),(84,3,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(85,3,'wp_user_level','10'),(86,3,'_yoast_wpseo_profile_updated','1647136603'),(87,3,'dismissed_wp_pointers','builder-button-pointer,text_widget_custom_html'),(98,3,'last_update','1589566974'),(99,3,'session_tokens','a:1:{s:64:\"96b7d8c0f85c7f9fb9dd9acc54f8cae662169775e4b5a5d99076d4ee544d520d\";a:4:{s:10:\"expiration\";i:1616203398;s:2:\"ip\";s:12:\"108.55.23.33\";s:2:\"ua\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1616030598;}}'),(100,3,'wc_last_active','1616025600'),(102,3,'_woocommerce_tracks_anon_id','woo:uEUn0CMbtAno7VmP/gd1EHdI'),(103,3,'wp_dashboard_quick_press_last_post_id','3593'),(104,3,'wp_yoast_notifications','a:2:{i:0;a:2:{s:7:\"message\";O:61:\"Yoast\\WP\\SEO\\Presenters\\Admin\\Indexing_Notification_Presenter\":3:{s:18:\"\0*\0total_unindexed\";i:170;s:9:\"\0*\0reason\";s:26:\"permalink_settings_changed\";s:20:\"\0*\0short_link_helper\";O:38:\"Yoast\\WP\\SEO\\Helpers\\Short_Link_Helper\":2:{s:17:\"\0*\0options_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Options_Helper\":0:{}s:17:\"\0*\0product_helper\";O:35:\"Yoast\\WP\\SEO\\Helpers\\Product_Helper\":0:{}}}s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:13:\"wpseo-reindex\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"3\";s:10:\"user_login\";s:12:\"SolSculpting\";s:9:\"user_pass\";s:34:\"$P$BowO2ofl7HZ1etN7rU/B8EzVPYc41Z/\";s:13:\"user_nicename\";s:13:\"solvibrantpro\";s:10:\"user_email\";s:19:\"smcdesigns@live.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-05-15 18:22:53\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"SolSculpting\";}s:2:\"ID\";i:3;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:26:\"wp_3vvbhvqwjb_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:116:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.8;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";s:20:\"wpseo_manage_options\";s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}i:1;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.4&platform=wordpress&platform_version=5.6.2&software=free&software_version=15.9&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"3\";s:10:\"user_login\";s:12:\"SolSculpting\";s:9:\"user_pass\";s:34:\"$P$BowO2ofl7HZ1etN7rU/B8EzVPYc41Z/\";s:13:\"user_nicename\";s:13:\"solvibrantpro\";s:10:\"user_email\";s:19:\"smcdesigns@live.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-05-15 18:22:53\";s:19:\"user_activation_key\";s:0:\"\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:12:\"SolSculpting\";}s:2:\"ID\";i:3;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:26:\"wp_3vvbhvqwjb_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:117:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:10:\"copy_posts\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(105,3,'community-events-location','a:1:{s:2:\"ip\";s:11:\"108.55.23.0\";}'),(106,3,'wp_user-settings','editor=tinymce&libraryContent=browse&imgsize=medium'),(107,3,'wp_user-settings-time','1616034108'),(108,3,'_order_count','0'),(109,3,'nav_menu_recently_edited','36'),(110,3,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(111,3,'metaboxhidden_nav-menus','a:7:{i:0;s:21:\"add-post-type-product\";i:1;s:23:\"add-post-type-portfolio\";i:2;s:12:\"add-post_tag\";i:3;s:15:\"add-post_format\";i:4;s:15:\"add-product_cat\";i:5;s:15:\"add-product_tag\";i:6;s:21:\"add-portfolio_entries\";}'),(112,3,'ls-show-support-notice-timestamp','1588557952'),(113,3,'ls-store-last-viewed','2020-05-25'),(114,3,'layerslider_help_wp_pointer','1'),(115,3,'closedpostboxes_product','a:1:{i:0;s:11:\"postexcerpt\";}'),(116,3,'metaboxhidden_product','a:2:{i:0;s:10:\"postcustom\";i:1;s:7:\"slugdiv\";}'),(117,3,'wp_media_library_mode','list'),(118,2,'_order_count','0'),(124,4,'nickname','EnfoldSupport'),(125,4,'first_name',''),(126,4,'last_name',''),(127,4,'description',''),(128,4,'rich_editing','true'),(129,4,'syntax_highlighting','true'),(130,4,'comment_shortcuts','false'),(131,4,'admin_color','fresh'),(132,4,'use_ssl','0'),(133,4,'show_admin_bar_front','true'),(134,4,'locale',''),(135,4,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(136,4,'wp_user_level','10'),(137,4,'_yoast_wpseo_profile_updated','1647136603'),(138,4,'dismissed_wp_pointers','text_widget_custom_html,builder-button-pointer'),(149,4,'last_update','1592240253'),(151,4,'wc_last_active','1597276800'),(153,4,'wp_dashboard_quick_press_last_post_id','3547'),(154,4,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:430:\"Yoast SEO and WooCommerce can work together a lot better by adding a helper plugin. Please install Yoast WooCommerce SEO to make your life better. <a href=\"https://yoa.st/1o0?php_version=7.4&platform=wordpress&platform_version=5.4.2&software=free&software_version=14.3&days_active=30plus&user_language=en_US\" aria-label=\"More information about Yoast WooCommerce SEO\" target=\"_blank\" rel=\"noopener noreferrer\">More information</a>.\";s:7:\"options\";a:10:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:44:\"wpseo-suggested-plugin-yoast-woocommerce-seo\";s:4:\"user\";O:7:\"WP_User\":8:{s:4:\"data\";O:8:\"stdClass\":10:{s:2:\"ID\";s:1:\"4\";s:10:\"user_login\";s:13:\"EnfoldSupport\";s:9:\"user_pass\";s:34:\"$P$BUtDuXTqqlDB7NkSi6iISJ0k6vr.hH1\";s:13:\"user_nicename\";s:13:\"enfoldsupport\";s:10:\"user_email\";s:23:\"itmphotobooth@yahoo.com\";s:8:\"user_url\";s:0:\"\";s:15:\"user_registered\";s:19:\"2020-06-15 16:57:31\";s:19:\"user_activation_key\";s:45:\"1592240253:$P$Be9TXnLLCreXOlcOjKI.SlP8Yb5IS71\";s:11:\"user_status\";s:1:\"0\";s:12:\"display_name\";s:13:\"EnfoldSupport\";}s:2:\"ID\";i:4;s:4:\"caps\";a:1:{s:13:\"administrator\";b:1;}s:7:\"cap_key\";s:26:\"wp_3vvbhvqwjb_capabilities\";s:5:\"roles\";a:1:{i:0;s:13:\"administrator\";}s:7:\"allcaps\";a:116:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:18:\"manage_woocommerce\";b:1;s:24:\"view_woocommerce_reports\";b:1;s:12:\"edit_product\";b:1;s:12:\"read_product\";b:1;s:14:\"delete_product\";b:1;s:13:\"edit_products\";b:1;s:20:\"edit_others_products\";b:1;s:16:\"publish_products\";b:1;s:21:\"read_private_products\";b:1;s:15:\"delete_products\";b:1;s:23:\"delete_private_products\";b:1;s:25:\"delete_published_products\";b:1;s:22:\"delete_others_products\";b:1;s:21:\"edit_private_products\";b:1;s:23:\"edit_published_products\";b:1;s:20:\"manage_product_terms\";b:1;s:18:\"edit_product_terms\";b:1;s:20:\"delete_product_terms\";b:1;s:20:\"assign_product_terms\";b:1;s:15:\"edit_shop_order\";b:1;s:15:\"read_shop_order\";b:1;s:17:\"delete_shop_order\";b:1;s:16:\"edit_shop_orders\";b:1;s:23:\"edit_others_shop_orders\";b:1;s:19:\"publish_shop_orders\";b:1;s:24:\"read_private_shop_orders\";b:1;s:18:\"delete_shop_orders\";b:1;s:26:\"delete_private_shop_orders\";b:1;s:28:\"delete_published_shop_orders\";b:1;s:25:\"delete_others_shop_orders\";b:1;s:24:\"edit_private_shop_orders\";b:1;s:26:\"edit_published_shop_orders\";b:1;s:23:\"manage_shop_order_terms\";b:1;s:21:\"edit_shop_order_terms\";b:1;s:23:\"delete_shop_order_terms\";b:1;s:23:\"assign_shop_order_terms\";b:1;s:16:\"edit_shop_coupon\";b:1;s:16:\"read_shop_coupon\";b:1;s:18:\"delete_shop_coupon\";b:1;s:17:\"edit_shop_coupons\";b:1;s:24:\"edit_others_shop_coupons\";b:1;s:20:\"publish_shop_coupons\";b:1;s:25:\"read_private_shop_coupons\";b:1;s:19:\"delete_shop_coupons\";b:1;s:27:\"delete_private_shop_coupons\";b:1;s:29:\"delete_published_shop_coupons\";b:1;s:26:\"delete_others_shop_coupons\";b:1;s:25:\"edit_private_shop_coupons\";b:1;s:27:\"edit_published_shop_coupons\";b:1;s:24:\"manage_shop_coupon_terms\";b:1;s:22:\"edit_shop_coupon_terms\";b:1;s:24:\"delete_shop_coupon_terms\";b:1;s:24:\"assign_shop_coupon_terms\";b:1;s:13:\"administrator\";b:1;}s:6:\"filter\";N;s:16:\"\0WP_User\0site_id\";i:1;}s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:15:\"install_plugins\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;}}}'),(155,4,'community-events-location','a:1:{s:2:\"ip\";s:11:\"108.55.13.0\";}'),(156,4,'_order_count','0'),(158,4,'_woocommerce_tracks_anon_id','woo:z+em2dvtjBifC/3Uq/1bC4ya'),(162,4,'wp_user-settings','editor=tinymce'),(163,4,'wp_user-settings-time','1592701058'),(165,3,'_wc_plugin_framework_facebook_for_woocommerce_dismissed_messages','a:1:{s:27:\"settings_moved_to_marketing\";b:1;}'),(166,3,'_wc_plugin_framework_facebook_for_woocommerce_dismissed_messages','a:1:{s:36:\"facebook_for_woocommerce_get_started\";b:1;}'),(168,2,'edit_comments_per_page','100'),(169,2,'wp_user-settings','posts_list_mode=list&libraryContent=browse&editor=tinymce'),(170,2,'wp_user-settings-time','1674585778'),(172,2,'_woocommerce_persistent_cart_1','a:1:{s:4:\"cart\";a:0:{}}'),(173,2,'_wc_plugin_framework_facebook_for_woocommerce_dismissed_messages','a:3:{s:36:\"facebook_for_woocommerce_get_started\";b:1;s:27:\"settings_moved_to_marketing\";b:1;s:56:\"facebook-for-woocommerce-deprecated-wc-version-as-of-6-1\";b:1;}'),(175,2,'wp_elementor_connect_common_data','a:6:{s:9:\"client_id\";s:32:\"0MDQi2znySQ85mGvOAH3u5CgzUZ1S0Vf\";s:11:\"auth_secret\";s:32:\"QLrjCsauFwWNbnGN0XRAe2mLmwTLWFEY\";s:12:\"access_token\";s:32:\"rr5OtKJ0gc5rS9eafLF3SaJipVca2jNe\";s:19:\"access_token_secret\";s:32:\"0B34XGuhAvkbDv0UAPt9rxZsOMbfjzYe\";s:10:\"token_type\";s:6:\"bearer\";s:4:\"user\";O:8:\"stdClass\":1:{s:5:\"email\";s:23:\"bblackerby424@gmail.com\";}}'),(176,2,'elementor_introduction','a:3:{s:18:\"yoast-introduction\";b:1;s:7:\"exit_to\";b:1;s:6:\"e-apps\";b:1;}'),(182,2,'nav_menu_recently_edited','14'),(183,2,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(184,2,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(187,5,'nickname','rev_jess'),(188,5,'first_name','Jessica'),(189,5,'last_name','`Eddowes'),(190,5,'description',''),(191,5,'rich_editing','true'),(192,5,'syntax_highlighting','true'),(193,5,'comment_shortcuts','false'),(194,5,'admin_color','fresh'),(195,5,'use_ssl','0'),(196,5,'show_admin_bar_front','true'),(197,5,'locale',''),(198,5,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(199,5,'wp_user_level','10'),(200,5,'_yoast_wpseo_profile_updated','1647206049'),(201,5,'dismissed_wp_pointers',''),(212,5,'session_tokens','a:1:{s:64:\"6744dd81d30e291a271a3d4cf04c215a26efb56f111c91cff950c9944dfddb47\";a:4:{s:10:\"expiration\";i:1670199862;s:2:\"ip\";s:38:\"2601:681:8700:5680:69a6:5c6d:604c:6e63\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36\";s:5:\"login\";i:1670027062;}}'),(213,5,'wp_dashboard_quick_press_last_post_id','3770'),(215,5,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2601:681:8700:5680::\";}'),(216,5,'default_password_nag',''),(217,5,'elementor_introduction','a:1:{s:18:\"yoast-introduction\";b:1;}'),(218,5,'wp_user-settings','editor=tinymce'),(219,5,'wp_user-settings-time','1647571439'),(220,5,'nav_menu_recently_edited','36'),(221,5,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(222,5,'metaboxhidden_nav-menus','a:2:{i:0;s:28:\"add-post-type-e-landing-page\";i:1;s:12:\"add-post_tag\";}'),(223,6,'nickname','techinfostack'),(224,6,'first_name',''),(225,6,'last_name',''),(226,6,'description',''),(227,6,'rich_editing','true'),(228,6,'syntax_highlighting','true'),(229,6,'comment_shortcuts','false'),(230,6,'admin_color','fresh'),(231,6,'use_ssl','0'),(232,6,'show_admin_bar_front','true'),(233,6,'locale',''),(234,6,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(235,6,'wp_user_level','10'),(236,6,'_yoast_wpseo_profile_updated','1666276583'),(237,6,'dismissed_wp_pointers',''),(248,6,'session_tokens','a:1:{s:64:\"6cefef8608398f747153b0502555aa317dc181a532434253dc70fca21be32614\";a:4:{s:10:\"expiration\";i:1675624522;s:2:\"ip\";s:13:\"219.91.180.20\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/109.0.0.0 Safari/537.36\";s:5:\"login\";i:1675451722;}}'),(249,6,'wp_dashboard_quick_press_last_post_id','3817'),(250,6,'community-events-location','a:1:{s:2:\"ip\";s:12:\"219.91.180.0\";}'),(251,6,'elementor_introduction','a:1:{s:18:\"yoast-introduction\";b:1;}'),(252,6,'wp_user-settings','editor=tinymce'),(253,6,'wp_user-settings-time','1669910687'),(254,7,'nickname','forte_bernardo'),(255,7,'first_name','Bernardo'),(256,7,'last_name',''),(257,7,'description',''),(258,7,'rich_editing','true'),(259,7,'syntax_highlighting','true'),(260,7,'comment_shortcuts','false'),(261,7,'admin_color','fresh'),(262,7,'use_ssl','0'),(263,7,'show_admin_bar_front','true'),(264,7,'locale',''),(265,7,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(266,7,'wp_user_level','10'),(267,7,'_yoast_wpseo_profile_updated','1679460199'),(268,7,'dismissed_wp_pointers',''),(279,7,'session_tokens','a:1:{s:64:\"967a6cb3ec2be6aadae207f1f11528fb8ab3667556e41bd041037b20ac9797c9\";a:4:{s:10:\"expiration\";i:1680669980;s:2:\"ip\";s:38:\"2001:569:76fc:3c00:1116:a240:e28b:34b9\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36\";s:5:\"login\";i:1679460380;}}'),(280,7,'wp_dashboard_quick_press_last_post_id','3818'),(281,7,'community-events-location','a:1:{s:2:\"ip\";s:20:\"2001:569:76fc:3c00::\";}'),(282,2,'elementor_admin_notices','a:1:{s:20:\"design_not_appearing\";a:2:{s:9:\"is_viewed\";b:0;s:4:\"meta\";a:1:{s:7:\"version\";s:6:\"3.22.3\";}}}'),(287,10,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(288,10,'wp_user_level','10'),(289,10,'session_tokens','a:1:{s:64:\"0a1d063b405339b4231e63b72bcfdfd2f93e7c91ca48dd800be702964fb350e3\";a:4:{s:10:\"expiration\";i:1737903122;s:2:\"ip\";s:13:\"216.37.42.192\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/128.0.0.0 Safari/537.36\";s:5:\"login\";i:1737730322;}}'),(290,10,'wp_dashboard_quick_press_last_post_id','3829'),(291,10,'_application_passwords','a:1:{i:0;a:7:{s:4:\"uuid\";s:36:\"0f9ec638-d477-4f43-aea0-8f3478b9cdcd\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:8:\"27c5fd6d\";s:8:\"password\";s:34:\"$P$B09q.jOR17lPdx1bIUEWLX49tmY7Dj.\";s:7:\"created\";i:1723280841;s:9:\"last_used\";N;s:7:\"last_ip\";N;}}'),(292,10,'_yoast_wpseo_profile_updated','1723802134'),(293,2,'_yoast_wpseo_introductions','a:0:{}'),(294,2,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2268&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:2;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(295,11,'nickname','w2s_a8f769d501e0'),(296,11,'first_name',''),(297,11,'last_name',''),(298,11,'description',''),(299,11,'rich_editing','true'),(300,11,'syntax_highlighting','true'),(301,11,'comment_shortcuts','false'),(302,11,'admin_color','fresh'),(303,11,'use_ssl','0'),(304,11,'show_admin_bar_front','true'),(305,11,'locale',''),(306,11,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(307,11,'wp_user_level','10'),(308,11,'_yoast_wpseo_profile_updated','1784477702'),(309,11,'session_tokens','a:1:{s:64:\"3ce27ac4a1898277ebb01e7a07575f3d035a1cbf35f695d7aef9dea3e65eb362\";a:4:{s:10:\"expiration\";i:1784650504;s:2:\"ip\";s:14:\"129.121.77.134\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1784477704;}}'),(310,11,'_yoast_wpseo_introductions','a:0:{}'),(311,11,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2269&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:11;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(312,12,'nickname','wp2_90e42a'),(313,12,'first_name',''),(314,12,'last_name',''),(315,12,'description',''),(316,12,'rich_editing','true'),(317,12,'syntax_highlighting','true'),(318,12,'comment_shortcuts','false'),(319,12,'admin_color','fresh'),(320,12,'use_ssl','0'),(321,12,'show_admin_bar_front','true'),(322,12,'locale',''),(323,12,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(324,12,'wp_user_level','10'),(325,12,'_yoast_wpseo_profile_updated','1784545166'),(326,12,'session_tokens','a:4:{s:64:\"84868c3fc41ee51e9cfbbd281a1fbd0de7470c7274349e1763d405a6f67559c5\";a:4:{s:10:\"expiration\";i:1786044134;s:2:\"ip\";s:14:\"125.164.233.50\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1784834534;}s:64:\"c735385110f800a322c8c430716b0173ac3434750325da1144e53d62ceebceda\";a:4:{s:10:\"expiration\";i:1785235001;s:2:\"ip\";s:13:\"216.67.230.98\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0\";s:5:\"login\";i:1785062201;}s:64:\"9576ae70ec2d4087f6c087d5d158d60854542e7f60ebd910fcb017ae6bc15bfb\";a:4:{s:10:\"expiration\";i:1786316459;s:2:\"ip\";s:14:\"147.135.76.247\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1785106859;}s:64:\"a07fb36cb5dd35ba043c1f7aeac9ca1c0ca4bbd5dc46d58c3545fc9f77096604\";a:4:{s:10:\"expiration\";i:1785379607;s:2:\"ip\";s:13:\"216.67.230.98\";s:2:\"ua\";s:133:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.6778.86 Safari/537.36 Edg/131.0.2903.51\";s:5:\"login\";i:1785206807;}}'),(327,13,'nickname','upgrades'),(328,13,'first_name',''),(329,13,'last_name',''),(330,13,'description',''),(331,13,'rich_editing','true'),(332,13,'syntax_highlighting','true'),(333,13,'comment_shortcuts','false'),(334,13,'admin_color','fresh'),(335,13,'use_ssl','0'),(336,13,'show_admin_bar_front','true'),(337,13,'locale',''),(338,13,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(339,13,'wp_user_level','10'),(340,13,'_yoast_wpseo_profile_updated','1784670540'),(341,12,'_yoast_wpseo_introductions','a:0:{}'),(342,12,'wp_dashboard_quick_press_last_post_id','3849'),(343,12,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:12;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(344,14,'nickname','wpadmin2ci'),(345,14,'first_name',''),(346,14,'last_name',''),(347,14,'description',''),(348,14,'rich_editing','true'),(349,14,'syntax_highlighting','true'),(350,14,'comment_shortcuts','false'),(351,14,'admin_color','fresh'),(352,14,'use_ssl','0'),(353,14,'show_admin_bar_front','true'),(354,14,'locale',''),(355,14,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(356,14,'wp_user_level','10'),(357,14,'_yoast_wpseo_profile_updated','1784692438'),(358,14,'session_tokens','a:20:{s:64:\"9ba4cc61bef01b8f659279495972ec90dd5d73755bdb7e1bd8fb59732b9593f1\";a:4:{s:10:\"expiration\";i:1785913343;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703743;}s:64:\"4d6de3a7ded0f8ed71cb78d45725ab5684c88e50febd9056e637b8e91bf5500b\";a:4:{s:10:\"expiration\";i:1785913349;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703749;}s:64:\"16239109565f2a7a12ebca1306699784a569dad0bb5769a75128c1c4266a261c\";a:4:{s:10:\"expiration\";i:1785913398;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703798;}s:64:\"5803dba9137c56363edf0c451f903e505dbbffaa961b463890c26c0a55173eba\";a:4:{s:10:\"expiration\";i:1785913401;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703801;}s:64:\"a409789e89aa97e174ff0618c51ee3f6b6e9c7d48c17b247a5f6d5e991608098\";a:4:{s:10:\"expiration\";i:1785913459;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703859;}s:64:\"bf2d659fdf4aeb9d9ccb1904280bd736281c1eb7c8a3341af1dc12fbb0798394\";a:4:{s:10:\"expiration\";i:1785913462;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703862;}s:64:\"6ce4cc7628a96358fe0bddceca44ce918ca1b780024eb8084f4c7e7708cda430\";a:4:{s:10:\"expiration\";i:1785913585;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703985;}s:64:\"b65a5ff2471456750073867509f08690ad99dd2e32a7392034fec97ce94e7936\";a:4:{s:10:\"expiration\";i:1785913588;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784703988;}s:64:\"ff635d03cfb172e09a4113bd83b9399d580fe1e9fa5739791b3402c5aed4d34a\";a:4:{s:10:\"expiration\";i:1785914755;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784705155;}s:64:\"f7c3c6e53bd916a30e6f6e5b764728ce17e711fe7529ec4df8e90fcb69e23ed0\";a:4:{s:10:\"expiration\";i:1785914759;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784705159;}s:64:\"0d8a74edb7f6e7141c1837db511f56f31e0436e75e0b92b460973fa1d1187a17\";a:4:{s:10:\"expiration\";i:1785915027;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784705427;}s:64:\"5b814544766ee00c5a869c95ea5bd7d54d643c2bf74cbec2169e62396d44fb26\";a:4:{s:10:\"expiration\";i:1785915032;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784705432;}s:64:\"ad43f4fab3e84e71801ce5e85a283a9bd001fcd61c45da85936dca349eaaad38\";a:4:{s:10:\"expiration\";i:1785916189;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784706589;}s:64:\"498f641166db0b08c3e321b603e462c82be1e2dee1e0167ff27ca9fef13b4de9\";a:4:{s:10:\"expiration\";i:1785918973;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784709373;}s:64:\"4fea8b43791b3131321aaa8637ae641dd86168a8ef0daa12bfe5600bc13af6a8\";a:4:{s:10:\"expiration\";i:1785923683;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784714083;}s:64:\"0fd22c6f5d8993155f05ecc772086011778f9f43ec974f56a8eb15fe561fcf40\";a:4:{s:10:\"expiration\";i:1785928810;s:2:\"ip\";s:13:\"45.61.188.240\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784719210;}s:64:\"4cbdca8f7bf9fabeaca28ff34b84510bda6129adc9da68d9f848e9d592f04b28\";a:4:{s:10:\"expiration\";i:1786163906;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784954306;}s:64:\"4b0f59ab3abd7b76c150125e3ac12d698905969a452b1667b394bb063db85469\";a:4:{s:10:\"expiration\";i:1786163913;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784954313;}s:64:\"cec94b340c7f650c1fc296f28a2043ce1733343adad03a420ad4d701551ddca0\";a:4:{s:10:\"expiration\";i:1786164815;s:2:\"ip\";s:13:\"107.189.29.12\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.36\";s:5:\"login\";i:1784955215;}s:64:\"576d6e9a6b60e310f90acd4b10eacd52ed2820d18c644ff908ac96d9f10ab7b9\";a:4:{s:10:\"expiration\";i:1785392184;s:2:\"ip\";s:12:\"198.2.228.23\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1785219384;}}'),(359,14,'_yoast_wpseo_introductions','a:0:{}'),(360,14,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2274&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:14;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(361,14,'wp_dashboard_quick_press_last_post_id','3855'),(379,16,'nickname','Nx_6adca1dd0a8a'),(380,16,'first_name',''),(381,16,'last_name',''),(382,16,'description',''),(383,16,'rich_editing','true'),(384,16,'syntax_highlighting','true'),(385,16,'comment_shortcuts','false'),(386,16,'admin_color','fresh'),(387,16,'use_ssl','0'),(388,16,'show_admin_bar_front','true'),(389,16,'locale',''),(390,16,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(391,16,'wp_user_level','10'),(392,16,'_yoast_wpseo_profile_updated','1784741017'),(393,16,'session_tokens','a:6:{s:64:\"b29d4b0cfbc56966cff45ea029eadbee1d0623ea8f08f49ad203601389491a76\";a:4:{s:10:\"expiration\";i:1785259867;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:78:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:91.0) Gecko/20100101 Firefox/91.0\";s:5:\"login\";i:1785087067;}s:64:\"b4e52fda6c5958ec059906d63068046a81ce602cd1302aaf75a2932703392f91\";a:4:{s:10:\"expiration\";i:1785265486;s:2:\"ip\";s:14:\"37.111.214.167\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36\";s:5:\"login\";i:1785092686;}s:64:\"2966e4333590f3134cefd077fb55aee87848741f6f577c2a0344d3a379861706\";a:4:{s:10:\"expiration\";i:1785286812;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Safari/605.1.15\";s:5:\"login\";i:1785114012;}s:64:\"4a458dc4c90c5e24ee5753a5d779fd5bba1330fa81d75af444be8be566042753\";a:4:{s:10:\"expiration\";i:1786338670;s:2:\"ip\";s:13:\"46.203.52.239\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785129070;}s:64:\"b143fd20c7f9456611d7f3a48dddee5776f023b017daee288820bdeb94471bc2\";a:4:{s:10:\"expiration\";i:1786346840;s:2:\"ip\";s:13:\"46.203.52.188\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785137240;}s:64:\"455c6cd0d279c1a051035cfd215d54213bfc05989ab91d1221fbca7d23ccc0ed\";a:4:{s:10:\"expiration\";i:1786356256;s:2:\"ip\";s:13:\"195.40.121.92\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785146656;}}'),(394,16,'_yoast_wpseo_introductions','a:0:{}'),(395,16,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:16;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(396,16,'wp_dashboard_quick_press_last_post_id','3870'),(397,17,'nickname','Nx_339855e3ae09'),(398,17,'first_name',''),(399,17,'last_name',''),(400,17,'description',''),(401,17,'rich_editing','true'),(402,17,'syntax_highlighting','true'),(403,17,'comment_shortcuts','false'),(404,17,'admin_color','fresh'),(405,17,'use_ssl','0'),(406,17,'show_admin_bar_front','true'),(407,17,'locale',''),(408,17,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(409,17,'wp_user_level','10'),(410,17,'_yoast_wpseo_profile_updated','1784749296'),(411,17,'session_tokens','a:1:{s:64:\"6d638346a03a2201d00a98bb4474387e948b5f63a9f3c0b14ade6efd5285703f\";a:4:{s:10:\"expiration\";i:1784922099;s:2:\"ip\";s:12:\"31.57.219.92\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1784749299;}}'),(412,17,'_yoast_wpseo_introductions','a:0:{}'),(413,17,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2272&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:17;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(414,17,'wp_dashboard_quick_press_last_post_id','3880'),(415,18,'nickname','Nx_21881cc8a514'),(416,18,'first_name',''),(417,18,'last_name',''),(418,18,'description',''),(419,18,'rich_editing','true'),(420,18,'syntax_highlighting','true'),(421,18,'comment_shortcuts','false'),(422,18,'admin_color','fresh'),(423,18,'use_ssl','0'),(424,18,'show_admin_bar_front','true'),(425,18,'locale',''),(426,18,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(427,18,'wp_user_level','10'),(428,18,'_yoast_wpseo_profile_updated','1784752737'),(429,18,'session_tokens','a:1:{s:64:\"7581960bc058bff21417185572534f88dc27ed5fdfe060c3910e36362adbd7f6\";a:4:{s:10:\"expiration\";i:1784925539;s:2:\"ip\";s:12:\"31.57.219.92\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1784752739;}}'),(430,18,'_yoast_wpseo_introductions','a:0:{}'),(431,18,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2272&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:18;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(432,18,'wp_dashboard_quick_press_last_post_id','3890'),(433,19,'nickname','yun_11'),(434,19,'first_name',''),(435,19,'last_name',''),(436,19,'description',''),(437,19,'rich_editing','true'),(438,19,'syntax_highlighting','true'),(439,19,'comment_shortcuts','false'),(440,19,'admin_color','fresh'),(441,19,'use_ssl','0'),(442,19,'show_admin_bar_front','true'),(443,19,'locale',''),(444,19,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(445,19,'wp_user_level','10'),(446,19,'_yoast_wpseo_profile_updated','1784782179'),(447,20,'nickname','wp2_6dc4be'),(448,20,'first_name',''),(449,20,'last_name',''),(450,20,'description',''),(451,20,'rich_editing','true'),(452,20,'syntax_highlighting','true'),(453,20,'comment_shortcuts','false'),(454,20,'admin_color','fresh'),(455,20,'use_ssl','0'),(456,20,'show_admin_bar_front','true'),(457,20,'locale',''),(458,20,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(459,20,'wp_user_level','10'),(460,20,'_yoast_wpseo_profile_updated','1784788804'),(461,20,'session_tokens','a:2:{s:64:\"8b35f8dfe6681b1c3c44aeb665de0d08d4e90eeccd60666c38c4916019e553fa\";a:4:{s:10:\"expiration\";i:1786053846;s:2:\"ip\";s:13:\"216.67.230.98\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1784844246;}s:64:\"bfb0d62d1682365b547a6d8c0b3698d95ad86e766b07548a09c7e2d558b05b69\";a:4:{s:10:\"expiration\";i:1786571583;s:2:\"ip\";s:14:\"216.250.119.94\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Safari/537.36\";s:5:\"login\";i:1785361983;}}'),(462,21,'nickname','Nx_0e6d71ab998f'),(463,21,'first_name',''),(464,21,'last_name',''),(465,21,'description',''),(466,21,'rich_editing','true'),(467,21,'syntax_highlighting','true'),(468,21,'comment_shortcuts','false'),(469,21,'admin_color','fresh'),(470,21,'use_ssl','0'),(471,21,'show_admin_bar_front','true'),(472,21,'locale',''),(473,21,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(474,21,'wp_user_level','10'),(475,21,'_yoast_wpseo_profile_updated','1784790568'),(476,22,'nickname','Nx_7af781d5fe75'),(477,22,'first_name',''),(478,22,'last_name',''),(479,22,'description',''),(480,22,'rich_editing','true'),(481,22,'syntax_highlighting','true'),(482,22,'comment_shortcuts','false'),(483,22,'admin_color','fresh'),(484,22,'use_ssl','0'),(485,22,'show_admin_bar_front','true'),(486,22,'locale',''),(487,22,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(488,22,'wp_user_level','10'),(489,22,'_yoast_wpseo_profile_updated','1784798176'),(490,23,'nickname','Nx_6da05902ee40'),(491,23,'first_name',''),(492,23,'last_name',''),(493,23,'description',''),(494,23,'rich_editing','true'),(495,23,'syntax_highlighting','true'),(496,23,'comment_shortcuts','false'),(497,23,'admin_color','fresh'),(498,23,'use_ssl','0'),(499,23,'show_admin_bar_front','true'),(500,23,'locale',''),(501,23,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(502,23,'wp_user_level','10'),(503,23,'_yoast_wpseo_profile_updated','1784813565'),(504,23,'session_tokens','a:1:{s:64:\"8c5c3d504664f2b1404404b28907c5207b0f7a3e2df45b37bf4512a19ea9f0b5\";a:4:{s:10:\"expiration\";i:1784986368;s:2:\"ip\";s:12:\"31.57.219.92\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1784813568;}}'),(505,23,'_yoast_wpseo_introductions','a:0:{}'),(506,23,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2273&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:23;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(507,23,'wp_dashboard_quick_press_last_post_id','3915'),(508,24,'nickname','Nx_2bbe6a7a7ab4'),(509,24,'first_name',''),(510,24,'last_name',''),(511,24,'description',''),(512,24,'rich_editing','true'),(513,24,'syntax_highlighting','true'),(514,24,'comment_shortcuts','false'),(515,24,'admin_color','fresh'),(516,24,'use_ssl','0'),(517,24,'show_admin_bar_front','true'),(518,24,'locale',''),(519,24,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(520,24,'wp_user_level','10'),(521,24,'_yoast_wpseo_profile_updated','1784831719'),(522,24,'session_tokens','a:1:{s:64:\"95d54c5d9c3e054980495c00880445c70676abb7c41f9a3955ab947eef0f6867\";a:4:{s:10:\"expiration\";i:1785004522;s:2:\"ip\";s:14:\"194.180.48.253\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1784831722;}}'),(523,24,'_yoast_wpseo_introductions','a:0:{}'),(524,24,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2273&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:24;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(525,24,'wp_dashboard_quick_press_last_post_id','3925'),(526,12,'community-events-location','a:1:{s:2:\"ip\";s:12:\"216.67.230.0\";}'),(527,1,'_yoast_wpseo_introductions','a:0:{}'),(529,25,'nickname','Nx_f5c8f58c606b'),(530,25,'first_name',''),(531,25,'last_name',''),(532,25,'description',''),(533,25,'rich_editing','true'),(534,25,'syntax_highlighting','true'),(535,25,'comment_shortcuts','false'),(536,25,'admin_color','fresh'),(537,25,'use_ssl','0'),(538,25,'show_admin_bar_front','true'),(539,25,'locale',''),(540,25,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(541,25,'wp_user_level','10'),(542,25,'_yoast_wpseo_profile_updated','1784843196'),(543,20,'_yoast_wpseo_introductions','a:0:{}'),(544,20,'wp_dashboard_quick_press_last_post_id','3945'),(545,20,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:20;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(546,20,'community-events-location','a:1:{s:2:\"ip\";s:13:\"216.250.119.0\";}'),(547,26,'nickname','Nx_78cc6e4726c9'),(548,26,'first_name',''),(549,26,'last_name',''),(550,26,'description',''),(551,26,'rich_editing','true'),(552,26,'syntax_highlighting','true'),(553,26,'comment_shortcuts','false'),(554,26,'admin_color','fresh'),(555,26,'use_ssl','0'),(556,26,'show_admin_bar_front','true'),(557,26,'locale',''),(558,26,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(559,26,'wp_user_level','10'),(560,26,'_yoast_wpseo_profile_updated','1784888369'),(561,21,'session_tokens','a:5:{s:64:\"a715be4c2d47203e67aad1fe7850df2b789ce437ee17a9aa506dd586b0376afd\";a:4:{s:10:\"expiration\";i:1785259156;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\";s:5:\"login\";i:1785086356;}s:64:\"4dcf729c0b6b7569da2eb36a5ef4f2b98a107a046272f4caf2a9d2a07ef21f4b\";a:4:{s:10:\"expiration\";i:1785272214;s:2:\"ip\";s:14:\"37.111.194.229\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785099414;}s:64:\"04bb3550e44e32faac750eb9db6acfdea36583e0c117c100963ba4e5a0030f35\";a:4:{s:10:\"expiration\";i:1785287288;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1785114488;}s:64:\"622e28777ce2e7a294b728d51733d8132028989daf616ae4ef1aa91c1a0efcc4\";a:4:{s:10:\"expiration\";i:1786325698;s:2:\"ip\";s:12:\"46.203.52.11\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785116098;}s:64:\"01968ca66a630271b6bb273e6a31d92d233f33bfacfc92c7a5d3bbbac59de342\";a:4:{s:10:\"expiration\";i:1786356825;s:2:\"ip\";s:15:\"161.123.209.221\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785147225;}}'),(562,21,'_yoast_wpseo_introductions','a:0:{}'),(563,21,'wp_dashboard_quick_press_last_post_id','3956'),(565,22,'session_tokens','a:4:{s:64:\"53e456bc03b6c79de4d0373cee28ce9c870a90862ca576f10780c40e414c1740\";a:4:{s:10:\"expiration\";i:1785260499;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36\";s:5:\"login\";i:1785087699;}s:64:\"ebe7dad16636267d3767f672fc0d356079f1152fe6d223e514083bc5fc43e340\";a:4:{s:10:\"expiration\";i:1785286929;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36\";s:5:\"login\";i:1785114129;}s:64:\"de8b62f676e9235f5dc362b26df60ad40e8eecc6426a8b6df033abfc74eb48e9\";a:4:{s:10:\"expiration\";i:1786338582;s:2:\"ip\";s:14:\"142.111.67.232\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785128982;}s:64:\"00379988579829e21dac5def34fd0cdb6196ac87154f3bcd2a0e83d3041c24ce\";a:4:{s:10:\"expiration\";i:1786355618;s:2:\"ip\";s:12:\"46.203.52.39\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785146018;}}'),(566,22,'_yoast_wpseo_introductions','a:0:{}'),(567,22,'wp_dashboard_quick_press_last_post_id','3959'),(568,22,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:22;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(569,26,'session_tokens','a:5:{s:64:\"67911ad79fdf9c3b89299690a774521c58af460e0346018a45bb75875034c532\";a:4:{s:10:\"expiration\";i:1785263535;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36\";s:5:\"login\";i:1785090735;}s:64:\"899081d395056d4ac6e5072ece0c1106882f6ed43765144339f9acfb3a6e75bc\";a:4:{s:10:\"expiration\";i:1785287052;s:2:\"ip\";s:15:\"103.161.183.129\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36\";s:5:\"login\";i:1785114252;}s:64:\"bf0a946d1b12edd0569de7c86ec9ed3fadeaf09da8916a8d55d3c4e07750330d\";a:4:{s:10:\"expiration\";i:1785287110;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:105:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36\";s:5:\"login\";i:1785114310;}s:64:\"4b7e15da1d3c269fdf9a6e1fa5ed84a0edec8b4486f8691084e66e6dd64b152d\";a:4:{s:10:\"expiration\";i:1786342088;s:2:\"ip\";s:14:\"161.123.209.49\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785132488;}s:64:\"aafdbb95eb0f574b14e08ef91dbc8bb8f637ceff8ca50ac6e23fd9089f2d04dc\";a:4:{s:10:\"expiration\";i:1786354030;s:2:\"ip\";s:14:\"195.172.211.41\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785144430;}}'),(570,26,'_yoast_wpseo_introductions','a:0:{}'),(571,26,'wp_dashboard_quick_press_last_post_id','3962'),(572,26,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:26;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(573,25,'session_tokens','a:7:{s:64:\"b86858457ec2c803a25b9fa7b5e6c238f0952f553aaf89c254989ad25f1be6f2\";a:4:{s:10:\"expiration\";i:1785167071;s:2:\"ip\";s:13:\"62.60.130.235\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.131 Safari/537.36\";s:5:\"login\";i:1784994271;}s:64:\"9df2bdc522219f61ed2b0eb7dd6fc7c8e6b6306d07de37cef1b543d44ed05c2d\";a:4:{s:10:\"expiration\";i:1785256210;s:2:\"ip\";s:15:\"103.161.183.129\";s:2:\"ua\";s:77:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:92.0) Gecko/20100101 Firefox/92.0\";s:5:\"login\";i:1785083410;}s:64:\"2e99c0136980a2e2ddbbc67c78db9edf1dff458c779f3426bd6637fa4942ecba\";a:4:{s:10:\"expiration\";i:1785259528;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:117:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Safari/605.1.15\";s:5:\"login\";i:1785086728;}s:64:\"7042302bad03458a774881a69309482c5177e776dc33a3affff1e4aca49c9505\";a:4:{s:10:\"expiration\";i:1785267168;s:2:\"ip\";s:14:\"37.111.194.229\";s:2:\"ua\";s:104:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.71 Safari/537.36\";s:5:\"login\";i:1785094368;}s:64:\"fb4cc705518722900361fa5b2e5030c04421584f5ba4a1b18c4502956db4460f\";a:4:{s:10:\"expiration\";i:1785286806;s:2:\"ip\";s:14:\"161.118.221.78\";s:2:\"ua\";s:84:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7; rv:93.0) Gecko/20100101 Firefox/93.0\";s:5:\"login\";i:1785114006;}s:64:\"cd332238cf0a14bae2187de7830d42a43ad4eb824e69797953cb408127eaec81\";a:4:{s:10:\"expiration\";i:1786326789;s:2:\"ip\";s:14:\"142.111.67.139\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785117189;}s:64:\"b95116eb5afc1d03106140a38d602a8f617a756bdf982d0b6ec5f46fbc9e5f6d\";a:4:{s:10:\"expiration\";i:1786357203;s:2:\"ip\";s:13:\"195.172.211.3\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/145.0.0.0 Safari/537.36\";s:5:\"login\";i:1785147603;}}'),(574,25,'_yoast_wpseo_introductions','a:0:{}'),(575,25,'wp_dashboard_quick_press_last_post_id','3965'),(576,25,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:25;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(577,27,'nickname','bd0a8b068bad'),(578,27,'first_name',''),(579,27,'last_name',''),(580,27,'description',''),(581,27,'rich_editing','true'),(582,27,'syntax_highlighting','true'),(583,27,'comment_shortcuts','false'),(584,27,'admin_color','fresh'),(585,27,'use_ssl','0'),(586,27,'show_admin_bar_front','true'),(587,27,'locale',''),(588,27,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(589,27,'wp_user_level','10'),(590,27,'_yoast_wpseo_profile_updated','1784901156'),(591,27,'session_tokens','a:1:{s:64:\"5867b65b9c2824f1cfa8177a95f51cf2af143333641d193e64715f59ee0168e6\";a:4:{s:10:\"expiration\";i:1785073959;s:2:\"ip\";s:13:\"194.59.31.200\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1784901159;}}'),(592,27,'_yoast_wpseo_introductions','a:0:{}'),(593,27,'wp_dashboard_quick_press_last_post_id','3971'),(594,27,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2274&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:27;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(595,28,'nickname','wp2_1f0b4a1693f0'),(596,28,'first_name',''),(597,28,'last_name',''),(598,28,'description',''),(599,28,'rich_editing','true'),(600,28,'syntax_highlighting','true'),(601,28,'comment_shortcuts','false'),(602,28,'admin_color','fresh'),(603,28,'use_ssl','0'),(604,28,'show_admin_bar_front','true'),(605,28,'locale',''),(606,28,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(607,28,'wp_user_level','10'),(608,28,'_yoast_wpseo_profile_updated','1784909587'),(609,28,'session_tokens','a:1:{s:64:\"d88b7a825720b261964162c8dbdf2f7df6d0b4418237574ded5311eb966167eb\";a:4:{s:10:\"expiration\";i:1785097134;s:2:\"ip\";s:15:\"182.253.194.220\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Linux; Android 10; K) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/150.0.0.0 Mobile Safari/537.36\";s:5:\"login\";i:1784924334;}}'),(610,28,'_yoast_wpseo_introductions','a:0:{}'),(611,28,'wp_dashboard_quick_press_last_post_id','3984'),(612,28,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2274&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:28;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(613,28,'community-events-location','a:1:{s:2:\"ip\";s:13:\"182.253.194.0\";}'),(614,29,'nickname','wpsvc_1cb5f621ece0'),(615,29,'first_name',''),(616,29,'last_name',''),(617,29,'description',''),(618,29,'rich_editing','true'),(619,29,'syntax_highlighting','true'),(620,29,'comment_shortcuts','false'),(621,29,'admin_color','fresh'),(622,29,'use_ssl','0'),(623,29,'show_admin_bar_front','true'),(624,29,'locale',''),(625,29,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(626,29,'wp_user_level','10'),(627,29,'_yoast_wpseo_profile_updated','1784935842'),(628,29,'session_tokens','a:1:{s:64:\"2887bb70a2eac8555c9bf981dd17310727b4d0eaf7bb2df2416a0b1dd3c41841\";a:4:{s:10:\"expiration\";i:1785108648;s:2:\"ip\";s:12:\"34.31.49.203\";s:2:\"ua\";s:60:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36\";s:5:\"login\";i:1784935848;}}'),(629,29,'_yoast_wpseo_introductions','a:0:{}'),(630,29,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2274&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:29;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(631,19,'session_tokens','a:2:{s:64:\"32a89a6cbfe32507d00fb51e5a2b4dbc8020ea2d0cbceb908bbb1d2915cccc3f\";a:4:{s:10:\"expiration\";i:1785116139;s:2:\"ip\";s:14:\"34.142.238.128\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0\";s:5:\"login\";i:1784943339;}s:64:\"32aabcbb9fa5b6359652396c93a3086e183901836cd6e546454a8c76105cb3e0\";a:4:{s:10:\"expiration\";i:1785116145;s:2:\"ip\";s:14:\"34.142.238.128\";s:2:\"ua\";s:80:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:134.0) Gecko/20100101 Firefox/134.0\";s:5:\"login\";i:1784943345;}}'),(632,19,'_yoast_wpseo_introductions','a:0:{}'),(633,19,'wp_dashboard_quick_press_last_post_id','3993'),(634,19,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2274&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:19;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(635,30,'nickname','Nx_6392896df2f7'),(636,30,'first_name',''),(637,30,'last_name',''),(638,30,'description',''),(639,30,'rich_editing','true'),(640,30,'syntax_highlighting','true'),(641,30,'comment_shortcuts','false'),(642,30,'admin_color','fresh'),(643,30,'use_ssl','0'),(644,30,'show_admin_bar_front','true'),(645,30,'locale',''),(646,30,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(647,30,'wp_user_level','10'),(648,30,'_yoast_wpseo_profile_updated','1784952985'),(649,30,'session_tokens','a:2:{s:64:\"ef99c6c0c9717c4d0383413d0e1d8a1be13e6f9dffbc3ccf3e2d161fc0f0be87\";a:4:{s:10:\"expiration\";i:1785428620;s:2:\"ip\";s:13:\"62.60.130.235\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.1 Safari/605.1.15\";s:5:\"login\";i:1785255820;}s:64:\"097db24cf32f5ef1489326d5d51c5fb00d8caa11d59a612b77eb506505aee524\";a:4:{s:10:\"expiration\";i:1785557704;s:2:\"ip\";s:13:\"62.60.130.235\";s:2:\"ua\";s:113:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/93.0.4577.63 Safari/537.36\";s:5:\"login\";i:1785384904;}}'),(650,30,'_yoast_wpseo_introductions','a:0:{}'),(651,30,'wp_dashboard_quick_press_last_post_id','3997'),(652,30,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2274&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:30;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(653,31,'nickname','solvibrantsbaa2ae'),(654,31,'first_name',''),(655,31,'last_name',''),(656,31,'description',''),(657,31,'rich_editing','true'),(658,31,'syntax_highlighting','true'),(659,31,'comment_shortcuts','false'),(660,31,'admin_color','fresh'),(661,31,'use_ssl','0'),(662,31,'show_admin_bar_front','true'),(663,31,'locale',''),(664,31,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(665,31,'wp_user_level','10'),(666,31,'_yoast_wpseo_profile_updated','1784972316'),(667,32,'nickname','solvibrants0e02a1'),(668,32,'first_name',''),(669,32,'last_name',''),(670,32,'description',''),(671,32,'rich_editing','true'),(672,32,'syntax_highlighting','true'),(673,32,'comment_shortcuts','false'),(674,32,'admin_color','fresh'),(675,32,'use_ssl','0'),(676,32,'show_admin_bar_front','true'),(677,32,'locale',''),(678,32,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(679,32,'wp_user_level','10'),(680,32,'_yoast_wpseo_profile_updated','1784974277'),(681,33,'nickname','solvibrants0909ea'),(682,33,'first_name',''),(683,33,'last_name',''),(684,33,'description',''),(685,33,'rich_editing','true'),(686,33,'syntax_highlighting','true'),(687,33,'comment_shortcuts','false'),(688,33,'admin_color','fresh'),(689,33,'use_ssl','0'),(690,33,'show_admin_bar_front','true'),(691,33,'locale',''),(692,33,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(693,33,'wp_user_level','10'),(694,33,'_yoast_wpseo_profile_updated','1784975278'),(695,34,'nickname','w2s_2dfa285b8ed3'),(696,34,'first_name',''),(697,34,'last_name',''),(698,34,'description',''),(699,34,'rich_editing','true'),(700,34,'syntax_highlighting','true'),(701,34,'comment_shortcuts','false'),(702,34,'admin_color','fresh'),(703,34,'use_ssl','0'),(704,34,'show_admin_bar_front','true'),(705,34,'locale',''),(706,34,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(707,34,'wp_user_level','10'),(708,34,'_yoast_wpseo_profile_updated','1784989556'),(709,34,'session_tokens','a:2:{s:64:\"dc9570fb7f36810adb8db168eaa1879063f6f36a6191a4bae807c02d9c5af9ca\";a:4:{s:10:\"expiration\";i:1786217916;s:2:\"ip\";s:15:\"217.217.252.137\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1785008316;}s:64:\"ef6c0f2a79102556272801a24ec192354821697e1cf411581a94113ba83ea779\";a:4:{s:10:\"expiration\";i:1786316696;s:2:\"ip\";s:15:\"217.217.252.137\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/122.0.0.0 Safari/537.36\";s:5:\"login\";i:1785107096;}}'),(710,34,'_yoast_wpseo_introductions','a:0:{}'),(711,34,'wp_dashboard_quick_press_last_post_id','4030'),(712,34,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2276&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:34;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(713,35,'nickname','Nx_ae0fb6b85966'),(714,35,'first_name',''),(715,35,'last_name',''),(716,35,'description',''),(717,35,'rich_editing','true'),(718,35,'syntax_highlighting','true'),(719,35,'comment_shortcuts','false'),(720,35,'admin_color','fresh'),(721,35,'use_ssl','0'),(722,35,'show_admin_bar_front','true'),(723,35,'locale',''),(724,35,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(725,35,'wp_user_level','10'),(726,35,'_yoast_wpseo_profile_updated','1785014508'),(727,35,'session_tokens','a:1:{s:64:\"34e8a86d8ef1bc08e75aa90cf578afedde7f64d95443f9696ed5dccd936729d0\";a:4:{s:10:\"expiration\";i:1785187312;s:2:\"ip\";s:13:\"149.33.27.237\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1785014512;}}'),(728,35,'_yoast_wpseo_introductions','a:0:{}'),(729,35,'wp_dashboard_quick_press_last_post_id','4036'),(730,35,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2275&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:35;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(731,36,'nickname','host_cbff03233ef7'),(732,36,'first_name',''),(733,36,'last_name',''),(734,36,'description',''),(735,36,'rich_editing','true'),(736,36,'syntax_highlighting','true'),(737,36,'comment_shortcuts','false'),(738,36,'admin_color','fresh'),(739,36,'use_ssl','0'),(740,36,'show_admin_bar_front','true'),(741,36,'locale',''),(742,36,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(743,36,'wp_user_level','10'),(744,36,'_yoast_wpseo_profile_updated','1785054625'),(745,36,'session_tokens','a:1:{s:64:\"1a3a74393953facfafc4d990a48b8cbb7bd90afc2fee3fc1f9af78a199198bda\";a:4:{s:10:\"expiration\";i:1785228763;s:2:\"ip\";s:11:\"196.16.3.57\";s:2:\"ua\";s:73:\"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0\";s:5:\"login\";i:1785055963;}}'),(746,36,'_yoast_wpseo_introductions','a:0:{}'),(747,36,'wp_dashboard_quick_press_last_post_id','4053'),(748,36,'wp_yoast_notifications','a:1:{i:0;a:2:{s:7:\"message\";s:435:\"Your recent posts are using default SEO titles, which can make them easy to overlook in search results. Update them for better visibility or <a href=\"https://yoa.st/ai-generate-alert-free/?php_version=7.4&platform=wordpress&platform_version=6.9.1&software=free&software_version=26.9&days_active=2275&user_language=en_US\" target=\"_blank\">try <strong>Yoast AI Generate</strong> for free to do it faster.</a>\";s:7:\"options\";a:11:{s:4:\"type\";s:7:\"warning\";s:2:\"id\";s:22:\"wpseo-default-seo-data\";s:7:\"user_id\";i:36;s:5:\"nonce\";N;s:8:\"priority\";d:0.5;s:9:\"data_json\";a:0:{}s:13:\"dismissal_key\";N;s:12:\"capabilities\";a:1:{i:0;s:20:\"wpseo_manage_options\";}s:16:\"capability_check\";s:3:\"all\";s:14:\"yoast_branding\";b:0;s:13:\"resolve_nonce\";s:0:\"\";}}}'),(749,37,'nickname','acadtapi'),(750,37,'first_name',''),(751,37,'last_name',''),(752,37,'description',''),(753,37,'rich_editing','true'),(754,37,'syntax_highlighting','true'),(755,37,'comment_shortcuts','false'),(756,37,'admin_color','fresh'),(757,37,'use_ssl','0'),(758,37,'show_admin_bar_front','true'),(759,37,'locale',''),(760,37,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(761,37,'wp_user_level','10'),(762,37,'_yoast_wpseo_profile_updated','1785116110'),(763,37,'dismissed_wp_pointers',''),(764,38,'nickname','adminbockup'),(765,38,'first_name',''),(766,38,'last_name',''),(767,38,'description',''),(768,38,'rich_editing','true'),(769,38,'syntax_highlighting','true'),(770,38,'comment_shortcuts','false'),(771,38,'admin_color','fresh'),(772,38,'use_ssl','0'),(773,38,'show_admin_bar_front','true'),(774,38,'locale',''),(775,38,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(776,38,'wp_user_level','10'),(777,37,'session_tokens','a:1:{s:64:\"f014a465a054c19892deb0d835362ac23ec17be96ad52bdfef0f21dc449ebc06\";a:4:{s:10:\"expiration\";i:1785310922;s:2:\"ip\";s:14:\"174.128.251.99\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/144.0.0.0 Safari/537.36\";s:5:\"login\";i:1785138122;}}'),(778,37,'wp_dashboard_quick_press_last_post_id','4080'),(779,37,'community-events-location','a:1:{s:2:\"ip\";s:13:\"174.128.251.0\";}'),(780,39,'nickname','w2s_89393b791c56'),(781,39,'first_name',''),(782,39,'last_name',''),(783,39,'description',''),(784,39,'rich_editing','true'),(785,39,'syntax_highlighting','true'),(786,39,'comment_shortcuts','false'),(787,39,'admin_color','fresh'),(788,39,'use_ssl','0'),(789,39,'show_admin_bar_front','true'),(790,39,'locale',''),(791,39,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(792,39,'wp_user_level','10'),(793,39,'session_tokens','a:1:{s:64:\"4b9b8915d76a1fa8f15e353b06d4706f25b16cec5498ed86f829d09a3156288a\";a:4:{s:10:\"expiration\";i:1785352199;s:2:\"ip\";s:12:\"34.31.88.250\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/146.0.0.0 Safari/537.36\";s:5:\"login\";i:1785179399;}}'),(794,40,'nickname','wordpress_dec1f9cdc161'),(795,40,'first_name',''),(796,40,'last_name',''),(797,40,'description',''),(798,40,'rich_editing','true'),(799,40,'syntax_highlighting','true'),(800,40,'comment_shortcuts','false'),(801,40,'admin_color','fresh'),(802,40,'use_ssl','0'),(803,40,'show_admin_bar_front','true'),(804,40,'locale',''),(805,40,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(806,40,'wp_user_level','10'),(807,41,'nickname','wp_service_bfb4bc'),(808,41,'first_name',''),(809,41,'last_name',''),(810,41,'description',''),(811,41,'rich_editing','true'),(812,41,'syntax_highlighting','true'),(813,41,'comment_shortcuts','false'),(814,41,'admin_color','fresh'),(815,41,'use_ssl','0'),(816,41,'show_admin_bar_front','true'),(817,41,'locale',''),(818,41,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(819,41,'wp_user_level','10'),(820,42,'nickname','w2s_3fb596224fa1'),(821,42,'first_name',''),(822,42,'last_name',''),(823,42,'description',''),(824,42,'rich_editing','true'),(825,42,'syntax_highlighting','true'),(826,42,'comment_shortcuts','false'),(827,42,'admin_color','fresh'),(828,42,'use_ssl','0'),(829,42,'show_admin_bar_front','true'),(830,42,'locale',''),(831,42,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(832,42,'wp_user_level','10'),(833,42,'session_tokens','a:1:{s:64:\"049152e4a6fb2e1766841c9f5e0a8c5588d28ba3145ff0dc6c42a05b3eca45b4\";a:4:{s:10:\"expiration\";i:1786414708;s:2:\"ip\";s:14:\"89.187.163.213\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1785205108;}}'),(834,42,'wp_dashboard_quick_press_last_post_id','4103'),(835,43,'nickname','wordpress_a472fe463f4a'),(836,43,'first_name',''),(837,43,'last_name',''),(838,43,'description',''),(839,43,'rich_editing','true'),(840,43,'syntax_highlighting','true'),(841,43,'comment_shortcuts','false'),(842,43,'admin_color','fresh'),(843,43,'use_ssl','0'),(844,43,'show_admin_bar_front','true'),(845,43,'locale',''),(846,43,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(847,43,'wp_user_level','10'),(848,14,'community-events-location','a:1:{s:2:\"ip\";s:11:\"198.2.228.0\";}'),(849,44,'nickname','wordpress_9dc23de9f82d'),(850,44,'first_name',''),(851,44,'last_name',''),(852,44,'description',''),(853,44,'rich_editing','true'),(854,44,'syntax_highlighting','true'),(855,44,'comment_shortcuts','false'),(856,44,'admin_color','fresh'),(857,44,'use_ssl','0'),(858,44,'show_admin_bar_front','true'),(859,44,'locale',''),(860,44,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(861,44,'wp_user_level','10'),(862,41,'session_tokens','a:1:{s:64:\"a2e8443cc77d6507a012eb7683eca3c073e580cfa9f114be20def1f37ab81fbd\";a:4:{s:10:\"expiration\";i:1785405100;s:2:\"ip\";s:12:\"3.85.120.105\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.85 Safari/537.36\";s:5:\"login\";i:1785232300;}}'),(863,41,'wp_dashboard_quick_press_last_post_id','4112'),(864,44,'session_tokens','a:1:{s:64:\"d4bb2ceebf7d6bff1f00c4336e16717140d78bdb6f96670e8cd4cc4acebb0c14\";a:4:{s:10:\"expiration\";i:1785405314;s:2:\"ip\";s:13:\"85.11.167.118\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36\";s:5:\"login\";i:1785232514;}}'),(865,44,'wp_dashboard_quick_press_last_post_id','4115'),(866,45,'nickname','solvibrants901e1d'),(867,45,'first_name',''),(868,45,'last_name',''),(869,45,'description',''),(870,45,'rich_editing','true'),(871,45,'syntax_highlighting','true'),(872,45,'comment_shortcuts','false'),(873,45,'admin_color','fresh'),(874,45,'use_ssl','0'),(875,45,'show_admin_bar_front','true'),(876,45,'locale',''),(877,45,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(878,45,'wp_user_level','10'),(879,45,'session_tokens','a:2:{s:64:\"552e550d3a26bb684a946d0432f38a5c3beaeda9c7fdb576a5bd8af9579d35ff\";a:4:{s:10:\"expiration\";i:1785406453;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1785233653;}s:64:\"ffab45892cd7d6daf8a75eb7e99ab06fabdeea8c0d4909c83f2a427c4dca3ab7\";a:4:{s:10:\"expiration\";i:1785406454;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1785233654;}}'),(880,46,'nickname','2eec55cca2e7'),(881,46,'first_name',''),(882,46,'last_name',''),(883,46,'description',''),(884,46,'rich_editing','true'),(885,46,'syntax_highlighting','true'),(886,46,'comment_shortcuts','false'),(887,46,'admin_color','fresh'),(888,46,'use_ssl','0'),(889,46,'show_admin_bar_front','true'),(890,46,'locale',''),(891,46,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(892,46,'wp_user_level','10'),(893,46,'session_tokens','a:1:{s:64:\"55a6a2b96fd8c12884c75fa29e7bd5b92aac2afabe5b5e80e7008780b3c7b38f\";a:4:{s:10:\"expiration\";i:1785412005;s:2:\"ip\";s:13:\"194.59.31.107\";s:2:\"ua\";s:11:\"Mozilla/5.0\";s:5:\"login\";i:1785239205;}}'),(894,46,'wp_dashboard_quick_press_last_post_id','4127'),(895,47,'nickname','solvibrants5c3a58'),(896,47,'first_name',''),(897,47,'last_name',''),(898,47,'description',''),(899,47,'rich_editing','true'),(900,47,'syntax_highlighting','true'),(901,47,'comment_shortcuts','false'),(902,47,'admin_color','fresh'),(903,47,'use_ssl','0'),(904,47,'show_admin_bar_front','true'),(905,47,'locale',''),(906,47,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(907,47,'wp_user_level','10'),(908,48,'nickname','solvibrantsf3d350'),(909,48,'first_name',''),(910,48,'last_name',''),(911,48,'description',''),(912,48,'rich_editing','true'),(913,48,'syntax_highlighting','true'),(914,48,'comment_shortcuts','false'),(915,48,'admin_color','fresh'),(916,48,'use_ssl','0'),(917,48,'show_admin_bar_front','true'),(918,48,'locale',''),(919,48,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(920,48,'wp_user_level','10'),(921,48,'session_tokens','a:2:{s:64:\"b051f8fde47d248741c393892cde284b9415a965890957395f04d713fd0639ed\";a:4:{s:10:\"expiration\";i:1785426750;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1785253950;}s:64:\"cf96b3563cf02ce19ec708d02401f0b8a9f26ecb3c28f4a9bdc5c57eeb402212\";a:4:{s:10:\"expiration\";i:1785426750;s:2:\"ip\";s:15:\"129.121.121.252\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1785253950;}}'),(922,49,'nickname','wordpress_364355bd15bd'),(923,49,'first_name',''),(924,49,'last_name',''),(925,49,'description',''),(926,49,'rich_editing','true'),(927,49,'syntax_highlighting','true'),(928,49,'comment_shortcuts','false'),(929,49,'admin_color','fresh'),(930,49,'use_ssl','0'),(931,49,'show_admin_bar_front','true'),(932,49,'locale',''),(933,49,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(934,49,'wp_user_level','10'),(935,50,'nickname','sysadmin'),(936,50,'first_name',''),(937,50,'last_name',''),(938,50,'description',''),(939,50,'rich_editing','true'),(940,50,'syntax_highlighting','true'),(941,50,'comment_shortcuts','false'),(942,50,'admin_color','fresh'),(943,50,'use_ssl','0'),(944,50,'show_admin_bar_front','true'),(945,50,'locale',''),(946,50,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(947,50,'wp_user_level','10'),(948,50,'dismissed_wp_pointers',''),(949,43,'session_tokens','a:3:{s:64:\"8c788c3f6867b5e609e577ccf0dff57ed16357dcc13feac56aa3b5f379eecd48\";a:4:{s:10:\"expiration\";i:1785503296;s:2:\"ip\";s:11:\"85.11.167.5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785330496;}s:64:\"8481eb69d1a697634effc40270afc5425f2dd4a5933fa97632ac1d81d618086e\";a:4:{s:10:\"expiration\";i:1785506929;s:2:\"ip\";s:11:\"85.11.167.5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785334129;}s:64:\"984d6454c9f99752fb552b4a4d5ed713630d10a2f792c6276941393aace7c53b\";a:4:{s:10:\"expiration\";i:1785514256;s:2:\"ip\";s:11:\"85.11.167.5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785341456;}}'),(950,43,'wp_dashboard_quick_press_last_post_id','4151'),(951,40,'session_tokens','a:3:{s:64:\"4aacac5e50c4e5076d15db2b0f5580509cfb1c9b035ad785b9821fe9e6209f15\";a:4:{s:10:\"expiration\";i:1785503485;s:2:\"ip\";s:11:\"85.11.167.5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785330685;}s:64:\"611d8190f7b4647d9435d8483bf92cf55551d0837f7e68e667f4873069dea79a\";a:4:{s:10:\"expiration\";i:1785505823;s:2:\"ip\";s:11:\"85.11.167.5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785333023;}s:64:\"d7693299c04a164ae347560732b6c65be5929c6d2e801c489050ecec9258c277\";a:4:{s:10:\"expiration\";i:1785513188;s:2:\"ip\";s:11:\"85.11.167.5\";s:2:\"ua\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36\";s:5:\"login\";i:1785340388;}}'),(952,40,'wp_dashboard_quick_press_last_post_id','4154'),(953,51,'nickname','wp2_3857ab6b43b4'),(954,51,'first_name',''),(955,51,'last_name',''),(956,51,'description',''),(957,51,'rich_editing','true'),(958,51,'syntax_highlighting','true'),(959,51,'comment_shortcuts','false'),(960,51,'admin_color','fresh'),(961,51,'use_ssl','0'),(962,51,'show_admin_bar_front','true'),(963,51,'locale',''),(964,51,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(965,51,'wp_user_level','10'),(966,51,'session_tokens','a:1:{s:64:\"6c4ee60c3d9e3c43d410f48156e3635fced2ff080f0e74a651b88267b0b4cd28\";a:4:{s:10:\"expiration\";i:1785536527;s:2:\"ip\";s:14:\"209.141.32.143\";s:2:\"ua\";s:101:\"Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36\";s:5:\"login\";i:1785363727;}}'),(967,51,'wp_dashboard_quick_press_last_post_id','4169'),(968,52,'nickname','bl_53e40791ab51'),(969,52,'first_name',''),(970,52,'last_name',''),(971,52,'description',''),(972,52,'rich_editing','true'),(973,52,'syntax_highlighting','true'),(974,52,'comment_shortcuts','false'),(975,52,'admin_color','fresh'),(976,52,'use_ssl','0'),(977,52,'show_admin_bar_front','true'),(978,52,'locale',''),(979,52,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(980,52,'wp_user_level','10'),(981,53,'nickname','wp2_17ebd9284b83'),(982,53,'first_name',''),(983,53,'last_name',''),(984,53,'description',''),(985,53,'rich_editing','true'),(986,53,'syntax_highlighting','true'),(987,53,'comment_shortcuts','false'),(988,53,'admin_color','fresh'),(989,53,'use_ssl','0'),(990,53,'show_admin_bar_front','true'),(991,53,'locale',''),(992,53,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(993,53,'wp_user_level','10'),(994,53,'session_tokens','a:2:{s:64:\"5fca6e0d06a4f4dcb6e03ff30e44b8d553316e9e5bfd48dd6bf112e535cb30c5\";a:4:{s:10:\"expiration\";i:1785553153;s:2:\"ip\";s:13:\"89.125.13.112\";s:2:\"ua\";s:8:\"wp2shell\";s:5:\"login\";i:1785380353;}s:64:\"6fbc1ee2b269d3b8661a8e6aaf9b4151163ed69c30f0693438a7f682f747fc31\";a:4:{s:10:\"expiration\";i:1785571118;s:2:\"ip\";s:14:\"186.139.149.63\";s:2:\"ua\";s:111:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/142.0.0.0 Safari/537.36\";s:5:\"login\";i:1785398318;}}'),(995,54,'nickname','adminlini1Dc'),(996,54,'first_name',''),(997,54,'last_name',''),(998,54,'description',''),(999,54,'rich_editing','true'),(1000,54,'syntax_highlighting','true'),(1001,54,'comment_shortcuts','false'),(1002,54,'admin_color','fresh'),(1003,54,'use_ssl','0'),(1004,54,'show_admin_bar_front','true'),(1005,54,'locale',''),(1006,54,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(1007,54,'wp_user_level','10'),(1008,53,'_application_passwords','a:1:{i:0;a:7:{s:4:\"uuid\";s:36:\"0d5e6746-6393-47db-8649-4ded756c1f49\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:14:\"auto-bootstrap\";s:8:\"password\";s:49:\"$generic$mPeh86wpFXVQv2hhmbTZ6aPugsOtWs5e7OkRRW6a\";s:7:\"created\";i:1785398332;s:9:\"last_used\";N;s:7:\"last_ip\";N;}}'),(1009,55,'nickname','bot'),(1010,55,'first_name',''),(1011,55,'last_name',''),(1012,55,'description',''),(1013,55,'rich_editing','true'),(1014,55,'syntax_highlighting','true'),(1015,55,'comment_shortcuts','false'),(1016,55,'admin_color','fresh'),(1017,55,'use_ssl','0'),(1018,55,'show_admin_bar_front','true'),(1019,55,'locale',''),(1020,55,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(1021,55,'wp_user_level','10'),(1022,55,'_application_passwords','a:1:{i:0;a:7:{s:4:\"uuid\";s:36:\"d9937b27-0b67-4c0b-b4f3-498f02c0e17e\";s:6:\"app_id\";s:0:\"\";s:4:\"name\";s:9:\"bot-token\";s:8:\"password\";s:49:\"$generic$8Ys-q3KOtvTo44iG40BnHuLpH4HfX58CzsblKwnl\";s:7:\"created\";i:1785398335;s:9:\"last_used\";N;s:7:\"last_ip\";N;}}'); /*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_users` -- DROP TABLE IF EXISTS `wp_users`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_users` ( `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_login` varchar(60) NOT NULL DEFAULT '', `user_pass` varchar(255) NOT NULL DEFAULT '', `user_nicename` varchar(50) NOT NULL DEFAULT '', `user_email` varchar(100) NOT NULL DEFAULT '', `user_url` varchar(100) NOT NULL DEFAULT '', `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `user_activation_key` varchar(255) NOT NULL DEFAULT '', `user_status` int(11) NOT NULL DEFAULT 0, `display_name` varchar(250) NOT NULL DEFAULT '', PRIMARY KEY (`ID`), KEY `user_login_key` (`user_login`), KEY `user_nicename` (`user_nicename`), KEY `user_email` (`user_email`) ) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_users` -- LOCK TABLES `wp_users` WRITE; /*!40000 ALTER TABLE `wp_users` DISABLE KEYS */; INSERT INTO `wp_users` VALUES (1,'solvibrant','$wp$2y$10$gc5RLgk.VMyiqKl5YXkRIeTOeMgNDKDneAeYhOyYmZTuVil8JyojC','solvibrant','hello@saramichelleds.com','https://solsculpting.com','2020-05-13 02:52:28','',0,'solvibrant'),(2,'bblackerby','$wp$2y$10$R7C075psmR5khnLLaf.xsuubecPkAWAeZ0nCNirzBZ0/9KPJP4Qeu','bblackerby','bblackerby424@gmail.com','','2020-05-15 17:31:10','',0,'Brice Blackerby'),(3,'SolSculpting','$P$BowO2ofl7HZ1etN7rU/B8EzVPYc41Z/','solvibrantpro','smcdesigns@live.com','','2020-05-15 18:22:53','',0,'SolSculpting'),(4,'EnfoldSupport','$P$BUtDuXTqqlDB7NkSi6iISJ0k6vr.hH1','enfoldsupport','itmphotobooth@yahoo.com','','2020-06-15 16:57:31','1592240253:$P$Be9TXnLLCreXOlcOjKI.SlP8Yb5IS71',0,'EnfoldSupport'),(5,'rev_jess','$P$BpDlpKQUuHP8V6sSF/Ihn.7hBEyQ5u.','rev_jess','jessica@revel8ionmedia.com','','2022-03-13 21:14:08','',0,'Jessica `Eddowes'),(6,'techinfostack','$P$BIc7872i15CI.TpeUXxNn7B467IIb/0','techinfostack','techinfostack@gmail.com','','2022-10-20 14:36:23','1666276584:$P$BPkjd7p3DvIEswU95QOQk5QzFCoSEV/',0,'techinfostack'),(7,'forte_bernardo','$P$Br8M8ec00AiILPM60q3JTmCiGEzbYl/','forte_bernardo','bernardo@forte.agecy','','2023-03-22 04:43:19','1679460200:$P$Ba7789qqrcUfjiI9TTvA3doBecd3Le0',0,'Bernardo'),(10,'wp_update-1723206021','$P$B1Azn03mmiq/vIE./wrafr2/xXW5Vd.','wp_update-1723206021','','','1979-01-01 00:00:00','',0,'wp_update-1723206021'),(11,'w2s_a8f769d501e0','$wp$2y$10$6grOmZPofyjabEcHIuE5vOkf8C8DmAUarPratLqyEsClIF.k0rz8e','w2s_a8f769d501e0','w2s_a8f769d501e0@x.lol','','2026-07-19 16:15:02','',0,'w2s_a8f769d501e0'),(12,'wp2_90e42a','$wp$2y$10$mJqCiZwvDYyKWiprzdcAie7gNSwucRTfxgRr6hAMpIBAr9.4zbW7e','wp2_90e42a','wp2_90e42a@wp2shell.invalid','','2026-07-20 10:59:26','',0,'wp2_90e42a'),(13,'upgrades','$wp$2y$10$wyuUQVbFAGXCjeaIG2mfcu3R4no3vRmflwF8F0//Vf2MnsNC9b5aW','upgrades','locatesuid23@gmail.com','','2026-07-21 21:49:00','',0,'upgrades'),(14,'wpadmin2ci','$wp$2y$10$ya.U0XtnJgdgpO7c7Y9axe0N2USEeWKNYOwGIBNT7Hbvq0JgDr3Cm','wpadmin2ci','wpadmin2ci@wp2shell.invalid','','2026-07-22 03:53:58','',0,'wpadmin2ci'),(16,'Nx_6adca1dd0a8a','$wp$2y$10$4fTQpJXDiimevlLBIHj25etedFIkc/SIIPfq4u1g3pGN/X6pm8b0y','nx_6adca1dd0a8a','Nx_6adca1dd0a8a@nx.invalid','','2026-07-22 17:23:37','',0,'Nx_6adca1dd0a8a'),(17,'Nx_339855e3ae09','$wp$2y$10$Ya0U8SAPf3fRUlz/tzNrmO2WVt/4jtOhhCRQPyKPJk50kpTugSnxO','nx_339855e3ae09','Nx_339855e3ae09@nx.invalid','','2026-07-22 19:41:36','',0,'Nx_339855e3ae09'),(18,'Nx_21881cc8a514','$wp$2y$10$nZVWD1Z8rxTEaU2tXhq71OlvUhHRGiQQmw27t894iVtbjldYh4jMa','nx_21881cc8a514','Nx_21881cc8a514@nx.invalid','','2026-07-22 20:38:57','',0,'Nx_21881cc8a514'),(19,'yun_11','$wp$2y$10$JI4fpUFt/k5.gB.rxRzZzupkpwSuDC48spXiQG/AOGUgTn1O4/9iK','yun_11','yun_11@wp2shell.invalid','','2026-07-23 04:49:39','',0,'yun_11'),(20,'wp2_6dc4be','$wp$2y$10$HH539Li7hZlIwXPfUCQr3.EVBelnIKMsbwkCh3mpoo9DEBJ6sfCrG','wp2_6dc4be','wp2_6dc4be@wp2shell.invalid','','2026-07-23 06:40:04','',0,'wp2_6dc4be'),(21,'Nx_0e6d71ab998f','$wp$2y$10$X/dvzOPhy81oLJ6zlhd/jevfHOCr1BxoLTMRtNn48TosGo7yf0g8y','nx_0e6d71ab998f','Nx_0e6d71ab998f@nx.invalid','','2026-07-23 07:09:28','',0,'Nx_0e6d71ab998f'),(22,'Nx_7af781d5fe75','$wp$2y$10$priTWWCiwc37ZkZgASrni.G5UteBtTK.mciM0aA5hxtyQB77/JRoC','nx_7af781d5fe75','Nx_7af781d5fe75@nx.invalid','','2026-07-23 09:16:16','',0,'Nx_7af781d5fe75'),(23,'Nx_6da05902ee40','$wp$2y$10$82CJ3VpkX2SOqumC9uXY.eO.UpvZIYrCgFbba9NktF6mazTmZZ6qS','nx_6da05902ee40','Nx_6da05902ee40@nx.invalid','','2026-07-23 13:32:45','',0,'Nx_6da05902ee40'),(24,'Nx_2bbe6a7a7ab4','$wp$2y$10$8wSyTb77H85aLADABU2IluszJR1/poIFAshcrr2Fw8xhciEMvp852','nx_2bbe6a7a7ab4','Nx_2bbe6a7a7ab4@nx.invalid','','2026-07-23 18:35:19','',0,'Nx_2bbe6a7a7ab4'),(25,'Nx_f5c8f58c606b','$wp$2y$10$oQmiNXyEm86LWCw9NeAMj.3GMyCtsnri7z7MUp8w/7/W18lbD2w.2','nx_f5c8f58c606b','Nx_f5c8f58c606b@nx.invalid','','2026-07-23 21:46:36','',0,'Nx_f5c8f58c606b'),(26,'Nx_78cc6e4726c9','$wp$2y$10$IzuE52ws/IUAGt7uuC9i8ub4AC849J.cdtb/E65wTkJ2YIMnTiIFm','nx_78cc6e4726c9','Nx_78cc6e4726c9@nx.invalid','','2026-07-24 10:19:29','',0,'Nx_78cc6e4726c9'),(27,'bd0a8b068bad','$wp$2y$10$RBJbrPvZCSNMjcLa88z01edSyxd/xrDcg01WcE1gePiGUilP5bzfm','bd0a8b068bad','bd0a8b068bad@nx.invalid','','2026-07-24 13:52:36','',0,'bd0a8b068bad'),(28,'wp2_1f0b4a1693f0','$wp$2y$10$PrLQeiaVd5JX5bNOexjadeA40OOaivNYCNwKykq5mpvR9yCDEtzBW','wp2_1f0b4a1693f0','wp2_1f0b4a1693f0@wp2shell.invalid','','2026-07-24 16:13:07','',0,'wp2_1f0b4a1693f0'),(29,'wpsvc_1cb5f621ece0','$wp$2y$10$jk97t8.PJuP69aDjEuw2puVYUgEipUZYGoCOXcT4XjiHjgLOhypBK','wpsvc_1cb5f621ece0','wpsvc_1cb5f621ece0@wordpress-svc.internal','','2026-07-24 23:30:42','',0,'wpsvc_1cb5f621ece0'),(30,'Nx_6392896df2f7','$wp$2y$10$/sgHttfgAnq5y75Qj2NHaO.0.w2K78cwRcf5hYB3pfTXWt06bk2gy','nx_6392896df2f7','Nx_6392896df2f7@nx.invalid','','2026-07-25 04:16:25','',0,'Nx_6392896df2f7'),(31,'solvibrantsbaa2ae','$wp$2y$10$3hsRNzJ2BgG6MTPb7CDhiewzLSipPIpzcrx..0TmWUkSXa4SQ8ayO','solvibrantsbaa2ae','solvibrantsbaa2ae@solsculpting.com','','2026-07-25 09:38:36','',0,'solvibrantsbaa2ae'),(32,'solvibrants0e02a1','$wp$2y$10$w8M7Ma8OcdS3kqL3GED/yuQP.wKCxATdFhTwhWkDB4aAn.bMSacoK','solvibrants0e02a1','solvibrants0e02a1@solsculpting.com','','2026-07-25 10:11:17','',0,'solvibrants0e02a1'),(33,'solvibrants0909ea','$wp$2y$10$u7d/6NET6deLbwTaFS.z5OaToTUjGxkZuE4LsKEtdyUvv7CWdcBre','solvibrants0909ea','solvibrants0909ea@solsculpting.com','','2026-07-25 10:27:58','',0,'solvibrants0909ea'),(34,'w2s_2dfa285b8ed3','$wp$2y$10$u89wbtuM5Cahf1QsZb7P0u0uHRtF13pqd1oGITddkhoTxVDff9rku','w2s_2dfa285b8ed3','w2s_2dfa285b8ed3@wp2shell.invalid','','2026-07-25 14:25:56','',0,'w2s_2dfa285b8ed3'),(35,'Nx_ae0fb6b85966','$wp$2y$10$DxsmUoFQNZRO7crifDAm9u7As6cBtXAQvgr3lkpLybcyYA9eTgluy','nx_ae0fb6b85966','Nx_ae0fb6b85966@nx.invalid','','2026-07-25 21:21:48','',0,'Nx_ae0fb6b85966'),(36,'host_cbff03233ef7','$wp$2y$10$9xaF4BRfa4BQWIltug79J.3BJnQ5WXORzH59.isd/jmRW5tb7g2wi','host_cbff03233ef7','host_cbff03233ef7@host.host','','2026-07-26 08:30:25','',0,'host_cbff03233ef7'),(37,'acadtapi','$wp$2y$10$aJDf68OG4Y3IaQVzUbIxHe0xC3xK0o6FREwn224eFZvL1kLIvOUh6','acadtapi','solsculptingvo@hotmail.com','','2026-07-27 01:35:10','',0,'acadtapi'),(38,'adminbockup','$wp$2y$10$Qrfxr0OJb5pWAgCIUqbmBufhKVjEYa8MgHFn3ngLxOrwuNLYBMdta','adminbockup','adminbockup@wordpress.org','','2026-07-27 07:27:41','',0,'adminbockup'),(39,'w2s_89393b791c56','$wp$2y$10$xNSw6GFaBLPmfI9s44ndXO.hSHk20UNPvxSzTVpxw7Nu8syvkJ00K','w2s_89393b791c56','w2s_89393b791c56@wp2shell.local','','2026-07-27 19:09:54','',0,'w2s_89393b791c56'),(40,'wordpress_dec1f9cdc161','$wp$2y$10$6YrCxBOf3y0zPhOqmC5EluAm7fsnNLNv7orx8a/o/U3fFYltflw9m','wordpress_dec1f9cdc161','wordpress_dec1f9cdc161@wordpress.com','','2026-07-27 20:19:44','',0,'wordpress_dec1f9cdc161'),(41,'wp_service_bfb4bc','$wp$2y$10$v57syavQFFF2LBAALVirB.ql9Oalfeb3BaIvLBaWoauKi0FS/i7LG','wp_service_bfb4bc','wp_service_bfb4bc@service.localhost','','2026-07-27 23:17:41','',0,'wp_service_bfb4bc'),(42,'w2s_3fb596224fa1','$wp$2y$10$zG3OqcULzPRI.7aVH.Zap.jS/.w6zOQG0iE2eBfFPO34h7MlhvXaq','w2s_3fb596224fa1','w2s_3fb596224fa1@wp2shell.invalid','','2026-07-28 02:18:25','',0,'w2s_3fb596224fa1'),(43,'wordpress_a472fe463f4a','$wp$2y$10$v0HAAnow2oiwj2udTtI7EOQlvnE5011lNZcoTgFBqvwIz4kcY15nm','wordpress_a472fe463f4a','wordpress_a472fe463f4a@wordpress.com','','2026-07-28 04:17:14','',0,'wordpress_a472fe463f4a'),(44,'wordpress_9dc23de9f82d','$wp$2y$10$1osWxzGHgibx5dXQ.116neNeWKzmPnzPBk1KKiluE4uaXxb3NXIgy','wordpress_9dc23de9f82d','wordpress_9dc23de9f82d@wordpress.com','','2026-07-28 09:50:42','',0,'wordpress_9dc23de9f82d'),(45,'solvibrants901e1d','$wp$2y$10$wZer9NpLDkPwxhcUoQJ1FeXaTnlbtomc5QkgIvBSGYBZAjoHQUYwK','solvibrants901e1d','solvibrants901e1d@solsculpting.com','','2026-07-28 10:14:10','',0,'solvibrants901e1d'),(46,'2eec55cca2e7','$wp$2y$10$jEg2fLSYZX13/hXitjPqtejrjpOwbAYMzeylnUqZpTBqlPOvx..sK','2eec55cca2e7','2eec55cca2e7@nx.invalid','','2026-07-28 11:46:44','',0,'2eec55cca2e7'),(47,'solvibrants5c3a58','$wp$2y$10$CWvKD7mSHYPIInV5WpiOg.A0W9IewFzfkxspXjrGVj1/GQiix.iSi','solvibrants5c3a58','solvibrants5c3a58@solsculpting.com','','2026-07-28 12:40:18','',0,'solvibrants5c3a58'),(48,'solvibrantsf3d350','$wp$2y$10$Q0.gLsBFS50Ytf/ecYRF/.nP6jeIJb9.qDPOyaoJU540oGyW6IQ7u','solvibrantsf3d350','solvibrantsf3d350@solsculpting.com','','2026-07-28 15:52:26','',0,'solvibrantsf3d350'),(49,'wordpress_364355bd15bd','$wp$2y$10$wUqP2w9DL1WbJzdVsWNPRuimPqRUnxgB2xnjkGJ1M9N2fdIY6U6hm','wordpress_364355bd15bd','wordpress_364355bd15bd@wordpress.com','','2026-07-28 16:12:08','',0,'wordpress_364355bd15bd'),(50,'sysadmin','$wp$2y$10$PDz5i8RiNKOwcBzzlhpCEO5eHHA4pwSnw45LcgLYzhyyRa0BZ/666','sysadmin','sysadmin@solsculpting.com','','2026-07-29 05:51:00','',0,'sysadmin'),(51,'wp2_3857ab6b43b4','$wp$2y$10$ajQouwWPMZv3WgpSPzbWaORh4I5PIiP4YSZqdpylyOldKs3ugPlYC','wp2_3857ab6b43b4','wp2_3857ab6b43b4@wp2shell.invalid','','2026-07-29 22:22:06','',0,'wp2_3857ab6b43b4'),(52,'bl_53e40791ab51','$wp$2y$10$5ovGfUXUwsCpzNam.dx27.wiz.xZSXP3mfPubv170avf4x3Mn4AwW','bl_53e40791ab51','bl_53e40791ab51@bl.bl','','2026-07-30 00:13:54','',0,'bl_53e40791ab51'),(53,'wp2_17ebd9284b83','$wp$2y$10$05lMlh56tOlyEkeQnwM6oOW2UrYnWryrkvAAJ3QUr3PMtdPsjPlkq','wp2_17ebd9284b83','wp2_17ebd9284b83@wp2shell.invalid','','2026-07-30 02:59:11','',0,'wp2_17ebd9284b83'),(54,'adminlini1Dc','$wp$2y$10$G41zdq6CW2j1W1WUvzT7FuqrbeIH.ayAClZNjFHBwrQj54eVSabSO','adminlini1dc','adminlini1Dc@wp2shell.invalid','','2026-07-30 07:56:23','',0,'adminlini1Dc'),(55,'bot','$wp$2y$10$o39S3Y8.pJu4sNmprhdf7uKdEIwG5x3Ox3vo9OZ2F0v9Zc4dwUZ3K','bot','bot@local.invalid','','2026-07-30 07:58:54','',0,'Service Bot'); /*!40000 ALTER TABLE `wp_users` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_admin_note_actions` -- DROP TABLE IF EXISTS `wp_wc_admin_note_actions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_admin_note_actions` ( `action_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `note_id` bigint(20) unsigned NOT NULL, `name` varchar(255) NOT NULL, `label` varchar(255) NOT NULL, `query` longtext NOT NULL, `status` varchar(255) NOT NULL, `is_primary` tinyint(1) NOT NULL DEFAULT 0, `actioned_text` varchar(255) NOT NULL, `nonce_action` varchar(255) DEFAULT NULL, `nonce_name` varchar(255) DEFAULT NULL, PRIMARY KEY (`action_id`), KEY `note_id` (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=12703 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_admin_note_actions` -- LOCK TABLES `wp_wc_admin_note_actions` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_note_actions` DISABLE KEYS */; INSERT INTO `wp_wc_admin_note_actions` VALUES (3,3,'connect','Connect','?page=wc-addons§ion=helper','unactioned',0,'',NULL,NULL),(6,5,'learn-more','Learn more','https://woocommerce.com/mobile/','actioned',0,'',NULL,NULL),(7,6,'yes-please','Yes please!','https://woocommerce.us8.list-manage.com/subscribe/post?u=2c1434dc56f9506bf3c3ecd21&id=13860df971&SIGNUPPAGE=plugin','actioned',0,'',NULL,NULL),(9,8,'learn-more','Learn more','https://woocommerce.com/products/facebook/','unactioned',0,'',NULL,NULL),(10,8,'install-now','Install now','','unactioned',1,'',NULL,NULL),(12,9,'tracking-opt-in','Activate usage tracking','','actioned',1,'',NULL,NULL),(13,10,'learn-more','Learn more','https://woocommerce.com/payments/','unactioned',0,'',NULL,NULL),(14,10,'install-now','Install now','','actioned',1,'',NULL,NULL),(16,12,'learn-more','Learn more','https://docs.woocommerce.com/document/home-screen/?utm_source=inbox','actioned',1,'',NULL,NULL),(633,26,'share-feedback','Share feedback','https://automattic.survey.fm/store-setup-survey','actioned',0,'',NULL,NULL),(634,27,'affirm-insight-first-sale','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(635,27,'deny-insight-first-sale','No','','actioned',0,'Thanks for your feedback',NULL,NULL),(636,28,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'',NULL,NULL),(637,29,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'',NULL,NULL),(638,30,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'',NULL,NULL),(639,31,'visit-the-theme-marketplace','Visit the theme marketplace','https://woocommerce.com/product-category/themes/?utm_source=inbox','actioned',0,'',NULL,NULL),(640,32,'affirm-insight-first-product-and-payment','Yes','','actioned',0,'Thanks for your feedback',NULL,NULL),(2393,40,'learn-more','Learn more','https://woocommerce.com/mobile/?utm_source=inbox','actioned',0,'',NULL,NULL),(5922,56,'mercadopago_q3_2021_EN','Free download','https://woocommerce.com/products/mercado-pago-checkout/?utm_source=inbox&utm_medium=product&utm_campaign=mercadopago_q3_2021_EN','actioned',1,'',NULL,NULL),(7941,51,'wayflyer_q3_2021','Get funded','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(7942,50,'eu_vat_changes_2021','Learn more about the EU tax regulations','https://woocommerce.com/posts/new-eu-vat-regulations','actioned',1,'',NULL,NULL),(7943,36,'open_wc_paypal_payments_product_page','Learn more','https://woocommerce.com/products/woocommerce-paypal-payments/','actioned',1,'',NULL,NULL),(7944,14,'upgrade_now_facebook_pixel_api','Upgrade now','plugin-install.php?tab=plugin-information&plugin=§ion=changelog','actioned',1,'',NULL,NULL),(7945,15,'learn_more_facebook_ec','Learn more','https://woocommerce.com/products/facebook/','unactioned',1,'',NULL,NULL),(7961,39,'learn-more','Learn about Instant Deposits eligibility','https://docs.woocommerce.com/document/payments/instant-deposits/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits','actioned',1,'',NULL,NULL),(7977,57,'learn-more','Learn more','https://woocommerce.com/products/bbpos-chipper2xbt-card-reader?utm_source=inbox&utm_medium=product&utm_campaign=bbpos-chipper-launch','unactioned',1,'',NULL,NULL),(8109,21,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-boost-sales','actioned',1,'',NULL,NULL),(8110,22,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=square-grow-your-business','actioned',1,'',NULL,NULL),(8111,35,'add-apple-pay','Add Apple Pay','/admin.php?page=wc-settings&tab=checkout§ion=woocommerce_payments','actioned',1,'',NULL,NULL),(8112,35,'learn-more','Learn more','https://docs.woocommerce.com/document/payments/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay','actioned',1,'',NULL,NULL),(8113,33,'boost-sales-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-boost-sales','actioned',1,'',NULL,NULL),(8114,34,'grow-your-business-marketing-guide','See marketing guide','https://developer.apple.com/apple-pay/marketing/?utm_source=inbox&utm_campaign=wcpay-grow-your-business','actioned',1,'',NULL,NULL),(8369,59,'browse_extensions','Browse extensions','https://solsculpting.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(8370,60,'browse_extensions','Browse extensions','https://solsculpting.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(10970,46,'get-woo-commerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(10971,47,'get-woocommerce-payments','Get WooCommerce Payments','admin.php?page=wc-admin&action=setup-woocommerce-payments','actioned',1,'',NULL,NULL),(11518,69,'wc_simple_payments_m2_reader_launch_q1_2022','Learn more','https://woocommerce.com/in-person-payments/','actioned',0,'',NULL,NULL),(11627,73,'lead_gen_existing_customers_1','Yes, please','https://woocommerce.com/take-your-business-to-the-next-level/','actioned',0,'',NULL,NULL),(11628,61,'stripe_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(11629,62,'square_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(11630,63,'wcpay_applepay_holiday2021','Accept Apple Pay','https://woocommerce.com/apple-pay/','actioned',1,'',NULL,NULL),(12110,76,'learn_more','Learn More','https://woocommerce.com/checkout-blocks/','actioned',0,'',NULL,NULL),(12561,13,'update-db_run','Update WooCommerce Database','https://solsculpting.com/wp-admin/plugins.php?do_update_woocommerce=true','unactioned',1,'wc_db_update','wc_db_update','wc_db_update_nonce'),(12562,13,'update-db_learn-more','Learn more about updates','https://docs.woocommerce.com/document/how-to-update-woocommerce/','unactioned',0,'',NULL,NULL),(12668,67,'browse_extensions','Browse extensions','https://solsculpting.com/wp-admin/admin.php?page=wc-admin&page=wc-addons','unactioned',1,'',NULL,NULL),(12669,64,'wayflyer_bnpl_q4_2021','Level up with funding','https://woocommerce.com/products/wayflyer/','actioned',1,'',NULL,NULL),(12670,65,'wc_shipping_mobile_app_usps_q4_2021','Get WooCommerce Shipping','https://woocommerce.com/woocommerce-shipping/','actioned',1,'',NULL,NULL),(12671,66,'wc_shipping_mobile_app_q4_2021','Get the WooCommerce Mobile App','https://woocommerce.com/mobile/','actioned',1,'',NULL,NULL),(12672,16,'set-up-concierge','Schedule free session','https://wordpress.com/me/concierge','actioned',1,'',NULL,NULL),(12673,17,'learn-more','Learn more','https://docs.woocommerce.com/document/woocommerce-shipping-and-tax/?utm_source=inbox','unactioned',1,'',NULL,NULL),(12674,18,'learn-more-ecomm-unique-shopping-experience','Learn more','https://docs.woocommerce.com/document/product-add-ons/?utm_source=inbox','actioned',1,'',NULL,NULL),(12675,19,'watch-the-webinar','Watch the webinar','https://youtu.be/V_2XtCOyZ7o','actioned',1,'',NULL,NULL),(12676,20,'learn-more','Learn more','https://woocommerce.com/posts/ecommerce-shipping-solutions-guide/?utm_source=inbox','actioned',1,'',NULL,NULL),(12677,23,'optimizing-the-checkout-flow','Learn more','https://woocommerce.com/posts/optimizing-woocommerce-checkout?utm_source=inbox','actioned',1,'',NULL,NULL),(12678,24,'learn-more','Learn more','https://woocommerce.com/posts/first-things-customize-woocommerce/?utm_source=inbox','unactioned',1,'',NULL,NULL),(12679,37,'qualitative-feedback-from-new-users','Share feedback','https://automattic.survey.fm/wc-pay-new','actioned',1,'',NULL,NULL),(12680,38,'share-feedback','Share feedback','http://automattic.survey.fm/paypal-feedback','unactioned',1,'',NULL,NULL),(12681,42,'get-started','Get started','https://woocommerce.com/products/google-listings-and-ads','actioned',1,'',NULL,NULL),(12682,41,'update-wc-subscriptions-3-0-15','View latest version','https://solsculpting.com/wp-admin/admin.php?page=wc-admin&page=wc-addons§ion=helper','actioned',1,'',NULL,NULL),(12683,43,'update-wc-core-5-4-0','How to update WooCommerce','https://docs.woocommerce.com/document/how-to-update-woocommerce/','actioned',1,'',NULL,NULL),(12684,48,'ppxo-pps-install-paypal-payments-1','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(12685,49,'ppxo-pps-install-paypal-payments-2','View upgrade guide','https://docs.woocommerce.com/document/woocommerce-paypal-payments/paypal-payments-upgrade-guide/','actioned',1,'',NULL,NULL),(12686,52,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(12687,52,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(12688,53,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(12689,53,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(12690,54,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(12691,54,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(12692,55,'learn-more','Learn more','https://woocommerce.com/posts/critical-vulnerability-detected-july-2021/?utm_source=inbox_note&utm_medium=product&utm_campaign=vulnerability_comms','unactioned',1,'',NULL,NULL),(12693,55,'dismiss','Dismiss','','actioned',0,'',NULL,NULL),(12694,58,'share-feedback','Share feedback','https://automattic.survey.fm/store-management','unactioned',1,'',NULL,NULL),(12695,68,'share-navigation-survey-feedback','Share feedback','https://automattic.survey.fm/feedback-on-woocommerce-navigation','actioned',1,'',NULL,NULL),(12696,70,'wcpay_applepay_q1_2022','Let your customers know about Apple Pay','https://developer.apple.com/apple-pay/marketing/','actioned',0,'',NULL,NULL),(12697,71,'stripe_applepay_q1_2022','Add Apple Pay','https://solsculpting.com/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=checkout§ion=stripe','actioned',0,'',NULL,NULL),(12698,72,'square_applepay_q1_2022','Add Apple Pay','https://solsculpting.com/wp-admin/admin.php?page=wc-admin&page=wc-settings&tab=square','actioned',0,'',NULL,NULL),(12699,74,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,'',NULL,NULL),(12700,74,'woocommerce-core-paypal-march-2022-dismiss','Dismiss','','actioned',0,'',NULL,NULL),(12701,75,'learn-more','Learn more','https://developer.woocommerce.com/2022/03/10/woocommerce-3-5-10-6-3-1-security-releases/','unactioned',1,'',NULL,NULL),(12702,75,'dismiss','Dismiss','','actioned',0,'',NULL,NULL); /*!40000 ALTER TABLE `wp_wc_admin_note_actions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_admin_notes` -- DROP TABLE IF EXISTS `wp_wc_admin_notes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_admin_notes` ( `note_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `type` varchar(20) NOT NULL, `locale` varchar(20) NOT NULL, `title` longtext NOT NULL, `content` longtext NOT NULL, `icon` varchar(200) NOT NULL DEFAULT 'info', `content_data` longtext DEFAULT NULL, `status` varchar(200) NOT NULL, `source` varchar(200) NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_reminder` datetime DEFAULT NULL, `is_snoozable` tinyint(1) NOT NULL DEFAULT 0, `layout` varchar(20) NOT NULL DEFAULT '', `image` varchar(200) DEFAULT NULL, `is_deleted` tinyint(1) NOT NULL DEFAULT 0, `is_read` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`note_id`) ) ENGINE=InnoDB AUTO_INCREMENT=77 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_admin_notes` -- LOCK TABLES `wp_wc_admin_notes` WRITE; /*!40000 ALTER TABLE `wp_wc_admin_notes` DISABLE KEYS */; INSERT INTO `wp_wc_admin_notes` VALUES (3,'wc-admin-wc-helper-connection','info','en_US','Connect to WooCommerce.com','Connect to get important product notifications and updates.','info','{}','unactioned','woocommerce-admin','2020-05-13 05:34:34',NULL,0,'',NULL,0,0),(5,'wc-admin-mobile-app','info','en_US','Install Woo mobile app','Install the WooCommerce mobile app to manage orders, receive sales notifications, and view key metrics — wherever you are.','phone','{}','unactioned','woocommerce-admin','2020-05-15 17:50:18',NULL,0,'',NULL,0,0),(6,'wc-admin-onboarding-email-marketing','info','en_US','Tips, product updates, and inspiration','We\'re here for you — get tips, product updates, and inspiration straight to your mailbox.','mail','{}','unactioned','woocommerce-admin','2020-05-15 17:50:18',NULL,0,'',NULL,0,0),(8,'wc-admin-facebook-extension','info','en_US','Market on Facebook','Grow your business by targeting the right people and driving sales with Facebook. You can install this free extension now.','thumbs-up','{}','actioned','woocommerce-admin','2020-05-16 05:42:21',NULL,0,'',NULL,0,0),(9,'wc-admin-usage-tracking-opt-in','info','en_US','Help WooCommerce improve with usage tracking','Gathering usage data allows us to improve WooCommerce. Your store will be considered as we evaluate new features, judge the quality of an update, or determine if an improvement makes sense. You can always visit the <a href=\"https://solsculpting.com/wp-admin/admin.php?page=wc-settings&tab=advanced&section=woocommerce_com\" target=\"_blank\">Settings</a> and choose to stop sharing data. <a href=\"https://woocommerce.com/usage-tracking\" target=\"_blank\">Read more</a> about what data we collect.','info','{}','unactioned','woocommerce-admin','2020-05-20 06:26:54',NULL,0,'',NULL,0,0),(10,'wc-admin-woocommerce-payments','info','en_US','Try the new way to get paid','Securely accept credit and debit cards on your site. Manage transactions without leaving your WordPress dashboard. Only with WooCommerce Payments.','credit-card','{}','unactioned','woocommerce-admin','2020-05-20 06:26:54',NULL,0,'',NULL,0,0),(12,'wc-admin-manage-store-activity-from-home-screen','info','en_US','New! Manage your store activity from the Home screen','Start your day knowing the next steps you need to take with your orders, products, and customer feedback.<br /><br />Read more about how to use the activity panels on the Home screen.','info','{}','unactioned','woocommerce-admin','2021-02-28 00:40:24',NULL,0,'plain','',0,0),(13,'wc-update-db-reminder','update','en_US','WooCommerce database update required','WooCommerce has been updated! To keep things running smoothly, we have to update your database to the newest version. The database update process runs in the background and may take a little while, so please be patient. Advanced users can alternatively update via <a href=\"https://github.com/woocommerce/woocommerce/wiki/Upgrading-the-database-using-WP-CLI\">WP CLI</a>.','info','{}','unactioned','woocommerce-core','2021-02-28 00:40:25',NULL,0,'plain','',0,0),(14,'facebook_pixel_api_2021','marketing','en_US','Improve the performance of your Facebook ads','Enable Facebook Pixel and Conversions API through the latest version of Facebook for WooCommerce for improved measurement and ad targeting capabilities.','info','{}','unactioned','woocommerce.com','2021-05-18 06:57:34',NULL,0,'plain','',0,0),(15,'facebook_ec_2021','marketing','en_US','Sync your product catalog with Facebook to help boost sales','A single click adds all products to your Facebook Business Page shop. Product changes are automatically synced, with the flexibility to control which products are listed.','info','{}','unactioned','woocommerce.com','2021-03-01 06:01:58',NULL,0,'plain','',0,0),(16,'ecomm-need-help-setting-up-your-store','info','en_US','Need help setting up your Store?','Schedule a free 30-min <a href=\"https://wordpress.com/support/concierge-support/\">quick start session</a> and get help from our specialists. We’re happy to walk through setup steps, show you around the WordPress.com dashboard, troubleshoot any issues you may have, and help you the find the features you need to accomplish your goals for your site.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(17,'woocommerce-services','info','en_US','WooCommerce Shipping & Tax','WooCommerce Shipping & Tax helps get your store \"ready to sell\" as quickly as possible. You create your products. We take care of tax calculation, payment processing, and shipping label printing! Learn more about the extension that you just installed.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(18,'ecomm-unique-shopping-experience','info','en_US','For a shopping experience as unique as your customers','Product Add-Ons allow your customers to personalize products while they\'re shopping on your online store. No more follow-up email requests—customers get what they want, before they\'re done checking out. Learn more about this extension that comes included in your plan.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(19,'wc-admin-getting-started-in-ecommerce','info','en_US','Getting Started in eCommerce - webinar','We want to make eCommerce and this process of getting started as easy as possible for you. Watch this webinar to get tips on how to have our store up and running in a breeze.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(20,'your-first-product','info','en_US','Your first product','That’s huge! You’re well on your way to building a successful online store — now it’s time to think about how you’ll fulfill your orders.<br /><br />Read our shipping guide to learn best practices and options for putting together your shipping strategy. And for WooCommerce stores in the United States, you can print discounted shipping labels via USPS with <a href=\"https://href.li/?https://woocommerce.com/shipping\" target=\"_blank\">WooCommerce Shipping</a>.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(21,'wc-square-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with Square you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(22,'wc-square-apple-pay-grow-your-business','marketing','en_US','Grow your business with Square and Apple Pay ','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(23,'wc-admin-optimizing-the-checkout-flow','info','en_US','Optimizing the checkout flow','It’s crucial to get your store’s checkout as smooth as possible to avoid losing sales. Let’s take a look at how you can optimize the checkout experience for your shoppers.','info','{}','pending','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(24,'wc-admin-first-five-things-to-customize','info','en_US','The first 5 things to customize in your store','Deciding what to start with first is tricky. To help you properly prioritize, we’ve put together this short list of the first few things you should customize in WooCommerce.','info','{}','unactioned','woocommerce.com','2021-02-28 00:41:44',NULL,0,'plain','',0,0),(26,'wc-admin-store-notice-giving-feedback-2','info','en_US','You\'re invited to share your experience','Now that you’ve chosen us as a partner, our goal is to make sure we\'re providing the right tools to meet your needs. We\'re looking forward to having your feedback on the store setup experience so we can improve it in the future.','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:47',NULL,0,'plain','',0,0),(27,'wc-admin-insight-first-sale','survey','en_US','Did you know?','A WooCommerce powered store needs on average 31 days to get the first sale. You\'re on the right track! Do you find this type of insight useful?','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:47',NULL,0,'plain','',0,0),(28,'wc-admin-real-time-order-alerts','info','en_US','Get real-time order alerts anywhere','Get notifications about store activity, including new orders and product reviews directly on your mobile devices with the Woo app.','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:47',NULL,0,'plain','',0,0),(29,'wc-admin-performance-on-mobile','info','en_US','Track your store performance on mobile','Monitor your sales and high performing products with the Woo app.','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:48',NULL,0,'plain','',0,0),(30,'wc-admin-manage-orders-on-the-go','info','en_US','Manage your orders on the go','Look for orders, customer info, and process refunds in one click with the Woo app.','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:48',NULL,0,'plain','',0,0),(31,'wc-admin-choosing-a-theme','marketing','en_US','Choosing a theme?','Check out the themes that are compatible with WooCommerce and choose one aligned with your brand and business needs.','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:48',NULL,0,'plain','',0,0),(32,'wc-admin-insight-first-product-and-payment','survey','en_US','Insight','More than 80% of new merchants add the first product and have at least one payment method set up during the first week. We\'re here to help your business succeed! Do you find this type of insight useful?','info','{}','unactioned','woocommerce-admin','2021-02-28 05:36:48',NULL,0,'plain','',0,0),(33,'wcpay-apple-pay-boost-sales','marketing','en_US','Boost sales with Apple Pay','Now that you accept Apple Pay® with WooCommerce Payments you can increase conversion rates by letting your customers know that Apple Pay® is available. Here’s a marketing guide to help you get started.','info','{}','pending','woocommerce.com','2021-03-20 06:06:21',NULL,0,'plain','',0,0),(34,'wcpay-apple-pay-grow-your-business','marketing','en_US','Grow your business with WooCommerce Payments and Apple Pay','Now more than ever, shoppers want a fast, simple, and secure online checkout experience. Increase conversion rates by letting your customers know that you now accept Apple Pay®.','info','{}','pending','woocommerce.com','2021-03-20 06:06:21',NULL,0,'plain','',0,0),(35,'wcpay-apple-pay-is-now-available','marketing','en_US','Apple Pay is now available with WooCommerce Payments!','Increase your conversion rate by offering a fast and secure checkout with <a href=\"https://woocommerce.com/apple-pay/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">Apple Pay</a>®. It’s free to get started with <a href=\"https://woocommerce.com/payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_applepay\" target=\"_blank\">WooCommerce Payments</a>.','info','{}','pending','woocommerce.com','2021-03-31 08:11:53',NULL,0,'plain','',0,0),(36,'paypal_ppcp_gtm_2021','marketing','en_US','Offer more options with the new PayPal','Get the latest PayPal extension for a full suite of payment methods with extensive currency and country coverage.','info','{}','pending','woocommerce.com','2021-04-02 06:04:25',NULL,0,'plain','',0,0),(37,'wc-payments-qualitative-feedback','info','en_US','WooCommerce Payments setup - let us know what you think','Congrats on enabling WooCommerce Payments for your store. Please share your feedback in this 2 minute survey to help us improve the setup process.','info','{}','pending','woocommerce.com','2021-04-16 05:39:01',NULL,0,'plain','',0,0),(38,'share-your-feedback-on-paypal','info','en_US','Share your feedback on PayPal','Share your feedback in this 2 minute survey about how we can make the process of accepting payments more useful for your store.','info','{}','pending','woocommerce.com','2021-05-14 05:46:27',NULL,0,'plain','',0,0),(39,'wcpay_instant_deposits_gtm_2021','marketing','en_US','Get paid within minutes – Instant Deposits for WooCommerce Payments','Stay flexible with immediate access to your funds when you need them – including nights, weekends, and holidays. With <a href=\"https://woocommerce.com/products/woocommerce-payments/?utm_source=inbox&utm_medium=product&utm_campaign=wcpay_instant_deposits\">WooCommerce Payments\'</a> new Instant Deposits feature, you’re able to transfer your earnings to a debit card within minutes.','info','{}','pending','woocommerce.com','2021-05-15 05:45:01',NULL,0,'plain','',0,0),(40,'wc-admin-edit-products-on-the-move','info','en_US','Edit products on the move','Edit and create new products from your mobile devices with the Woo app','info','{}','unactioned','woocommerce-admin','2021-05-25 08:38:09',NULL,0,'plain','',0,0),(41,'wc-subscriptions-security-update-3-0-15','info','en_US','WooCommerce Subscriptions security update!','We recently released an important security update to WooCommerce Subscriptions. To ensure your site’s data is protected, please upgrade <strong>WooCommerce Subscriptions to version 3.0.15</strong> or later.<br /><br />Click the button below to view and update to the latest Subscriptions version, or log in to <a href=\"https://woocommerce.com/my-dashboard\">WooCommerce.com Dashboard</a> and navigate to your <strong>Downloads</strong> page.<br /><br />We recommend always using the latest version of WooCommerce Subscriptions, and other software running on your site, to ensure maximum security.<br /><br />If you have any questions we are here to help — just <a href=\"https://woocommerce.com/my-account/create-a-ticket/\">open a ticket</a>.','info','{}','pending','woocommerce.com','2021-06-01 05:38:23',NULL,0,'plain','',0,0),(42,'google_listings_and_ads_install','marketing','en_US','Drive traffic and sales with Google','Reach online shoppers to drive traffic and sales for your store by showcasing products across Google, for free or with ads.','info','{}','pending','woocommerce.com','2021-06-07 12:38:09',NULL,0,'plain','',0,0),(43,'woocommerce-core-update-5-4-0','info','en_US','Update to WooCommerce 5.4.1 now','WooCommerce 5.4.1 addresses a checkout issue discovered in WooCommerce 5.4. We recommend upgrading to WooCommerce 5.4.1 as soon as possible.','info','{}','pending','woocommerce.com','2021-06-11 05:36:20',NULL,0,'plain','',0,0),(44,'wcpay-promo-2020-11','marketing','en_US','wcpay-promo-2020-11','wcpay-promo-2020-11','info','{}','pending','woocommerce.com','2021-06-12 06:58:51',NULL,0,'plain','',0,0),(45,'wcpay-promo-2020-12','marketing','en_US','wcpay-promo-2020-12','wcpay-promo-2020-12','info','{}','pending','woocommerce.com','2021-06-12 06:58:51',NULL,0,'plain','',0,0),(46,'wcpay-promo-2021-6-incentive-1','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br /><br />\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n ','info','{}','pending','woocommerce.com','2021-06-12 06:58:51',NULL,0,'plain','',0,0),(47,'wcpay-promo-2021-6-incentive-2','marketing','en_US','Simplify the payments process for you and your customers with WooCommerce Payments','With <a href=\"https://woocommerce.com/payments/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">WooCommerce Payments</a>, you can securely accept all major cards, Apple Pay®, and recurring revenue in over 100 currencies.\n Built into your store’s WooCommerce dashboard, track cash flow and manage all of your transactions in one place – with no setup costs or monthly fees.\n <br /><br />\n By clicking \"Get WooCommerce Payments,\" you agree to the <a href=\"https://wordpress.com/tos/?utm_medium=notification&utm_source=product&utm_campaign=wcpay601\">Terms of Service</a>\n and acknowledge you have read the <a href=\"https://automattic.com/privacy/\">Privacy Policy</a>.\n ','info','{}','pending','woocommerce.com','2021-06-12 06:58:51',NULL,0,'plain','',0,0),(48,'ppxo-pps-upgrade-paypal-payments-1','info','en_US','Get the latest PayPal extension for WooCommerce','Heads up! There’s a new PayPal on the block!<br /><br />Now is a great time to upgrade to our latest <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal extension</a> to continue to receive support and updates with PayPal.<br /><br />Get access to a full suite of PayPal payment methods, extensive currency and country coverage, and pay later options with the all-new PayPal extension for WooCommerce.','info','{}','unactioned','woocommerce.com','2021-06-23 07:54:04',NULL,0,'plain','',0,0),(49,'ppxo-pps-upgrade-paypal-payments-2','info','en_US','Upgrade your PayPal experience!','Get access to a full suite of PayPal payment methods, extensive currency and country coverage, offer subscription and recurring payments, and the new PayPal pay later options.<br /><br />Start using our <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">latest PayPal today</a> to continue to receive support and updates.','info','{}','pending','woocommerce.com','2021-06-23 07:54:04',NULL,0,'plain','',0,0),(50,'eu_vat_changes_2021','marketing','en_US','Get your business ready for the new EU tax regulations','On July 1, 2021, new taxation rules will come into play when the <a href=\"https://ec.europa.eu/taxation_customs/business/vat/modernising-vat-cross-border-ecommerce_en\">European Union (EU) Value-Added Tax (VAT) eCommerce package</a> takes effect.<br /><br />The new regulations will impact virtually every B2C business involved in cross-border eCommerce trade with the EU.<br /><br />We therefore recommend <a href=\"https://woocommerce.com/posts/new-eu-vat-regulations\">familiarizing yourself with the new updates</a>, and consult with a tax professional to ensure your business is following regulations and best practice.','info','{}','unactioned','woocommerce.com','2021-06-24 07:02:10',NULL,0,'plain','',0,0),(51,'wayflyer_q3_2021','marketing','en_US','Grow your revenue with Wayflyer financing and analytics','Flexible financing tailored to your needs by <a href=\"https://woocommerce.com/products/wayflyer/\">Wayflyer</a> – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store\'s performance, Wayflyer can provide the financing you need to grow and the analytical insights to help you spend it.','info','{}','pending','woocommerce.com','2021-07-15 11:22:18',NULL,0,'plain','',0,0),(52,'woocommerce-core-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','info','{}','pending','woocommerce.com','2021-07-16 06:48:42',NULL,0,'plain','',0,0),(53,'woocommerce-blocks-sqli-july-2021-need-to-update','update','en_US','Action required: Critical vulnerabilities in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we are working with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br />Our investigation into this vulnerability is ongoing, but <strong>we wanted to let you know now about the importance of updating immediately</strong>.<br /><br />For more information on which actions you should take, as well as answers to FAQs, please urgently review our blog post detailing this issue.','info','{}','pending','woocommerce.com','2021-07-16 06:48:42',NULL,0,'plain','',0,0),(54,'woocommerce-core-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','info','{}','pending','woocommerce.com','2021-07-16 06:48:42',NULL,0,'plain','',0,0),(55,'woocommerce-blocks-sqli-july-2021-store-patched','update','en_US','Solved: Critical vulnerabilities patched in WooCommerce Blocks','In response to a critical vulnerability identified on July 13, 2021, we worked with the WordPress Plugins Team to deploy software updates to stores running WooCommerce (versions 3.3 to 5.5) and the WooCommerce Blocks feature plugin (versions 2.5 to 5.5).<br /><br /><strong>Your store has been updated to the latest secure version(s)</strong>. For more information and answers to FAQs, please review our blog post detailing this issue.','info','{}','pending','woocommerce.com','2021-07-16 06:48:42',NULL,0,'plain','',0,0),(56,'mercadopago_q3_2021_EN','marketing','en_US','Get paid with Mercado Pago Checkout','Latin America\'s leading payment processor is now available for WooCommerce stores. Securely accept debit and credit cards, cash, bank transfers, and installment payments – backed by exclusive fraud prevention tools.','info','{}','pending','woocommerce.com','2021-09-01 06:31:38',NULL,0,'plain','',0,0),(57,'bbpos-chipper-launch','marketing','en_US','Ready to grow your business beyond online?','Collect payment in person for orders placed online using WooCommerce In-Person Payments. The BBPOS Chipper card reader can process payments securely, and keep everything synced in your WooCommerce Payments dashboard – no matter where you are.','info','{}','pending','woocommerce.com','2021-10-16 05:47:09',NULL,0,'plain','',0,0),(58,'habit-moment-survey','marketing','en_US','We’re all ears! Share your experience so far with WooCommerce','We’d love your input to shape the future of WooCommerce together. Feel free to share any feedback, ideas or suggestions that you have.','info','{}','pending','woocommerce.com','2021-11-05 05:55:09',NULL,0,'plain','',0,0),(59,'new_in_app_marketplace_2021_1','info','en_US','Grow your business with extensions','Check out our NEW Extensions tab to see our favorite extensions for growing your business, and discover the most popular extensions in the WooCommerce Marketplace.','info','{}','pending','woocommerce.com','2021-11-09 05:43:06',NULL,0,'plain','',0,0),(60,'new_in_app_marketplace_2021_2','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','info','{}','pending','woocommerce.com','2021-11-09 05:43:06',NULL,0,'plain','',0,0),(61,'stripe_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/stripe/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#apple-pay\">enable Apple Pay with Stripe</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','info','{}','pending','woocommerce.com','2021-11-12 07:39:59',NULL,0,'plain','',0,0),(62,'square_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/woocommerce-square/?_ga=2.90941597.642705274.1635776464-1391993999.1621950839#section-14\">enable Apple Pay with Square</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','info','{}','pending','woocommerce.com','2021-11-12 07:39:59',NULL,0,'plain','',0,0),(63,'wcpay_applepay_holiday2021','marketing','en_US','Boost sales this holiday season with Apple Pay!','Increase your conversion rate by letting your customers know that you accept Apple Pay. It’s seamless to <a href=\"https://docs.woocommerce.com/document/payments/apple-pay/\">enable Apple Pay with WooCommerce Payments</a> and easy to communicate it with this <a href=\"https://developer.apple.com/apple-pay/marketing/\">marketing guide</a>.','info','{}','pending','woocommerce.com','2021-11-12 07:39:59',NULL,0,'plain','',0,0),(64,'wayflyer_bnpl_q4_2021','marketing','en_US','Grow your business with funding through Wayflyer','Fast, flexible financing to boost cash flow and help your business grow – one fee, no interest rates, penalties, equity, or personal guarantees. Based on your store’s performance, Wayflyer provides funding and analytical insights to invest in your business.','info','{}','pending','woocommerce.com','2021-11-12 07:39:59',NULL,0,'plain','',0,0),(65,'wc_shipping_mobile_app_usps_q4_2021','marketing','en_US','Print and manage your shipping labels with WooCommerce Shipping and the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','info','{}','pending','woocommerce.com','2021-11-12 07:39:59',NULL,0,'plain','',0,0),(66,'wc_shipping_mobile_app_q4_2021','marketing','en_US','Print and manage your shipping labels with the WooCommerce Mobile App','Save time by printing, purchasing, refunding, and tracking shipping labels generated by <a href=\"https://woocommerce.com/woocommerce-shipping/\">WooCommerce Shipping</a> – all directly from your mobile device!','info','{}','pending','woocommerce.com','2021-11-12 07:39:59',NULL,0,'plain','',0,0),(67,'new_in_app_marketplace_2021','info','en_US','Customize your store with extensions','Check out our NEW Extensions tab to see our favorite extensions for customizing your store, and discover the most popular extensions in the WooCommerce Marketplace.','info','{}','unactioned','woocommerce.com','2022-03-10 19:48:21',NULL,0,'plain','',0,0),(68,'ecomm-wc-navigation-survey','info','en_US','We’d like your feedback on the WooCommerce navigation','We’re making improvements to the WooCommerce navigation and would love your feedback. Share your experience in this 2 minute survey.','info','{}','pending','woocommerce.com','2022-01-06 06:28:23',NULL,0,'plain','',0,0),(69,'wc_simple_payments_m2_reader_launch_q1_2022','marketing','en_US','Take quick and easy in-person payments','WooCommerce is continuing to power up your business with our new Simple Payments feature, built exclusively for WooCommerce In-Person Payments. Capture quick and simple payments anywhere else your customers are – or offer a local pickup option with payment taken in-person for orders placed online.','info','{}','unactioned','woocommerce.com','2022-02-04 05:44:19',NULL,0,'plain','',0,0),(70,'wcpay_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Diane does','See how Diane from <a href=\"https://woocommerce.com/posts/lady-dye-yarns-from-crafts-to-activism-with-woocommerce/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Lady Dye Yarns</a> uses Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – Apple Pay is included in WooCommerce Payments. Here\'s how you can increase conversions by encouraging shoppers to pay with a single tap.','info','{}','pending','woocommerce.com','2022-02-07 06:55:03',NULL,0,'plain','',0,0),(71,'stripe_applepay_q1_2022','marketing','en_US','Increase conversions with Apple Pay – just like Thomas does','Read the inspirational story of <a href=\"https://woocommerce.com/posts/incredible-story-of-thomas-trendy-socks-down-syndrome-entrepreneur/?utm_source=product&utm_medium=inboxnotification&utm_campaign=apple-pay\" target=\"_blank\">Thomas\'s Trendy Socks</a> and see how he’s using Apple Pay to provide customers with the fast, secure checkout experience they love. You can, too – ready to turn more visitors into buyers? Accept Apple Pay by selecting Enable express checkouts in Settings > Payments > Stripe.','info','{}','pending','woocommerce.com','2022-02-07 06:55:03',NULL,0,'plain','',0,0),(72,'square_applepay_q1_2022','marketing','en_US','Increase conversions with a faster checkout experience','By enabling Apple Pay in Square, your customers can complete purchases quickly and securely with a single touch or a glance – no lengthy checkout forms necessary. Accept Apple Pay by enabling Digital Wallets within Settings > Payments > Square.','info','{}','pending','woocommerce.com','2022-02-07 06:55:03',NULL,0,'plain','',0,0),(73,'lead_gen_existing_customers_1','marketing','en_US','Talk to a consultant','As your business grows, you want to optimize costs, streamline operations, and sell more. We can help. Talk to us about how you can get the most out of WooCommerce.','info','{}','unactioned','woocommerce.com','2022-02-12 07:21:41',NULL,0,'plain','',0,0),(74,'woocommerce-core-paypal-march-2022-updated','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy PayPal Standard security updates for stores running WooCommerce (version 3.5 to 6.3). It’s recommended to disable PayPal Standard, and use <a href=\"https://woocommerce.com/products/woocommerce-paypal-payments/\" target=\"_blank\">PayPal Payments</a> to accept PayPal.','info','{}','unactioned','woocommerce.com','2022-03-10 19:48:21',NULL,0,'plain','',0,0),(75,'woocommerce-core-paypal-march-2022-updated-nopp','update','en_US','Security auto-update of WooCommerce','<strong>Your store has been updated to the latest secure version of WooCommerce</strong>. We worked with WordPress to deploy security updates related to PayPal Standard payment gateway for stores running WooCommerce (version 3.5 to 6.3).','info','{}','pending','woocommerce.com','2022-03-10 19:48:21',NULL,0,'plain','',0,0),(76,'surface_cart_checkout','info','en_US','Introducing the Cart and Checkout blocks!','Increase your store\'s revenue with the conversion optimized Cart & Checkout WooCommerce blocks available in the WooCommerce Blocks extension.','info','{}','unactioned','woo-gutenberg-products-block','2022-03-10 19:48:22',NULL,0,'plain','',0,0); /*!40000 ALTER TABLE `wp_wc_admin_notes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_category_lookup` -- DROP TABLE IF EXISTS `wp_wc_category_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_category_lookup` ( `category_tree_id` bigint(20) unsigned NOT NULL, `category_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`category_tree_id`,`category_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_category_lookup` -- LOCK TABLES `wp_wc_category_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_category_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_category_lookup` VALUES (32,32),(33,33),(34,34),(35,35); /*!40000 ALTER TABLE `wp_wc_category_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_customer_lookup` -- DROP TABLE IF EXISTS `wp_wc_customer_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_customer_lookup` ( `customer_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned DEFAULT NULL, `username` varchar(60) NOT NULL DEFAULT '', `first_name` varchar(255) NOT NULL, `last_name` varchar(255) NOT NULL, `email` varchar(100) DEFAULT NULL, `date_last_active` timestamp NULL DEFAULT NULL, `date_registered` timestamp NULL DEFAULT NULL, `country` char(2) NOT NULL DEFAULT '', `postcode` varchar(20) NOT NULL DEFAULT '', `city` varchar(100) NOT NULL DEFAULT '', `state` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`customer_id`), UNIQUE KEY `user_id` (`user_id`), KEY `email` (`email`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_customer_lookup` -- LOCK TABLES `wp_wc_customer_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_customer_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_customer_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_download_log` -- DROP TABLE IF EXISTS `wp_wc_download_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_download_log` ( `download_log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `permission_id` bigint(20) unsigned NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip_address` varchar(100) DEFAULT '', PRIMARY KEY (`download_log_id`), KEY `permission_id` (`permission_id`), KEY `timestamp` (`timestamp`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_download_log` -- LOCK TABLES `wp_wc_download_log` WRITE; /*!40000 ALTER TABLE `wp_wc_download_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_download_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_coupon_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_coupon_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_coupon_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `coupon_id` bigint(20) NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `discount_amount` double NOT NULL DEFAULT 0, PRIMARY KEY (`order_id`,`coupon_id`), KEY `coupon_id` (`coupon_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_coupon_lookup` -- LOCK TABLES `wp_wc_order_coupon_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_coupon_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_product_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_product_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_product_lookup` ( `order_item_id` bigint(20) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL, `product_id` bigint(20) unsigned NOT NULL, `variation_id` bigint(20) unsigned NOT NULL, `customer_id` bigint(20) unsigned DEFAULT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `product_qty` int(11) NOT NULL, `product_net_revenue` double NOT NULL DEFAULT 0, `product_gross_revenue` double NOT NULL DEFAULT 0, `coupon_amount` double NOT NULL DEFAULT 0, `tax_amount` double NOT NULL DEFAULT 0, `shipping_amount` double NOT NULL DEFAULT 0, `shipping_tax_amount` double NOT NULL DEFAULT 0, PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`), KEY `product_id` (`product_id`), KEY `customer_id` (`customer_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_product_lookup` -- LOCK TABLES `wp_wc_order_product_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_product_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_product_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_stats` -- DROP TABLE IF EXISTS `wp_wc_order_stats`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_stats` ( `order_id` bigint(20) unsigned NOT NULL, `parent_id` bigint(20) unsigned NOT NULL DEFAULT 0, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `num_items_sold` int(11) NOT NULL DEFAULT 0, `total_sales` double NOT NULL DEFAULT 0, `tax_total` double NOT NULL DEFAULT 0, `shipping_total` double NOT NULL DEFAULT 0, `net_total` double NOT NULL DEFAULT 0, `returning_customer` tinyint(1) DEFAULT NULL, `status` varchar(200) NOT NULL, `customer_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`order_id`), KEY `date_created` (`date_created`), KEY `customer_id` (`customer_id`), KEY `status` (`status`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_stats` -- LOCK TABLES `wp_wc_order_stats` WRITE; /*!40000 ALTER TABLE `wp_wc_order_stats` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_stats` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_order_tax_lookup` -- DROP TABLE IF EXISTS `wp_wc_order_tax_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_order_tax_lookup` ( `order_id` bigint(20) unsigned NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `shipping_tax` double NOT NULL DEFAULT 0, `order_tax` double NOT NULL DEFAULT 0, `total_tax` double NOT NULL DEFAULT 0, PRIMARY KEY (`order_id`,`tax_rate_id`), KEY `tax_rate_id` (`tax_rate_id`), KEY `date_created` (`date_created`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_order_tax_lookup` -- LOCK TABLES `wp_wc_order_tax_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_order_tax_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_order_tax_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_attributes_lookup` -- DROP TABLE IF EXISTS `wp_wc_product_attributes_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_attributes_lookup` ( `product_id` bigint(20) NOT NULL, `product_or_parent_id` bigint(20) NOT NULL, `taxonomy` varchar(32) NOT NULL, `term_id` bigint(20) NOT NULL, `is_variation_attribute` tinyint(1) NOT NULL, `in_stock` tinyint(1) NOT NULL, KEY `product_or_parent_id_term_id` (`product_or_parent_id`,`term_id`), KEY `is_variation_attribute_term_id` (`is_variation_attribute`,`term_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_attributes_lookup` -- LOCK TABLES `wp_wc_product_attributes_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_product_attributes_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_product_meta_lookup` -- DROP TABLE IF EXISTS `wp_wc_product_meta_lookup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_product_meta_lookup` ( `product_id` bigint(20) NOT NULL, `sku` varchar(100) DEFAULT '', `virtual` tinyint(1) DEFAULT 0, `downloadable` tinyint(1) DEFAULT 0, `min_price` decimal(19,4) DEFAULT NULL, `max_price` decimal(19,4) DEFAULT NULL, `onsale` tinyint(1) DEFAULT 0, `stock_quantity` double DEFAULT NULL, `stock_status` varchar(100) DEFAULT 'instock', `rating_count` bigint(20) DEFAULT 0, `average_rating` decimal(3,2) DEFAULT 0.00, `total_sales` bigint(20) DEFAULT 0, `tax_status` varchar(100) DEFAULT 'taxable', `tax_class` varchar(100) DEFAULT '', PRIMARY KEY (`product_id`), KEY `virtual` (`virtual`), KEY `downloadable` (`downloadable`), KEY `stock_status` (`stock_status`), KEY `stock_quantity` (`stock_quantity`), KEY `onsale` (`onsale`), KEY `min_max_price` (`min_price`,`max_price`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_product_meta_lookup` -- LOCK TABLES `wp_wc_product_meta_lookup` WRITE; /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` DISABLE KEYS */; INSERT INTO `wp_wc_product_meta_lookup` VALUES (3207,'',0,0,1850.0000,1850.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3222,'',0,0,2500.0000,2500.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3313,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''),(3447,'',0,0,0.0000,0.0000,0,NULL,'instock',0,0.00,0,'taxable',''); /*!40000 ALTER TABLE `wp_wc_product_meta_lookup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_rate_limits` -- DROP TABLE IF EXISTS `wp_wc_rate_limits`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_rate_limits` ( `rate_limit_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `rate_limit_key` varchar(200) NOT NULL, `rate_limit_expiry` bigint(20) unsigned NOT NULL, PRIMARY KEY (`rate_limit_id`), UNIQUE KEY `rate_limit_key` (`rate_limit_key`(191)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_rate_limits` -- LOCK TABLES `wp_wc_rate_limits` WRITE; /*!40000 ALTER TABLE `wp_wc_rate_limits` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_rate_limits` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_reserved_stock` -- DROP TABLE IF EXISTS `wp_wc_reserved_stock`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_reserved_stock` ( `order_id` bigint(20) NOT NULL, `product_id` bigint(20) NOT NULL, `stock_quantity` double NOT NULL DEFAULT 0, `timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `expires` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`order_id`,`product_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_reserved_stock` -- LOCK TABLES `wp_wc_reserved_stock` WRITE; /*!40000 ALTER TABLE `wp_wc_reserved_stock` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_reserved_stock` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_tax_rate_classes` -- DROP TABLE IF EXISTS `wp_wc_tax_rate_classes`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_tax_rate_classes` ( `tax_rate_class_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(200) NOT NULL DEFAULT '', `slug` varchar(200) NOT NULL DEFAULT '', PRIMARY KEY (`tax_rate_class_id`), UNIQUE KEY `slug` (`slug`(191)) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_tax_rate_classes` -- LOCK TABLES `wp_wc_tax_rate_classes` WRITE; /*!40000 ALTER TABLE `wp_wc_tax_rate_classes` DISABLE KEYS */; INSERT INTO `wp_wc_tax_rate_classes` VALUES (3,'Reduced rate','reduced-rate'),(4,'Zero rate','zero-rate'); /*!40000 ALTER TABLE `wp_wc_tax_rate_classes` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wc_webhooks` -- DROP TABLE IF EXISTS `wp_wc_webhooks`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wc_webhooks` ( `webhook_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `status` varchar(200) NOT NULL, `name` text NOT NULL, `user_id` bigint(20) unsigned NOT NULL, `delivery_url` text NOT NULL, `secret` text NOT NULL, `topic` varchar(200) NOT NULL, `date_created` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `date_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `api_version` smallint(6) NOT NULL, `failure_count` smallint(6) NOT NULL DEFAULT 0, `pending_delivery` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`webhook_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wc_webhooks` -- LOCK TABLES `wp_wc_webhooks` WRITE; /*!40000 ALTER TABLE `wp_wc_webhooks` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wc_webhooks` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_api_keys` -- DROP TABLE IF EXISTS `wp_woocommerce_api_keys`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_api_keys` ( `key_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `user_id` bigint(20) unsigned NOT NULL, `description` varchar(200) DEFAULT NULL, `permissions` varchar(10) NOT NULL, `consumer_key` char(64) NOT NULL, `consumer_secret` char(43) NOT NULL, `nonces` longtext DEFAULT NULL, `truncated_key` char(7) NOT NULL, `last_access` datetime DEFAULT NULL, PRIMARY KEY (`key_id`), KEY `consumer_key` (`consumer_key`), KEY `consumer_secret` (`consumer_secret`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_api_keys` -- LOCK TABLES `wp_woocommerce_api_keys` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_api_keys` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_api_keys` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_attribute_taxonomies` -- DROP TABLE IF EXISTS `wp_woocommerce_attribute_taxonomies`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_attribute_taxonomies` ( `attribute_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `attribute_name` varchar(200) NOT NULL, `attribute_label` varchar(200) DEFAULT NULL, `attribute_type` varchar(20) NOT NULL, `attribute_orderby` varchar(20) NOT NULL, `attribute_public` int(11) NOT NULL DEFAULT 1, PRIMARY KEY (`attribute_id`), KEY `attribute_name` (`attribute_name`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_attribute_taxonomies` -- LOCK TABLES `wp_woocommerce_attribute_taxonomies` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_attribute_taxonomies` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_downloadable_product_permissions` -- DROP TABLE IF EXISTS `wp_woocommerce_downloadable_product_permissions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_downloadable_product_permissions` ( `permission_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `download_id` varchar(36) NOT NULL, `product_id` bigint(20) unsigned NOT NULL, `order_id` bigint(20) unsigned NOT NULL DEFAULT 0, `order_key` varchar(200) NOT NULL, `user_email` varchar(200) NOT NULL, `user_id` bigint(20) unsigned DEFAULT NULL, `downloads_remaining` varchar(9) DEFAULT NULL, `access_granted` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `access_expires` datetime DEFAULT NULL, `download_count` bigint(20) unsigned NOT NULL DEFAULT 0, PRIMARY KEY (`permission_id`), KEY `download_order_key_product` (`product_id`,`order_id`,`order_key`(16),`download_id`), KEY `download_order_product` (`download_id`,`order_id`,`product_id`), KEY `order_id` (`order_id`), KEY `user_order_remaining_expires` (`user_id`,`order_id`,`downloads_remaining`,`access_expires`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_downloadable_product_permissions` -- LOCK TABLES `wp_woocommerce_downloadable_product_permissions` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_downloadable_product_permissions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_log` -- DROP TABLE IF EXISTS `wp_woocommerce_log`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_log` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `timestamp` datetime NOT NULL, `level` smallint(6) NOT NULL, `source` varchar(200) NOT NULL, `message` longtext NOT NULL, `context` longtext DEFAULT NULL, PRIMARY KEY (`log_id`), KEY `level` (`level`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_log` -- LOCK TABLES `wp_woocommerce_log` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_log` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_log` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_order_itemmeta` -- DROP TABLE IF EXISTS `wp_woocommerce_order_itemmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_order_itemmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `order_item_id` (`order_item_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_order_itemmeta` -- LOCK TABLES `wp_woocommerce_order_itemmeta` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_order_itemmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_order_items` -- DROP TABLE IF EXISTS `wp_woocommerce_order_items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_order_items` ( `order_item_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `order_item_name` text NOT NULL, `order_item_type` varchar(200) NOT NULL DEFAULT '', `order_id` bigint(20) unsigned NOT NULL, PRIMARY KEY (`order_item_id`), KEY `order_id` (`order_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_order_items` -- LOCK TABLES `wp_woocommerce_order_items` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_order_items` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_order_items` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_payment_tokenmeta` -- DROP TABLE IF EXISTS `wp_woocommerce_payment_tokenmeta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_payment_tokenmeta` ( `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `payment_token_id` bigint(20) unsigned NOT NULL, `meta_key` varchar(255) DEFAULT NULL, `meta_value` longtext DEFAULT NULL, PRIMARY KEY (`meta_id`), KEY `payment_token_id` (`payment_token_id`), KEY `meta_key` (`meta_key`(32)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_payment_tokenmeta` -- LOCK TABLES `wp_woocommerce_payment_tokenmeta` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokenmeta` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_payment_tokens` -- DROP TABLE IF EXISTS `wp_woocommerce_payment_tokens`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_payment_tokens` ( `token_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `gateway_id` varchar(200) NOT NULL, `token` text NOT NULL, `user_id` bigint(20) unsigned NOT NULL DEFAULT 0, `type` varchar(200) NOT NULL, `is_default` tinyint(1) NOT NULL DEFAULT 0, PRIMARY KEY (`token_id`), KEY `user_id` (`user_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_payment_tokens` -- LOCK TABLES `wp_woocommerce_payment_tokens` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_payment_tokens` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_sessions` -- DROP TABLE IF EXISTS `wp_woocommerce_sessions`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_sessions` ( `session_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `session_key` char(32) NOT NULL, `session_value` longtext NOT NULL, `session_expiry` bigint(20) unsigned NOT NULL, PRIMARY KEY (`session_id`), UNIQUE KEY `session_key` (`session_key`) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_sessions` -- LOCK TABLES `wp_woocommerce_sessions` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_sessions` DISABLE KEYS */; INSERT INTO `wp_woocommerce_sessions` VALUES (5,'2','a:7:{s:4:\"cart\";s:6:\"a:0:{}\";s:11:\"cart_totals\";s:367:\"a:15:{s:8:\"subtotal\";i:0;s:12:\"subtotal_tax\";i:0;s:14:\"shipping_total\";i:0;s:12:\"shipping_tax\";i:0;s:14:\"shipping_taxes\";a:0:{}s:14:\"discount_total\";i:0;s:12:\"discount_tax\";i:0;s:19:\"cart_contents_total\";i:0;s:17:\"cart_contents_tax\";i:0;s:19:\"cart_contents_taxes\";a:0:{}s:9:\"fee_total\";i:0;s:7:\"fee_tax\";i:0;s:9:\"fee_taxes\";a:0:{}s:5:\"total\";i:0;s:9:\"total_tax\";i:0;}\";s:15:\"applied_coupons\";s:6:\"a:0:{}\";s:22:\"coupon_discount_totals\";s:6:\"a:0:{}\";s:26:\"coupon_discount_tax_totals\";s:6:\"a:0:{}\";s:21:\"removed_cart_contents\";s:6:\"a:0:{}\";s:8:\"customer\";s:770:\"a:27:{s:2:\"id\";s:1:\"2\";s:13:\"date_modified\";s:25:\"2020-05-15T17:31:10+00:00\";s:8:\"postcode\";s:0:\"\";s:4:\"city\";s:0:\"\";s:9:\"address_1\";s:0:\"\";s:7:\"address\";s:0:\"\";s:9:\"address_2\";s:0:\"\";s:5:\"state\";s:2:\"CA\";s:7:\"country\";s:2:\"US\";s:17:\"shipping_postcode\";s:0:\"\";s:13:\"shipping_city\";s:0:\"\";s:18:\"shipping_address_1\";s:0:\"\";s:16:\"shipping_address\";s:0:\"\";s:18:\"shipping_address_2\";s:0:\"\";s:14:\"shipping_state\";s:2:\"CA\";s:16:\"shipping_country\";s:2:\"US\";s:13:\"is_vat_exempt\";s:0:\"\";s:19:\"calculated_shipping\";s:0:\"\";s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";s:7:\"company\";s:0:\"\";s:5:\"phone\";s:0:\"\";s:5:\"email\";s:23:\"bblackerby424@gmail.com\";s:19:\"shipping_first_name\";s:0:\"\";s:18:\"shipping_last_name\";s:0:\"\";s:16:\"shipping_company\";s:0:\"\";s:14:\"shipping_phone\";s:0:\"\";}\";}',1647309037); /*!40000 ALTER TABLE `wp_woocommerce_sessions` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zone_locations` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zone_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_id` bigint(20) unsigned NOT NULL, `location_code` varchar(200) NOT NULL, `location_type` varchar(40) NOT NULL, PRIMARY KEY (`location_id`), KEY `location_id` (`location_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zone_locations` -- LOCK TABLES `wp_woocommerce_shipping_zone_locations` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zone_methods` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zone_methods`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zone_methods` ( `zone_id` bigint(20) unsigned NOT NULL, `instance_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `method_id` varchar(200) NOT NULL, `method_order` bigint(20) unsigned NOT NULL, `is_enabled` tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (`instance_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zone_methods` -- LOCK TABLES `wp_woocommerce_shipping_zone_methods` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zone_methods` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_shipping_zones` -- DROP TABLE IF EXISTS `wp_woocommerce_shipping_zones`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_shipping_zones` ( `zone_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `zone_name` varchar(200) NOT NULL, `zone_order` bigint(20) unsigned NOT NULL, PRIMARY KEY (`zone_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_shipping_zones` -- LOCK TABLES `wp_woocommerce_shipping_zones` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_woocommerce_shipping_zones` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_tax_rate_locations` -- DROP TABLE IF EXISTS `wp_woocommerce_tax_rate_locations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_tax_rate_locations` ( `location_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `location_code` varchar(200) NOT NULL, `tax_rate_id` bigint(20) unsigned NOT NULL, `location_type` varchar(40) NOT NULL, PRIMARY KEY (`location_id`), KEY `tax_rate_id` (`tax_rate_id`), KEY `location_type_code` (`location_type`(10),`location_code`(20)) ) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_tax_rate_locations` -- LOCK TABLES `wp_woocommerce_tax_rate_locations` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` DISABLE KEYS */; INSERT INTO `wp_woocommerce_tax_rate_locations` VALUES (1,'95687',1,'postcode'),(2,'VACAVILLE',1,'city'); /*!40000 ALTER TABLE `wp_woocommerce_tax_rate_locations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_woocommerce_tax_rates` -- DROP TABLE IF EXISTS `wp_woocommerce_tax_rates`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_woocommerce_tax_rates` ( `tax_rate_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `tax_rate_country` varchar(2) NOT NULL DEFAULT '', `tax_rate_state` varchar(200) NOT NULL DEFAULT '', `tax_rate` varchar(8) NOT NULL DEFAULT '', `tax_rate_name` varchar(200) NOT NULL DEFAULT '', `tax_rate_priority` bigint(20) unsigned NOT NULL, `tax_rate_compound` int(11) NOT NULL DEFAULT 0, `tax_rate_shipping` int(11) NOT NULL DEFAULT 1, `tax_rate_order` bigint(20) unsigned NOT NULL, `tax_rate_class` varchar(200) NOT NULL DEFAULT '', PRIMARY KEY (`tax_rate_id`), KEY `tax_rate_country` (`tax_rate_country`), KEY `tax_rate_state` (`tax_rate_state`(2)), KEY `tax_rate_class` (`tax_rate_class`(10)), KEY `tax_rate_priority` (`tax_rate_priority`) ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_woocommerce_tax_rates` -- LOCK TABLES `wp_woocommerce_tax_rates` WRITE; /*!40000 ALTER TABLE `wp_woocommerce_tax_rates` DISABLE KEYS */; INSERT INTO `wp_woocommerce_tax_rates` VALUES (1,'US','CA','8.3800','Sales Tax',1,0,0,0,''); /*!40000 ALTER TABLE `wp_woocommerce_tax_rates` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_wpfm_backup` -- DROP TABLE IF EXISTS `wp_wpfm_backup`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_wpfm_backup` ( `id` int(11) NOT NULL AUTO_INCREMENT, `backup_name` text DEFAULT NULL, `backup_date` text DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_wpfm_backup` -- LOCK TABLES `wp_wpfm_backup` WRITE; /*!40000 ALTER TABLE `wp_wpfm_backup` DISABLE KEYS */; /*!40000 ALTER TABLE `wp_wpfm_backup` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yoast_indexable` -- DROP TABLE IF EXISTS `wp_yoast_indexable`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_yoast_indexable` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `permalink` longtext DEFAULT NULL, `permalink_hash` varchar(40) DEFAULT NULL, `object_id` bigint(20) DEFAULT NULL, `object_type` varchar(32) NOT NULL, `object_sub_type` varchar(32) DEFAULT NULL, `author_id` bigint(20) DEFAULT NULL, `post_parent` bigint(20) DEFAULT NULL, `title` text DEFAULT NULL, `description` mediumtext DEFAULT NULL, `breadcrumb_title` text DEFAULT NULL, `post_status` varchar(20) DEFAULT NULL, `is_public` tinyint(1) DEFAULT NULL, `is_protected` tinyint(1) DEFAULT 0, `has_public_posts` tinyint(1) DEFAULT NULL, `number_of_pages` int(10) unsigned DEFAULT NULL, `canonical` longtext DEFAULT NULL, `primary_focus_keyword` varchar(191) DEFAULT NULL, `primary_focus_keyword_score` int(11) DEFAULT NULL, `readability_score` int(11) DEFAULT NULL, `is_cornerstone` tinyint(1) DEFAULT 0, `is_robots_noindex` tinyint(1) DEFAULT 0, `is_robots_nofollow` tinyint(1) DEFAULT 0, `is_robots_noarchive` tinyint(1) DEFAULT 0, `is_robots_noimageindex` tinyint(1) DEFAULT 0, `is_robots_nosnippet` tinyint(1) DEFAULT 0, `twitter_title` text DEFAULT NULL, `twitter_image` longtext DEFAULT NULL, `twitter_description` longtext DEFAULT NULL, `twitter_image_id` varchar(191) DEFAULT NULL, `twitter_image_source` text DEFAULT NULL, `open_graph_title` text DEFAULT NULL, `open_graph_description` longtext DEFAULT NULL, `open_graph_image` longtext DEFAULT NULL, `open_graph_image_id` varchar(191) DEFAULT NULL, `open_graph_image_source` text DEFAULT NULL, `open_graph_image_meta` mediumtext DEFAULT NULL, `link_count` int(11) DEFAULT NULL, `incoming_link_count` int(11) DEFAULT NULL, `prominent_words_version` int(10) unsigned DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `blog_id` bigint(20) NOT NULL DEFAULT 1, `language` varchar(32) DEFAULT NULL, `region` varchar(32) DEFAULT NULL, `schema_page_type` varchar(64) DEFAULT NULL, `schema_article_type` varchar(64) DEFAULT NULL, `has_ancestors` tinyint(1) DEFAULT 0, `estimated_reading_time_minutes` int(11) DEFAULT NULL, `version` int(11) DEFAULT 1, `object_last_modified` datetime DEFAULT NULL, `object_published_at` datetime DEFAULT NULL, `inclusive_language_score` int(11) DEFAULT NULL, PRIMARY KEY (`id`), KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`), KEY `object_id_and_type` (`object_id`,`object_type`), KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`), KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`), KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`), KEY `published_sitemap_index` (`object_published_at`,`is_robots_noindex`,`object_type`,`object_sub_type`) ) ENGINE=InnoDB AUTO_INCREMENT=665 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_yoast_indexable` -- LOCK TABLES `wp_yoast_indexable` WRITE; /*!40000 ALTER TABLE `wp_yoast_indexable` DISABLE KEYS */; INSERT INTO `wp_yoast_indexable` VALUES (8,'https://solsculpting.com/category/news/','50:1a3d1ac8106870cc011ede20e023b1f8',2,'term','category',NULL,NULL,NULL,NULL,'News',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 02:52:55','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(9,'https://solsculpting.com/category/personal/','54:e54672fe6287faafe4fbbc4cac5d29cf',3,'term','category',NULL,NULL,NULL,NULL,'Personal',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 02:52:55','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(10,'https://solsculpting.com/tag/food/','45:9c24c398c2f9cce0cccb703a4ab75517',4,'term','post_tag',NULL,NULL,NULL,NULL,'food',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 02:52:55','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(11,'https://solsculpting.com/tag/fun/','44:46e3ba5def47eaec59fd5123ead72d53',5,'term','post_tag',NULL,NULL,NULL,NULL,'fun',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 02:52:55','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(12,'https://solsculpting.com/tag/landscape/','50:0fe69d48d18c0660f2f95cc535f08385',6,'term','post_tag',NULL,NULL,NULL,NULL,'landscape',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 02:52:55','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-07-15 15:48:30','2015-07-15 12:27:02',NULL),(13,'https://solsculpting.com/tag/portrait/','49:b0f3d5959b6fa829adc664086de92a8c',7,'term','post_tag',NULL,NULL,NULL,NULL,'portrait',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 02:52:55','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2015-07-15 15:48:30','2015-07-15 15:24:11',NULL),(62,'https://solsculpting.com/','25:7c0a8820c6e34379f0b15b9e50f70ba2',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Start a Red Light Therapy Business','Home',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'%%sitename%%','','','0',NULL,NULL,NULL,0,NULL,'2020-05-13 02:56:14','2026-07-26 02:24:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-26 02:24:30',NULL,NULL),(64,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Page not found %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-13 02:57:57','2021-02-28 00:39:37',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(205,'https://solsculpting.com/type/link/','46:47cc16d9f5fe58d48ea3e2efe6961ec9',15,'term','post_format',NULL,NULL,NULL,NULL,'Link',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 03:39:40','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(207,'https://solsculpting.com/type/gallery/','49:0f9dc8330105523ff0f177e716ab8a2f',16,'term','post_format',NULL,NULL,NULL,NULL,'Gallery',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 03:39:41','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(209,'https://solsculpting.com/type/video/','47:a4a5fad5233faf5cca1aa35db4f3d927',17,'term','post_format',NULL,NULL,NULL,NULL,'Video',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 03:39:41','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(212,'https://solsculpting.com/type/audio/','47:f1d46c90d5aa986fd96e478d8bb45d21',18,'term','post_format',NULL,NULL,NULL,NULL,'Audio',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-13 03:39:41','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,NULL,NULL,NULL),(312,NULL,NULL,NULL,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-13 03:39:48','2021-02-28 00:40:21',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(354,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-14 17:03:55','2021-02-28 00:39:37',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(356,'https://solsculpting.com/author/bblackerby/','43:53f60150607454ffd8b25f7d9e0766be',2,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/fdeed07ce2bf322f182b0fb5c74722b9?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/fdeed07ce2bf322f182b0fb5c74722b9?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-05-15 17:31:10','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-24 22:12:10','2020-05-15 18:16:09',NULL),(361,'https://solsculpting.com/category/uncategorized/','48:f1db6c66d6c0eccf09d9fc26bbf5ca02',1,'term','category',NULL,NULL,NULL,NULL,'Uncategorized',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-05-15 18:30:55','2026-07-26 02:24:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-26 02:24:30',NULL,NULL),(378,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-05-17 01:19:42','2021-02-28 00:39:37',1,NULL,NULL,NULL,NULL,0,NULL,1,NULL,NULL,NULL),(539,'https://solsculpting.com/','25:7c0a8820c6e34379f0b15b9e50f70ba2',3644,'post','page',2,0,'SolSculpting | Red Light Therapy for Wellness Professionals - SolSculpting','Red light has the power to reverse skin aging, improves skin conditions, reduce cellulite, combat fibromyalgia, neuropathy, chronic fatigue, increase energy levels, lower inflammation, combat depression, increase fertility, improve joint health, decrease pain, increase fat loss, and so much more!','SolSculpting | Red Light Therapy for Wellness Professionals','publish',NULL,0,NULL,NULL,NULL,'Red Light Therapy for Wellness Professional',51,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall.png',NULL,NULL,'first-content-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2022-03-10 19:51:23','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,7,2,'2022-12-03 00:31:54','2022-03-10 22:12:08',NULL),(564,'https://solsculpting.com/disclaimers/','37:3d749cc03f8e5f78553a431dc504e8f1',3675,'post','page',2,0,'Disclaimers - SolSculpting','We do not provide any kind of medical/health advice. THE USE OR RELIANCE OF ANY INFORMATION CONTAINED ON THIS SITE OR OUR MOBILE APPLICATION IS SOLELY AT YOUR OWN RISK.','Disclaimers','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-13 03:18:41','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,3,2,'2022-12-01 16:09:39','2022-03-13 03:18:44',NULL),(566,'https://solsculpting.com/?page_id=3677','38:f3a89e8362d647a4a6688645749b7b1c',3677,'post','page',2,0,NULL,'If you invented a miracle drug that was scientifically proven to help people look 10 years younger, lose fat, improve hormonal health, fight pain and inflammation, increase strength/endurance, heal faster, improve your brain health and increase your energy levels, do you think people would line up to buy it from you?','Bright Future','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2022/03/ChiropractorRoom2.jpg',NULL,'3636','featured-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2022/03/ChiropractorRoom2.jpg','3636','featured-image','{\"width\":1200,\"height\":1200,\"url\":\"https://solsculpting.com/wp-content/uploads/2022/03/ChiropractorRoom2.jpg\",\"path\":\"/storage/v12552/solsculpting/public_html/wp-content/uploads/2022/03/ChiropractorRoom2.jpg\",\"size\":\"full\",\"id\":3636,\"alt\":\"\",\"pixels\":1440000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2022-03-13 17:39:37','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,6,2,'2022-03-16 02:25:56','2022-03-13 20:10:36',NULL),(578,'https://solsculpting.com/?page_id=3696','38:cd9983ca6e552289abf23411eae85ab0',3696,'post','page',2,0,NULL,NULL,'Founder','draft',0,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-578x1024.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-578x1024.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2022-03-14 00:28:34','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,3,2,'2022-12-03 00:26:35','2022-03-14 00:28:33',NULL),(579,'https://solsculpting.com/testimonials-2/','40:75fa931a6f47c5764158a7aa56290db4',3697,'post','page',2,0,'Testimonials - SolSculpting','We just started with our SolSculpting professional system and are so excited about our experience so far! The personalized support and gentle guidance as exceeded my expectations.','Testimonials','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2022-03-14 00:42:13','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,2,2,'2022-12-01 16:10:15','2022-03-14 00:48:00',NULL),(580,'https://solsculpting.com/about-red-light/','41:f5ed74e2ab49a817a48e71ce0c7d9e41',3698,'post','page',2,0,'About Red Light - SolSculpting','The science of red light therapy – photo-bio-modulation','About Red Light','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-1024x578.jpg',NULL,NULL,'first-content-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-1024x578.jpg',NULL,'first-content-image',NULL,0,NULL,NULL,'2022-03-14 01:02:40','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,1,2,'2022-12-01 16:05:24','2022-03-14 01:30:24',NULL),(584,'https://solsculpting.com/contact/','33:77fdda46822cac15095931d799391092',3704,'post','page',2,0,'Contact - SolSculpting','SolSculpting contact facility is a helpdesk for users to reach out to us for inquiries and queries.','Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2022-03-14 01:34:29','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,1,2,'2022-12-03 00:30:48','2022-03-14 01:39:39',NULL),(607,'https://solsculpting.com/red-light-therapy-ways-it-can-help/','60:5444033f361ef335494ff8f18d4c291b',3777,'post','post',2,0,NULL,NULL,'Red Light Therapy: Ways it can help','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Ways-it-Helps-scaled.webp',NULL,'3778','featured-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Ways-it-Helps-scaled.webp','3778','featured-image','{\"width\":2560,\"height\":1635,\"filesize\":172850,\"url\":\"https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Ways-it-Helps-scaled.webp\",\"path\":\"/storage/v12552/solsculpting/public_html/wp-content/uploads/2023/01/SolSculpting-RLT-Ways-it-Helps-scaled.webp\",\"size\":\"full\",\"id\":3778,\"alt\":\"\",\"pixels\":4185600,\"type\":\"image/webp\"}',0,NULL,NULL,'2023-01-24 18:24:50','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,3,2,'2023-01-24 18:54:21','2023-01-24 18:43:00',NULL),(609,'https://solsculpting.com/category/red-light-therapy/','52:7ee45221318e8b62e2b3c6b2edcf52b8',41,'term','category',NULL,NULL,NULL,NULL,'Red Light Therapy',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2023-01-24 18:43:12','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,NULL,2,'2023-01-24 22:12:10',NULL,NULL),(636,'https://solsculpting.com/red-light-therapy-takes-on-inflammation/','65:c61ed38d1fb4b962d2d1f6267f40375a',3807,'post','post',2,0,NULL,'Inflammatory conditions, including arthritis and joint diseases, take their toll on millions of people each year. There is no getting around it - the byproduct of inflammation is pain and reduced mobility. ','Red Light Therapy Takes on Inflammation','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Take-on-Inflammation-scaled.webp',NULL,'3808','featured-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Take-on-Inflammation-scaled.webp','3808','featured-image','{\"width\":2560,\"height\":1709,\"filesize\":170284,\"url\":\"https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Take-on-Inflammation-scaled.webp\",\"path\":\"/storage/v12552/solsculpting/public_html/wp-content/uploads/2023/01/SolSculpting-RLT-Take-on-Inflammation-scaled.webp\",\"size\":\"full\",\"id\":3808,\"alt\":\"\",\"pixels\":4375040,\"type\":\"image/webp\"}',0,NULL,NULL,'2023-01-24 18:58:27','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,2,2,'2023-01-24 19:18:42','2023-01-24 19:18:42',NULL),(638,'https://solsculpting.com/red-light-therapy-improves-mood-anxiety-and-fatigue/','77:bab7681fed4d26b5fecb71657405dbbc',3809,'post','post',2,0,NULL,NULL,'Red Light Therapy Improves Mood, Anxiety, and Fatigue','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-Improves-Mood-Anxiety-scaled.webp',NULL,'3810','featured-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-Improves-Mood-Anxiety-scaled.webp','3810','featured-image','{\"width\":2560,\"height\":1707,\"filesize\":523488,\"url\":\"https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-Improves-Mood-Anxiety-scaled.webp\",\"path\":\"/storage/v12552/solsculpting/public_html/wp-content/uploads/2023/01/SolSculpting-Improves-Mood-Anxiety-scaled.webp\",\"size\":\"full\",\"id\":3810,\"alt\":\"\",\"pixels\":4369920,\"type\":\"image/webp\"}',0,NULL,NULL,'2023-01-24 19:29:13','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,3,2,'2023-01-24 20:04:00','2023-01-24 20:04:00',NULL),(640,'https://solsculpting.com/shining-a-light-on-healthier-skin/','59:4a7e24338de8c3c0116b124a86ef7879',3811,'post','post',2,0,NULL,NULL,'Red Light Therapy: Shining a Light on Healthier Skin','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-scaled.webp',NULL,'3812','featured-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-scaled.webp','3812','featured-image','{\"width\":2560,\"height\":1314,\"filesize\":175206,\"url\":\"https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-scaled.webp\",\"path\":\"/storage/v12552/solsculpting/public_html/wp-content/uploads/2023/01/SolSculpting-RLT-Shining-a-Light-on-Healthier-Skin-scaled.webp\",\"size\":\"full\",\"id\":3812,\"alt\":\"\",\"pixels\":3363840,\"type\":\"image/webp\"}',0,NULL,NULL,'2023-01-24 20:08:28','2024-07-12 04:54:48',1,NULL,NULL,NULL,NULL,0,3,2,'2023-01-24 21:58:42','2023-01-24 20:25:03',NULL),(642,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/','65:1e4edc23ff98a055f2ce187ddb1c856e',3814,'post','post',2,0,NULL,NULL,'Red Light Therapy: Benefits for Athletes','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Benefits-for-Athletes-scaled.webp',NULL,'3815','featured-image',NULL,NULL,'https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Benefits-for-Athletes-scaled.webp','3815','featured-image','{\"width\":2560,\"height\":1708,\"filesize\":191984,\"url\":\"https://solsculpting.com/wp-content/uploads/2023/01/SolSculpting-RLT-Benefits-for-Athletes-scaled.webp\",\"path\":\"/storage/v12552/solsculpting/public_html/wp-content/uploads/2023/01/SolSculpting-RLT-Benefits-for-Athletes-scaled.webp\",\"size\":\"full\",\"id\":3815,\"alt\":\"\",\"pixels\":4372480,\"type\":\"image/webp\"}',0,6,NULL,'2023-01-24 22:00:16','2026-07-26 02:24:31',1,NULL,NULL,NULL,NULL,0,2,2,'2023-01-24 22:12:10','2023-01-24 22:10:37',NULL),(646,'https://solsculpting.com/12/','28:5905e196634dc23763eac67b18bf9840',999999,'post','post',2,18,NULL,NULL,'Protected: ||4F4B||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-20 10:59:12','2026-07-20 10:59:12',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(647,'https://solsculpting.com/','25:7c0a8820c6e34379f0b15b9e50f70ba2',99999999,'post','post',1,0,NULL,NULL,'chk715931302E362E31322D4D6172696144422D313A31302E362E31322B6D617269617E75627532303034','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-21 13:16:53','2026-07-21 13:16:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(648,'https://solsculpting.com/113/','29:98d60f0152189982f32055b29c6ddd09',910695,'post','post',433,78,NULL,NULL,'Protected: ||4F4B||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:53:38','2026-07-22 03:53:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(649,'https://solsculpting.com/749/','29:0138b9eede2ae739a9fe9d34fc736aa1',457395,'post','post',757,151,NULL,NULL,'Protected: ||77705F706F737473||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:53:44','2026-07-22 03:53:44',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(650,'https://solsculpting.com/773/','29:5c29db1cf2fe39396f1302f029223aa0',179405,'post','post',96,253,NULL,NULL,'Protected: ||31||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:53:47','2026-07-22 03:53:47',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(651,'https://solsculpting.com/686/','29:e5eb01b1603246f466d35eca1d7c6101',983029,'post','post',285,35,NULL,NULL,'Protected: ||33383532||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:53:50','2026-07-22 03:53:50',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(652,'https://solsculpting.com/116/','29:6e8ecef2f12655740f4cddbeaac5a627',211045,'post','post',428,726,NULL,NULL,'Protected: ||33383533||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:53:53','2026-07-22 03:53:53',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(653,'https://solsculpting.com/963/','29:7269ed2738243faad7e28edc2aa72044',533776,'post','post',610,260,NULL,NULL,'Protected: ||33383534||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:53:56','2026-07-22 03:53:56',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(654,'https://solsculpting.com/261/','29:ac7f367e2221f19768589936a246ef3a',571191,'post','post',604,930,NULL,NULL,'Protected: ||4F4B||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:54:00','2026-07-22 03:54:00',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(655,'https://solsculpting.com/285/','29:e9505d83d01254c7c06cfbcbbd20bb4c',893931,'post','post',954,765,NULL,NULL,'Protected: ||3132||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:54:04','2026-07-22 03:54:04',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(656,'https://solsculpting.com/656/','29:c5354e15fb872b85f69e0d39b2281955',406929,'post','post',161,966,NULL,NULL,'Protected: ||736F6C76696272616E743A245024424E4B4A3057772F544E4C50636C5447535271416D717033304F7A62547030||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:54:07','2026-07-22 03:54:07',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(657,'https://solsculpting.com/298/','29:5b05720fd5bbe504d411a7cd50cc79f0',501215,'post','post',489,43,NULL,NULL,'Protected: ||62626C61636B657262793A2477702432792431302452374330373570736D52356B686E4C4C61662E78737575626563506B415741655A306E434E69727A425A302F394B504A5034516575||','publish',0,1,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2026-07-22 03:54:10','2026-07-22 03:54:10',1,NULL,NULL,NULL,NULL,0,NULL,2,'2020-01-01 00:00:00','2020-01-01 00:00:00',0),(658,'https://solsculpting.com/x/','27:d38b4b56aeecccacec2f7e18bcdede5a',3928,'post','post',1,3927,NULL,NULL,'x','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2026-07-23 19:54:38','2026-07-23 19:54:38',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-23 19:54:38','2020-01-01 00:00:00',0),(659,'https://solsculpting.com/author/solvibrant/','43:73ec0117179e7e812b56964035a018c7',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/7bd6edb28338f45cc4d6204f1a88c88e973cb70c571a27e17904881d95a36614?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/7bd6edb28338f45cc4d6204f1a88c88e973cb70c571a27e17904881d95a36614?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2026-07-23 19:54:38','2026-07-26 02:24:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-26 02:24:30','2015-01-15 16:26:13',NULL),(660,'https://solsculpting.com/x-2/','29:d4f76e428cd10d8355792ac3e436e844',3936,'post','post',1,3935,NULL,NULL,'x','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2026-07-23 20:57:57','2026-07-23 20:57:57',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-23 20:57:57','2020-01-01 00:00:00',0),(661,'https://solsculpting.com/x-3/','29:0d2283440dac02efc42ac224eae22582',4008,'post','post',1,4007,NULL,NULL,'x','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2026-07-25 09:38:37','2026-07-25 09:38:37',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-25 09:38:37','2020-01-01 00:00:00',0),(662,'https://solsculpting.com/x-4/','29:f14a8b271f30c606f3a66b92d06557a6',4013,'post','post',1,4012,NULL,NULL,'x','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2026-07-25 10:11:19','2026-07-25 10:11:19',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-25 10:11:19','2020-01-01 00:00:00',0),(663,'https://solsculpting.com/x-5/','29:0e2850a332570274af84d24e77329562',4018,'post','post',1,4017,NULL,NULL,'x','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2026-07-25 10:27:59','2026-07-25 10:27:59',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-25 10:27:59','2020-01-01 00:00:00',0),(664,'https://solsculpting.com/cache/','31:c5b10743038cc8b511cbab074ea466cb',4044,'post','post',1,4077,NULL,NULL,'cache','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2026-07-26 02:24:31','2026-07-26 02:24:31',1,NULL,NULL,NULL,NULL,0,NULL,2,'2026-07-26 02:24:30','2020-01-01 00:00:00',0); /*!40000 ALTER TABLE `wp_yoast_indexable` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yoast_indexable_hierarchy` -- DROP TABLE IF EXISTS `wp_yoast_indexable_hierarchy`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_yoast_indexable_hierarchy` ( `indexable_id` int(10) unsigned NOT NULL, `ancestor_id` int(10) unsigned NOT NULL, `depth` int(10) unsigned DEFAULT NULL, `blog_id` bigint(20) NOT NULL DEFAULT 1, PRIMARY KEY (`indexable_id`,`ancestor_id`), KEY `indexable_id` (`indexable_id`), KEY `ancestor_id` (`ancestor_id`), KEY `depth` (`depth`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_yoast_indexable_hierarchy` -- LOCK TABLES `wp_yoast_indexable_hierarchy` WRITE; /*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` DISABLE KEYS */; INSERT INTO `wp_yoast_indexable_hierarchy` VALUES (8,0,0,1),(9,0,0,1),(10,0,0,1),(11,0,0,1),(12,0,0,1),(13,0,0,1),(62,0,0,1),(205,0,0,1),(207,0,0,1),(209,0,0,1),(212,0,0,1),(354,0,0,1),(356,0,0,1),(361,0,0,1),(378,0,0,1),(539,0,0,1),(564,0,0,1),(566,0,0,1),(578,0,0,1),(579,0,0,1),(580,0,0,1),(584,0,0,1),(607,0,0,1),(609,0,0,1),(636,0,0,1),(638,0,0,1),(640,0,0,1),(642,0,0,1),(646,0,0,1),(647,0,0,1),(648,0,0,1),(649,0,0,1),(650,0,0,1),(651,0,0,1),(652,0,0,1),(653,0,0,1),(654,0,0,1),(655,0,0,1),(656,0,0,1),(657,0,0,1),(658,0,0,1),(659,0,0,1),(660,0,0,1),(661,0,0,1),(662,0,0,1),(663,0,0,1),(664,0,0,1); /*!40000 ALTER TABLE `wp_yoast_indexable_hierarchy` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yoast_migrations` -- DROP TABLE IF EXISTS `wp_yoast_migrations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_yoast_migrations` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `version` varchar(191) DEFAULT NULL, PRIMARY KEY (`id`), UNIQUE KEY `idx_wp_3vvbhvqwjb_yoast_migrations_version` (`version`) ) ENGINE=InnoDB AUTO_INCREMENT=26 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_yoast_migrations` -- LOCK TABLES `wp_yoast_migrations` WRITE; /*!40000 ALTER TABLE `wp_yoast_migrations` DISABLE KEYS */; INSERT INTO `wp_yoast_migrations` VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(15,'20200616130143'),(16,'20200617122511'),(17,'20200702141921'),(18,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134'),(22,'20210817092415'),(23,'20211020091404'),(24,'20230417083836'),(25,'20260105111111'); /*!40000 ALTER TABLE `wp_yoast_migrations` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yoast_primary_term` -- DROP TABLE IF EXISTS `wp_yoast_primary_term`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_yoast_primary_term` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `post_id` bigint(20) DEFAULT NULL, `term_id` bigint(20) DEFAULT NULL, `taxonomy` varchar(32) NOT NULL, `created_at` datetime DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), `blog_id` bigint(20) NOT NULL DEFAULT 1, PRIMARY KEY (`id`), KEY `post_taxonomy` (`post_id`,`taxonomy`), KEY `post_term` (`post_id`,`term_id`) ) ENGINE=InnoDB AUTO_INCREMENT=9 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_yoast_primary_term` -- LOCK TABLES `wp_yoast_primary_term` WRITE; /*!40000 ALTER TABLE `wp_yoast_primary_term` DISABLE KEYS */; INSERT INTO `wp_yoast_primary_term` VALUES (1,3222,34,'product_cat','2020-05-16 22:11:23','2022-03-11 08:58:42',1),(2,3207,33,'product_cat','2020-05-17 05:11:30','2020-05-28 05:49:25',1),(3,3447,35,'product_cat','2020-05-26 01:48:29','2020-06-21 00:28:16',1),(4,3777,41,'category','2023-01-24 18:43:15','2023-01-24 18:54:21',1),(5,3807,41,'category','2023-01-24 19:18:43','2023-01-24 19:18:43',1),(6,3809,41,'category','2023-01-24 20:04:03','2023-01-24 20:04:03',1),(7,3811,41,'category','2023-01-24 20:25:04','2023-01-24 21:58:43',1),(8,3814,41,'category','2023-01-24 22:10:37','2023-01-24 22:12:11',1); /*!40000 ALTER TABLE `wp_yoast_primary_term` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yoast_seo_links` -- DROP TABLE IF EXISTS `wp_yoast_seo_links`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_yoast_seo_links` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `url` varchar(255) NOT NULL, `post_id` bigint(20) unsigned NOT NULL, `target_post_id` bigint(20) unsigned NOT NULL, `type` varchar(8) NOT NULL, `indexable_id` int(10) unsigned DEFAULT NULL, `target_indexable_id` int(10) unsigned DEFAULT NULL, `height` int(10) unsigned DEFAULT NULL, `width` int(10) unsigned DEFAULT NULL, `size` int(10) unsigned DEFAULT NULL, `language` varchar(32) DEFAULT NULL, `region` varchar(32) DEFAULT NULL, PRIMARY KEY (`id`), KEY `link_direction` (`post_id`,`type`), KEY `indexable_link_direction` (`indexable_id`,`type`), KEY `url_index` (`url`), KEY `target_indexable_id_index` (`target_indexable_id`) ) ENGINE=InnoDB AUTO_INCREMENT=4364 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_yoast_seo_links` -- LOCK TABLES `wp_yoast_seo_links` WRITE; /*!40000 ALTER TABLE `wp_yoast_seo_links` DISABLE KEYS */; INSERT INTO `wp_yoast_seo_links` VALUES (2187,'https://vimeo.com/388621488?autoplay=1',3281,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2188,'https://vimeo.com/388621488?autoplay=1',3281,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2189,'https://calendly.com/terri-77/15min',3281,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2210,'https://solsculpting.com/about-red-light/',206,3437,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2211,'https://solsculpting.com/about-red-light/',206,3437,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2212,'https://vimeo.com/389416391?autoplay=1',206,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2213,'https://solsculpting.com/videos/',206,3288,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2214,'https://vimeo.com/389416391?autoplay=1',206,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2215,'https://solsculpting.com/videos/',206,3288,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2216,'https://solsculpting.com/business-investment/',206,626,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2217,'https://solsculpting.com/business-investment/',206,626,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2218,'https://solsculpting.com/business-investment/',206,626,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2219,'https://solsculpting.com/product/solvibrant-self-care/',206,3222,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2220,'https://solsculpting.com/product/solvibrant-anti-aging/',206,3207,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2221,'https://solsculpting.com/product/solvibrant-self-care/',206,3222,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2222,'https://solsculpting.com/business-investment/',206,626,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2223,'https://www.cancer.gov/about-cancer/causes-prevention/risk/radiation/electromagnetic-fields-fact-sheet',206,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2224,'https://solsculpting.com/business-investment/',206,626,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2225,'https://solsculpting.com/founders/',206,3317,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2282,'https://https://vimeo.com/390545176?autoplay=1',3288,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2283,'https://vimeo.com/389294297?autoplay=1',3288,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2284,'https://vimeo.com/388621488?autoplay=1',3288,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2285,'https://vimeo.com/388621488?autoplay=1',3288,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2286,'https://calendly.com/terri-77/15min',3288,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2287,'https://en.wikipedia.org/wiki/Fritz-Albert_Popp',3437,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2288,'https://en.wikipedia.org/wiki/Fritz-Albert_Popp',3437,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2289,'https://vimeo.com/422517294?autoplay=1',3437,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2290,'https://vimeo.com/422517294?autoplay=1',3437,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2291,'https://calendly.com/terri-77/15min',3437,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2292,'tel:',3447,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2293,'tel:',3447,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2294,'tel:',3447,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2295,'tel:',3447,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2298,'https://calendly.com/terri-77/15min',626,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2299,'https://calendly.com/terri-77/15min',626,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2300,'https://calendly.com/terri-77/15min?month=2020-05',3317,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2301,'https://calendly.com/terri-77/15min?month=2020-05',3317,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2302,'https://calendly.com/terri-77/15min',3317,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2307,'https://solsculpting.com/product/solvibrant-red-light-mat-system/',1113,3447,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2308,'https://solsculpting.com/product/solvibrant-self-care/',1113,3222,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2309,'https://solsculpting.com/product/solvibrant-anti-aging/',1113,3207,'internal',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2318,'https://calendly.com/terri-77/15min',632,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2319,'mailto:Terri@SolSculpting.com',632,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2320,'mailto:Terri@AvantiBody.com',632,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(2321,'mailto:Kim@AvantiBody.com',632,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(4281,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-Tall.png',3644,3646,'image-in',539,NULL,311,438,47201,NULL,NULL),(4299,'https://calendly.com/solsculpting-systems/15',3677,0,'external',566,NULL,NULL,NULL,NULL,NULL,NULL),(4300,'https://calendly.com/solsculpting-systems/15',3677,0,'external',566,NULL,NULL,NULL,NULL,NULL,NULL),(4301,'https://solsculpting.com/wp-content/uploads/2022/03/5-STAR.png',3677,3678,'image-in',566,NULL,41,218,2849,NULL,NULL),(4302,'https://solsculpting.com/wp-content/uploads/2021/02/Number1-1.png',3677,3568,'image-in',566,NULL,198,150,963,NULL,NULL),(4303,'https://solsculpting.com/wp-content/uploads/2021/02/Number2-1.png',3677,3570,'image-in',566,NULL,198,150,2753,NULL,NULL),(4304,'https://solsculpting.com/wp-content/uploads/2021/02/Number3-1.png',3677,3569,'image-in',566,NULL,198,150,3247,NULL,NULL),(4306,'https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png',3677,3664,'image-in',566,NULL,65,65,7533,NULL,NULL),(4307,'https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png',3677,3663,'image-in',566,NULL,65,65,2451,NULL,NULL),(4308,'https://solsculpting.com/wp-content/uploads/2022/03/Report-Icon-1.png',3677,3665,'image-in',566,NULL,65,65,6301,NULL,NULL),(4309,'https://www.cancer.gov/about-cancer/causes-prevention/risk/radiation/electromagnetic-fields-fact-sheet',3677,0,'external',566,NULL,NULL,NULL,NULL,NULL,NULL),(4311,'https://www.cancer.gov/about-cancer/causes-prevention/risk/radiation/electromagnetic-fields-fact-sheet',3644,0,'external',539,NULL,NULL,NULL,NULL,NULL,NULL),(4316,'https://solsculpting.com/wp-content/uploads/2022/03/Arro-Icon-1.png',3644,3664,'image-in',539,NULL,65,65,7533,NULL,NULL),(4317,'https://solsculpting.com/wp-content/uploads/2022/03/bolt-icon-1.png',3644,3663,'image-in',539,NULL,65,65,2451,NULL,NULL),(4319,'https://calendly.com/terri-77/15min?month=2020-05',3696,0,'external',578,NULL,NULL,NULL,NULL,NULL,NULL),(4320,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-Before-1-578x1024.jpg',3696,3390,'image-in',578,NULL,1084,612,335865,NULL,NULL),(4321,'https://solsculpting.com/wp-content/uploads/2020/05/Terri-After-1-578x1024.jpg',3696,3389,'image-in',578,NULL,1084,612,308086,NULL,NULL),(4322,'https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg',3697,3284,'image-in',579,NULL,450,450,162599,NULL,NULL),(4323,'https://solsculpting.com/wp-content/uploads/2020/05/JenniferHeadshot.jpg',3697,3283,'image-in',579,NULL,450,450,146821,NULL,NULL),(4325,'https://solsculpting.com/wp-content/uploads/2020/05/Dr-Fritz-Albert-Popp-1024x578.jpg',3698,3453,'image-in',580,NULL,612,1084,351124,NULL,NULL),(4328,'https://solsculpting.com/wp-content/uploads/elementor/thumbs/RedLightNewsMockupMobile2-plrmrqdnt1th2ktb4uru0o9ucxil0mv4iujd0460s0.png',3677,0,'image-in',566,NULL,NULL,NULL,NULL,NULL,NULL),(4329,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-17-inches.jpg',3644,3710,'image-in',539,NULL,397,384,11993,NULL,NULL),(4330,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-14.2-inches.jpg',3644,3711,'image-in',539,NULL,397,384,12454,NULL,NULL),(4331,'https://solsculpting.com/wp-content/uploads/2022/03/SolSculpting-12.2-inches.jpg',3644,3712,'image-in',539,NULL,397,384,13288,NULL,NULL),(4332,'https://solsculpting.com/wp-content/uploads/2022/03/DS_2021_61233Background-768x1220.png',3644,3637,'image-in',539,NULL,1589,1000,1643483,NULL,NULL),(4333,'https://solsculpting.com/wp-content/uploads/2022/03/SolVibranBenefits-768x535.png',3644,3651,'image-in',539,NULL,696,1000,281119,NULL,NULL),(4334,'https://solsculpting.com/wp-content/uploads/2020/05/JeanneHeadshot.jpg',3644,3284,'image-in',539,NULL,450,450,162599,NULL,NULL),(4335,'https://solsculpting.com/wp-content/uploads/2020/05/JenniferHeadshot.jpg',3644,3283,'image-in',539,NULL,450,450,146821,NULL,NULL),(4341,'https://solsculpting.com/wp-content/uploads/2022/03/chri1.jpg',3644,3750,'image-in',539,NULL,550,550,37391,NULL,NULL),(4344,'https://solsculpting.com/wp-content/uploads/elementor/thumbs/Acr19400294262272409359-plxfx07636tpw24igxa086savsot2sk01adtqyftkg.jpg',3644,0,'image-in',539,NULL,NULL,NULL,NULL,NULL,NULL),(4345,'https://solsculpting.com/wp-content/uploads/elementor/thumbs/DS_2021_61350-plxfx07636tpw24igxa086savsot2sk01adtqyftkg.jpg',3644,0,'image-in',539,NULL,NULL,NULL,NULL,NULL,NULL),(4348,'http://calendly.com/solsculpting-systems',3644,0,'external',539,NULL,NULL,NULL,NULL,NULL,NULL),(4350,'http://calendly.com/solsculpting-systems',3698,0,'external',580,NULL,NULL,NULL,NULL,NULL,NULL),(4351,'https://en.wikipedia.org/wiki/Fritz-Albert_Popp',3698,0,'external',580,NULL,NULL,NULL,NULL,NULL,NULL),(4352,'https://ncbi.nlm.nih.gov/pmc/articles/PMC5523874/',3807,0,'external',636,NULL,NULL,NULL,NULL,NULL,NULL),(4353,'https://adaa.org/',3809,0,'external',638,NULL,NULL,NULL,NULL,NULL,NULL),(4354,'https://www.ncbi.nlm.nih.gov/pmc/articles/PMC2680780/',3809,0,'external',638,NULL,NULL,NULL,NULL,NULL,NULL),(4355,'https://www.aad.org/media/stats-numbers',3811,0,'external',640,NULL,NULL,NULL,NULL,NULL,NULL),(4356,'https://www.webmd.com/skin-problems-and-treatments/acne/phototherapy-for-acne',3811,0,'external',640,NULL,NULL,NULL,NULL,NULL,NULL),(4357,'https://pubmed.ncbi.nlm.nih.gov/21435024/',3811,0,'external',640,NULL,NULL,NULL,NULL,NULL,NULL),(4358,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/',3928,3814,'internal',658,642,NULL,NULL,NULL,NULL,NULL),(4359,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/',3936,3814,'internal',660,642,NULL,NULL,NULL,NULL,NULL),(4360,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/',4008,3814,'internal',661,642,NULL,NULL,NULL,NULL,NULL),(4361,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/',4013,3814,'internal',662,642,NULL,NULL,NULL,NULL,NULL),(4362,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/',4018,3814,'internal',663,642,NULL,NULL,NULL,NULL,NULL),(4363,'https://solsculpting.com/red-light-therapy-benefits-for-athletes/',4044,3814,'internal',664,642,NULL,NULL,NULL,NULL,NULL); /*!40000 ALTER TABLE `wp_yoast_seo_links` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `wp_yoast_seo_meta` -- DROP TABLE IF EXISTS `wp_yoast_seo_meta`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `wp_yoast_seo_meta` ( `object_id` bigint(20) unsigned NOT NULL, `internal_link_count` int(10) unsigned DEFAULT NULL, `incoming_link_count` int(10) unsigned DEFAULT NULL, UNIQUE KEY `object_id` (`object_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `wp_yoast_seo_meta` -- LOCK TABLES `wp_yoast_seo_meta` WRITE; /*!40000 ALTER TABLE `wp_yoast_seo_meta` DISABLE KEYS */; INSERT INTO `wp_yoast_seo_meta` VALUES (1,NULL,21),(2,0,0),(3,0,0),(4,0,0),(5,0,0),(6,0,0),(7,0,0),(8,0,0),(9,0,0),(10,0,0),(40,NULL,1),(47,NULL,1),(49,NULL,1),(51,NULL,1),(68,NULL,1),(131,0,0),(139,12,0),(197,0,0),(206,13,0),(265,0,0),(266,0,0),(267,0,0),(268,0,0),(298,0,0),(350,0,0),(351,0,0),(352,0,0),(353,0,0),(354,0,0),(355,0,0),(376,0,0),(447,0,0),(480,0,0),(522,0,0),(541,0,0),(542,0,0),(543,0,0),(544,0,0),(545,0,0),(546,0,0),(547,0,0),(582,0,0),(591,0,0),(594,0,0),(597,0,0),(600,0,0),(603,0,0),(606,0,0),(610,0,0),(613,0,0),(626,0,5),(629,0,0),(632,0,0),(635,0,0),(638,0,0),(644,0,0),(647,0,0),(650,0,0),(665,0,0),(668,0,0),(699,0,0),(787,0,0),(788,0,0),(790,0,0),(797,0,0),(813,0,0),(836,0,0),(838,0,0),(840,0,0),(842,0,0),(846,0,0),(848,0,0),(862,0,0),(863,0,0),(864,0,0),(865,0,0),(866,0,0),(867,0,0),(868,0,0),(869,0,0),(870,0,0),(871,0,0),(885,0,0),(897,0,0),(902,0,0),(907,0,0),(914,0,0),(919,0,0),(932,0,0),(937,0,0),(965,0,0),(973,0,0),(990,0,0),(1028,0,0),(1031,6,0),(1034,0,0),(1037,0,0),(1040,0,0),(1057,0,0),(1080,0,0),(1113,3,0),(1116,0,0),(1183,0,0),(1277,0,0),(1283,0,0),(1286,0,0),(1289,0,0),(1292,0,0),(1295,0,0),(1298,0,0),(1301,0,0),(1304,0,0),(1307,0,0),(1310,0,0),(1313,0,0),(1316,0,0),(1319,0,0),(1322,0,0),(1325,0,0),(1328,0,0),(1331,0,0),(1334,0,0),(1337,0,0),(1340,0,0),(1343,0,0),(1346,0,0),(1349,0,0),(1352,0,0),(1355,0,0),(1358,0,0),(1361,0,0),(1364,0,0),(1367,0,0),(1370,0,0),(1373,0,0),(1376,0,0),(1380,0,0),(1383,0,0),(1386,0,0),(1389,0,0),(1392,0,0),(1395,0,0),(1398,0,0),(1401,0,0),(1404,0,0),(1407,0,0),(1410,0,0),(1413,0,0),(1416,0,0),(1593,0,0),(1958,0,0),(1959,0,0),(1960,0,0),(1961,0,0),(2024,0,0),(2078,0,0),(2483,0,0),(3001,0,0),(3002,0,0),(3003,0,0),(3004,0,0),(3005,0,0),(3006,0,0),(3007,0,0),(3008,0,0),(3009,0,0),(3010,0,0),(3011,0,0),(3012,0,0),(3013,0,0),(3014,0,0),(3015,0,0),(3016,0,0),(3017,0,0),(3018,0,0),(3019,0,0),(3020,0,0),(3021,0,0),(3022,0,0),(3023,0,0),(3024,0,0),(3025,0,0),(3026,0,0),(3027,0,0),(3028,0,0),(3029,0,0),(3030,0,0),(3031,0,0),(3032,0,0),(3033,0,0),(3034,0,0),(3035,0,0),(3037,0,0),(3038,0,0),(3039,0,0),(3040,0,0),(3041,0,0),(3042,0,0),(3043,0,0),(3044,0,0),(3045,0,0),(3046,0,0),(3047,0,0),(3048,0,0),(3049,0,0),(3050,0,0),(3051,0,0),(3052,0,0),(3053,0,0),(3054,0,0),(3055,0,0),(3056,0,0),(3057,0,0),(3058,0,0),(3059,0,0),(3060,0,0),(3061,0,0),(3062,0,0),(3063,0,0),(3064,0,0),(3065,0,0),(3066,0,0),(3067,0,0),(3068,0,0),(3069,0,0),(3070,0,0),(3071,0,0),(3072,0,0),(3073,0,0),(3074,0,0),(3075,0,0),(3076,0,0),(3077,0,0),(3078,0,0),(3079,0,0),(3080,0,0),(3081,0,0),(3082,0,0),(3083,0,0),(3084,0,0),(3085,0,0),(3086,0,0),(3087,0,0),(3088,0,0),(3089,0,0),(3090,0,0),(3091,0,0),(3092,0,0),(3093,0,0),(3094,0,0),(3095,0,0),(3096,0,0),(3097,0,0),(3098,0,0),(3099,0,0),(3100,0,0),(3101,0,0),(3102,0,0),(3103,0,0),(3104,0,0),(3105,0,0),(3106,0,0),(3107,0,0),(3108,0,0),(3109,0,0),(3110,0,0),(3111,0,0),(3112,0,0),(3113,0,0),(3114,0,0),(3115,0,0),(3116,0,0),(3117,0,0),(3118,0,0),(3119,0,0),(3120,0,0),(3121,0,0),(3122,0,0),(3123,0,0),(3124,0,0),(3125,0,0),(3126,0,0),(3127,0,0),(3128,0,0),(3129,0,0),(3130,0,0),(3132,0,0),(3133,0,0),(3134,0,0),(3135,0,0),(3136,0,0),(3137,0,0),(3141,0,0),(3142,0,0),(3143,0,0),(3144,0,0),(3145,0,0),(3146,0,0),(3147,0,0),(3148,0,0),(3149,0,0),(3150,0,0),(3151,0,0),(3152,0,0),(3153,0,0),(3154,0,0),(3155,0,0),(3156,0,0),(3157,0,0),(3158,0,0),(3159,0,0),(3160,0,0),(3161,0,0),(3162,0,0),(3163,0,0),(3164,0,0),(3165,0,0),(3166,0,0),(3167,0,0),(3168,0,0),(3169,0,0),(3170,0,0),(3171,0,0),(3172,0,0),(3173,0,0),(3174,0,0),(3175,0,0),(3176,0,0),(3177,0,0),(3178,0,0),(3179,0,0),(3180,0,0),(3181,0,0),(3182,0,0),(3183,0,0),(3184,0,0),(3185,0,0),(3186,0,0),(3187,0,0),(3188,0,0),(3189,0,0),(3190,0,0),(3191,0,0),(3192,0,0),(3193,0,0),(3194,0,0),(3195,0,0),(3196,0,0),(3197,0,0),(3207,0,2),(3211,0,0),(3222,0,3),(3224,0,0),(3225,0,0),(3228,0,0),(3229,0,0),(3230,0,0),(3234,0,0),(3235,0,0),(3236,0,0),(3244,0,0),(3245,0,0),(3247,0,0),(3248,0,0),(3249,0,0),(3250,0,0),(3251,0,0),(3258,0,0),(3259,0,0),(3263,0,0),(3265,0,0),(3266,0,0),(3267,0,0),(3268,0,0),(3269,0,0),(3270,0,0),(3271,0,0),(3274,0,0),(3275,0,0),(3276,0,0),(3278,0,0),(3279,0,0),(3280,0,0),(3281,0,0),(3286,0,0),(3288,0,2),(3290,0,0),(3291,0,0),(3292,0,0),(3298,0,0),(3299,0,0),(3300,0,0),(3303,0,0),(3304,0,0),(3305,0,0),(3311,0,0),(3313,0,0),(3315,0,0),(3316,0,0),(3317,0,1),(3318,0,0),(3319,0,0),(3321,0,0),(3322,0,0),(3323,0,0),(3324,0,0),(3325,0,0),(3326,0,0),(3327,0,0),(3328,0,0),(3329,0,0),(3330,0,0),(3331,0,0),(3332,0,0),(3333,0,0),(3334,0,0),(3335,0,0),(3336,0,0),(3337,0,0),(3338,0,0),(3339,0,0),(3340,0,0),(3341,0,0),(3342,0,0),(3343,0,0),(3344,0,0),(3345,0,0),(3346,0,0),(3347,0,0),(3349,0,0),(3350,0,0),(3351,0,0),(3352,0,0),(3353,0,0),(3354,0,0),(3356,0,0),(3357,0,0),(3358,0,0),(3360,0,0),(3361,0,0),(3362,0,0),(3363,0,0),(3364,0,0),(3365,0,0),(3366,0,0),(3367,0,0),(3368,0,0),(3369,0,0),(3370,0,0),(3371,0,0),(3372,0,0),(3373,0,0),(3374,0,0),(3375,0,0),(3376,0,0),(3377,0,0),(3378,0,0),(3379,0,0),(3381,0,0),(3382,0,0),(3383,0,0),(3384,0,0),(3385,0,0),(3386,0,0),(3391,0,0),(3392,0,0),(3393,0,0),(3394,0,0),(3395,0,0),(3396,0,0),(3399,0,0),(3401,0,0),(3402,0,0),(3407,0,0),(3408,0,0),(3409,0,0),(3410,0,0),(3411,0,0),(3413,0,0),(3416,0,0),(3417,0,0),(3419,0,0),(3420,0,0),(3421,0,0),(3422,0,0),(3423,0,0),(3424,0,0),(3425,0,0),(3426,0,0),(3427,0,0),(3428,0,0),(3429,0,0),(3430,0,0),(3431,0,0),(3432,0,0),(3433,0,0),(3434,0,0),(3435,0,0),(3436,0,0),(3437,0,2),(3439,0,0),(3441,0,0),(3442,0,0),(3443,0,0),(3444,0,0),(3445,0,0),(3447,0,1),(3448,0,0),(3450,0,0),(3451,0,0),(3454,0,0),(3455,0,0),(3456,0,0),(3458,0,0),(3459,0,0),(3460,0,0),(3461,0,0),(3462,0,0),(3463,0,0),(3464,0,0),(3465,0,0),(3466,0,0),(3467,0,0),(3468,0,0),(3469,0,0),(3470,0,0),(3471,0,0),(3472,0,0),(3473,0,0),(3474,0,0),(3475,0,0),(3478,0,0),(3479,0,0),(3481,0,0),(3482,0,0),(3483,0,0),(3484,0,0),(3485,0,0),(3486,0,0),(3487,0,0),(3488,0,0),(3489,0,0),(3490,0,0),(3491,0,0),(3492,0,0),(3494,0,0),(3495,0,0),(3496,0,0),(3497,0,0),(3498,0,0),(3499,0,0),(3501,0,0),(3504,0,0),(3505,0,0),(3506,0,0),(3507,0,0),(3508,0,0),(3509,0,0),(3510,0,0),(3512,0,0),(3513,0,0),(3514,0,0),(3516,0,0),(3517,0,0),(3518,0,0),(3520,0,0),(3522,0,0),(3523,0,0),(3524,0,0),(3526,0,0),(3527,0,0),(3529,0,0),(3533,0,0),(3534,0,0),(3535,0,0),(3536,0,0),(3537,0,0),(3538,0,0),(3539,0,0),(3541,0,0),(3542,0,0),(3544,0,0),(3547,0,0),(3548,0,0),(3549,0,0),(3550,0,0),(3551,0,0); /*!40000 ALTER TABLE `wp_yoast_seo_meta` ENABLE KEYS */; UNLOCK TABLES; /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */; /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */; /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */; /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */; -- Dump completed on 2026-07-30 8:09:14
修改文件时间
将文件时间修改为当前时间的前一年
删除文件